/* ============================================================
   ASADOS DE LUCIANO — Estilos
   ------------------------------------------------------------
   Mobile-first (los estilos base son para celular y se amplían
   con los media queries de más abajo).
   Paleta llamativa "Fuego, Carbón y Tradición" inspirada en el logo:
   negro carbón profundo, fuego vivo, brasas ardientes y dorado champagne.
   ============================================================ */

/* ---------- PALETA Y VARIABLES ---------- */
:root {
  /* Fondos y superficies oscuras (carbón ahumado del logo) */
  --color-bg:          #0c0b0b;   /* negro carbón profundo */
  --color-bg-alt:      #141110;   /* carbón con suave calidez de brasa */
  --color-surface:     #1a1614;   /* superficie de tarjetas y bloques */
  --color-surface-2:   #241e1a;   /* hover y fondos secundarios */
  --color-border:      rgba(255, 107, 0, 0.16); /* borde sutil brasa */
  --color-border-glow: rgba(255, 120, 20, 0.45);/* borde iluminado al hover */

  /* Fuego y Llamas (extraídos de la fogata del logo) */
  --color-fire:        #ff6b00;   /* naranja fuego vivo */
  --color-fire-hover:  #ff851a;   /* fuego brillante */
  --color-ember:       #e03a00;   /* rojo brasa intenso */
  --color-ember-dark:  #b32800;   /* brasa profunda */
  --color-flame:       #ffa726;   /* ámbar / llama dorada */

  /* Dorados elegantes (del subtítulo "A DOMICILIO" del logo) */
  --color-gold:        #d4a362;   /* dorado champagne */
  --color-gold-hover:  #e5be85;   /* dorado claro iluminado */
  --color-gold-dark:   #b88644;   /* dorado profundo */

  /* Textos y contrastes */
  --color-white:       #ffffff;   /* blanco puro ("ASADOS DE LUCIANO") */
  --color-text:        #f3ede6;   /* texto principal de alta lectura */
  --color-muted:       #aa9c90;   /* texto secundario cálido */

  /* WhatsApp */
  --color-wa:          #25d366;
  --color-wa-dark:     #1fa851;
  --color-wa-glow:     rgba(37, 211, 102, 0.4);

  --radius:            14px;
  --shadow:            0 12px 36px rgba(0, 0, 0, .55);
  --shadow-fire:       0 8px 30px rgba(255, 107, 0, .28);
  --font-display:      "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:         "Source Sans 3", -apple-system, "Segoe UI", Arial, sans-serif;
}

/* ---------- RESET BÁSICO ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px; /* compensa el header fijo */
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
  background-image:
    radial-gradient(ellipse 90% 50% at 50% -10%, rgba(255, 107, 0, 0.15), transparent 70%),
    radial-gradient(circle at 100% 30%, rgba(212, 163, 98, 0.06), transparent 50%),
    radial-gradient(circle at 0% 70%, rgba(224, 58, 0, 0.08), transparent 55%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0 0 .5em;
  line-height: 1.2;
  font-weight: 600;
  color: var(--color-white);
}

/* Contenedor central */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 20px; }

/* ---------- BOTONES ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, filter .18s ease;
  text-align: center;
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 16px 36px; font-size: 18px; }
.btn-block { width: 100%; }

/* Botón WhatsApp */
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #1fa851);
  color: #fff;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover {
  background: linear-gradient(135deg, #2ae06d, #22bd5a);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
  transform: translateY(-2px);
  color: #fff;
}

