html {
  scroll-behavior: smooth;
}
.nav-link.active-anchor {
  position: relative;
  color: #fff !important;
  font-weight: 700;
  transition: color 0.3s;
}
.nav-link.active-anchor::after {
  content: '';
  display: block;
  margin: 0 auto;
  width: 60%;
  height: 3px;
  border-radius: 2px;
  background: #a09b9e;
  transition: width 0.3s;
  margin-top: 3px;
}

body {
  margin: 0;
  padding: 0;
  color: #000;
}

.hero-section {
  min-height: 100vh;
  background: linear-gradient(120deg, #484848 0%, #111215 100%);
  position: relative;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background: url('../img/fondo.jpg');
  opacity: 1;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}
.hero-section > *:not(.hero-overlay) {
  position: relative;
  z-index: 2;
}


.navbar {
  z-index: 10;
}
.navbar-nav {
  flex-direction: row;
  justify-content: center;
}
.navbar-nav .nav-item {
  display: flex;
  align-items: center;
}
@media (max-width: 991.98px) {
  .navbar-nav {
    flex-direction: column !important;
    align-items: center;
  }
  .navbar-nav .nav-item {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-bottom: 10px;
  }
}
.nav-link {
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 200;
  font-size: 1.0em;
  letter-spacing: 1px;
  transition: color .2s;
  padding-bottom: 0;
}
.nav-link:hover {
  color: #bdbdbd !important;
}

.hero-content {
  min-height: 85vh;
  margin-left: 110px;
}


@media (max-width: 992px) {
  .hero-content { margin-left: 30px; }
 
}
@media (max-width: 576px) {
  .hero-content { margin-left: 0; }
  .hero-logo-group { flex-direction: column; align-items: flex-start; }
  
}


/* ----------- FULLSCREEN NAVBAR OVERLAY ----------- */
.fullscreen-navbar {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #000002;
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0;
  margin: 0;
}

.fullscreen-navbar.show {
    display: flex;
    position: absolute;
    top: 0;
    animation: fadeIn 0.3s;
    z-index: 100;
}
@keyframes fadeIn {
  from { opacity: 0;}
  to { opacity: 1;}
}

.close-fullscreen-menu {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 2.5rem;
  color: #fff;
  background: none;
  border: none;
  z-index: 10100;
  cursor: pointer;
}
@media (min-width: 992px) {
  .fullscreen-navbar {
    display: none !important;
  }
}


/* Logo en navbar desktop */
.navbar-brand img {
  height:80px; 
  width:auto; 
  display:block;
  
}

@media (max-width: 991.98px) {
  .navbar-brand {
    display: none !important; /* Oculta logo en mobile para que sólo se muestre el del menú overlay */
  }
}


.hero-text h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 6em;
  line-height: 50px;
  margin-bottom: 0.5em;
}
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2.2rem;
    line-height: 20px;
  }
}
.hero-text .dream,
.hero-text .build {
  display: block;
}
.hero-text .subtitle {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 200;
  color: #fff;
  margin-top: 0.5em;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .hero-text .subtitle {
    font-size: 1.1rem;
  }
}



.feature-card {
    position: relative;
    background: #f6f6f6;
    border-radius: 40px;
    padding: 40px 30px 30px 30px;
    min-width: 300px;
    max-width: 450px;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 60px;
}

.feature-icon {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.feature-icon img {
    width: 85px;
    height: 85px;
    object-fit: contain;
}

.feature-content {
    margin-top: 40px;
}

.feature-content h2 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2.0em;
    font-weight: 800;
    margin-bottom: 16px;
    color: #111;
}

.feature-content p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.0em;
    font-weight: 400;
    color: #222;
    margin-bottom: 0;
}

.exp-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 32px;
    background: #e5e1f5;
    color: #222;
    font-size: 1.0em;
    font-family: 'Montserrat', Arial, sans-serif;
    border-radius: 28px;
    text-decoration: none;
    font-weight: 400;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: background 0.2s;
}
.exp-btn:hover {
    background: #d3d0e7;
}

