/* ============================================================
   🔥 SISTEMA TIPOGRÁFICO PREMIUM — INTER VARIABLE + PLAYFAIR
   Estilo tipo Apple | Stripe | Vercel | Linear
   ============================================================ */

/* Carga de Inter Variable desde CDN */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@700;800&display=swap');

/* Base global */
body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.62;
  color: #2A2A2A;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "calt", "liga", "kern";
}

/* TITULARES (Playfair Premium) */
h1, h2, h3,
.hero-title,
.section-header h2,
.service-card h3,
.card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: #1A1A1A;
}

/* HERO — título principal */
.hero-title {
  font-weight: 800;
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.6px;
}

/* Subtítulos y textos secundarios */
.hero-sub,
.section-header p,
.card p,
.service-card p,
.form small,
.foot-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 0.1px;
  line-height: 1.58;
  color: #444;
}

/* NAV + enlaces */
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.1px;
  color: #222;
}

/* Marca junto al logo */
.brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -0.3px;
  font-size: clamp(20px, 2vw, 24px);
}

/* Botones premium */
.btn,
.btn-primary,
.btn-outline,
.btn-ghost {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.25px;
}

/* CTA “Pedir por WhatsApp” */
.btn-cta {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.25px;
  color: #fff !important;     /* Texto en blanco */
}

/* Footer links */
.foot-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 0.15px;
}

/* Ajuste general en móvil */
@media (max-width: 480px){
  h1, .hero-title { font-size: 34px; }
  .brand-name { font-size: 20px; }
  body { font-size: 16px; }
}



/* =================== TIPOGRAFÍA PREMIUM =================== */

/* Texto base */
body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;           /* ANTES podía estar en 500 o 600 (muy pesado) */
  line-height: 1.62;
  color: #2B2B2B;
}

/* Títulos principales */
.hero-title,
.section-header h2,
.service-card h3,
.card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;           /* ANTES 800-900, demasiado grueso */
  letter-spacing: -0.5px;
  color: #2B2B2B;
}

/* H1 específico del HERO */
.hero-title {
  font-weight: 800;           /* este sí queda más fuerte — estilo luxury */
  line-height: 1.08;
}

/* Subtítulos */
.hero-sub,
.section-header p,
.card p,
.service-card p,
.form small,
.foot-sub {
  font-weight: 400;
  letter-spacing: 0.1px;
  line-height: 1.58;
  color: #555;
}

/* Botones */
.btn,
.btn-primary,
.btn-outline,
.btn-ghost {
  font-weight: 600;           /* ANTES 700–800 → muy pesado */
  letter-spacing: 0.2px;
}

/* Menú de navegación */
.nav-links a {
  font-weight: 500;           /* ANTES 600–700 → pesado */
  letter-spacing: 0.1px;
}

/* Nombre de marca al lado del logo */
.brand-name {
  font-family: "Playfair Display", serif;
  font-weight: 600;           /* ANTES 800 → muy grueso */
  letter-spacing: -0.3px;
  font-size: clamp(18px, 2vw, 22px);
  color: #1F1F1F;
}

/* Footer */
.foot-links a {
  font-weight: 400;           /* ANTES 600 → muy fuerte */
}


/* ================== THEME TOKENS ================== */
:root{
  --rose:#F6E7E8;
  --burgundy:#6B0F1A;
  --gold:#C8AA6E;
  --leaf:#2E4D3D;
  --ivory:#FFF8F0;
  --charcoal:#1F1F1F;
  --text:#2B2B2B;
  --muted:#f7f4f1;

  --radius:16px;
  --radius-sm:12px;

  --shadow-xs:0 4px 12px rgba(0,0,0,.07);
  --shadow-sm:0 8px 20px rgba(0,0,0,.10);
  --shadow:0 14px 32px rgba(0,0,0,.14);
  --shadow-lg:0 20px 54px rgba(0,0,0,.18);
}

/* ================== RESET ================== */
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text); background:#fff; line-height:1.62; text-rendering:optimizeLegibility;
}
img{max-width:100%; display:block}

/* ================== LAYOUT ================== */
.container{width:min(1200px, 92%); margin-inline:auto}
.section{padding:80px 0}
.section.muted{background:var(--ivory)}
.section-header{text-align:center; margin-bottom:32px}
.section-header h2{
  font-family:"Playfair Display", serif; font-weight:800;
  font-size:clamp(26px, 3.4vw, 40px); color:var(--leaf); margin:0 0 8px;
}
.center{text-align:center}
.mt-16{margin-top:16px}
.mt-24{margin-top:24px}

