:root{
  --bg:#0a0a0a;
  --bg2:#0f0f12;
  --card:#121217;
  --soft:#0d0d10;
  --text:#eaeaf0;
  --muted:#b8b8c6;

  --wine:#7a0019;
  --wine2:#b4002a;
  --gold:#c9a227;

  --ring: rgba(201, 162, 39, .28);
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --radius: 18px;
  --radius2: 26px;

  --container: 1120px;
}

*{ 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(1200px 800px at 20% 0%, rgba(122,0,25,.22), transparent 60%),
              radial-gradient(900px 600px at 90% 10%, rgba(201,162,39,.14), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
}

img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }

.container{
  width:min(var(--container), calc(100% - 32px));
  margin:0 auto;
}

.mt-20{ margin-top:20px; }
.center{ display:flex; justify-content:center; }

/* Topbar */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(10,10,10,.75);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 12px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.brand__mark{
  width:40px;height:40px;
  border-radius: 14px;
  display:grid;place-items:center;
  font-weight:800;
  background: linear-gradient(135deg, rgba(122,0,25,.9), rgba(201,162,39,.55));
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
}
.brand__text{ line-height:1.05; }
.brand__name{ font-weight:700; letter-spacing:.2px; }
.brand__tag{ color:var(--muted); font-size:.86rem; margin-top:2px; }

.nav{
  display:none;
  gap:18px;
  align-items:center;
}
.nav a{ color: var(--muted); font-weight:600; font-size:.95rem; }
.nav a:hover{ color: var(--text); }
.nav__cta{
  padding:10px 14px;
  border-radius: 999px;
  background: rgba(122,0,25,.28);
  border: 1px solid rgba(180,0,42,.35);
  color: var(--text) !important;
}

.nav__toggle{
  width:44px;height:44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(18,18,23,.75);
  display:grid;
  place-items:center;
  gap:4px;
  cursor:pointer;
}
.nav__toggle span{
  width:18px;height:2px;
  background: rgba(234,234,240,.9);
  display:block;
  border-radius:2px;
}

.mobilemenu{
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 10px 16px 16px;
  display:grid;
  gap:10px;
  background: rgba(10,10,10,.92);
}
.mobilemenu a{
  padding:12px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  color: var(--text);
  font-weight:650;
}

/* Hero */
.hero{
  position:relative;
  min-height: 88vh;
  display:grid;
  align-items:end;
  overflow:hidden;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.hero__bg{
  position:absolute; inset:0;
}
.hero__bg img{
  width:100%; height:100%;
  object-fit:cover;
  transform: scale(1.03);
  filter: saturate(1.08) contrast(1.02);
}
.hero__overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(800px 500px at 30% 20%, rgba(122,0,25,.35), transparent 55%),
    radial-gradient(700px 500px at 80% 25%, rgba(201,162,39,.22), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.88));
}
.hero__content{
  position:relative;
  padding: 92px 0 28px;
}
.hero__pill{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(18,18,23,.6);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--muted);
  font-weight:600;
  font-size:.9rem;
}
.hero__title{
  margin: 14px 0 10px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: .2px;
  font-size: clamp(2rem, 7vw, 3.3rem);
  line-height: 1.08;
}
.accent{
  background: linear-gradient(90deg, var(--gold), #fff);
  -webkit-background-clip: text;
  background-clip:text;
  color: transparent;
}
.hero__subtitle{
  margin:0;
  color: rgba(234,234,240,.86);
  max-width: 60ch;
  font-size: 1.02rem;
  line-height:1.6;
}
.hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 18px;
  justify-content: center;
  align-items: center;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius: 999px;
  padding: 14px 16px;
  font-weight: 750;
  border: 1px solid transparent;
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  user-select:none;
  white-space:nowrap;
}
.btn:active{ transform: translateY(1px); }

.btn__icon{
  width:18px;height:18px;
}

