:root{
  --bg:#050509;
  --bg2:#0a0a10;

  --card: rgba(18,18,24,.62);
  --line: rgba(255,255,255,.08);

  --text:#f5f6fb;
  --muted: rgba(245,246,251,.70);

  --red:#b10f2b;
  --white:#ffffff;

  --shadow: 0 20px 70px rgba(0,0,0,.55);
  --radius: 18px;
  --radius2: 26px;

  --title: "Cinzel", serif;
  --body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: var(--body);
  color:var(--text);
  background:
    radial-gradient(900px 520px at 20% 20%, rgba(177,15,43,.16), transparent 60%),
    radial-gradient(900px 520px at 80% 20%, rgba(255,255,255,.08), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x:hidden;
}

img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}
.container{width:min(1180px, 92%); margin-inline:auto}

.smoke-overlay{
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(700px 350px at 20% 30%, rgba(255,255,255,.06), transparent 70%),
    radial-gradient(800px 400px at 70% 40%, rgba(255,255,255,.05), transparent 72%),
    radial-gradient(900px 480px at 45% 80%, rgba(255,255,255,.04), transparent 75%);
  mix-blend-mode: screen;
  opacity:.55;
  filter: blur(1px);
  z-index:1;
}

/* Top bar */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background: linear-gradient(180deg, rgba(5,5,9,.92), rgba(5,5,9,.65));
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand__mark{
  width:44px; height:44px;
  border-radius:14px;
  display:grid; place-items:center;
  color: var(--white);
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.20), rgba(177,15,43,.20));
  border:1px solid rgba(255,255,255,.16);
  box-shadow: 0 10px 30px rgba(0,0,0,.45);
}
.brand__title{
  font-family: var(--title);
  letter-spacing:.6px;
  font-weight:700;
  font-size:16px;
}
.brand__sub{
  font-size:12px;
  color:var(--muted);
  margin-top:2px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 18px;
  border-radius:999px;
  font-weight:800;
  letter-spacing:.2px;
  border:1px solid transparent;
  transition:.18s ease;
  user-select:none;
}
.btn i{font-size:18px}
.btn--primary{
  background: linear-gradient(135deg, rgba(177,15,43,1), rgba(255,255,255,1));
  color:#07070d;
  box-shadow: 0 16px 50px rgba(177,15,43,.22);
}
.btn--primary:hover{transform: translateY(-1px); filter: brightness(1.02)}
.btn--secondary{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
}
.btn--secondary:hover{background: rgba(255,255,255,.08); transform: translateY(-1px)}
.btn--ghost{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.16);
}
.btn--ghost:hover{background: rgba(255,255,255,.08); transform: translateY(-1px)}
.btn--full{width:100%; justify-content:center}
.btn--lg{padding:14px 20px; font-size:16px}

/* Floating WhatsApp */
.wa-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:60;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  background: rgba(0,0,0,.55);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.wa-float__text{
  font-weight:900;
  font-size:14px;
  color:var(--text);
}
.wa-float__icon{
  width:38px; height:38px;
  border-radius:999px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, #25D366, rgba(255,255,255,.85));
  color:#07070d;
}
.wa-float:hover{transform: translateY(-1px)}
@media (max-width:520px){
  .wa-float__text{display:none}
}

/* Hero */
.hero{
  position:relative;
  min-height: 92vh;
  display:flex;
  align-items:center;
  background-size: cover;
  background-position: center;
  border-bottom:1px solid var(--line);
}
.hero__overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(5,5,9,.62), rgba(5,5,9,.92)),
    radial-gradient(700px 500px at 30% 40%, rgba(255,255,255,.08), transparent 60%),
    radial-gradient(900px 650px at 70% 30%, rgba(177,15,43,.18), transparent 65%);
  z-index:2;
}
.hero__content{
  position:relative;
  z-index:3;
  padding:90px 0 60px;
}
.hero__badge{
  display:inline-flex;
  padding:10px 14px;
  border-radius:999px;
  background: rgba(0,0,0,.38);
  border:1px solid rgba(255,255,255,.12);
  color:var(--muted);
  font-weight:700;
  font-size:13px;
  margin-bottom:18px;
}
.hero__title{
  font-family: var(--title);
  font-size: clamp(34px, 4.2vw, 58px);
  line-height:1.05;
  margin: 0 0 14px;
  letter-spacing:.4px;
}
.hero__title--accent{
  display:block;
  margin-top:10px;
  color: rgba(255,255,255,.92);
  text-shadow: 0 10px 30px rgba(0,0,0,.6);
}
.hero__lead{
  width:min(820px, 100%);
  margin:0 0 26px;
  color:var(--muted);
  font-size: 17px;
  line-height:1.65;
}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap}
.hero__trust{
  margin-top:22px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.trust-pill{
  padding:10px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  color: rgba(245,246,251,.88);
  font-weight:800;
  font-size:13px;
}

/* Sections */
.section{
  position:relative;
  z-index:2;
  padding:72px 0;
}
.section__head{margin-bottom:22px}
.section__title{
  margin:0 0 10px;
  font-family: var(--title);
  font-size: 30px;
  letter-spacing:.4px;
}
.section__subtitle{
  margin:0;
  color:var(--muted);
  line-height:1.6;
  width:min(820px,100%);
}
.section__text{
  margin:0 0 12px;
  color:var(--muted);
  line-height:1.75;
  font-size:16px;
}

.section-divider{
  height:70px;
  width:100%;
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent),
    radial-gradient(closest-side, rgba(177,15,43,.22), transparent 70%);
  opacity:.9;
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
}