/* ================== HEADER ================== */
.site-header{
  position:sticky; top:0; z-index:60;
  backdrop-filter: blur(10px) saturate(1.2);
  background: rgba(255,255,255,.78);
  border-bottom:1px solid rgba(0,0,0,.06);
}
.nav{display:flex; align-items:center; justify-content:space-between; padding:12px 0}
.brand{display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--charcoal); font-weight:800}
.logo{height:38px}
.nav-links{display:flex; align-items:center; gap:22px}
.nav-links a{color:#2d2d2d; text-decoration:none; font-weight:700}

/* CTA superior mejorado */
.btn-cta{
  padding:10px 18px; border-radius:999px;
  background: radial-gradient(120% 180% at 30% 20%, #8F2230, var(--burgundy));
  color:#fff; box-shadow:0 10px 24px rgba(107,15,26,.35);
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.btn-cta:hover{ transform:translateY(-1px); box-shadow:0 16px 32px rgba(107,15,26,.42) }

/* Mobile nav */
.nav-toggle{display:none; width:42px; height:38px; border:0; background:transparent}
.nav-toggle span{display:block; height:2px; background:#333; margin:7px 0; transition:.3s}
@media (max-width: 860px){
  .nav-toggle{display:block}
  .nav-links{
    position:absolute; left:0; right:0; top:64px; padding:18px;
    background:#fff; border-bottom:1px solid #eee; display:none; flex-direction:column; gap:14px
  }
  .nav-links.open{display:flex}
}

/* ================== BOTONES ================== */
.btn{display:inline-flex; align-items:center; justify-content:center; gap:8px; padding:12px 18px; border-radius:999px; text-decoration:none; font-weight:800; transition: transform .12s, box-shadow .12s, background .12s, border-color .12s}
.btn:hover{transform:translateY(-1px)}
.btn-primary{background: radial-gradient(120% 180% at 30% 20%, #8F2230, var(--burgundy)); color:#fff; box-shadow:var(--shadow); border:1px solid rgba(255,255,255,.12)}
.btn-outline{border:1.6px solid var(--burgundy); color:var(--burgundy); background:#fff}
.btn-ghost{border:1px solid rgba(0,0,0,.12); color:#333; background:#fff}
.btn-lg{padding:14px 22px; font-size:1.05rem}
.pill-cta{border-radius:999px}

/* ================== HERO (Slider) ================== */
.hero{position:relative; min-height:68vh; display:grid; place-items:center; overflow:hidden; isolation:isolate; background: linear-gradient(180deg, #B35A6B, #D6D3D1)}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,0.25) 0%,
      rgba(0,0,0,0.45) 40%,
      rgba(0,0,0,0.65) 100%
    );
}
.hero-content{position:absolute; inset:auto 0 8%; text-align:center; color:#fff; padding:0 12px}
.hero-title{font-family:"Playfair Display", serif; font-weight:800; font-size:clamp(36px, 4.8vw, 64px); margin:0 0 12px; letter-spacing:.3px}
.hero-title .accent{color:#FFDCCA; text-shadow:0 8px 24px rgba(0,0,0,.25)}
.hero-sub{font-size:clamp(16px, 2.2vw, 20px); opacity:.96; margin:0 0 20px}
.cta-row{display:flex; gap:14px; justify-content:center; flex-wrap:wrap}

/* Swiper ajustes */
.hero .swiper{position:absolute; inset:0; z-index:0}
.hero .swiper-slide img{width:100%; height:100%; object-fit:cover; filter:contrast(1.05) saturate(1.05)}
.swiper-button-prev, .swiper-button-next{color:#fff}
.swiper-pagination-bullet{background:rgba(255,255,255,.7)}
.swiper-pagination-bullet-active{background:#fff}

/* ================== RAZONES (cards superiores) ================== */
.grid-3{display:grid; gap:20px; grid-template-columns: repeat(3, 1fr)}
.card{
  background: linear-gradient(180deg,#fff,#fffaf2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding:22px; border: 1px solid rgba(200,170,110,.28);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.card h3{margin:8px 0 6px; color:#252525; font-weight:900}
.card p{margin:0; color:#5c5c5c}
.card:hover{ transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(200,170,110,.55); background:#fff }
.card-razon{position:relative; padding-top:28px}
.razon-icon{position:absolute; top:-14px; left:18px; font-size:24px; filter:drop-shadow(0 2px 10px rgba(0,0,0,.2))}

@media (max-width: 800px){ .grid-3{grid-template-columns:1fr} }

/* ================== SERVICIOS ================== */
.grid-4{display:grid; gap:20px; grid-template-columns: repeat(4, 1fr)}
.service-card{
  background:#fff; border-radius: var(--radius); overflow:hidden;
  border: 1px solid rgba(200,170,110,.28); box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, filter .25s ease;
}
.service-card img{width:100%; height:210px; object-fit:cover; filter:saturate(1.02)}
.service-card h3{margin:14px 18px 6px; color:#272727; font-weight:900}
.service-card p{margin:0 18px 10px; color:#616161}
.service-card .bullets{margin:0 20px 20px; padding-left:18px}
.service-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(200,170,110,.55); filter: drop-shadow(0 12px 18px rgba(200,170,110,.18)) }

@media (max-width: 980px){ .grid-4{grid-template-columns:repeat(2,1fr)} }
@media (max-width: 640px){ .grid-4{grid-template-columns:1fr} }

/* ================== MOSAICO PORTAFOLIO ================== */
.mosaic{display:grid; gap:12px; grid-template-columns:repeat(6,1fr)}
.mosaic img{width:100%; height:200px; object-fit:cover; border-radius:14px; transition:transform .25s, filter .25s}
.mosaic img:hover{transform:scale(1.02); filter:contrast(1.05) saturate(1.05)}
@media (max-width:980px){ .mosaic{grid-template-columns:repeat(3,1fr)} }
@media (max-width:560px){ .mosaic{grid-template-columns:repeat(2,1fr)} }

/* ================== FAQ ================== */
.faq details{
  background:#fff; border-radius:14px; padding:14px 16px; margin:10px 0;
  border:1px solid rgba(0,0,0,.08); box-shadow:var(--shadow-sm);
  transition:border-color .2s ease, box-shadow .2s ease;
}
.faq summary{cursor:pointer; font-weight:900; color:var(--leaf)}
.faq details[open]{border-color:rgba(200,170,110,.45); box-shadow:var(--shadow)}

/* ================== FORM ================== */
.form{max-width:920px; margin:0 auto}
.form .form-field{display:flex; flex-direction:column; gap:8px}
.form input,.form select,.form textarea{
  padding:13px 14px; border-radius:14px;
  border:1px solid rgba(0,0,0,.10); background:#fff; outline:none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form input::placeholder,.form textarea::placeholder{color:#9c9c9c}
.form input:focus,.form select:focus,.form textarea:focus{
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,170,110,.22);
  background:#fffef9;
}
.form small{color:#6c6c6c}
.form-actions{display:flex; gap:12px; align-items:center; flex-wrap:wrap; margin-top:12px}
.form-status{margin-top:12px; color:var(--leaf); font-weight:900}

/* Ocultar sello Cloudflare del widget */
.cf-challenge-logo,
.cf-turnstile iframe + div{ display:none !important; }

/* ================== FOOTER ================== */
.site-footer{
  background: radial-gradient(100% 140% at 10% 0%, #faf5ea, #f0e5d2);
  border-top: 1px solid rgba(200,170,110,.28);
}
.footer-grid{display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:28px; padding:40px 0}
.brand-row{display:flex; align-items:center; gap:10px}
.logo-sm{height:30px}
.foot-sub{color:#555}
.foot-links{list-style:none; margin:0; padding:0}
.foot-links li{margin:8px 0}
.foot-links a{color:#2e2e2e; text-decoration:none; font-weight:600}
.foot-links a:hover{text-decoration:underline}
.foot-legal{
  border-top:1px dashed rgba(200,170,110,.45);
  padding:14px 0; color:#6b6b6b
}
.foot-legal .container{display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap}

/* Botones sociales */
.socials{display:flex; gap:12px; align-items:center; margin-top:12px}
.social-btn{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px; border-radius:12px; text-decoration:none; color:#1f1f1f;
  background:#fff; border:1px solid rgba(0,0,0,.08); box-shadow:var(--shadow-xs);
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
}
.social-btn:hover{ transform:translateY(-2px); box-shadow:var(--shadow) }
.social-btn span{font-weight:800}

/* ================== WA FLOTANTE ================== */
.wa-float{
  position:fixed; right:18px; bottom:18px; z-index:70;
  display:flex; align-items:center; gap:10px;
  background: linear-gradient(135deg, #25D366, #1EBE57);
  color:#fff; text-decoration:none; border-radius:18px;
  padding:10px 12px; box-shadow:0 16px 38px rgba(30,190,87,.35);
  transition:transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.wa-float:hover{ transform:translateY(-2px); box-shadow:0 22px 44px rgba(30,190,87,.42) }
.wa-label{font-weight:900; letter-spacing:.2px}

/* ================== REVEAL ================== */
.reveal{opacity:0; transform:translateY(16px); transition:opacity .6s, transform .6s}
.reveal.visible{opacity:1; transform:none}

/* Texto del CTA superior en blanco (para resaltar) */
.btn-cta{ color:#fff !important }

/* Marca pro al lado del logo */
.brand-name{
  font-family:"Playfair Display", serif;
  font-weight:800;
  letter-spacing:.3px;
  font-size: clamp(18px, 2.2vw, 22px);
  color:#1f1f1f;
}

/* Logo un poco más grande sin romper el header */
.logo{ height:46px }       /* antes 38px */
.logo-sm{ height:34px }

/* Scroll suave al hacer click en brand / links */
html{ scroll-behavior:smooth }

/* Afinamiento responsive móvil */
@media (max-width: 480px){
  .hero{ min-height: 64vh }
  .hero-content{ inset:auto 0 10%; padding:0 8px }
  .cta-row .btn{ padding:10px 14px }
  .nav{ padding:10px 0 }
  .footer-grid{ grid-template-columns:1fr; }
  .grid-4{ grid-template-columns:1fr; }
  .grid-3{ grid-template-columns:1fr; }
}

/* Ocultar badge de Cloudflare Turnstile */
.cf-challenge-logo,
.cf-turnstile iframe + div{
  display:none !important;
}

/* =================== TIPOGRAFÍA PREMIUM =================== */

/* Texto base */
body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;           /* ANTES podía estar en 500 o 600 (muy pesado) */
  line-height: 1.62;
  color: #2B2B2B;
}

/* Títulos principales */
.hero-title,
.section-header h2,
.service-card h3,
.card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;           /* ANTES 800-900, demasiado grueso */
  letter-spacing: -0.5px;
  color: #2B2B2B;
}

/* H1 específico del HERO */
.hero-title {
  font-weight: 800;           /* este sí queda más fuerte — estilo luxury */
  line-height: 1.08;
}

/* Subtítulos */
.hero-sub,
.section-header p,
.card p,
.service-card p,
.form small,
.foot-sub {
  font-weight: 400;
  letter-spacing: 0.1px;
  line-height: 1.58;
  color: #555;
}

/* Botones */
.btn,
.btn-primary,
.btn-outline,
.btn-ghost {
  font-weight: 600;           /* ANTES 700–800 → muy pesado */
  letter-spacing: 0.2px;
}

/* Menú de navegación */
.nav-links a {
  font-weight: 500;           /* ANTES 600–700 → pesado */
  letter-spacing: 0.1px;
}

/* Nombre de marca al lado del logo */
.brand-name {
  font-family: "Playfair Display", serif;
  font-weight: 600;           /* ANTES 800 → muy grueso */
  letter-spacing: -0.3px;
  font-size: clamp(18px, 2vw, 22px);
  color: #1F1F1F;
}

/* Footer */
.foot-links a {
  font-weight: 400;           /* ANTES 600 → muy fuerte */
}

/* ---------- Ocultar sello/branding de Cloudflare Turnstile ---------- */
/* Varias formas en las que Turnstile inyecta su badge, cubrimos todas: */

/* contenedor adicional que algunos builds insertan junto al iframe */
.cf-turnstile iframe + div {
  display: none !important;
}

/* logotipo en contenedores internos que a veces aparecen */
.cf-turnstile .cf-challenge-logo,
.cf-turnstile [class*="challenge-"] [class*="logo"] {
  display: none !important;
}

/* enlaces de privacidad/ayuda que acompañan al badge */
.cf-turnstile a[href*="cloudflare.com"],
.cf-turnstile a[href*="privacy"],
.cf-turnstile a[href*="help"] {
  display: none !important;
}

/* por si el vendor cambia el árbol y deja un wrapper genérico debajo */
.cf-turnstile > div[style*="position"],
.cf-turnstile > div:has(a[href*="cloudflare"]) {
  display: none !important;
}

/* Ajuste estético del contenedor de estado para que no quede hueco */
.cf-turnstile,
.cf-turnstile * {
  background: transparent !important;
}

/* Opcional: bordes suaves en la imagen abierta */
.pswp__img{ border-radius: 12px; }
.portfolio a{ display:block; }

/* Footer - Texto más fresco en Instagram y WhatsApp */
footer .socials span,
footer .socials a span {
  font-weight: 400 !important;      /* más liviano */
  color: #333 !important;           /* tono sobrio */
  letter-spacing: 0.15px;           /* aire elegante */
}

/* Opcional para que parezca más “Apple style” */
footer .socials a {
  padding: 6px 10px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
}

/* OCULTAR CUALQUIER LOGO, IMG O ENLACE DE CLOUDFLARE */
.cf-turnstile img,
.cf-turnstile svg,
.cf-turnstile a[href*="cloudflare"],
.cf-turnstile a[href*="privacy"],
.cf-turnstile a[href*="help"],
.cf-turnstile .cf-challenge-logo,
.cf-turnstile iframe + div,
.cf-turnstile div[style*="background-image"],
.cf-turnstile div[style*="cloudflare"] {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Forzar limpieza visual */
.cf-turnstile, .cf-turnstile * {
    background: transparent !important;
}

/* Mantén tu CSS original. Añadimos solo el refuerzo anti-badge seguro. */

/* Ocultar el sello/branding del widget si llegara a inyectarse */
.cf-turnstile .cf-challenge-logo,
.cf-turnstile iframe + div,
.cf-turnstile a[href*="cloudflare"],
.cf-turnstile a[href*="privacy"],
.cf-turnstile a[href*="help"]{
  display:none !important;
}

.hero-content {
  position: absolute;
  inset: auto 0 8%;
  text-align: center;
  color: #fff;
  padding: 0 12px;
  z-index: 5;
}

.hero-content::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: -40px; bottom: -40px;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.10) 0%,
    rgba(0,0,0,0.45) 80%
  );
  filter: blur(6px);
  z-index: -1;
  border-radius: 12px;
}

.logo {
  height: 54px;   /* antes 46px */
}

@media (max-width: 860px) {
  .logo {
    height: 48px; /* que no rompa el menú móvil */
  }
}

.turnstile-error {
  color: #b00020;
  font-weight: 600;
  margin-top: 4px;
  text-align: center;
}

/* === HERO: Filtro universal para legibilidad del texto === */

/* 1) La capa base: degradado negro elegante (reemplaza el mix-blend actual) */
.hero-overlay {
  position: absolute;
  inset: 0;
  /* Degradado vertical más presente para todos los casos (claros u oscuros) */
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0.25) 0%,
      rgba(0,0,0,0.45) 40%,
      rgba(0,0,0,0.65) 100%
    ) !important;
  z-index: 1; /* por encima de la imagen, por debajo del texto */
}

/* 2) Asegura que la imagen del slider esté por debajo */
.hero .swiper {
  position: absolute;
  inset: 0;
  z-index: 0 !important; /* imagen al fondo */
}

/* 3) Asegura que el bloque de texto quede por encima */
.hero-content {
  position: absolute;
  inset: auto 0 8%;
  text-align: center;
  color: #fff;
  padding: 0 12px;
  z-index: 5 !important; /* texto por encima del overlay */
}

/* 4) Refuerzo de contraste del título (editorial elegante, sin “caja”) */
.hero-title {
  color: #fff;
  text-shadow:
    0 0 8px rgba(0,0,0,0.55),
    0 2px 18px rgba(0,0,0,0.6);
  -webkit-text-stroke: 0.6px rgba(0,0,0,0.18);
}

/* 5) (Opcional) Si aún lees poco en fotos muy claras, activa el blur detrás del texto.
   Para usarlo, envuelve tu h1 + p en un <div class="hero-text-box"> (ver bloque HTML abajo). */
.hero-text-box {
  display: inline-block;
  padding: 22px 28px;
  backdrop-filter: blur(12px) saturate(130%);
  background: rgba(0,0,0,0.22);
  border-radius: 16px;
  margin-bottom: 18px;
}

.hero-title {
  color: #fff !important;
  text-shadow:
      0px 0px 6px rgba(0,0,0,0.55),
      0px 2px 16px rgba(0,0,0,0.65),
      0px 4px 32px rgba(0,0,0,0.70);
  -webkit-text-stroke: 0.8px rgba(0,0,0,0.25);
}

.hero-sub {
  color: #fff !important;
  text-shadow:
      0px 0px 4px rgba(0,0,0,0.55),
      0px 1px 8px rgba(0,0,0,0.60);
}

/* === HERO: imagen más clara, con contraste y nitidez sutil === */
.hero .swiper-slide img{
  /* ya tienes filter; lo afinamos un poco más */
  filter:
    contrast(1.10)      /* +10% contraste */
    saturate(1.06)      /* +6% color */
    brightness(1.04)    /* +4% luz */
    /* Un toque de nitidez perceptual */
    drop-shadow(0 0 0 rgba(0,0,0,0)) /* (hack para motores) */;
  transform: translateZ(0);          /* fuerza composición GPU */
  will-change: filter;
}

/* Vignette súper sutil en los bordes para “enmarcar” sin oscurecer */
.hero::after {
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(120% 90% at 50% 80%,
      rgba(0,0,0,0) 40%,
      rgba(0,0,0,0.12) 100%);
  pointer-events:none;
  z-index:2; /* por encima de la imagen, por debajo del texto */
}

/* Asegura el stacking correcto */
.hero .swiper { z-index:0; }
.hero-overlay { z-index:1; background: transparent !important; } /* dejamos overlay “transparente” */
.hero-content { z-index:5; }

/* Realce editorial del texto (sin cajas ni oscurecer la foto) */
.hero-title{
  color:#fff !important;
  text-shadow:
    0 0 6px rgba(0,0,0,.45),
    0 2px 14px rgba(0,0,0,.55),
    0 6px 28px rgba(0,0,0,.60);
  -webkit-text-stroke:.6px rgba(0,0,0,.18);
}
.hero-sub{
  color:#fff !important;
  text-shadow:
    0 0 4px rgba(0,0,0,.45),
    0 2px 10px rgba(0,0,0,.50);
}

/* === CTA superior: texto blanco siempre === */
.btn-cta,
.btn-cta * {
  color: #fff !important;
}

/* === CTA: forzar texto blanco en todos los estados === */
.btn-cta,
.btn-cta:visited,
.btn-cta:active,
.btn-cta:hover,
.btn-cta:focus {
  color: #fff !important;
}

/* por si adentro usas <span> o un ícono */
.btn-cta span,
.btn-cta svg {
  color: #fff !important;
  fill: #fff !important;
}

/* a veces el selector del header es más específico: reforzamos */
.site-header .btn-cta,
.nav .btn-cta,
.nav-links .btn-cta {
  color: #fff !important;
}

/* Control del tamaño del logo mediante variables */
.logo {
  height: var(--logo-h-desktop);
}

@media (max-width: 860px) {
  .logo {
    height: var(--logo-h-mobile);
  }
}

/* Ajuste fino del logo */
:root {
  --logo-h-desktop: 66px;
  --logo-h-mobile: 52px;
}

/* HERO Desktop Optimizado */
@media (min-width: 1024px) {
  .hero .swiper-slide img {
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
    image-rendering: auto;
    filter: contrast(1.08) saturate(1.08) brightness(1.02);
  }
}

/* Cine Effect */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0) 50%, rgba(0,0,0,0.18) 100%);
  pointer-events: none;
  z-index: 2;
}

/* HERO: ajuste fino solo para pantallas grandes (móvil queda igual) */
@media (min-width: 1024px) {
  .hero .swiper-slide img{
    object-fit: cover;
    object-position: center;
    transform: scale(1.02); /* leve para evitar vacíos sin recortar de más */
    image-rendering: auto;
    filter: contrast(1.08) saturate(1.08) brightness(1.02); /* nitidez sutil */
  }
}

/* Efecto cinematográfico sutil (opcional, no afecta interacción) */
.hero::after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(circle at center,
              rgba(0,0,0,0) 50%, rgba(0,0,0,0.18) 100%);
  pointer-events:none;
  z-index:2;
}

/* === HERO: ajustes solo para escritorio (móvil queda intacto) ================ */

/* 1) Nitidez y zoom MUY leve UNICAMENTE en escritorio */
@media (min-width: 1024px) {
  .hero .swiper-slide img{
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);                 /* leve, evita bordes sin recortar */
    image-rendering: auto;
    filter: contrast(1.08) saturate(1.08) brightness(1.02);
  }
}

/* 2) Efecto “cine” UNICAMENTE en escritorio (evita oscurecer móvil) */
@media (min-width: 1024px) {
  .hero::after{
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center,
                 rgba(0,0,0,0) 50%, rgba(0,0,0,0.18) 100%);
    pointer-events: none;
    z-index: 2;                               /* por encima de la imagen */
  }
}

/* 3) Asegurar stacking correcto (texto por encima del after y overlay) */
.hero-content{ z-index: 5; position: absolute; inset:auto 0 8%; }
.hero-overlay{ z-index: 1; }                  /* tu overlay actual */


/* === BLOQUE SEGURO PARA HERO (pégalo al final de /css/styles.css) ===========
   - Móvil: queda EXACTAMENTE igual que antes (sin filtros, sin transform).
   - Desktop: usa versión nítida y aplica un leve realce opcional.
============================================================================ */

/* Base: asegura cobertura y centrado en todas las vistas */
.hero .swiper-slide picture,
.hero .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Desktop ≥1024px: leve realce (puedes ajustar o eliminar si no lo deseas) */
@media (min-width: 1024px) {
  .hero .swiper-slide img {
    transform: scale(1.02);
    filter: contrast(1.08) saturate(1.06) brightness(1.02);
  }
  .hero::after {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,0) 50%, rgba(0,0,0,0.18) 100%);
    pointer-events: none; z-index: 2;
  }
}

/* Blindaje móvil: anula cualquier filtro/escala residual si existiera */
@media (max-width: 1023.98px) {
  .hero .swiper-slide img { transform: none !important; filter: none !important; }
  .hero::after { content: none !important; }
}

/* Orden de capas clásico */
.hero .swiper { z-index: 0; }
.hero-overlay   { z-index: 1; }
.hero-content   { z-index: 5; position: absolute; inset: auto 0 8%; }

/* HERO: escritorio (móvil ya está bien) */
@media (min-width: 1024px) {
  .hero .swiper-slide img{
    object-fit: cover;
    object-position: center;
    transform: scale(1.00);             /* era 1.02; bajamos el zoom para preservar detalle */
    filter: none;                       /* quita realces si la nueva foto ya es nítida */
    image-rendering: auto;
  }
  /* Si aún quieres un toque de “punch”:
  .hero .swiper-slide img{ filter: contrast(1.03) saturate(1.02); }
  */
}

/* Ultra-panorámicas (monitores muy anchos) → ajusta encuadre sin zoom extra */
@media (min-aspect-ratio: 16/9) and (min-width: 1280px) {
  /* puedes mover el encuadre si tu imagen tiene sujeto desplazado */
  .hero .swiper-slide:nth-child(1) img { object-position: center 45%; } /* ejemplo slide 1 */
  .hero .swiper-slide:nth-child(2) img { object-position: center; }     /* ejemplo slide 2 */
  .hero .swiper-slide:nth-child(3) img { object-position: center 55%; } /* ejemplo slide 3 */
}

/* Botones del hero siempre clicables */
.hero-content { z-index: 10 !important; pointer-events: auto !important; }

/* El lienzo y la overlay NO interceptan el click */
.hero .swiper,
.hero-overlay { pointer-events: none !important; }

/* Controles del Swiper sí deben quedar clicables */
.hero .swiper .swiper-button-prev,
.hero .swiper .swiper-button-next,
.hero .swiper .swiper-pagination {
  pointer-events: auto !important;
  z-index: 11;
}

/* Texto blanco en CTA WhatsApp, en todos los estados */
.btn-cta,
.btn-cta:visited,
.btn-cta:active,
.btn-cta:hover,
.btn-cta:focus,
.btn.btn-primary,
.btn.btn-primary * {
  color: #fff !important;
}


/* === PORTAFOLIO v1.0 Elegante y Ligero ===================== */
.portfolio-featured{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:18px;
  margin-top:20px;
}
.pf-item img{
  width:100%; height:100%; object-fit:cover; border-radius:12px;
  box-shadow:0 4px 20px rgba(0,0,0,0.12);
}
.pf-big{ grid-row:span 2; min-height:420px; }
.pf-small{ min-height:200px; }
@media(max-width: 860px){
  .portfolio-featured{
    grid-template-columns:1fr 1fr;
  }
  .pf-big{ grid-row:span 1; min-height:260px; }
}


/* === LightGallery mejoras visuales === */
#galeria-completa a img{
  border-radius: 12px;
  box-shadow: 0 3px 20px rgba(0,0,0,0.08);
}

/* Separación del botón "Ver galería completa" */
#portafolio .pill-cta{
  margin-top: 30px !important;
  margin-bottom: 40px !important;
}

/* === Animación elegante SOLO para las 3 fotos destacadas === */
.pf-anim {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  filter: blur(4px);
  transition: 
    opacity .9s ease,
    transform .9s ease,
    filter .9s ease;
}

/* Cuando entran en pantalla */
.pf-anim.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* === ANIMACIÓN PROFESIONAL SOLO PARA DESTACADOS === */
.pf-anim {
  opacity: 0;
  transform: translateY(25px) scale(0.92);
  filter: blur(3px);
  transition:
    opacity 0.9s ease-out,
    transform 0.9s ease-out,
    filter 0.9s ease-out,
    box-shadow 0.9s ease-out;
}

.pf-anim.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* === FAQ Kicker (mismo look & feel que "Ver galería completa") ============ */
.faq-kicker{
  display: inline-block;
  padding: 8px 16px;
  border: 1.5px solid #6B0F1A;       /* mismo tono burdeos del botón */
  color: #6B0F1A;                     /* texto del mismo color */
  border-radius: 999px;               /* pill */
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;                /* espacio respecto al H2 */
  background: #fff;                   /* asegura contraste si hay fondos claros */
  box-shadow: 0 2px 10px rgba(0,0,0,.06);  /* sutil */
}

/* Animación sencilla, visible y elegante */
.faq-anim{
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s ease, transform .6s ease;
}
.faq-anim.visible{
  opacity: 1;
  transform: translateY(0);
}

/* Empuja un poco más abajo el botón de Servicios */
#btn-paquetes{
  margin-top: 18px;         /* empuje extra por encima */
  margin-bottom: 32px;      /* más aire hacia el Portafolio */
}

/* En mobile puedes dar un pelín más si lo ves muy pegado */
@media (max-width: 860px){
  #btn-paquetes{ margin-bottom: 36px; }
}

/* === FAQ – Estilo elegante para preguntas =============================== */
/* Aislado en .faq-elegante para no afectar otros details/summary del sitio */
.faq-elegante details{
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,.06);
  margin: 12px 0;
  overflow: hidden;              /* oculta el borde del indicator cuando hay focus */
  transition: transform .25s ease, box-shadow .25s ease;
}
.faq-elegante details:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(0,0,0,.09);
}

/* Pregunta (summary) con look inspirado en tu “Ver galería completa” */
.faq-elegante summary{
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px 14px 46px;  /* espacio para el indicador izquierdo */
  cursor: pointer;
  list-style: none;              /* elimina triángulo nativo en algunos navegadores */
  font-weight: 700;
  color: #1F1F1F;                /* texto principal */
  user-select: none;
}

/* Borde/indicador en burdeos a la izquierda (recuerda tu pill/botón) */
.faq-elegante summary::before{
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px;
  border: 2px solid #6B0F1A;     /* burdeos de marca */
  border-radius: 50%;
  background: #fff;
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}

/* Icono de abrir/cerrar a la derecha (SVG minimalista con CSS) */
.faq-elegante summary::after{
  content: "";
  margin-left: auto;
  width: 14px; height: 14px;
  border-right: 2px solid #6B0F1A;
  border-bottom: 2px solid #6B0F1A;
  transform: rotate(-45deg);     /* flecha apuntando a la derecha/abajo */
  transition: transform .25s ease, border-color .25s ease;
  opacity: .9;
}

/* Estado hover/focus: resalta con el mismo tono burdeos, sin exagerar */
.faq-elegante summary:hover{
  color: #491018;                /* tono más oscuro del burdeos para texto */
}
.faq-elegante summary:hover::before{
  border-color: #491018;
}
.faq-elegante summary:hover::after{
  border-color: #491018;
}

/* Estado abierto: punto burdeos relleno + flecha rota hacia arriba */
.faq-elegante details[open] summary::before{
  background: #6B0F1A;
  transform: translateY(-50%) scale(1.05);
}
.faq-elegante details[open] summary::after{
  transform: rotate(135deg);
}

/* Respuesta */
.faq-elegante details > p{
  padding: 0 18px 16px 46px;      /* alinea con la pregunta */
  color: #444;
  line-height: 1.6;
}

/* Accesibilidad: subraya al navegar con teclado */
.faq-elegante summary:focus{
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(107,15,26,.15);
  border-radius: 8px;
}

/* === FORMULARIO PREMIUM – Creacionesy.z ============================== */

/* Contenedor general */
#contacto .form-wrapper {
  background: #fff;
  padding: 32px 28px;
  border-radius: 18px;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border: 1px solid #f2e9e7;
}

/* Inputs + selects + textarea */
#contacto input,
#contacto select,
#contacto textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #ddd;
  border-radius: 12px;
  font-size: 15px;
  background: #fafafa;
  transition: all .25s ease;
}

/* Hover */
#contacto input:hover,
#contacto select:hover,
#contacto textarea:hover {
  background: #fff;
  border-color: #c9b5b2;
}

/* Focus elegante */
#contacto input:focus,
#contacto select:focus,
#contacto textarea:focus {
  border-color: #6B0F1A;
  box-shadow: 0 0 0 3px rgba(107,15,26,0.13);
  background: #fff;
  outline: none;
}

/* Labels */
#contacto label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  color: #1F1F1F;
}

