/* cdvalles.mx landing onepage */
:root{
  --verde-oscuro:#003f32;
  --verde:#4f8f10;
  --verde-lima:#9dcc20;
  --turquesa:#04a6a6;
  --naranja:#ff8a00;
  --amarillo:#ffbe35;
  --blanco:#ffffff;
  --gris:#eef5ef;
  --texto:#082d29;
  --sombra:0 20px 50px rgba(0,0,0,.20);
  --radius:28px;
}

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
}
/* Ajuste para que los enlaces del menú apunten al inicio real de cada sección */
#inicio,
#beneficios,
#paquetes,
#ejemplos,
#contacto{
  scroll-margin-top: 115px;
}


body{
  margin:0;
  font-family:"Montserrat",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--texto);
  background:#f8fbf7;
  overflow-x:hidden;
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  max-width:100%;
  display:block;
}

.section{
  padding:86px 6%;
}

.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:50;
  padding:16px 6%;
  transition:.25s ease;
}

.site-header.scrolled{
  background:rgba(0,63,50,.92);
  backdrop-filter:blur(16px);
  box-shadow:0 12px 30px rgba(0,0,0,.16);
}

.navbar{
  max-width:1180px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  display:flex;
  align-items:center;
  background:rgba(255,255,255,.95);
  border-radius:999px;
  padding:8px 16px;
  box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.brand img{
  width:150px;
  height:auto;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
  font-weight:800;
}

.nav-links a{
  padding:12px 16px;
  border-radius:999px;
  transition:.2s ease;
}

.nav-links a:hover,
.nav-cta{
  background:rgba(255,255,255,.16);
}

.nav-cta{
  border:1px solid rgba(255,255,255,.35);
}

.menu-toggle{
  display:none;
  width:44px;
  height:44px;
  border:0;
  background:rgba(255,255,255,.95);
  border-radius:14px;
  padding:10px;
  cursor:pointer;
}

.menu-toggle span{
  display:block;
  height:3px;
  width:100%;
  background:var(--verde-oscuro);
  margin:5px 0;
  border-radius:20px;
}

.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  padding-top:120px;
  color:#fff;
  overflow:hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,190,53,.45), transparent 28%),
    linear-gradient(120deg, rgba(0,63,50,.97), rgba(0,91,82,.91) 48%, rgba(6,155,162,.80));
}

.hero-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(0,63,50,.98), rgba(0,63,50,.70), rgba(0,0,0,.20)),
    url("assets/bannercdvmx.png") center right/cover no-repeat;
  opacity:.42;
}

.hero::before,
.hero::after{
  content:"";
  position:absolute;
  border-radius:999px;
  filter:blur(2px);
  pointer-events:none;
}

.hero::before{
  width:430px;
  height:430px;
  left:-160px;
  bottom:-130px;
  background:rgba(157,204,32,.28);
}

.hero::after{
  width:260px;
  height:260px;
  right:-60px;
  top:120px;
  background:rgba(255,138,0,.22);
}

.hero-content{
  position:relative;
  z-index:1;
  max-width:1180px;
  width:100%;
  margin:auto;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:50px;
  align-items:center;
}

.eyebrow{
  color:var(--verde-lima);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.85rem;
  font-weight:900;
  margin:0 0 14px;
}

.hero h1{
  font-size:clamp(3rem,7vw,6.4rem);
  line-height:.92;
  margin:0 0 24px;
  letter-spacing:-.07em;
  text-shadow:0 10px 30px rgba(0,0,0,.22);
}

.hero h1 span{
  color:#fff;
  display:inline-block;
}

.hero h1 span::after{
  content:"";
  display:block;
  height:10px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--verde-lima),var(--naranja));
  margin-top:8px;
}

.hero-subtitle{
  max-width:660px;
  font-size:1.25rem;
  line-height:1.7;
  font-weight:600;
  color:rgba(255,255,255,.92);
  margin:0 0 28px;
}

.domain-card{
  width:min(100%,570px);
  background:rgba(255,255,255,.92);
  color:var(--verde-oscuro);
  border-radius:22px;
  padding:18px 22px;
  box-shadow:var(--sombra);
  border:1px solid rgba(255,255,255,.7);
  margin-bottom:28px;
}

.domain-card span{
  display:block;
  color:#477166;
  font-weight:800;
  font-size:.9rem;
  margin-bottom:4px;
}

.domain-card strong{
  display:block;
  font-size:clamp(1.7rem,3vw,2.5rem);
  letter-spacing:-.04em;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:56px;
  padding:16px 24px;
  border-radius:18px;
  font-weight:900;
  border:0;
  cursor:pointer;
  transition:.2s ease;
  box-shadow:0 14px 30px rgba(0,0,0,.18);
}

.btn-primary{
  background:linear-gradient(135deg,var(--naranja),var(--amarillo));
  color:#fff;
}

.btn-secondary{
  background:rgba(255,255,255,.12);
  color:#fff;
  border:1px solid rgba(255,255,255,.28);
}

.btn:hover{
  transform:translateY(-3px);
}

.hero-visual{
  display:flex;
  justify-content:center;
}