/* Botón Fuego / Llama */
.btn-fire {
  background: linear-gradient(135deg, var(--color-fire), var(--color-ember));
  color: #fff;
  box-shadow: var(--shadow-fire);
}
.btn-fire:hover {
  background: linear-gradient(135deg, var(--color-fire-hover), #ff4d00);
  box-shadow: 0 8px 30px rgba(255, 107, 0, 0.55);
  transform: translateY(-2px);
  color: #fff;
}

/* Botón Dorado (estilo logo) */
.btn-gold {
  background: linear-gradient(135deg, #f0c588, var(--color-gold));
  color: #0c0b0b;
  font-weight: 800;
  box-shadow: 0 6px 22px rgba(212, 163, 98, 0.28);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #fae0b5, #e5be85);
  box-shadow: 0 8px 26px rgba(212, 163, 98, 0.48);
  transform: translateY(-2px);
  color: #0c0b0b;
}

.btn-dark {
  background: var(--color-surface-2);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.btn-dark:hover {
  background: var(--color-surface);
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
}

.btn .icon-wa { width: 22px; height: 22px; flex-shrink: 0; }

/* ---------- ENCABEZADO / NAVEGACIÓN ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(12, 11, 11, .94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 107, 0, 0.15);
  color: var(--color-text);
  transition: background .2s ease, box-shadow .2s ease;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--color-white);
  text-decoration: none;
}
.brand-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: contain;
  border: 2px solid var(--color-gold);
  box-shadow: 0 0 14px rgba(255, 107, 0, 0.35);
  transition: transform .2s ease, box-shadow .2s ease;
}
.brand:hover .brand-logo-img {
  transform: scale(1.06);
  box-shadow: 0 0 18px rgba(255, 107, 0, 0.6);
}
.brand-mark { font-size: 22px; }
.brand-name { letter-spacing: 0.5px; }
.brand-name strong { color: var(--color-gold); font-weight: 700; }

/* Botón hamburguesa (móvil) */
.nav-toggle {
  display: flex; flex-direction: column; gap: 5px;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: transparent; border: 0; cursor: pointer;
  padding: 0;
}
.nav-toggle-bar {
  width: 26px; height: 2.5px; background: var(--color-white);
  border-radius: 2px; transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Menú desplegable móvil */
.nav {
  position: absolute;
  top: 72px; left: 0; right: 0;
  background: #110e0d;
  border-bottom: 1px solid var(--color-border);
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
}
.nav.open { max-height: 480px; }
.nav-list { padding: 14px 20px 26px; }
.nav-list li a {
  display: block; padding: 13px 6px;
  color: var(--color-text); font-weight: 600; font-size: 17px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.nav-list li a:hover { color: var(--color-gold); }
.nav-list .nav-cta { color: var(--color-gold); font-weight: 700; }

/* ============================================================
   HERO — Portada
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 130px 0 90px;
  color: var(--color-text);
  text-align: center;
  background: var(--color-bg) no-repeat center/cover;
  background-image:
    linear-gradient(rgba(12,11,11,.68), rgba(12,11,11,.88)),
    radial-gradient(circle at 50% 30%, rgba(255,107,0,.22), transparent 65%),
    url("../assets/images/hero.jpg");
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.08), rgba(12,11,11,.95));
}
.hero-content { position: relative; z-index: 2; }

/* Insignia con el Logo en el Hero */
.hero-logo-badge {
  display: inline-block;
  margin-bottom: 18px;
}
.hero-logo-img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: contain;
  border: 3px solid var(--color-gold);
  box-shadow: 0 0 30px rgba(255, 107, 0, 0.45);
  animation: hero-logo-pulse 3s ease-in-out infinite alternate;
}
@keyframes hero-logo-pulse {
  0%   { box-shadow: 0 0 20px rgba(255, 107, 0, 0.35); transform: scale(1); }
  100% { box-shadow: 0 0 38px rgba(255, 167, 38, 0.65); transform: scale(1.03); }
}

.hero-eyebrow {
  text-transform: uppercase; letter-spacing: 3px; font-weight: 700;
  font-size: 13px; color: var(--color-gold); margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: ""; display: inline-block; width: 35px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold));
}
.hero-eyebrow::after {
  background: linear-gradient(90deg, var(--color-gold), transparent);
}

.hero-title {
  font-size: clamp(2.1rem, 7.5vw, 4.3rem);
  max-width: 940px; margin: 0 auto 22px;
  color: var(--color-white);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.85);
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, #ffa726, #ff6b00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}
.hero-sub {
  max-width: 680px; margin: 0 auto 34px;
  font-size: 1.15rem; opacity: .95; color: var(--color-text);
  line-height: 1.6;
}
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 10px 20px;
  justify-content: center; margin-top: 36px;
  font-size: .95rem; font-weight: 600;
}
.hero-trust span {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255, 255, 255, 0.04);
  padding: 6px 16px; border-radius: 20px;
  border: 1px solid rgba(255, 107, 0, 0.18);
  color: var(--color-text);
}
.hero-trust span::before { content: "✔"; color: var(--color-gold); }

/* ============================================================
   SECCIONES GENERALES
   ============================================================ */
