/* ============================================
   EXPRESS ART TATTOO — Microdemo Privada
   Paleta: Azul profundo, Fucsia, Crema
   ============================================ */

/* ---- Variables ---- */
:root {
  --azul-profundo: #11106C;
  --azul-noche: #05043D;
  --fucsia: #F00093;
  --fucsia-intenso: #FF0099;
  --crema: #FFF0D8;
  --blanco-humo: #F7F7F7;
  --negro: #050505;
  --gris-oscuro: #1A1A1A;
  --turquesa: #07808C;

  --font-titles: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-fucsia: 0 4px 24px rgba(240,0,147,0.25);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--azul-noche);
  color: var(--crema);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn svg {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.btn-primary {
  background: linear-gradient(135deg, var(--fucsia), var(--fucsia-intenso));
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-fucsia);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 32px rgba(240,0,147,0.4);
  filter: brightness(1.1);
}

.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: var(--crema);
  border-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--crema);
  border-color: var(--fucsia);
}

.btn-outline:hover {
  background: var(--fucsia);
  color: #fff;
  transform: translateY(-2px);
}

.btn-light {
  background: #fff;
  color: var(--azul-noche);
  border-color: #fff;
}

.btn-light:hover {
  background: var(--crema);
  transform: translateY(-2px);
}

.btn-catalogo {
  background: transparent;
  color: var(--crema);
  border-color: var(--fucsia);
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
}

.btn-catalogo:hover {
  background: var(--fucsia);
  color: #fff;
}

/* ---- Section Headers ---- */
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-titles);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fucsia);
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--fucsia);
  border-radius: 50px;
}

.section-title {
  font-family: var(--font-titles);
  font-weight: 700;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: var(--crema);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.section-desc {
  color: rgba(255,240,216,0.7);
  font-size: 1rem;
  max-width: 500px;
  margin: 0.75rem auto 0;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem 0;
  background: rgba(5,4,61,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text {
  font-family: var(--font-titles);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--crema);
  letter-spacing: -0.02em;
}

.logo-accent {
  color: var(--fucsia);
}

.logo-sub {
  font-family: var(--font-titles);
  font-weight: 500;
  font-size: 0.6875rem;
  color: var(--fucsia);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 0.125rem;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--crema);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  max-width: 300px;
  height: 100vh;
  background: var(--azul-profundo);
  padding: 5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: right 0.3s ease;
  z-index: 1000;
  box-shadow: -8px 0 32px rgba(0,0,0,0.4);
}

.nav-menu.active {
  right: 0;
}

.nav-link {
  padding: 0.75rem 1rem;
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--crema);
  border-radius: var(--radius);
  transition: var(--transition);
}

.nav-link:hover {
  background: rgba(240,0,147,0.15);
  color: var(--fucsia-intenso);
}

.nav-cta {
  margin-top: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--fucsia), var(--fucsia-intenso));
  color: #fff;
  font-weight: 600;
  text-align: center;
  border-radius: 50px;
  font-size: 0.875rem;
}

.nav-cta:hover {
  filter: brightness(1.15);
}

/* Desktop nav */
@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    padding: 0;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
    box-shadow: none;
  }

  .nav-link {
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
    white-space: nowrap;
  }

  .nav-cta {
    margin-top: 0;
    margin-left: 0.5rem;
    padding: 0.625rem 1.25rem;
  }
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 3.5rem;
  height: 3.5rem;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse-wa 2s infinite;
}

.whatsapp-float svg {
  width: 1.75rem;
  height: 1.75rem;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.6);
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 24px rgba(37,211,102,0.6); }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--azul-noche) 0%,
    var(--azul-noche) 30%,
    rgba(5,4,61,0.95) 52%,
    rgba(5,4,61,0.65) 76%,
    rgba(5,4,61,0.2) 100%
  );
}

