:root{
  /* ===== FONDOS MUY OSCUROS ===== */
  --bg0:#020203;         /* negro profundo */
  --bg1:#060006;         /* negro con tinte rojo */
  --card:#0b0305;        /* tarjetas muy oscuras */
  --border:rgba(255,255,255,.08);

  /* ===== ROJOS VIVOS (PROTAGONISTAS) ===== */
  --wine:#3a0509;        /* vinotinto profundo */
  --red:#a3121c;         /* rojo sangre */
  --red2:#d61a26;        /* rojo intenso vivo */

  /* ===== ACENTOS ===== */
  --gold:#e6b65b;        /* dorado cálido */
  --text:#f6ecd8;
  --muted:rgba(246,236,216,.78);
  --soft:rgba(246,236,216,.10);

  --shadow: 0 20px 65px rgba(0,0,0,.75);
  --radius: 18px;
}

/* ===== FONDO GENERAL DRAMÁTICO ===== */
body{
  margin:0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 15% -10%, rgba(214,26,38,.35), transparent 60%),
    radial-gradient(800px 520px at 85% 10%, rgba(163,18,28,.25), transparent 55%),
    linear-gradient(180deg, var(--bg1), var(--bg0));
  overflow-x:hidden;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 420px at 20% -10%, rgba(90,10,16,.35), transparent 60%),
    radial-gradient(850px 520px at 90% 5%, rgba(15,25,80,.40), transparent 55%),
    linear-gradient(180deg, var(--bg1), var(--bg0));
  overflow-x:hidden;
}

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

.container{
  width:min(1120px, 92vw);
  margin-inline:auto;
}

.section{ padding: 78px 0; position:relative; }
.section--dark{ background: linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.32)); }
.section--wine{
  background:
    radial-gradient(820px 420px at 20% 0%, rgba(230,182,91,.15), transparent 60%),
    linear-gradient(180deg, rgba(43,6,10,.95), rgba(20,5,7,.98));
  border-top: 1px solid rgba(230,182,91,.10);
  border-bottom: 1px solid rgba(230,182,91,.10);
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border:1px solid rgba(230,182,91,.18);
  border-radius:999px;
  color: rgba(230,182,91,.95);
  letter-spacing:.4px;
  font-size: 12px;
  text-transform: uppercase;
  background: rgba(0,0,0,.18);
}

.title{
  font-family:"Cinzel", serif;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height:1.05;
  margin: 14px 0 10px;
}

.h2{
  font-family:"Cinzel", serif;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height:1.12;
  margin: 14px 0 12px;
}

.lead{
  color: var(--muted);
  font-size: 16px;
  line-height:1.7;
  max-width: 70ch;
}

.sub{
  color: var(--muted);
  line-height:1.7;
  max-width: 75ch;
  margin: 0;
}

.soft{ color: var(--muted); }

.mt-24{ margin-top:24px; }
.center{ display:flex; justify-content:center; }

/* TOPBAR */
.topbar{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(5,6,10,.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 14px 0;
}
.brand__name{
  font-family:"Cinzel", serif;
  font-weight:700;
  letter-spacing:.5px;
}
.brand__tag{
  display:block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* Intro */
.section--intro{ padding-top: 48px; }
.intro{
  display:grid;
  grid-template-columns: 1.6fr .9fr;
  gap: 26px;
  align-items:start;
}
.intro__card{ position:relative; }

.mini-card{
  background: rgba(13,16,27,.70);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.mini-card h3{
  margin:0 0 8px;
  font-family:"Cinzel", serif;
}
.mini-card p{
  margin:0 0 12px;
  color: var(--muted);
  line-height:1.6;
}
.link-wa{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color: var(--text);
  text-decoration:none;
  font-weight:600;
}
.link-wa .dot{
  width:10px; height:10px; border-radius:50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(230,182,91,.55);
}
.trust-badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 14px;
}
.badge{
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.12);
  color: var(--muted);
}

/* Hero fullscreen */
.hero{
  position:relative;
  min-height: 92vh;
  display:flex;
  align-items:center;
  isolation:isolate;
}
.hero__bg{
  position:absolute;
  inset:0;
  background-image: url("../img/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.02);
  z-index:-3;
}
.hero__overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 500px at 18% 25%, rgba(230,182,91,.12), transparent 60%),
    radial-gradient(900px 550px at 78% 30%, rgba(122,15,22,.25), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.62), rgba(0,0,0,.72));
  z-index:-2;
}
.hero__content{ padding: 78px 0; }

.hero__kicker{
  color: rgba(230,182,91,.95);
  text-transform: uppercase;
  letter-spacing:.6px;
  font-size: 12px;
  margin:0 0 10px;
}
.hero__title{
  font-family:"Cinzel", serif;
  font-size: clamp(34px, 4.1vw, 54px);
  line-height:1.03;
  margin: 0 0 14px;
  max-width: 18ch;
}
.hero__text{
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 70ch;
}
.hero__cta{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  margin-top: 18px;
}
.hero__proof{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  margin-top: 22px;
}
.proof{
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  padding: 12px 14px;
  min-width: 170px;
}
.proof__num{
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
}
.proof__label{
  display:block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

/* =========================
   BUTTONS (limpio)
   ========================= */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  text-decoration:none;
  color: var(--text);
  font-weight:700;
  letter-spacing:.2px;
  background: rgba(255,255,255,.04);
  transition: transform .12s ease, background .12s ease, border-color .12s ease, filter .12s ease;
  max-width: 100%;
}