/* Espacio entre campos */
#contacto .form-field {
  margin-bottom: 22px;
}

/* Placeholder más suave */
#contacto input::placeholder,
#contacto textarea::placeholder {
  color: #b8b8b8;
  font-size: 14px;
}

/* Textarea */
#contacto textarea {
  min-height: 120px;
  resize: vertical;
}

/* Botón (tu estilo se conserva, solo un empuje adicional) */
#contacto .btn-primary {
  margin-top: 6px;
  width: 100%;
  padding: 16px;
  font-size: 16px;
  border-radius: 12px;
}

#contacto label {
  font-weight: 600;
  letter-spacing: .2px;
  color: #2d2d2d;
}

/* ================== DETALLES (sección premium sin precios) ================== */
.details-kicker{
  display:inline-block;
  padding:8px 14px;
  border:1.5px solid var(--burgundy);
  color:var(--burgundy);
  border-radius:999px;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:12px;
  background:#fff;
  box-shadow: var(--shadow-xs);
  margin-bottom:10px;
}

/* Grid 3 en desktop, 1/2 en responsive */
.details-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:20px;
  align-items:stretch;
  margin-top: 18px;
}

@media (max-width: 980px){
  .details-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .details-grid{ grid-template-columns: 1fr; }
}

/* Card */
.details-card{
  background: linear-gradient(180deg, #fff, #fffaf2);
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(200,170,110,.26);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.details-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(200,170,110,.55);
}

/* Media */
.details-media{
  position:relative;
  display:block;
  height: 210px; /* consistente con service-card img */
  overflow:hidden;
}

.details-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.02);
  transition: transform .55s ease;
}