@media (min-width: 768px) {
  .hero-overlay {
    background: linear-gradient(
      to top,
      var(--azul-noche) 0%,
      var(--azul-noche) 25%,
      rgba(5,4,61,0.85) 45%,
      rgba(5,4,61,0.4) 70%,
      rgba(5,4,61,0.15) 100%
    );
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-titles);
  font-weight: 600;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fucsia);
  padding: 0.375rem 1rem;
  border: 1.5px solid var(--fucsia);
  border-radius: 50px;
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-title {
  font-family: var(--font-titles);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1rem;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.title-line {
  display: block;
  font-size: clamp(2.5rem, 10vw, 5rem);
  color: var(--crema);
  letter-spacing: -0.03em;
}

.title-line.accent {
  color: var(--fucsia-intenso);
  text-shadow: 0 0 40px rgba(240,0,147,0.3);
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: rgba(255,240,216,0.8);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.6;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: fadeInUp 0.6s ease 0.5s both;
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--fucsia), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   SERVICIOS — DOS CAMINOS
   ============================================ */
.servicios {
  padding: 5rem 0;
  background: var(--azul-noche);
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  background: linear-gradient(145deg, var(--azul-profundo), rgba(17,16,108,0.6));
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--fucsia);
  box-shadow: var(--shadow-fucsia);
}

.card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .card-img img {
  transform: scale(1.05);
}

.card-body {
  padding: 1.5rem;
}

.card-body h3 {
  font-family: var(--font-titles);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--crema);
  margin-bottom: 0.5rem;
}

.card-body p {
  color: rgba(255,240,216,0.7);
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .card-img {
    height: 260px;
  }
}

/* ============================================
   TRABAJOS — GALERÍA
   ============================================ */
.trabajos {
  padding: 5rem 0;
  background: var(--negro);
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item.large {
  grid-column: span 2;
  aspect-ratio: 16/10;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,4,61,0.85) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  font-family: var(--font-titles);
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--crema);
}

.gallery-cta {
  text-align: center;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .gallery-item.large {
    grid-column: span 2;
    aspect-ratio: 16/9;
  }

  .gallery-item:nth-child(5) {
    grid-column: span 2;
    aspect-ratio: 16/9;
  }
}

/* ============================================
   PROCESO — CÓMO COTIZAR
   ============================================ */
.proceso {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--azul-noche), var(--azul-profundo));
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
}

.step-num {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fucsia), var(--fucsia-intenso));
  color: #fff;
  font-family: var(--font-titles);
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step h3 {
  font-family: var(--font-titles);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--crema);
  margin-bottom: 0.375rem;
}

.step p {
  color: rgba(255,240,216,0.65);
  font-size: 0.875rem;
}

.step-arrow {
  display: none;
  text-align: center;
  color: var(--fucsia);
  font-size: 1.5rem;
}

.proceso-note {
  text-align: center;
  max-width: 600px;
  margin: 2.5rem auto 1.5rem;
  color: rgba(255,240,216,0.75);
  font-size: 1rem;
  line-height: 1.7;
  padding: 1.25rem;
  border-left: 3px solid var(--fucsia);
  background: rgba(240,0,147,0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.proceso-cta {
  text-align: center;
}

@media (min-width: 768px) {
  .steps {
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: center;
  }

  .step {
    flex: 1 1 140px;
    max-width: 160px;
    padding: 1.25rem 0.75rem;
  }

  .step-arrow {
    display: flex;
    align-items: center;
    color: var(--fucsia);
    font-size: 1.25rem;
  }
}

/* ============================================
   CATÁLOGO PIERCING
   ============================================ */
.catalogo {
  padding: 5rem 0;
  background: var(--gris-oscuro);
}

.catalogo-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, rgba(240,0,147,0.15), rgba(255,0,153,0.08));
  border: 1px solid rgba(240,0,147,0.3);
  border-radius: var(--radius);
  margin-bottom: 2.5rem;
  text-align: center;
  flex-wrap: wrap;
}

.banner-icon {
  color: var(--fucsia);
  font-size: 1rem;
}

.catalogo-banner p {
  font-size: 0.9375rem;
  color: var(--crema);
}

.catalogo-banner strong {
  color: var(--fucsia-intenso);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.product-card {
  background: var(--negro);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

.product-card:hover {
  border-color: var(--fucsia);
  transform: translateY(-3px);
  box-shadow: var(--shadow-fucsia);
}

.product-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #0a0a0a;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: var(--fucsia);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-info {
  padding: 1rem;
}

.product-info h3 {
  font-family: var(--font-titles);
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--crema);
  margin-bottom: 0.5rem;
  line-height: 1.4;
  min-height: 2.4em;
}

