:root{
    --paddingthing:10px;
    --bg: linear-gradient(120deg, rgb(14, 30, 58), rgb(58, 175, 169));
    --AzulPetro: #1a2b49;
    --Doradosuave: #c6a654;
    --Turquesa: #3aafa9;
    --Grisnube: #e9ecef;
    --Negrografito:#212529;
    --text:#ffffff;
    --muted:#6b7280;
    --accent:#ffffff;
    --shadow: 0 6px 18px rgba(15,23,42,0.06);
    font-family: "Poppins", sans-serif;
  }
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
body h2,body h3{
  color:var(--AzulPetro);
  font-size:40px;
}

  /* HEADER: fixed to top always */
.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  background:var(--AzulPetro);
  box-shadow:var(--shadow);
  z-index:1000;
}

.nav-inner{
  width:100%;
  max-width:1100px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding-top: 14px;
  padding-bottom: var(--paddingthing); /* este padding da el alto automático */
}

  /* Primary nav */
  nav.primary ul{display:flex;gap:6px;list-style:none;margin:0;padding:0;align-items:center}
  nav.primary a{
    display:inline-flex;padding:8px 12px;border-radius:8px;text-decoration:none;color:var(--text);font-weight:500;
  }
  nav.primary a:hover, nav.primary a:focus{background:rgba(15,23,42,0.04)}
  nav.primary a.active{color:var(--accent);background:rgba(37,99,235,0.06)}

  /* Actions */
  .actions{display:flex;align-items:center;gap:10px}
  .cta{display:inline-flex;padding:8px 12px;border-radius:8px;background:var(--accent);color:#000000;text-decoration:none;font-weight:600}
  .hamburger{display:none;background:transparent;border:0;font-size:20px;padding:8px;border-radius:8px;cursor:pointer}

  /* Mobile menu panel */
  .mobile-menu{
    display:none;
    position:fixed;
    top:var(--height);
    left:0;
    right:0;
    background:var(--bg);
    box-shadow:0 8px 24px rgba(2,6,23,0.08);
    z-index:999;
    padding:16px;
  }
  .mobile-menu ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:8px}
  .mobile-menu a{display:block;padding:10px;border-radius:8px;text-decoration:none;color:var(--text)}
a.brand{
    width: 104px;
    height: 32px;
    outline: none;
    
  text-decoration: none;
} 
.brand:focus,
.brand:active {
  outline: none;
}

.brand h1{
  outline: none;
    color: white;
    font-size: 24px;
    font-family: "Poppins", sans-serif;
}
  /* Responsive rules */
  @media (max-width:880px){
    nav.primary{display:none}
    .hamburger{display:inline-flex}
  }


.hero-section {
  position: relative;
  padding-top: 43.8%; /* ajusta libremente */
  padding-bottom: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}


  /* Overlay oscuro sobre la imagen */
  .hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    display: flex;
  align-items: center;
  justify-content: flex-start; /* 👈 mueve el contenido a la izquierda */
  padding: 2rem 5rem; /* 👈 espacio interno, ajusta el derecho si quieres más aire */
  text-align: left; /* 👈 alinea el texto hacia la izquierda */
  }
.hero-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* 👈 cubre el 50% del ancho de la ventana */
  height: 100%;
  background: linear-gradient(
    to right,
    #1a2b49 34%,   /* color sólido a la izquierda */
    #1a2b498e 60%,   /* empieza a difuminar */
    rgba(14, 30, 58, 0.0) 100%   /* completamente transparente al 100% */
  );
  z-index: 1;
  pointer-events: none; /* no bloquea clics */
}

  /* Contenido centrado */
  .hero-content {
    margin-left: 2%;
    color: white;
    max-width: 800px;
  z-index: 2; /* 👈 por encima del overlay degradado */
  }

  /* Título */
  .hero-title {
   font-family: "Poppins", sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  /* Texto resaltado */
.highlight {
  background: linear-gradient(120deg, rgb(60, 97, 134), rgb(110, 220, 211));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}


  /* Subtítulo */
  .hero-subtitle {
    font-family: "Poppins", sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 2rem;
    opacity: 0.9;
  }

  /* Botón CTA */
 .btn-gradient {
  margin-top: 35px;
  margin-right: 15px;
  display: inline-flex;
  flex-direction: column; /* apila img + texto verticalmente */
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 145px;
  padding: 10px 12px;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  background: linear-gradient(
  120deg,
  rgba(14, 30, 58, 0.3),
  rgba(58, 175, 169, 0.3)
);

  border: 1px solid rgb(0, 0, 0); /* 👈 borde negro finito */
  box-shadow: 0 4px 12px rgba(96, 113, 231, 0.25);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-align: center;
  backdrop-filter: blur(6px); /* 👈 efecto vidrio sutil */
}

.btn-gradient:hover {
  transform: translateY(-3px);
  background: linear-gradient(
  120deg,
  rgba(14, 30, 58, 0.7),
  rgba(58, 175, 169, 0.7)
);

  box-shadow: 0 6px 18px rgba(96, 113, 231, 0.35);
}
.btn-gradient img{
  height: 64px;
  width: 64px;
}




.titulo {
  display: flex;
  align-items: baseline; /* alinea visualmente los textos */
  gap: 8px; /* espacio entre ellos */
  outline: none;

  text-decoration: none;

}

.titulo h1 {
  font-size: 1.8rem;
  font-style: normal;
  outline: none;
  color: #ffffff;
  margin: 0;
  
  text-decoration: none;
}

.titulo h2 {
  font-size: 1.5rem;
  color: #ffffff;
  margin: 0;
  outline: none;
  margin-left: -7px;
  
  text-decoration: none;
}
.hero-footer {
  position: absolute;
  bottom: 20px; /* distancia desde el fondo del hero */
  width: 100%;
  text-align: center;
  color: white;
  font-size: 0.9rem;
  z-index: 3;
}
.sequence-section {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 25px;
  margin: 60px 0; /* quita 'auto' para no limitar centrado */
  position: relative;
  padding: 80px 20px;
  background: #ffffff; /* opcional, para ver bien el bloque */
}


.sequence-card {
  position: relative;
  background: white;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  width: 22%;
  padding-bottom: 100px;
  min-height: 380px;
  text-align: center;
  overflow: hidden;
  margin-left: 20px;
  margin-right: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sequence-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.sequence-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  padding-top: 50px;
  padding-bottom: 20px;
}

.sequence-card h3 {
  margin: 16px 0 8px;
  padding: 20px;
  margin-top: -7px;
  font-size: 1.2rem;
}

.sequence-card p {
max-width: 600px;
  text-align: left;
  margin: 0 auto;
  font-size: 20px;
  width: 80%;   
  text-justify:distribute-all-lines;
}

.pricing-section {
  text-align: center;
  padding: 80px 20px;
  background: #ffffff;
}

.pricing-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--AzulPetro);
}