@media (max-width: 991.98px) {
  .feature-card {
    min-width: 90vw;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 60px 18px 40px 18px;
  }
  .feature-icon {
    left: 18px;
  }
}
@media (max-width: 767.98px) {
  .feature-card {
    min-width: 98vw;
    max-width: 98vw;
    padding: 60px 10px 40px 10px;
  }
  .feature-icon {
    left: 12px;
    width: 80px;
    height: 80px;
    top: -40px;
  }
  .feature-icon img {
    width: 60px;
    height: 60px;
  }
  .feature-content h2 { font-size: 2rem; }
  .feature-content p, .exp-btn { font-size: 1.0em; }
}



.services1{
    width: 95%;
    height: 350px;
    margin: 10px auto;
    display: flex;
    background: url('../img/image1.png');
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px 0 #0002;
}

.services1-content {
    flex: 1 1 0;
    /* Ajusta el padding si quieres separar el texto de la imagen */
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
}

.services1-content h2 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2.0em;
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
}

.services1-content p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 0.9em;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0;
}

.services1-content ul {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 0.9em;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0;
}

.services2{
    width: 95%;
    height: 350px;
    margin: 10px auto;
    display: flex;
    background: #eeebe1;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px 0 #0002;
}
.services2-content {
    flex: 1 1 0;
    /* Ajusta el padding si quieres separar el texto de la imagen */
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
}

.services2-content h2 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2.0em;
    font-weight: 800;
    margin-bottom: 16px;
    color: #222;
}

.services2-content p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 0.9em;
    font-weight: 400;
    color: #222;
    margin-bottom: 0;
}

.services2-img {
    width: 45%;
    height: 100%;
    position: relative;
}
.services2-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    display: block;
}
@media (max-width: 900px) {
  .services2 { height: 220px; border-radius: 28px; }
  .services2-img img { border-top-right-radius: 28px; border-bottom-right-radius: 28px; }
}
@media (max-width: 600px) {
  .services2 {
    flex-direction: column;
    height: auto;
    border-radius: 16px;
  }
  .services2-content, .services2-img {
    width: 100%;
    padding: 1rem;
    height: auto;
  }
  .services2-img img {
    border-radius: 0 0 16px 16px;
    min-height: 120px;
  }
}





.how-we-work-section {
  width: 100vw;
  max-width: 100%;
  margin: 0 auto 0 auto;
  padding: 0;
  background: #fff;
}

.how-we-work-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  position: relative;
}

.how-we-work-title {
  flex: 1 1 0;
  text-align: center;
}

.how-we-work-title h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #111;
  margin: 0;
  letter-spacing: 1px;
}