.product-price {
  font-family: var(--font-titles);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--fucsia-intenso);
  margin-bottom: 0.75rem;
}

.product-price span {
  font-size: 0.75rem;
  color: rgba(255,240,216,0.5);
  font-weight: 400;
}

.catalogo-note {
  text-align: center;
  margin-top: 2rem;
  color: rgba(255,240,216,0.5);
  font-size: 0.8125rem;
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   CATÁLOGO COMPLETO CTA
   ============================================ */
.catalogo-completo {
  padding: 4rem 0;
  background: var(--azul-noche);
}

.banner-cta {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--azul-profundo), rgba(240,0,147,0.1));
  border: 1px solid rgba(240,0,147,0.2);
  border-radius: var(--radius-lg);
}

.banner-cta h2 {
  font-family: var(--font-titles);
  font-weight: 700;
  font-size: clamp(1.375rem, 4vw, 2rem);
  color: var(--crema);
  margin-bottom: 0.75rem;
}

.banner-cta p {
  color: rgba(255,240,216,0.7);
  max-width: 480px;
  margin: 0 auto 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ============================================
   PROMOS
   ============================================ */
.promos {
  padding: 4rem 0;
  background: var(--azul-profundo);
}

.promo-banner {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(240,0,147,0.12), rgba(7,128,140,0.08));
  border: 2px solid var(--fucsia);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(240,0,147,0.03) 20px,
    rgba(240,0,147,0.03) 40px
  );
  animation: promoSlide 20s linear infinite;
  pointer-events: none;
}

@keyframes promoSlide {
  0% { transform: translate(0, 0); }
  100% { transform: translate(40px, 40px); }
}

.promo-sticker {
  display: inline-block;
  background: var(--fucsia);
  color: #fff;
  font-family: var(--font-titles);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  transform: rotate(-2deg);
}

.promo-banner h2 {
  font-family: var(--font-titles);
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--crema);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.promo-banner p {
  color: rgba(255,240,216,0.75);
  max-width: 480px;
  margin: 0 auto 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ============================================
   UBICACIÓN
   ============================================ */
.ubicacion {
  padding: 5rem 0;
  background: var(--azul-noche);
}

.ubicacion-card {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem 2rem;
  background: linear-gradient(145deg, var(--azul-profundo), rgba(17,16,108,0.5));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
}

.ubicacion-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.25rem;
  color: var(--fucsia);
}

.ubicacion-icon svg {
  width: 100%;
  height: 100%;
}

.ubicacion-text {
  font-size: 1.0625rem;
  color: var(--crema);
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.ubicacion-note {
  font-size: 0.8125rem;
  color: rgba(255,240,216,0.5);
  margin-bottom: 1.5rem;
  font-style: italic;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 5rem 0;
  background: var(--negro);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item[open] {
  border-color: rgba(240,0,147,0.3);
  background: rgba(240,0,147,0.03);
}

.faq-item summary {
  padding: 1.125rem 1.25rem;
  font-family: var(--font-titles);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--crema);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--fucsia);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  content: '−';
  transform: rotate(0deg);
}

.faq-answer {
  padding: 0 1.25rem 1.125rem;
}

.faq-answer p {
  color: rgba(255,240,216,0.7);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--azul-profundo), var(--azul-noche));
  text-align: center;
}

.cta-final-content {
  max-width: 640px;
  margin: 0 auto;
}

.cta-final-title {
  font-family: var(--font-titles);
  font-weight: 700;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  color: var(--crema);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta-final-sub {
  color: rgba(255,240,216,0.7);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-final-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.cta-final-buttons .btn {
  width: 100%;
  max-width: 280px;
}

@media (min-width: 640px) {
  .cta-final-buttons {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .cta-final-buttons .btn {
    width: auto;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 2.5rem 0;
  background: var(--azul-noche);
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,240,216,0.5);
  max-width: 600px;
  margin: 0 auto 0.5rem;
  line-height: 1.6;
}

.footer-disclaimer strong {
  color: var(--fucsia);
}

.footer-note {
  font-size: 0.6875rem;
  color: rgba(255,240,216,0.35);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
