*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins', sans-serif;
  background:#f5f7fa;
  color:#1c1c1c;
}

/* HEADER */

header{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0px 8%;
  background:white;
  position:fixed;
  top:0;
  z-index:999;
  box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.logo img{
  height:140px;
}
/* MENÚ */

nav{
  display:flex;
  align-items:center;
}

nav a{
  margin-left:20px;
  text-decoration:none;
  color:#333;
  font-weight:500;
  transition:0.3s;
}

nav a:hover{
  color:#d88ca0;
}

/* HERO */

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:50px;
  padding:160px 10% 80px;
  background:#f5f7fa;
}
.hero-text{
  flex:1;
}

.subtitle{
  color:#d88ca0;
  font-weight:600;
  letter-spacing:1px;
}

.hero-text h1{
  font-size:44px;
  color:#0d1b2a;
  margin:20px 0;
}

.hero-text p{
  font-size:22px;
  line-height:1.6;
  margin-bottom:30px;
}

.hero-image{
  flex:1;
  text-align:center;
}

.hero-image img{
  max-width:280px;
  width:100%;
  border-radius:25px;
  box-shadow:0 15px 40px rgba(0,0,0,0.15);
  background:black;
  padding:10px;
}

.asesora{
  margin-top:30px;
  padding-top:20px;
  border-top:2px solid #d88ca0;
}
.asesora h3{
  font-size:28px;
  margin-bottom:5px;
}

.asesora span{
  font-size:18px;
}

.asesora h3{
  color:#0d1b2a;
}

.asesora span{
  color:#666;
}

.hero-content h1{
  font-size:52px;
  margin-bottom:20px;
}

.hero-content p{
  font-size:20px;
  margin-bottom:30px;
}

/* BOTONES */

.btn{
  box-shadow:0 10px 25px rgba(212,175,55,0.35);
  display:inline-block;
  padding:15px 30px;
  background:#d4af37;
  color:white;
  text-decoration:none;
  border-radius:10px;
  font-weight:600;
  transition:0.3s;
}

.btn:hover{
  transform:translateY(-3px);
  transform:scale(1.05);
}

/* SECCIONES */

.about,
.services,
.contact{
  padding:30px 10%;
  text-align:center;
}
.beneficios{
  padding-top:0px;
}

h2{
  font-size:38px;
  margin-bottom:15px;
  color:#0d1b2a;
}

/* TARJETAS */

.cards{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  justify-content:center;
  flex-direction:row !important;
}

.card{
  background:white;
  padding:30px;
  border-radius:15px;
  width:300px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
  transition:0.3s;
}

.card:hover{
  transform:translateY(-10px);
}

.card h3{
  margin-bottom:20px;
}

.card a{
  display:inline-block;
  margin-top:10px;
  text-decoration:none;
  background:#0d1b2a;
  color:white;
  padding:12px 20px;
  border-radius:10px;
  transition:0.3s;
}

.card a:hover{
  background:#d88ca0;
}

/* BOTÓN WHATSAPP */

.whatsapp-float{
  position:fixed;
  width:60px;
  height:60px;
  bottom:30px;
  right:30px;
  background:#25d366;
  color:white;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:30px;
  text-decoration:none;
  box-shadow:0 5px 15px rgba(0,0,0,0.3);
  z-index:1000;
  transition:0.3s;
}

.whatsapp-float:hover{
  transform:scale(1.1);
}

/* RESPONSIVE CELULAR */

@media(max-width:768px){

  .hero{
    padding:180px 20px 40px;
    text-align:center;
    flex-direction:column;
  }

  .hero-text{
    text-align:center;
  }

  .hero-text h1{
    font-size:38px !important;
    line-height:1.2;
  }

  .hero-text p{
    text-align:center;
    font-size:16px;
  }

  .hero-image img{
    max-width:320px;
    width:100%;
  }

  header{
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
    padding:10px 15px;
  }

  .logo img{
    height:120px;
  }

  nav{
    display:flex;
    gap:10px;
  }

  nav a{
    margin-left:0;
    font-size:14px;
  }

  .btn{
    width:85%;
    max-width:320px;
  }

  .cards{
    flex-direction:column;
    align-items:center;
  }

  .card{
    width:90%;
  }

  .about{
  padding: 60px 10%;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

  .beneficios{
    margin-top:0;
    padding-top:0;
  }

}
/* COMPAÑÍAS */

.companias{
  padding:20px 0 40px;
  text-align:center;
}
.companias h2{
  margin-bottom:25px;
}

.services > h2{
  margin-top:40px;
}

.logos-slider{
  overflow:hidden;
  width:100%;
  margin-top:30px;
}

.logos-track{
  display:flex;
  align-items:center;
  gap:60px;
  width:max-content;
  animation:scrollLogos 25s linear infinite;
}

.logos-track img{
  height:70px;
  width:auto;
  object-fit:contain;
}

@keyframes scrollLogos{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(-50%);
  }
}

/* FOOTER */

.footer{
  background:#0d1b2a;
  color:white;
  text-align:center;
  padding:25px;
  margin-top:50px;
  font-size:14px;
}
#servicios{
  scroll-margin-top: 140px;
}
.about{
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
}

.about p{
  font-size: 22px;
  line-height: 1.8;
}