.phone-card{
  width:min(100%,520px);
  border-radius:34px;
  padding:12px;
  background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.24);
  box-shadow:var(--sombra);
  transform:rotate(2deg);
}

.phone-card img{
  border-radius:26px;
}

.floating-whatsapp{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:60;
}

.floating-whatsapp a{
  width:64px;
  height:64px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:#22c55e;
  color:#fff;
  font-size:2.2rem;
  font-weight:900;
  box-shadow:0 16px 35px rgba(0,0,0,.25);
  border:4px solid rgba(255,255,255,.9);
}

.trust-strip{
  margin:-44px auto 0;
  position:relative;
  z-index:5;
  max-width:1120px;
  padding:0 6%;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.strip-item{
  background:#fff;
  border-radius:24px;
  padding:26px;
  box-shadow:0 18px 40px rgba(0,63,50,.13);
  border:1px solid rgba(0,63,50,.08);
}

.strip-item strong{
  display:block;
  color:var(--verde-oscuro);
  font-size:1.15rem;
  margin-bottom:7px;
}

.strip-item span{
  color:#55706a;
  font-weight:600;
  line-height:1.5;
}

.section-heading{
  max-width:760px;
  margin:0 auto 44px;
  text-align:center;
}

.section-heading h2,
.examples-copy h2,
.contact-card h2{
  font-size:clamp(2.15rem,4vw,4rem);
  line-height:1.02;
  letter-spacing:-.055em;
  color:var(--verde-oscuro);
  margin:0 0 18px;
}

.section-heading p,
.examples-copy p,
.contact-card p{
  color:#4c6862;
  font-size:1.08rem;
  line-height:1.7;
  font-weight:600;
}

.benefits{
  background:
    radial-gradient(circle at 0 20%, rgba(157,204,32,.16), transparent 28%),
    #f8fbf7;
}

.benefit-grid{
  max-width:1120px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.benefit-card{
  background:#fff;
  border-radius:var(--radius);
  padding:34px;
  box-shadow:0 16px 40px rgba(0,63,50,.10);
  border:1px solid rgba(0,63,50,.08);
}

.icon{
  width:58px;
  height:58px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--verde-lima),var(--turquesa));
  color:#fff;
  font-weight:900;
  font-size:1.7rem;
  margin-bottom:22px;
}

.benefit-card h3,
.price-card h3{
  color:var(--verde-oscuro);
  font-size:1.55rem;
  margin:0 0 12px;
  letter-spacing:-.03em;
}

.benefit-card p,
.price-card p{
  color:#55706a;
  line-height:1.65;
  font-weight:600;
}

.packages{
  background:
    linear-gradient(rgba(0,63,50,.88), rgba(0,63,50,.82)),
    url("assets/promocion-paquetes.png") center/cover fixed no-repeat;
}

.packages .section-heading h2,
.packages .section-heading p{
  color:#fff;
}

.pricing-grid{
  max-width:1120px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.price-card{
  position:relative;
  background:rgba(255,255,255,.96);
  border-radius:30px;
  padding:36px 30px;
  text-align:center;
  box-shadow:var(--sombra);
  border:3px solid transparent;
  overflow:hidden;
}

.price-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:10px;
  background:linear-gradient(90deg,var(--turquesa),var(--verde-lima),var(--naranja));
}

.price-card.featured{
  transform:translateY(-18px);
  border-color:var(--verde-lima);
}

.price-card.business{
  border-color:rgba(255,138,0,.6);
}

.price-icon{
  width:76px;
  height:76px;
  border-radius:999px;
  display:grid;
  place-items:center;
  margin:0 auto 20px;
  color:#fff;
  font-size:2rem;
  background:linear-gradient(135deg,var(--turquesa),var(--verde));
  box-shadow:0 14px 30px rgba(0,63,50,.20);
}

.price-icon.web{
  background:linear-gradient(135deg,var(--verde),var(--verde-lima));
}

.price-icon.store{
  background:linear-gradient(135deg,var(--naranja),#ff5a00);
}

.price{
  margin:28px 0 24px;
  font-size:clamp(3rem,5vw,4.8rem);
  font-weight:900;
  letter-spacing:-.07em;
  color:var(--verde-oscuro);
}

.price small{
  display:block;
  font-size:1rem;
  letter-spacing:0;
  color:var(--naranja);
  margin-bottom:-8px;
}

.mini-btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  min-width:150px;
  padding:14px 20px;
  border-radius:16px;
  background:var(--verde-oscuro);
  color:#fff;
  font-weight:900;
  transition:.2s ease;
}

.mini-btn:hover{
  background:var(--naranja);
  transform:translateY(-2px);
}

.examples{
  max-width:1180px;
  margin:auto;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:42px;
  align-items:center;
}

.domain-list{
  list-style:none;
  padding:0;
  margin:28px 0 0;
  display:grid;
  gap:12px;
}

.domain-list li{
  background:#fff;
  border-radius:18px;
  padding:16px 18px;
  box-shadow:0 10px 30px rgba(0,63,50,.08);
  font-weight:900;
  color:var(--verde-oscuro);
  font-size:1.1rem;
}

.domain-list span{
  margin-right:10px;
}