/* Split */
.split{
  display:grid;
  grid-template-columns: 1fr 1.05fr;
  gap:34px;
  align-items:center;
}
.split--reverse{grid-template-columns: 1.05fr 1fr}
@media (max-width: 980px){
  .split, .split--reverse{grid-template-columns:1fr}
}

.img-card{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.media-caption{
  margin-top:12px;
  color: rgba(245,246,251,.70);
  font-style: italic;
  padding-left:6px;
}

/* Bullets */
.bullet-grid{
  margin-top:16px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
.bullet{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:12px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color: rgba(245,246,251,.86);
  font-weight:700;
}
.bullet span{color: rgba(255,255,255,.92)}
@media (max-width:520px){
  .bullet-grid{grid-template-columns:1fr}
}

.mt{margin-top:16px}
.mt-lg{margin-top:22px}
.center{text-align:center}

/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:18px;
}
.cards--3{grid-template-columns: repeat(3, 1fr)}
@media (max-width:980px){
  .cards{grid-template-columns:1fr}
  .cards--3{grid-template-columns:1fr}
}

.card{
  background: var(--card);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius2);
  overflow:hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,.42);
  backdrop-filter: blur(10px);
  transition: .18s ease;
}
.card:hover{transform: translateY(-2px)}
.card__img{
  height: 410px;
  width:100%;
  object-fit: cover;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.card__body{padding:18px 18px 16px}
.card__title{
  margin:0 0 10px;
  font-family: var(--title);
  font-size: 18px;
  letter-spacing:.3px;
}
.card__text{
  margin:0 0 14px;
  color: var(--muted);
  line-height:1.65;
  font-size:14.8px;
}
.card--soft{background: rgba(255,255,255,.04)}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.gallery__item{
  margin:0;
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius2);
  overflow:hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,.40);
}
.gallery__item img{
  height: 220px;
  width:100%;
  object-fit: cover;
}
.gallery__item figcaption{
  padding:12px 12px 14px;
  color: rgba(245,246,251,.75);
  font-size:13px;
  line-height:1.45;
}
@media (max-width:1100px){
  .gallery{grid-template-columns: repeat(2,1fr)}
}
@media (max-width:520px){
  .gallery{grid-template-columns: 1fr}
}

/* Callout */
.callout{
  margin-top:14px;
  padding:14px;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.16);
  background: linear-gradient(135deg, rgba(177,15,43,.12), rgba(255,255,255,.08));
}
.callout__title{
  font-weight:900;
  margin-bottom:6px;
}
.callout__text{color: rgba(245,246,251,.74); line-height:1.55}

/* FAQ fixed boxes */
.faq-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
.faq{
  padding:18px;
  border-radius: var(--radius2);
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}
.faq h3{
  margin:0 0 10px;
  font-family: var(--title);
  font-size:16px;
  letter-spacing:.3px;
  color: rgba(255,255,255,.92);
}
.faq p{
  margin:0;
  color: rgba(245,246,251,.78);
  line-height:1.65;
  font-size:14.8px;
}
@media (max-width:980px){
  .faq-grid{grid-template-columns:1fr}
}