.how-we-work-logo {
  flex: 0 0 auto;
  margin-right: 3vw;
  margin-left: 1vw;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.how-we-work-logo img {
  width: auto;
  height: 60px;
  max-width: 200px;
}

@media (max-width: 900px) {
  .how-we-work-title h2 { font-size: 2rem; }
  .how-we-work-logo img { height: 40px; max-width: 120px; }
}

@media (max-width: 600px) {
  .how-we-work-row {
    flex-direction: column;
    min-height: 0;
    gap: 10px;
  }
  .how-we-work-title {
    width: 100%;
    margin-bottom: 4px;
    text-align: center;
  }
  .how-we-work-logo {
    margin: 0 auto;
    justify-content: center;
  }
}


.howtowork-section {
  padding: 2rem 0;
  background: #fff;
}

.howtowork-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.howtowork-image img {
  width: 100%;
  max-width: 520px;
  
  display: block;
}

.howtowork-content {
  flex: 1 1 320px;
  min-width: 280px;
}

.howtowork-subtitle {
  margin: 0 0 0.5em 0;
  font-size: 1.1rem;
  color: #333;
  font-weight: 400;
}

.howtowork-title {
  margin: 0 0 0.5em 0;
  color: #ea8c2b;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.howtowork-description {
  color: #222;
  font-size: 1.1rem;
  font-weight: 400;
}

@media (max-width: 900px) {
  .howtowork-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .howtowork-image img {
    max-width: 100%;
  }
  .howtowork-content {
    width: 100%;
    margin-top: 1.5rem;
  }
}

@media (max-width: 600px) {
  .howtowork-section {
    padding: 1rem 0.5rem;
  }
  .howtowork-title {
    font-size: 1.4rem;
  }
  .howtowork-content {
    min-width: 0;
  }
}

.howtowork-section-2 {
  padding: 2rem 0;
  background: #fff;
}
.howtowork-container-2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}
.howtowork-content-2 {
  flex: 1 1 340px;
  min-width: 280px;
}
.howtowork-text-2 {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 1rem;
  font-weight: 400;
  line-height: 1.4;
}
.howtowork-highlight-2 {
  color: #ea8c2b;
  font-weight: 700;
  font-size: 2rem;
  display: block;
  line-height: 1.2;
  margin: 0.5rem 0;
}
.howtowork-desc-2 {
  color: #222;
  font-size: 1.1rem;
  margin-top: 1.5rem;
}
.howtowork-images-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 1 360px;
  min-width: 240px;
}
.howtowork-images-col-2{
    text-align: center;
}
.howtowork-img-large-2 {
  width: 100%;
  max-width: 520px;
  
}