.section { padding: 80px 0; position: relative; }
.section-alt {
  background: var(--color-bg-alt);
  border-top: 1px solid rgba(255, 107, 0, 0.1);
  border-bottom: 1px solid rgba(255, 107, 0, 0.1);
}
.section-dark {
  background: var(--color-bg);
}

.eyebrow {
  text-transform: uppercase; letter-spacing: 3px; font-weight: 700;
  font-size: 13px; color: var(--color-fire); margin: 0 0 12px;
}
.eyebrow-center { text-align: center; }
.section-title { font-size: clamp(1.8rem, 5vw, 2.7rem); margin-bottom: 16px; color: var(--color-white); }
.section-title-center { text-align: center; }
.section-lead {
  max-width: 680px; margin: 0 auto 44px; color: var(--color-muted);
  text-align: center; font-size: 1.05rem;
}

/* ---------- NUESTRA HISTORIA ---------- */
.split { display: grid; gap: 38px; align-items: center; }
.split-body .section-title { margin-bottom: 18px; }
.split-body p { margin: 0 0 16px; color: var(--color-text); font-size: 1.05rem; }
.split-body strong { color: var(--color-gold); }
.split-body .btn { margin-top: 10px; }

.media-frame {
  position: relative; margin: 0; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  min-height: 280px;
  border: 1px solid var(--color-border);
  background:
    radial-gradient(circle at 30% 20%, rgba(255,107,0,.25), transparent 55%),
    linear-gradient(135deg, #1c1613, #2a1f19);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-caption {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(12,11,11,.88); color: var(--color-gold);
  border: 1px solid rgba(212, 163, 98, 0.3);
  padding: 6px 14px; border-radius: 20px; font-size: .85rem; font-weight: 700;
}

/* ---------- TARJETAS "QUÉ OFRECEMOS" ---------- */
.cards {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--color-border-glow);
  box-shadow: 0 16px 44px rgba(0,0,0,0.65), 0 0 25px rgba(255, 107, 0, 0.2);
}
.card-media {
  margin: 0; aspect-ratio: 4 / 3; overflow: hidden;
  background: linear-gradient(135deg, #1c1512, #291e17);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.card-media::after {
  content: "🔥"; font-size: 46px; opacity: .35;
  filter: drop-shadow(0 0 10px #ff6b00);
  position: absolute;
  z-index: 1;
}
.card-media img {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  z-index: 2;
}
.card-body {
  padding: 22px 24px 26px;
  flex-grow: 1; display: flex; flex-direction: column;
}
.card-body h3 {
  font-size: 1.35rem; color: var(--color-white);
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.card-body p { margin: 0; color: var(--color-muted); line-height: 1.55; }
.card-body strong { color: var(--color-text); }
.tag {
  background: linear-gradient(135deg, var(--color-fire), var(--color-ember));
  color: #fff;
  font-size: .7rem; text-transform: uppercase; letter-spacing: 1.2px;
  padding: 4px 10px; border-radius: 20px; font-family: var(--font-body); font-weight: 700;
  box-shadow: 0 2px 8px rgba(255, 107, 0, 0.4);
}
.cards-cta { text-align: center; margin-top: 38px; }

/* ---------- CÓMO FUNCIONA (pasos) ---------- */
.steps { display: grid; gap: 22px; counter-reset: step; }
.step {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius); padding: 28px 24px;
  position: relative;
  transition: border-color .2s ease, transform .2s ease;
}
.step:hover {
  border-color: var(--color-gold);
  transform: translateY(-4px);
}
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--color-fire), var(--color-ember));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.4rem;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.4);
}
.step h3 { font-size: 1.3rem; color: var(--color-white); }
.step p { margin: 0; color: var(--color-muted); }
.step strong { color: var(--color-text); }