/* Contact */
.section--contact{padding:72px 0 0}
.contact{padding-bottom:50px}
.contact__box{
  padding:28px;
  border-radius: 28px;
  border:1px solid rgba(255,255,255,.18);
  background:
    radial-gradient(700px 380px at 20% 20%, rgba(177,15,43,.14), transparent 60%),
    radial-gradient(700px 380px at 80% 20%, rgba(255,255,255,.10), transparent 60%),
    rgba(0,0,0,.35);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.contact__title{
  margin:0 0 10px;
  font-family: var(--title);
  font-size:28px;
}
.contact__text{
  margin:0 0 18px;
  color: var(--muted);
  line-height:1.7;
}
.contact__actions{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}
.contact__note{
  color: rgba(245,246,251,.72);
  font-weight:800;
}

/* Footer */
.footer{
  padding:18px 0 26px;
  border-top:1px solid var(--line);
  background: rgba(0,0,0,.30);
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  color: rgba(245,246,251,.65);
  font-size:13px;
}

/* HERO centrado en móvil */
@media (max-width: 768px){
  .hero__content{
    text-align: center;
  }

  .hero__lead{
    margin-left: auto;
    margin-right: auto;
  }

  .hero__cta{
    justify-content: center;
  }

  .hero__trust{
    justify-content: center;
  }
}


/* HERO: arreglar tipografía en móvil (se veía gigante y se partía mal) */
@media (max-width: 480px){

  .hero__content{
    text-align: center;
  }

  /* Badge más compacto */
  .hero__badge{
    font-size: 12px;
    padding: 8px 12px;
    max-width: 92%;
    margin-left: auto;
    margin-right: auto;
  }

  /* Título principal: más pequeño, menos saltos, mejor lectura */
  .hero__title{
    font-size: 34px;      /* antes estaba enorme */
    line-height: 1.08;
    letter-spacing: .2px;
    max-width: 18ch;      /* controla el ancho para que corte “bonito” */
    margin-left: auto;
    margin-right: auto;
  }

  /* El subtítulo/acento: que no se baje como bloque gigante */
  .hero__title--accent{
    display: inline;      /* en móvil mejor inline para que no “rompa” tanto */
  }

  /* Texto descriptivo centrado y con ancho cómodo */
  .hero__lead{
    font-size: 15px;
    line-height: 1.6;
    max-width: 36ch;
    margin-left: auto;
    margin-right: auto;
  }

  /* Botones centrados */
  .hero__cta{
    justify-content: center;
  }

  .hero__trust{
    justify-content: center;
  }
}





/* HERO móvil: usar todo el ancho de pantalla */
@media (max-width: 768px){

  .hero .container{
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero__content{
    text-align: center;
  }

  .hero__title{
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__lead{
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}



:root{
  --red-main: #b10f2b;
  --red-dark: #7e0b1f;
  --red-glow: rgba(177,15,43,.35);
}





.hero__overlay{
  background:
    linear-gradient(
      180deg,
      rgba(177,15,43,.45),
      rgba(5,5,9,.92)
    ),
    radial-gradient(
      900px 600px at 50% 30%,
      rgba(177,15,43,.55),
      transparent 65%
    );
}





.hero__title,
.section__title{
  text-shadow:
    0 0 25px rgba(177,15,43,.45),
    0 10px 40px rgba(0,0,0,.8);
}

.hero__title--accent{
  color: var(--red-main);
}



.btn--primary{
  background: linear-gradient(
    135deg,
    var(--red-main),
    #ff4d6d
  );
  color: #fff;
  box-shadow:
    0 0 0 rgba(0,0,0,0),
    0 20px 60px rgba(177,15,43,.55);
}

.btn--primary:hover{
  filter: brightness(1.05);
  transform: translateY(-2px);
}



.section-divider{
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(177,15,43,.6),
      transparent
    ),
    radial-gradient(
      closest-side,
      rgba(177,15,43,.45),
      transparent 70%
    );
}





.card{
  border: 1px solid rgba(177,15,43,.25);
}

.card:hover{
  box-shadow:
    0 0 0 rgba(0,0,0,0),
    0 25px 70px rgba(177,15,43,.35);
}




.hero__badge,
.trust-pill{
  border-color: rgba(177,15,43,.4);
  background: rgba(177,15,43,.15);
}





/* =========================
   BOTONES ROJOS UNIFICADOS
   ========================= */

.btn,
.btn--primary,
.btn--ghost,
.btn--secondary{
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  padding: 16px 22px;
  border-radius: 999px;

  background: linear-gradient(
    135deg,
    #b10f2b,
    #ff2e4d
  );

  color: #ffffff;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .3px;

  border: 1px solid rgba(255,255,255,.15);
  box-shadow:
    0 10px 35px rgba(177,15,43,.55),
    inset 0 0 0 rgba(0,0,0,0);

  transition: all .2s ease;
}

/* Icono WhatsApp */
.btn i{
  font-size: 20px;
}

/* Hover (desktop) */
@media (hover:hover){
  .btn:hover{
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow:
      0 18px 55px rgba(177,15,43,.75);
  }
}

/* Ajuste en móvil */
@media (max-width: 480px){
  .btn{
    font-size: 15px;
    padding: 15px 18px;
  }
}



/* =========================
   BOTONES ROJOS UNIFICADOS
   ========================= */

.btn,
.btn--primary,
.btn--ghost,
.btn--secondary{
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  padding: 16px 22px;
  border-radius: 999px;

  background: linear-gradient(
    135deg,
    #b10f2b,
    #ff2e4d
  );

  color: #ffffff;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .3px;

  border: 1px solid rgba(255,255,255,.15);
  box-shadow:
    0 10px 35px rgba(177,15,43,.55),
    inset 0 0 0 rgba(0,0,0,0);

  transition: all .2s ease;
}

/* Icono WhatsApp */
.btn i{
  font-size: 20px;
}

/* Hover (desktop) */
@media (hover:hover){
  .btn:hover{
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow:
      0 18px 55px rgba(177,15,43,.75);
  }
}

/* Ajuste en móvil */
@media (max-width: 480px){
  .btn{
    font-size: 15px;
    padding: 15px 18px;
  }
}

/* ================================
   BOTÓN FLOTANTE WHATSAPP CON TEXTO
   ================================ */

.wa-float{
  display: flex !important;
  align-items: center;
  gap: 12px;

  background: linear-gradient(
    135deg,
    #b10f2b,
    #ff2e4d
  );

  padding: 14px 18px;
  border-radius: 999px;

  box-shadow:
    0 15px 40px rgba(177,15,43,.6);

  border: 1px solid rgba(255,255,255,.25);
}

/* Texto SIEMPRE visible */
.wa-float__text{
  display: inline-block !important;
  font-weight: 800;
  font-size: 14px;
  color: #ffffff;
  white-space: nowrap;
}

/* =========================================
   BOTÓN FLOTANTE: TEXTO LIBRE + ICONO BURBUJA
   ========================================= */

.wa-float{
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 14px;

  background: linear-gradient(
    135deg,
    #b10f2b,
    #ff2e4d
  );

  padding: 14px 22px;
  border-radius: 999px;

  box-shadow: 0 15px 40px rgba(177,15,43,.6);
  border: none;
}

/* TEXTO: SIN BURBUJA */
.wa-float__text{
  display: inline-block !important;
  font-weight: 800;
  font-size: 15px;
  color: #ffffff;
  white-space: nowrap;
}

/* ICONO: ÚNICO CON BURBUJA */
.wa-float__icon{
  width: 36px;
  height: 36px;
  min-width: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;

  background: rgba(255,255,255,.18); /* burbuja SOLO del icono */
  color: #ffffff;
  font-size: 17px;
}





/* =========================================
   FLOAT WHATSAPP: MÁS FINO, NO ESTORBA
   ========================================= */

.wa-float{
  right: 10px;
  bottom: 10px;
  padding: 10px 10px;
  gap: 12px;

  background: linear-gradient(135deg, #b10f2b, #ff2e4d);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);

  box-shadow: 0 10px 25px rgba(177,15,43,.45);
}

/* Texto más compacto */
.wa-float__text{
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .1px;
}

/* Burbuja SOLO del icono, más pequeña */
.wa-float__icon{
  width: 20px;
  height: 20px;
  min-width: 32px;

  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  font-size: 16px;
}

/* En pantallas muy pequeñas, aún más compacto */
@media (max-width: 380px){
  .wa-float{
    padding: 5px 7px;
    gap: 7px;
  }
  .wa-float__text{ font-size: 12px; }
  .wa-float__icon{
    width: 25px;
    height: 25px;
    min-width: 25px;
    font-size: 12px;
  }
}



/* =========================================
   TESTIMONIOS: IMÁGENES MÁS GRANDES
   ========================================= */

#testimonios .card__img{
  height: 480px;          /* antes ~210px */
  object-fit: cover;
  object-position: center;
}



/* =========================================
   SERVICIOS: RECUADRO CON BORDE ROJO
   ========================================= */

#servicios .card{
  border: 2px solid rgba(177, 15, 43, 0.55); /* rojo dominante */
  border-radius: 22px;
  background: rgba(10, 5, 8, 0.85);
  box-shadow: 0 12px 35px rgba(0,0,0,.45);
  transition: all .25s ease;
}

/* Imagen dentro del recuadro */
#servicios .card__img{
  border-bottom: 1px solid rgba(177, 15, 43, 0.35);
}

/* Hover premium (no exagerado) */
#servicios .card:hover{
  transform: translateY(-4px);
  box-shadow:
    0 20px 60px rgba(177,15,43,.45);
  border-color: rgba(255, 46, 77, 0.85);
}


/* =========================================
   TESTIMONIOS: FONDO ROJO VINOTINTO
   ========================================= */

#testimonios{
  background: linear-gradient(
    180deg,
    #5c0b1c,
    #2b050d
  );
  padding-top: 90px;
  padding-bottom: 90px;
}

/* Ajustar textos dentro de testimonios */
#testimonios .section__title,
#testimonios .section__subtitle,
#testimonios .card__title,
#testimonios .card__text{
  color: #ffffff;
}

/* Tarjetas de testimonios sobre fondo rojo */
#testimonios .card{
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
}

/* Imagen destacada dentro del testimonio */
#testimonios .card__img{
  border-bottom: 1px solid rgba(255,255,255,.25);
}