@media (max-width: 900px) {
  .howtowork-container-2 {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .howtowork-images-2, .howtowork-content-2 {
    width: 100%;
    min-width: 0;
  }
  .howtowork-img-large-2 {
    max-width: 100%;
  }
  .howtowork-highlight-2 {
    font-size: 1.4rem;
  }
}
@media (max-width: 600px) {
  .howtowork-section-2 {
    padding: 1rem 0.5rem;
  }
  .howtowork-text-2 {
    font-size: 1rem;
  }
  .howtowork-desc-2 {
    font-size: 1rem;
  }
  .howtowork-highlight-2 {
    font-size: 1.1rem;
  }
}


.howtowork-icons-section {
  padding: 2rem 0;
  background: #fff;
}
.howtowork-icons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
}
.howtowork-icon-card {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 0 0 1px #e9e9e9;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  justify-content: flex-start;
  transition: box-shadow 0.2s;
}
.howtowork-icon-card:hover {
  box-shadow: 0 6px 32px rgba(0,0,0,0.10);
}
.howtowork-icon-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
  justify-content: space-between;
}
.howtowork-icon-bg {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  flex-shrink: 0;
}
.howtowork-icon-bg img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}
.icon-bg-yellow { background: #ffe3a6; }
.icon-bg-green { background: #c2f5c4; }
.icon-bg-orange { background: #fabe7e; }
.icon-bg-pink { background: #ffc1ce; }
.icon-bg-purple { background: #cab7fb; }
.icon-bg-blue { background: #bfe3fa; }
.howtowork-icon-number {
  font-size: 2.6rem;
  color: #111;
  font-weight: 400;
  margin-left: 1rem;
  min-width: 52px;
  text-align: right;
  letter-spacing: -2px;
}
.howtowork-icon-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: #111;
}
.howtowork-icon-desc {
  font-size: 1rem;
  color: #222;
  font-weight: 400;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 1100px) {
  .howtowork-icons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 700px) {
  .howtowork-icons-section {
    padding: 1rem 0.5rem;
  }
  .howtowork-icons-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .howtowork-icon-card {
    padding: 1.25rem 1rem 1rem 1rem;
    min-height: 0;
  }
  .howtowork-icon-header {
    margin-bottom: 1rem;
  }
  .howtowork-icon-number {
    font-size: 2rem;
    min-width: 40px;
  }
  .howtowork-icon-bg {
    width: 50px;
    height: 50px;
  }
  .howtowork-icon-bg img {
    width: 32px;
    height: 32px;
  }
}

.contact-section {
  padding: 0 0 3rem 0;
  background: #fff;
}
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem 0 1rem;
  text-align: center;
}
.contact-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #111;
}
.contact-subtitle {
  font-size: 2rem;
  font-weight: 700;
  color: #ea8c2b;
  margin-bottom: 2.5rem;
}
.contact-form {
  width: 100%;
}
.contact-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.3rem;
  width: 100%;
  justify-content: center;
}
.contact-field {
  flex: 1 1 320px;
  min-width: 220px;
}
.contact-field-full {
  flex: 1 1 100%;
  min-width: 0;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1.2rem 1.2rem 1.2rem 1.2rem;
  border-radius: 24px;
  border: none;
  background: #f5f5f5;
  font-size: 1.15rem;
  color: #222;
  box-sizing: border-box;
  margin: 0;
  outline: none;
  transition: box-shadow 0.2s;
  resize: none;
  font-family: inherit;
}
.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 0 2px #ea8c2b44;
}
.contact-form textarea {
  min-height: 120px;
  max-height: 240px;
}

/* Responsive rules */
@media (max-width: 900px) {
  .contact-row {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  .contact-field, .contact-field-full {
    min-width: 0;
    flex: 1 1 60px;
  }
  .contact-subtitle {
    font-size: 1.3rem;
  }
}
@media (max-width: 600px) {
  .contact-container {
    padding: 1rem 0.5rem 0 0.5rem;
  }
  .contact-title {
    font-size: 1.3rem;
  }
  .contact-subtitle {
    font-size: 1.1rem;
  }
  .contact-form input,
  .contact-form textarea {
    font-size: 1rem;
    padding: 1rem 1rem 1rem 1rem;
  }
}

.tribe-footer {
  background: #000;
  color: #fff;
  border-radius: 2rem 2rem 0 0;
  overflow: hidden;
  font-family: 'Montserrat', Arial, sans-serif;
}
.tribe-footer-main {
  background: #000;
}
.tribe-logo-main {
  line-height: 1;
}
.tribe-logo-collective {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  position: relative;
  text-transform: uppercase;
}
.tribe-logo-arrow {
  font-size: 1.1rem;
  color: #fff;
  position: relative;
  top: -2px;
}
.tribe-logo-tribe {
  color: #ea8c2b;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: -0.5rem;
}
.tribe-socials {
  margin-top: 1.3rem;
}
.tribe-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  transition: background 0.2s;
}
.tribe-social-icon:hover {
  background: #ea8c2b22;
}
.tribe-footer-divider {
  width: 2px;
  height: 120px;
  background: #ccc;
  opacity: 0.45;
}
.tribe-footer-links li {
  margin-bottom: 1.4rem;
}
.tribe-footer-links li:last-child {
  margin-bottom: 0;
}
.tribe-footer-links a {
  color: #ede9e7;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.tribe-footer-links a:hover {
  color: #ea8c2b;
}
.tribe-footer-bottom {
  border-top: 2px solid #ea8c2b;
  background: #000;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.01em;
}
/* Responsive */
@media (max-width: 991.98px) {
  .tribe-footer-main {
    flex-direction: column !important;
    text-align: center;
    padding: 2rem 0.5rem 1.2rem 0.5rem;
  }
  .tribe-logo-area {
    margin-bottom: 2rem;
  }
  .tribe-footer-links {
    text-align: center;
  }
  .tribe-divider-container {
    display: none !important;
  }
}
@media (max-width: 600px) {
  .tribe-footer {
    border-radius: 1rem 1rem 0 0;
  }
  .tribe-logo-tribe {
    font-size: 1.7rem;
  }
  .tribe-footer-links a {
    font-size: 1.1rem;
  }
  .tribe-footer-bottom {
    font-size: 0.9rem;
    padding: 0.7rem 0.2rem 0.7rem 0.2rem;
  }
}