.details-card:hover .details-media img{
  transform: scale(1.08);
}

/* overlay suave editorial */
.details-media::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.22));
  pointer-events:none;
}

/* badge 01/02/03 */
.details-badge{
  position:absolute;
  top:14px;
  left:14px;
  width:38px;
  height:38px;
  border-radius:12px;
  display:grid;
  place-items:center;
  font-weight:800;
  font-size:12px;
  letter-spacing:.08em;
  color:#fff;
  background: rgba(107,15,26,.82); /* var(--burgundy) con alpha */
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
}

/* Body */
.details-body{
  padding: 18px 18px 20px;
}

.details-body h3{
  margin: 0 0 6px;
  color:#272727;
}

.details-desc{
  margin: 0 0 10px;
  color:#616161;
  line-height:1.55;
}

.details-meta{
  margin: 0 0 14px;
  font-size: 13px;
  color: rgba(55,55,55,.70);
  line-height:1.55;
}

/* List en la 3ra card */
.details-list{
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  display:grid;
  gap:8px;
}

.details-list li{
  position:relative;
  padding-left:18px;
  color: rgba(55,55,55,.80);
  font-size: 14px;
}

.details-list li::before{
  content:"";
  width:8px;height:8px;
  border-radius: 99px;
  background: rgba(107,15,26,.70);
  position:absolute;
  left:0;
  top: 8px;
}