.examples-gallery{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.examples-gallery img{
  border-radius:26px;
  box-shadow:var(--sombra);
  aspect-ratio:1/1;
  object-fit:cover;
}

.contact-section{
  background:
    radial-gradient(circle at 15% 15%, rgba(157,204,32,.22), transparent 24%),
    linear-gradient(135deg,#f8fbf7,#eaf6ed);
}

.contact-card{
  max-width:820px;
  margin:auto;
  text-align:center;
  background:#fff;
  border-radius:38px;
  padding:48px;
  box-shadow:0 24px 60px rgba(0,63,50,.12);
  border:1px solid rgba(0,63,50,.08);
}

.contact-logo{
  width:250px;
  margin:0 auto 26px;
}

.domain-form{
  margin:30px auto 22px;
  max-width:600px;
  display:grid;
  gap:14px;
}

.domain-form label{
  color:var(--verde-oscuro);
  font-weight:900;
}

.form-row{
  display:flex;
  align-items:center;
  gap:0;
  background:#f2f7f2;
  border:2px solid rgba(0,63,50,.14);
  border-radius:18px;
  overflow:hidden;
}

.form-row input{
  flex:1;
  min-width:0;
  border:0;
  outline:0;
  background:transparent;
  padding:18px 20px;
  font-size:1.05rem;
  font-weight:800;
  color:var(--verde-oscuro);
}

.form-row span{
  padding:18px 20px;
  background:rgba(79,143,16,.12);
  color:var(--verde);
  font-weight:900;
}

.domain-form .btn{
  width:100%;
  font-size:1rem;
}

.phone-link{
  display:inline-block;
  color:var(--verde);
  font-size:1.2rem;
  font-weight:900;
}

.footer{
  background:var(--verde-oscuro);
  color:#fff;
  text-align:center;
  padding:28px 6%;
  font-weight:700;
}

.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .7s ease, transform .7s ease;
}

.reveal.visible{
  opacity:1;
  transform:translateY(0);
}

@media (max-width: 920px){
  .site-header{
    padding:12px 5%;
  }

  .menu-toggle{display:block}

  .nav-links{
    position:absolute;
    top:78px;
    left:5%;
    right:5%;
    display:none;
    flex-direction:column;
    align-items:stretch;
    background:rgba(0,63,50,.96);
    padding:18px;
    border-radius:22px;
    box-shadow:var(--sombra);
  }

  .nav-links.active{display:flex}

  .hero-content,
  .examples{
    grid-template-columns:1fr;
  }

  .hero{
    padding-top:180px;
  }

  .hero-content{
    gap:28px;
  }

  .hero-visual{
    order:-1;
    margin-top:6px;
  }

  .promo-image-card{
    max-width:430px;
    margin:0 auto;
  }

  .trust-strip,
  .benefit-grid,
  .pricing-grid{
    grid-template-columns:1fr;
  }

  .price-card.featured{
    transform:none;
  }

  .examples-gallery{
    grid-template-columns:1fr;
  }
}

@media (max-width: 560px){
  .section{
    padding:70px 5%;
  }

  .site-header{
    padding:10px 4.5%;
  }

  .brand{
    padding:7px 12px;
  }

  .brand img{
    width:112px;
  }

  .nav-links{
    top:72px;
  }

  .hero{
    padding-top:198px;
  }

  .hero h1{
    font-size:3.25rem;
  }

  .hero-subtitle{
    font-size:1.03rem;
  }

  .hero-actions .btn{
    width:100%;
  }

  .domain-card strong{
    font-size:1.55rem;
  }

  .contact-card{
    padding:32px 22px;
    border-radius:28px;
  }

  .contact-logo{
    width:210px;
  }

  .form-row{
    flex-direction:column;
    align-items:stretch;
  }

  .form-row span{
    text-align:center;
  }

  .floating-whatsapp a{
    width:58px;
    height:58px;
  }
}


/* Sección de ideas centrada, sin cuadros de imágenes */
.centered-examples{
  display:flex;
  justify-content:center;
  text-align:center;
}

.centered-examples .examples-copy{
  max-width:820px;
  margin:0 auto;
}

.centered-examples .domain-list{
  max-width:620px;
  margin-left:auto;
  margin-right:auto;
}

.self-check{
  margin-top:28px;
  padding-top:24px;
  border-top:1px solid rgba(0,63,50,.12);
}

.self-check p{
  margin:0 0 14px;
  color:var(--verde-oscuro);
  font-weight:900;
  font-size:1.1rem;
}

.btn-outline-dark{
  background:var(--verde-oscuro);
  color:#fff;
  box-shadow:0 14px 30px rgba(0,63,50,.18);
}

.btn-outline-dark:hover{
  background:var(--verde);
}


/* Imagen principal de promoción en hero */
.promo-image-card{
  width:min(100%,560px);
  border-radius:34px;
  overflow:hidden;
  box-shadow:var(--sombra);
  border:1px solid rgba(255,255,255,.30);
  background:rgba(255,255,255,.16);
}

.promo-image-card img{
  width:100%;
  height:auto;
  border-radius:34px;
  object-fit:cover;
}