/* ---------- PARA QUÉ EVENTOS ---------- */
.section-banner {
  background: linear-gradient(150deg, #18110b 0%, #29170c 50%, #130d09 100%);
  border-top: 1px solid rgba(255, 107, 0, 0.2);
  border-bottom: 1px solid rgba(255, 107, 0, 0.2);
  color: var(--color-text); text-align: center;
  position: relative; overflow: hidden;
}
.section-banner::before {
  content: ""; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 650px; height: 320px;
  background: radial-gradient(ellipse, rgba(255, 107, 0, 0.16), transparent 70%);
  pointer-events: none;
}
.section-banner .section-title { color: var(--color-white); }
.section-banner .eyebrow { color: var(--color-flame); opacity: .95; }
.chips {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
  margin: 0 0 34px; position: relative; z-index: 1;
}
.chip {
  background: rgba(255,255,255,.05); color: var(--color-text);
  border: 1px solid rgba(255, 167, 38, 0.25);
  padding: 12px 22px; border-radius: 40px; font-weight: 700; font-size: 1rem;
  backdrop-filter: blur(4px);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.chip:hover {
  background: rgba(255, 107, 0, 0.16);
  border-color: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-2px);
}
.section-banner .btn {
  position: relative; z-index: 1;
  box-shadow: 0 12px 30px rgba(0,0,0,.5);
}

/* ---------- GALERÍA ---------- */
.gallery {
  display: grid; gap: 16px; grid-template-columns: 1fr 1fr;
}
.gallery-item {
  margin: 0; border-radius: 12px; overflow: hidden;
  aspect-ratio: 1 / 1; background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s ease, border-color .25s ease;
  position: relative;
}
.gallery-item:hover {
  transform: scale(1.03);
  border-color: var(--color-gold);
}
.gallery-item::after {
  content: "🌄"; font-size: 40px; opacity: .35;
  position: absolute;
  z-index: 1;
}
.gallery-item img {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  z-index: 2;
}

/* ---------- PREGUNTAS FRECUENTES ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item:hover {
  border-color: var(--color-gold);
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.1);
}
.faq-question {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-white);
  cursor: pointer;
  list-style: none; /* Hides default triangle */
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color .2s ease;
}
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--color-gold);
  transition: transform .3s ease;
}
.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}
.faq-item[open] .faq-question {
  color: var(--color-gold);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.faq-answer {
  padding: 20px 24px;
  color: var(--color-text);
  line-height: 1.6;
  font-size: 1.02rem;
  background: rgba(0, 0, 0, 0.2);
}

/* ---------- CONTACTO / FORMULARIO ---------- */
.contact-grid { display: grid; gap: 38px; grid-template-columns: 1fr; }
.contact-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow);
}
.contact-form .field { margin-bottom: 18px; }
.contact-form label {
  display: block; font-weight: 600; margin-bottom: 7px; font-size: .98rem;
  color: var(--color-text);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px; font-size: 1rem;
  background: rgba(12, 11, 11, 0.7);
  color: var(--color-white);
  font-family: var(--font-body);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.contact-form select option {
  background: var(--color-bg);
  color: var(--color-text);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.4); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-fire);
  background: rgba(12, 11, 11, 0.95);
  box-shadow: 0 0 12px rgba(255, 107, 0, 0.25);
}

/* Mensaje de confirmación del formulario */
.form-note {
  margin-top: 14px;
  font-size: .95rem;
  line-height: 1.5;
  border-radius: 8px;
}
.form-note.success {
  background: rgba(212, 163, 98, 0.12);
  border: 1px solid rgba(212, 163, 98, 0.35);
  padding: 12px 16px;
  color: var(--color-text);
}
.form-note.error {
  background: rgba(224, 58, 0, 0.15);
  border: 1px solid rgba(224, 58, 0, 0.35);
  padding: 12px 16px;
  color: #ffb8a3;
}
.form-note a {
  color: var(--color-gold);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-note a:hover {
  color: var(--color-gold-hover);
}

.contact-info {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow);
}
.contact-info h3 {
  font-size: 1.5rem;
  color: var(--color-gold);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.contact-info p {
  margin: 0 0 14px;
  color: var(--color-text);
  font-size: 1.02rem;
  line-height: 1.6;
}
.contact-info strong {
  color: var(--color-white);
  font-weight: 700;
}
.contact-info a {
  color: var(--color-gold);
  font-weight: 600;
  text-decoration: none;
  transition: color .18s ease;
}
.contact-info a:hover {
  color: var(--color-gold-hover);
  text-decoration: underline;
}

/* Contenedor de botones de acción directa */
.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0 20px;
}
.contact-actions .btn {
  margin: 0;
  padding: 15px 22px;
  font-size: 16.5px;
}