.btn:hover{ transform: translateY(-1px); border-color: rgba(230,182,91,.25); }

/* Icon chip base (para SVG inline) */
.btn__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 999px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
}

/* Normaliza SVG: evita que se agrande raro */
.btn__icon svg{
  width: 18px;
  height: 18px;
  display:block;
  fill: currentColor;
}

/* Primary WhatsApp */
.btn--primary{
  background: linear-gradient(180deg, #25D366, #128C7E);
  border-color: rgba(37, 211, 102, .55);
  color: #ffffff;
}
.btn--primary:hover{
  filter: brightness(1.05);
  border-color: rgba(37, 211, 102, .75);
}

/* Outline / Ghost */
.btn--outline{
  background: transparent;
  border-color: rgba(230,182,91,.22);
}
.btn--ghost{
  background: rgba(0,0,0,.20);
}

/* Sizes */
.btn--lg{
  padding: 14px 16px;
  border-radius: 16px;
}

/* 🔥 FIX REAL: btn--small no se rompe */
.btn--small{
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
  gap: 8px;
}

.btn--small .btn__icon{
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  box-shadow: none;
}

.btn--small .btn__icon svg{
  width: 14px;
  height: 14px;
}

/* Evita “bloques” por line-height raro en móviles */
.btn span{
  line-height: 1.1;
}

/* Note */
.note{
  display:flex;
  align-items:center;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  color: var(--muted);
  background: rgba(0,0,0,.12);
  max-width: 440px;
}

/* Layout helpers */
.section-head{ margin-bottom: 22px; }
.section-head--light .sub,
.section-head--light{ color: var(--text); }
.section-head--light .sub{ color: rgba(244,233,210,.84); }

.two-col{
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  align-items:center;
}
.two-col--reverse{ grid-template-columns: 1.2fr 1fr; }
.two-col--reverse .two-col__media{ order:2; }
.two-col__copy p{ color: var(--muted); line-height:1.7; }

.portrait{
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.frame{
  width:100%;
  border-radius: var(--radius);
  border: 1px solid rgba(230,182,91,.18);
  box-shadow: 0 18px 55px rgba(0,0,0,.6);
}

/* Checklist */
.checklist{
  list-style:none;
  padding:0;
  margin: 14px 0 18px;
  display:grid;
  gap:10px;
}
.checklist li{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  padding: 12px 12px;
  border-radius: 14px;
  color: var(--muted);
}
.checklist li strong{ color: var(--text); }

/* Grids */
.grid{ display:grid; gap: 16px; }
.grid--3{ grid-template-columns: repeat(3, 1fr); }
.grid--2{ grid-template-columns: repeat(2, 1fr); }

/* Cards */
.card{
  background: rgba(13,16,27,.70);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.card--img img{ height: 220px; object-fit: cover; width:100%; }
.card__body{ padding: 16px; }
.card__body h3{ margin: 0 0 8px; font-family:"Cinzel", serif; }
.card__body p{ margin: 0 0 12px; color: var(--muted); line-height:1.6; }

/* Services */
.service{
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 0;
  background: rgba(0,0,0,.16);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.service img{
  height: 100%;
  min-height: 260px;
  width:100%;
  object-fit: cover;
}
.service__body{ padding: 18px; }
.service__body h3{ margin:0 0 10px; font-family:"Cinzel", serif; }
.service__body p{
  margin:0 0 14px;
  color: rgba(244,233,210,.86);
  line-height: 1.7;
}

/* Testimonials */
.section--testimonials{
  background:
    radial-gradient(820px 420px at 15% 0%, rgba(230,182,91,.10), transparent 60%),
    linear-gradient(180deg, rgba(7,10,18,.65), rgba(0,0,0,.12));
}
.tcard{
  background: rgba(13,16,27,.70);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.tcard img{
  height: 260px;
  width:100%;
  object-fit: cover;
}
.tcard__body{ padding: 14px 14px 16px; }
.tcard__body h3{ margin:0 0 8px; font-family:"Cinzel", serif; }
.tcard__body p{ margin:0; color: var(--muted); line-height:1.6; }

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery img{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  height: 220px;
  width:100%;
  object-fit: cover;
  box-shadow: 0 16px 45px rgba(0,0,0,.55);
}

/* Final convince */
.section--finalconvince{
  background:
    radial-gradient(900px 520px at 85% 20%, rgba(122,15,22,.20), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.35));
}

/* FAQ */
.section--faq{ background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.22)); }
.faqbox{
  background: rgba(13,16,27,.70);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.faqbox h3{ margin:0 0 10px; font-family:"Cinzel", serif; }
.faqbox p{ margin:0; color: var(--muted); line-height: 1.7; }

/* Contact */
.section--contact{
  background:
    radial-gradient(900px 520px at 20% 0%, rgba(230,182,91,.12), transparent 60%),
    linear-gradient(180deg, rgba(43,6,10,.88), rgba(7,10,18,.88));
  border-top: 1px solid rgba(230,182,91,.10);
}
.contact{
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  align-items:center;
}
.cta-stack{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  margin-top: 14px;
}
.contact__note{
  margin-top: 12px;
  color: rgba(244,233,210,.84);
  background: rgba(0,0,0,.16);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 10px 12px;
}

/* Dividers */
.divider{
  height: 34px;
  width: 100%;
  position:relative;
}
.divider--glow{
  background: radial-gradient(700px 28px at 50% 50%, rgba(230,182,91,.18), transparent 70%);
  border-top: 1px solid rgba(230,182,91,.10);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.divider--knife{
  background: linear-gradient(90deg, transparent, rgba(230,182,91,.10), transparent);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(230,182,91,.08);
}

/* Smoke overlay global */
.smoke-overlay{
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    radial-gradient(700px 320px at 18% 18%, rgba(255,255,255,.06), transparent 60%),
    radial-gradient(780px 380px at 75% 30%, rgba(255,255,255,.05), transparent 60%),
    radial-gradient(820px 420px at 45% 80%, rgba(255,255,255,.04), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  mix-blend-mode: screen;
  opacity: .65;
  filter: blur(1px);
}

/* Floating WhatsApp */
.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display:flex;
  align-items:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 999px;
  text-decoration:none;
  background: linear-gradient(180deg, #25D366, #128C7E);
  border: 1px solid rgba(37, 211, 102, .55);
  color:#ffffff;
  box-shadow: 0 20px 55px rgba(0,0,0,.55);
}

.wa-float__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius:999px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.14);
}

.wa-float__icon svg{
  width:18px;
  height:18px;
  display:block;
  fill: currentColor;
}

.wa-float__text{
  font-weight: 800;
  letter-spacing:.2px;
}

/* Responsive */
@media (max-width: 980px){
  .intro{ grid-template-columns: 1fr; }
  .two-col, .contact{ grid-template-columns: 1fr; }
  .grid--3{ grid-template-columns: 1fr; }
  .grid--2{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: repeat(2, 1fr); }
  .service{ grid-template-columns: 1fr; }
  .hero__title{ max-width: 22ch; }
}

@media (max-width: 520px){
  .topbar__inner{ gap: 10px; }
  .brand__tag{ display:none; }
  .gallery{ grid-template-columns: 1fr; }

  /* En móvil el flotante puede quedar solo icono si quieres */
  /* .wa-float__text{ display:none; } */
}





/* =========================================
   FIX DEFINITIVO: botones WhatsApp en CARDS
   Evita iconos verdes rotos / artefactos
   ========================================= */

/* 1. En tarjetas, quitamos overflow conflictivo */
.card,
.service,
.tcard{
  overflow: visible;
}

/* 2. Botones pequeños: icono PLANO (sin chip) */
.card .btn--small .btn__icon,
.service .btn--small .btn__icon{
  width: auto;
  height: auto;
  flex: 0 0 auto;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}

/* 3. SVG pequeño y controlado */
.card .btn--small .btn__icon svg,
.service .btn--small .btn__icon svg{
  width: 14px;
  height: 14px;
  display: block;
  fill: currentColor;
}

/* 4. Ajuste visual del botón small */
.btn--small{
  padding: 9px 12px;
  gap: 8px;
  line-height: 1;
}

/* 5. Evita basura visual por line-height */
.btn--small span{
  line-height: 1.1;
}



/* =========================================
   FIX: ICONOS WHATSAPP GIGANTES (Servicios/Cards)
   Pegar al FINAL del style.css
   ========================================= */

/* Evita que cualquier SVG dentro de .btn se infle */
.btn svg{
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  display: block;
}

/* Botones SMALL: icono pequeño SI o SI */
.btn--small svg{
  width: 16px !important;
  height: 16px !important;
}

/* Botones LARGE: icono normal */
.btn--lg svg{
  width: 18px !important;
  height: 18px !important;
}

/* Si aún usas chip circular, que no crezca */
.btn__icon{
  flex: 0 0 auto;
  overflow: hidden;
}

/* Si el chip existe en small, lo hacemos compacto */
.btn--small .btn__icon{
  width: 28px !important;
  height: 28px !important;
  padding: 0 !important;
  border-radius: 999px;
  box-shadow: none !important;
}


/* ==================================================
   FIX TESTIMONIOS: IMÁGENES GRANDES Y LEGIBLES
   (Capturas de WhatsApp)
   ================================================== */

/* Contenedor del testimonio */
.tcard{
  overflow: hidden;
}

/* Imagen del testimonio */
.tcard img{
  width: 100%;
  height: auto;              /* <- clave */
  max-height: none;
  object-fit: contain;       /* <- no recorta */
  background: #0a0a0a;       /* marco oscuro elegante */
  padding: 10px;
}

/* En móvil: aún más protagonismo */
@media (max-width: 768px){
  .tcard img{
    padding: 6px;
  }
}