/* Link CTA sutil */
.details-link{
  display:inline-flex;
  gap:8px;
  align-items:center;
  text-decoration:none;
  font-weight:700;
  color: var(--burgundy);
  transition: transform .2s ease, opacity .2s ease;
}
.details-link:hover{
  transform: translateX(2px);
  opacity:.92;
}

/* Pie */
.details-foot{
  margin: 0 0 10px;
  color:#5c5c5c;
}

/* ================== TRANSICIÓN EDITORIAL ================== */
.transition-editorial{
  padding: 70px 0 40px;
  background: transparent;
}

.transition-line{
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.25;
  color: #2B2B2B;
  letter-spacing: -0.3px;
}

.transition-line span{
  font-weight: 400;
  opacity: .75;
}

.transition-line strong{
  font-weight: 700;
  color: var(--burgundy);
}

.details-card{
  border: none;
  background: transparent;
  box-shadow: none;
}

.details-card:hover{
  box-shadow: var(--shadow);
  background: #fff;
}

.details-grid{
  gap: 28px;
}

.details-media{
  border-radius: 18px;
}

#contacto .form-actions{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 640px){
  #contacto .form-actions{
    grid-template-columns: 1fr;
  }
}

#contacto .btn-primary{
  width: auto;
}

.footer-note {
  margin-top: 8px;
  padding-bottom: 14px; /* aire antes del borde inferior del footer */
}

.footer-note small {
  font-size: 12px;              /* tamaño adecuado: discreto */
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.55);   /* recomendado: sutil y premium (sobre fondo claro) */
}

.footer-note a {
  color: rgba(0, 0, 0, 0.62);
  text-decoration: none;
  font-weight: 600;             /* leve énfasis sin romper estética */
}

.footer-note a:hover {
  color: rgba(0, 0, 0, 0.78);
  text-decoration: underline;
}

@media (max-width: 640px) {
  .footer-note {
    text-align: center;
  }
}