.btn--primary{
  background: linear-gradient(135deg, rgba(59, 122, 0, 0.95), rgba(18, 212, 83, 0.85));
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 18px 40px rgba(0,0,0,.30);
}
.btn--primary:hover{
  box-shadow: 0 22px 55px rgba(0,0,0,.38);
}

.btn--ghost{
  background: rgba(18,18,23,.55);
  border-color: rgba(255,255,255,.10);
  color: var(--text);
}
.btn--ghost:hover{
  background: rgba(18,18,23,.75);
}

.btn--block{ width:100%; }

.hero__trust{
  margin-top: 16px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.trust__item{
  background: rgba(18,18,23,.55);
  border: 1px solid rgba(255,255,255,.08);
  padding: 10px 12px;
  border-radius: 16px;
  min-width: 120px;
}
.trust__k{ color: var(--muted); font-size:.82rem; }
.trust__v{ font-weight:800; }

/* Sections */
.section{
  padding: 52px 0;
}
.section--soft{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
}
.section--contact{
  background:
    radial-gradient(700px 500px at 10% 30%, rgba(122,0,25,.25), transparent 60%),
    radial-gradient(600px 420px at 95% 30%, rgba(201,162,39,.14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  border-top: 1px solid rgba(255,255,255,.06);
}

.section__head{
  margin-bottom: 18px;
}
.section__head h2{
  margin:0 0 8px;
  font-family:"Playfair Display", serif;
  font-size: clamp(1.6rem, 5.2vw, 2.4rem);
  letter-spacing:.2px;
}
.section__head p{
  margin:0;
  color: var(--muted);
  max-width: 70ch;
  line-height:1.65;
}

/* Grid / Cards */
.grid{
  display:grid;
  gap:14px;
}
.grid--2{
  grid-template-columns: 1fr;
}
.grid--services{
  grid-template-columns: 1fr;
  gap: 14px;
}
.card{
  background: rgba(18,18,23,.65);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 16px 44px rgba(0,0,0,.25);
}
.card--line{
  position:relative;
}
.card--line:before{
  content:"";
  position:absolute;
  left:0; top:0; bottom:0;
  width:4px;
  border-radius: 18px 0 0 18px;
  background: linear-gradient(180deg, var(--gold), var(--wine2));
  opacity:.85;
}
.card--line h3{ margin:0 0 6px; }
.card--line p{ margin:0; color: var(--muted); line-height:1.6; }

/* Service card */
.service{
  overflow:hidden;
  border-radius: var(--radius2);
  background: rgba(18,18,23,.62);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
}

/* ✅ SERVICIOS: imagen COMPLETA (sin recorte) */
.service__img{
  /* mantiene consistencia visual sin cortar */
  aspect-ratio: 16 / 10;
  background: rgba(0,0,0,.22);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 10px;
}
.service__img img{
  width:100%;
  height:100%;
  object-fit: contain; /* <- clave: NO recorta */
  border-radius: 18px; /* ligera curvatura interna */
}

.service__body{
  padding: 16px;
}
.service__body h3{
  margin:0 0 6px;
  font-weight: 850;
}
.service__body p{
  margin:0 0 10px;
  color: var(--muted);
  line-height:1.6;
}
.link{
  display:inline-flex;
  gap:8px;
  align-items:center;
  color: #fff;
  font-weight: 800;
  opacity:.92;
}
.link:hover{ opacity:1; text-decoration: underline; text-decoration-thickness: 2px; }

/* CTA wide */
.cta{
  margin-top: 18px;
  display:grid;
  gap:14px;
  align-items:center;
  padding: 18px;
  border-radius: var(--radius2);
  background: linear-gradient(135deg, rgba(122,0,25,.25), rgba(18,18,23,.72));
  border: 1px solid rgba(201,162,39,.20);
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
}
.cta__content h3{
  margin:0 0 6px;
  font-family:"Playfair Display", serif;
  font-size:1.4rem;
}
.cta__content p{
  margin:0;
  color: var(--muted);
  line-height:1.6;
}

/* Slider */
.slider{
  position:relative;
}
.slider__track{
  display:flex;
  gap:16px;
  transition: transform .28s ease;
  will-change: transform;
}

/* ✅ TESTIMONIOS: imagen COMPLETA + puntas suaves */
.shot{
  flex: 0 0 86%;
  margin:0;
  border-radius: 26px;            /* curvatura suave en puntas */
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.25);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 12px;                  /* marco interno elegante */
}
.shot img{
  width:100%;
  height:auto;                    /* elimina recorte */
  object-fit: contain;            /* <- clave: NO recorta */
  border-radius: 20px;            /* bordes suaves dentro */
}

.slider__controls{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top: 12px;
}
.iconbtn{
  width:44px;height:44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(18,18,23,.65);
  color: var(--text);
  font-size: 1.6rem;
  cursor:pointer;
}

/* FAQ */
.faq{
  display:grid;
  gap:10px;
}
details{
  border-radius: 18px;
  background: rgba(18,18,23,.58);
  border: 1px solid rgba(255,255,255,.08);
  padding: 12px 14px;
}
summary{
  cursor:pointer;
  font-weight: 850;
}
details p{
  color: var(--muted);
  line-height:1.65;
  margin:10px 0 0;
}

/* Contact */
.contact{
  display:grid;
  gap:14px;
}
.contact__card{
  border-radius: var(--radius2);
  background: rgba(18,18,23,.62);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
  padding: 18px;
}
.contact__card h2{
  margin:0 0 10px;
  font-family:"Playfair Display", serif;
  font-size: clamp(1.6rem, 5.2vw, 2.2rem);
}
.contact__card p{
  margin:0 0 14px;
  color: rgba(234,234,240,.86);
  line-height:1.7;
}
.fineprint{
  margin-top: 12px !important;
  color: rgba(184,184,198,.85) !important;
  font-size: .9rem;
}

.contact__aside{
  display:grid;
  gap:12px;
}
.glass{
  border-radius: var(--radius2);
  padding: 16px;
  background: rgba(18,18,23,.42);
  border: 1px solid rgba(255,255,255,.08);
}
.glass h3{ margin:0 0 10px; }
.bullets{
  margin:0;
  padding-left: 18px;
  color: var(--muted);
  line-height:1.8;
}

/* Footer */
.footer{
  padding: 26px 0 70px;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.15);
}
.footer__inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.brand__mark--small{ width:34px;height:34px; border-radius: 12px; }
.footer__name{ font-weight: 850; }
.footer__copy{ color: var(--muted); font-size:.92rem; margin-top:2px; }
.footer__links{
  display:flex; gap:14px; flex-wrap:wrap;
  color: var(--muted);
  font-weight:650;
}
.footer__links a:hover{ color: var(--text); }

/* Floating WA */
.floatwa{
  position: fixed;
  right: 14px;
  bottom: 14px;
  width:56px;
  height:56px;
  border-radius: 18px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, #1fa855, #25d366);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 22px 60px rgba(0,0,0,.45);
  z-index: 60;
}
.floatwa img{ width:22px;height:22px; }

/* Desktop improvements */
@media (min-width: 900px){
  .nav{ display:flex; }
  .nav__toggle{ display:none; }
  .mobilemenu{ display:none !important; }

  .grid--2{ grid-template-columns: repeat(2, 1fr); }
  .grid--services{ grid-template-columns: repeat(3, 1fr); }

  /* servicios siguen completos en desktop */
  .cta{ grid-template-columns: 1fr auto; padding: 22px; }
  .contact{ grid-template-columns: 1.2fr .8fr; align-items:start; }

  .shot{ flex-basis: 42%; }
  /* ✅ eliminado height fijo que recortaba */
}