/* Botón Instagram con degradado elegante de vino tinto y magenta oscuro */
.btn-instagram {
  background: linear-gradient(135deg, #4f1236 0%, #7d173e 40%, #9e1f2b 75%, #bd3813 100%);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 6px 22px rgba(125, 23, 62, 0.45);
  border: 1px solid rgba(255, 120, 160, 0.25);
}
.btn-instagram:hover {
  background: linear-gradient(135deg, #601742 0%, #941c4a 40%, #b82533 75%, #d64317 100%);
  box-shadow: 0 8px 28px rgba(148, 28, 74, 0.65);
  transform: translateY(-2px);
  color: #ffffff;
}

.socials {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}
.socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.socials a:hover {
  transform: translateY(-2px);
}
.socials a.social-ig:hover,
.socials a[aria-label*="Instagram"]:hover {
  background: linear-gradient(135deg, #4f1236, #7d173e, #bd3813);
  border-color: rgba(255, 120, 160, 0.35);
  box-shadow: 0 6px 18px rgba(125, 23, 62, 0.5);
}
.socials a[aria-label*="Facebook"]:hover {
  background: #1877f2;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(24, 119, 242, 0.45);
}
.socials svg { width: 22px; height: 22px; }

/* ---------- PIE DE PÁGINA ---------- */
.site-footer {
  background: #090808;
  color: var(--color-text);
  border-top: 1px solid rgba(255, 107, 0, 0.15);
}
.footer-grid {
  display: grid; gap: 32px; padding: 52px 20px 34px;
  grid-template-columns: 1fr;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: 12px;
  color: var(--color-white);
}
.footer-brand strong { color: var(--color-gold); }
.footer-col h4 {
  font-family: var(--font-body); text-transform: uppercase; letter-spacing: 2px;
  font-size: .85rem; color: var(--color-gold); margin-bottom: 14px;
}
.footer-col li { margin-bottom: 9px; }
.footer-col a:hover { color: var(--color-gold); }
.footer-col p { margin: 0 0 9px; color: var(--color-muted); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 22px 0; text-align: center;
  font-size: .9rem; color: var(--color-muted);
}

/* ---------- BOTÓN FLOTANTE WHATSAPP (CON PULSO) ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 95;
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #25d366, #1fa851);
  color: #fff;
  padding: 14px 20px; border-radius: 50px;
  box-shadow: 0 8px 28px rgba(0,0,0,.5), 0 0 16px rgba(37, 211, 102, 0.35);
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
  animation: wa-pulse 2.8s infinite;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 32px rgba(0,0,0,.6), 0 0 25px rgba(37, 211, 102, 0.65);
  color: #fff;
}
.wa-float svg { width: 26px; height: 26px; flex-shrink: 0; }
.wa-float-label { font-size: .95rem; white-space: nowrap; }

@keyframes wa-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.65), 0 8px 25px rgba(0, 0, 0, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0), 0 8px 25px rgba(0, 0, 0, 0.5);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 8px 25px rgba(0, 0, 0, 0.5);
  }
}

/* ---------- ANIMACIONES DE APARICIÓN (con JS) ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE — Pantallas medianas y grandes
   ============================================================ */
@media (min-width: 600px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .gallery-item { aspect-ratio: 4 / 3; }
}

@media (min-width: 768px) {
  /* Navegación horizontal en escritorio */
  .nav-toggle { display: none; }
  .nav {
    position: static; max-height: none; overflow: visible;
    background: transparent; border: 0;
  }
  .nav-list { display: flex; align-items: center; gap: 26px; padding: 0; }
  .nav-list li a {
    padding: 0; border: 0; font-size: .98rem;
  }
  .nav-list .nav-cta {
    background: linear-gradient(135deg, #f0c588, var(--color-gold));
    color: #0c0b0b;
    padding: 10px 22px; border-radius: 40px;
    box-shadow: 0 4px 14px rgba(212, 163, 98, 0.3);
  }
  .nav-list .nav-cta:hover {
    color: #0c0b0b;
    background: linear-gradient(135deg, #fae0b5, #e5be85);
    transform: translateY(-1px);
  }

  /* Historia en dos columnas */
  .split { grid-template-columns: 1fr 1fr; }

  /* Tarjetas en rejilla */
  .cards { grid-template-columns: repeat(2, 1fr); }

  /* Pasos en 4 columnas */
  .steps { grid-template-columns: repeat(4, 1fr); }

  /* Contacto en dos columnas */
  .contact-grid { grid-template-columns: 1.2fr .8fr; }

  /* Footer en 4 columnas */
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

@media (min-width: 1080px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   ACCESIBILIDAD / MOVIMIENTO REDUCIDO
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .wa-float { animation: none; }
  .hero-logo-img { animation: none; }
}