.pricing-subtitle {
  color: var(--Negrografito);
  margin-bottom: 50px;
  font-size: 1.1rem;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.plan-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  width: 280px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.plan-card h3 {
  color: var(--AzulPetro);
  font-size: 30px;
  margin-bottom: 10px;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: #4e63f9;
}

.price span {
  font-size: 0.9rem;
  color: #666;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  text-align: left;
}

.plan-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
  color: #555;
}

.btn-plan {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: linear-gradient(90deg, #58b7b1, #0a3b67);
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-plan:hover {
  background: linear-gradient(
  120deg,
  rgb(33, 47, 70),
  rgb(110, 182, 178));
}

/* Plan destacado */
.featured {
  border: 2px solid #4e63f9;
  transform: scale(1.05);
}
.faq-section {
  background: white;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.faq-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  background: var(--AzulPetro);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-item {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
}

.faq-question:hover {
  background: #f3f3ff;
}

.arrow {
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #555;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 15px 20px 25px;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}
.legal-section {
  background: #f7f7f7;
  padding: 100px 20px;
  font-family: 'Poppins', sans-serif;
  color: #2c2c2c;
}

.legal-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.legal-text {
  flex: 1 1 500px;
}

.legal-text h2 {
  font-size: 2.2rem;
  background: var(--AzulPetro);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 25px;
  font-weight: 700;
}

.legal-text p {
  color: var(--Negrografito);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 18px;
  text-align: justify;
}

.btn-legal {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 22px;
  border-radius: 8px;
  background: linear-gradient(90deg, #e090ff, #6071e7);
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(96, 113, 231, 0.3);
}

.btn-legal:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(96, 113, 231, 0.5);
}

.legal-image {
  flex: 1 1 400px;
  text-align: center;
}

.legal-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  object-fit: cover;
}
.service-section {
  background: white;
  padding: 100px 20px;
  font-family: 'Poppins', sans-serif;
  color: var(--Negrografito);
}

.service-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.service-image {
  flex: 1 1 450px;
  text-align: center;
}

.service-image img {
  width: 100%;
  max-width: 460px;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  object-fit: cover;
}

.service-text {
  flex: 1 1 550px;
}

.service-text h2 {
  font-size: 2.4rem;
  color: var(--AzulPetro);
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 1.2;
}

.service-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.footer {
  background-color: #000;
  color: #fff;
  padding: 60px 20px 40px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-info h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #7c5dfa, #4e63f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-info p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #ccc;
}

.footer-contact p {
  font-size: 0.95rem;
  margin: 5px 0;
}

.footer-bottom {
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  font-size: 0.85rem;
  color: #aaa;
}
/* Dot indicators */
.hero-dots {
  margin-top: 1%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(200, 200, 200, 0.6);
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero-dots .dot.active {
  background: white;
}
.hero-bg-slider {
  position: absolute;
  top: 0;
  left: 8;
  display: flex;
  width: 70%;
  height: 100%;
  transition: transform 1s ease-in-out;
}

.hero-slide img{
  
  flex: 0 0 100%;
  width: 612px;
  height: 323px;
}
*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
h1,h2,h3,h4,p{ margin:0; }
img{ max-width:100%; height:auto; display:block; }

/* =========== SECCIÓN =========== */
.impacto{
  background: white;
  padding: 80px 16px;
}
.impacto__wrap{
  max-width: 1180px;
  margin: 0 auto;
}
