@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --porcelain: #F4F4F0;
  --porcelain-soft: #ece9e2;
  --shadow-grey: #22252A;
  --amaranth: #8C263E;
  --amaranth-dark: #6d1d30;
  --rosy-taupe: #D3A297;
  --rosy-taupe-soft: #e7cec6;

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;

  --max-width: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--porcelain);
  color: var(--shadow-grey);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  opacity: 0;
  animation: pageIn 0.5s ease forwards;
}

@keyframes pageIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amaranth);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 18px;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.15; color: var(--shadow-grey); }
h2 { font-size: clamp(32px, 4.4vw, 48px); font-weight: 400; letter-spacing: -0.01em; }

.section-head { max-width: 640px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 17px; color: #55595f; margin-top: 18px; font-weight: 300; }

section { padding: 120px 0; position: relative; }

.page-hero {
  padding: 170px 0 70px;
  text-align: center;
}
.page-hero .eyebrow { display: block; }
.page-hero p { max-width: 560px; margin: 18px auto 0; color: #55595f; font-size: 17px; font-weight: 300; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 14.5px; font-weight: 500; letter-spacing: 0.03em;
  padding: 17px 34px; border-radius: 2px; border: 1px solid transparent;
  cursor: pointer; transition: all 0.25s ease; white-space: nowrap;
}
.btn-primary { background: var(--amaranth); color: var(--porcelain); }
.btn-primary:hover { background: var(--amaranth-dark); }
.btn-outline { background: transparent; border-color: var(--shadow-grey); color: var(--shadow-grey); }
.btn-outline:hover { background: var(--shadow-grey); color: var(--porcelain); }
.btn-outline-light { background: transparent; border-color: rgba(244,244,240,0.4); color: var(--porcelain); }
.btn-outline-light:hover { background: var(--porcelain); color: var(--shadow-grey); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 18px 0;
  background: rgba(244,244,240,0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(34,37,42,0.08);
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  padding: 14px 0;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; flex-wrap: nowrap; gap: 24px; }
.site-header .logo { flex-shrink: 0; }
.site-header .logo img { height: 26px; width: auto; display: block; }

.site-header nav.desktop-nav { display: none; align-items: center; gap: 28px; flex: 1 1 auto; min-width: 0; justify-content: center; }
@media (min-width: 900px) { .site-header nav.desktop-nav { display: flex; } }
@media (min-width: 1080px) { .site-header nav.desktop-nav { gap: 36px; } }
.site-header nav.desktop-nav a {
  font-size: 14px; font-weight: 400; letter-spacing: 0.02em; color: var(--shadow-grey); opacity: 0.75;
  transition: opacity 0.2s ease; white-space: nowrap;
}
.site-header nav.desktop-nav a:hover, .site-header nav.desktop-nav a.active { opacity: 1; }

.header-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }

.header-cta { display: none; }
@media (min-width: 900px) { .header-cta { display: inline-flex; } }

.nav-toggle {
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer; padding: 6px; z-index: 210;
  width: 32px; height: 32px; position: relative;
}
@media (min-width: 900px) { .nav-toggle { display: none; } }
.nav-toggle span {
  position: absolute; left: 4px; right: 4px; height: 1.6px; background: var(--shadow-grey);
  transition: transform 0.28s ease, opacity 0.2s ease;
}
.nav-toggle span:nth-child(1) { top: 10px; }
.nav-toggle span:nth-child(2) { top: 16px; }
.nav-toggle span:nth-child(3) { top: 22px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav-overlay {
  position: fixed; inset: 0; z-index: 204;
  background: rgba(34,37,42,0.45);
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: auto; }

.mobile-nav {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 205;
  width: 82%; max-width: 360px;
  background: var(--porcelain);
  box-shadow: -20px 0 50px -20px rgba(34,37,42,0.35);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 6px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 40px 36px 60px;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-close {
  position: absolute; top: 24px; right: 24px;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(34,37,42,0.15); background: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; color: var(--shadow-grey);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.3s ease;
  transform: rotate(-45deg); opacity: 0;
}
.mobile-nav.open .mobile-nav-close { transform: rotate(0deg); opacity: 1; transition-delay: 0.1s; }
.mobile-nav-close:hover { background: var(--amaranth); border-color: var(--amaranth); color: var(--porcelain); }
.mobile-nav-close svg { width: 16px; height: 16px; }
.mobile-nav .mobile-nav-eyebrow {
  font-family: var(--font-body); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--rosy-taupe); opacity: 0.9; margin-bottom: 14px;
}
.mobile-nav a:not(.btn) {
  font-family: var(--font-display); font-size: 24px; color: var(--shadow-grey);
  padding: 9px 0; position: relative; opacity: 0; transform: translateX(14px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s ease;
}
.mobile-nav.open a:not(.btn) { opacity: 1; transform: translateX(0); }
.mobile-nav.open a:not(.btn):nth-child(3) { transition-delay: 0s; }
.mobile-nav.open a:not(.btn):nth-child(4) { transition-delay: 0.04s; }
.mobile-nav.open a:not(.btn):nth-child(5) { transition-delay: 0.08s; }
.mobile-nav.open a:not(.btn):nth-child(6) { transition-delay: 0.12s; }
.mobile-nav.open a:not(.btn):nth-child(7) { transition-delay: 0.16s; }
.mobile-nav.open a:not(.btn):nth-child(8) { transition-delay: 0.2s; }
.mobile-nav a.active:not(.btn) { color: var(--amaranth); }
.mobile-nav a.active:not(.btn)::after {
  content: ''; position: absolute; left: 0; bottom: 5px;
  width: 22px; height: 1.5px; background: var(--amaranth);
}
.mobile-nav .btn {
  margin-top: 22px; font-family: var(--font-body); font-size: 15px; width: 100%; justify-content: center;
  opacity: 0; transform: translateX(14px); transition: opacity 0.4s ease 0.24s, transform 0.4s ease 0.24s;
}
.mobile-nav.open .btn { opacity: 1; transform: translateX(0); }

/* ---------- Cómo funciona (usado en home) ---------- */
.how { background: var(--shadow-grey); color: var(--porcelain); }
.how .eyebrow { color: var(--rosy-taupe); }
.how h2 { color: var(--porcelain); }
.how .section-head p { color: rgba(244,244,240,0.65); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(244,244,240,0.14); border-top: 1px solid rgba(244,244,240,0.14); }
@media (max-width: 860px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--shadow-grey); padding: 44px 32px 40px; position: relative; overflow: hidden;
  transition: background 0.3s ease;
}
.step::before {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0;
  background: var(--rosy-taupe); transition: height 0.4s ease;
}
.step:hover { background: #292c33; }
.step:hover::before { height: 100%; }
.step .num {
  font-family: var(--font-display); font-size: 40px; font-weight: 400;
  color: transparent; -webkit-text-stroke: 1px var(--rosy-taupe);
  margin-bottom: 20px; letter-spacing: 0.01em; line-height: 1; display: block;
}
.step-progress { width: 100%; height: 2px; background: rgba(244,244,240,0.14); margin-bottom: 22px; overflow: hidden; }
.step-progress-fill { width: 0%; height: 100%; background: var(--amaranth); transition: width 0.9s cubic-bezier(0.22, 1, 0.36, 1); }
.step.in-view .step-progress-fill { width: 100%; }
.step h3 { color: var(--porcelain); font-size: 22px; margin-bottom: 12px; }
.step p { font-size: 14.5px; color: rgba(244,244,240,0.6); font-weight: 300; }

/* ---------- Hero home ---------- */
.hero { min-height: 92vh; display: flex; align-items: center; padding-top: 120px; padding-bottom: 60px; background: var(--porcelain); }
.hero .wrap { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
@media (max-width: 860px) { .hero .wrap { grid-template-columns: 1fr; } }
.hero-copy h1 { font-size: clamp(40px, 6vw, 68px); margin-bottom: 26px; }
.hero-copy .lede { font-size: 18px; color: #4c5056; max-width: 460px; margin-bottom: 40px; font-weight: 300; }
.hero-copy .cta-row { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { position: relative; display: flex; justify-content: center; overflow: hidden; padding: 0 20px; }
.phone-stack { position: relative; width: 100%; max-width: 340px; aspect-ratio: 9/17.5; }
.phone-frame { position: absolute; width: 74%; aspect-ratio: 9/17.5; background: var(--shadow-grey); border-radius: 34px; padding: 10px; box-shadow: 0 30px 60px -20px rgba(34,37,42,0.35); }
.phone-frame .screen { width: 100%; height: 100%; border-radius: 24px; overflow: hidden; background: linear-gradient(160deg, var(--rosy-taupe-soft), var(--porcelain)); }
.phone-frame.back { top: 8%; right: 6%; transform: rotate(7deg); opacity: 0.55; z-index: 1; }
.phone-frame.front { bottom: 0; left: 6%; transform: rotate(-4deg); z-index: 2; }
.phone-frame img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 640px) {
  .hero-visual { padding: 0 12px; margin-top: 20px; }
  .phone-stack { max-width: 260px; }
}

/* ---------- Explora más (home) ---------- */
.explore-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 860px) { .explore-grid { grid-template-columns: 1fr; } }

.explore-card {
  background: #fff; border: 1px solid rgba(34,37,42,0.1);
  padding: 34px 30px 32px; position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 20px; min-height: 220px; justify-content: flex-end;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.explore-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--amaranth); transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.explore-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 44px -22px rgba(34,37,42,0.22);
  border-color: transparent;
}
.explore-card:hover::before { transform: scaleX(1); }

.explore-num {
  position: absolute; top: 18px; right: 24px;
  font-family: var(--font-display); font-size: 54px; font-weight: 400;
  color: rgba(34,37,42,0.06); line-height: 1; user-select: none;
}
.explore-card-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; }
.explore-name { font-family: var(--font-display); font-size: 30px; line-height: 1.08; color: var(--shadow-grey); }
.explore-desc { font-size: 14px; color: #6b6f75; font-weight: 300; }

.explore-arrow {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(34,37,42,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--shadow-grey);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}
.explore-arrow svg { width: 16px; height: 16px; }
.explore-card:hover .explore-arrow { background: var(--amaranth); border-color: var(--amaranth); color: var(--porcelain); transform: rotate(45deg); }

/* ---------- Planes ---------- */
.plans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 980px) { .plans-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .plans-grid { grid-template-columns: 1fr; } }
.plan-card {
  background: #fff; border: 1px solid rgba(34,37,42,0.1); padding: 40px 28px;
  display: flex; flex-direction: column; position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: 0 24px 40px -20px rgba(34,37,42,0.18); }
.plan-card.featured { background: var(--shadow-grey); border-color: var(--shadow-grey); }
.plan-card.featured .plan-name, .plan-card.featured .plan-tagline { color: var(--porcelain); }
.plan-card.featured .plan-price { color: var(--rosy-taupe); }
.plan-card.featured .plan-features li { color: rgba(244,244,240,0.82); border-top-color: rgba(244,244,240,0.14); }
.plan-card.featured .plan-features li::before { color: var(--rosy-taupe); }
.plan-badge {
  position: absolute; top: -13px; left: 28px; background: var(--amaranth); color: var(--porcelain);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 14px; font-weight: 500;
}
.plan-name { font-family: var(--font-display); font-size: 26px; color: var(--shadow-grey); margin-bottom: 4px; }
.plan-tagline { font-size: 13.5px; color: #6b6f75; margin-bottom: 22px; font-weight: 300; }
.plan-price { font-family: var(--font-display); font-size: 38px; color: var(--amaranth); margin-bottom: 26px; }
.plan-price span { font-size: 14px; color: inherit; opacity: 0.6; font-family: var(--font-body); }
.plan-features { list-style: none; margin-bottom: 30px; flex-grow: 1; }
.plan-features li { font-size: 14px; color: #4c5056; padding: 8px 0 8px 22px; position: relative; border-top: 1px solid rgba(34,37,42,0.07); font-weight: 300; }
.plan-features li:first-child { border-top: none; }
.plan-features li::before { content: '+'; position: absolute; left: 0; top: 8px; color: var(--amaranth); font-weight: 500; }
.plan-card .btn { width: 100%; justify-content: center; }

/* ---------- Ejemplos por modelo (grande) ---------- */
.examples-page { background: var(--porcelain-soft); }
.example-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
  padding: 90px 0; border-top: 1px solid rgba(34,37,42,0.1);
}
.example-block:first-of-type { border-top: none; padding-top: 20px; }
@media (max-width: 900px) { .example-block { grid-template-columns: 1fr; gap: 40px; } }
.example-info .plan-tag {
  font-family: var(--font-body); font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--amaranth); font-weight: 500; margin-bottom: 16px; display: inline-block;
}
.example-info h3 { font-size: 40px; margin-bottom: 18px; }
.example-info p.desc { color: #55595f; font-size: 16px; margin-bottom: 30px; font-weight: 300; max-width: 460px; }
.video-wrap {
  position: relative; width: 100%; aspect-ratio: 16/9;
  background: var(--shadow-grey); margin-bottom: 8px; overflow: hidden;
}
.video-wrap iframe, .video-wrap video { width: 100%; height: 100%; border: none; object-fit: cover; }
.video-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  color: rgba(244,244,240,0.5); font-size: 14px; text-align: center; padding: 20px;
}
.example-demos { display: flex; gap: 26px; flex-wrap: wrap; justify-content: center; }
.demo-item { width: 190px; cursor: pointer; text-align: center; }
.demo-item .mini-phone {
  width: 190px; height: 366px; background: var(--shadow-grey); border-radius: 28px; padding: 9px;
  margin-bottom: 16px; transition: transform 0.25s ease;
}
.demo-item:hover .mini-phone { transform: translateY(-8px); }
.demo-item .mini-screen { width: 100%; height: 100%; border-radius: 20px; overflow: hidden; }
.demo-item .mini-screen img { width: 100%; height: 100%; object-fit: cover; }
.demo-item .demo-title { font-family: var(--font-display); font-size: 18px; font-weight: 500; color: var(--shadow-grey); }
.demo-item .demo-cta { font-size: 12.5px; color: var(--amaranth); margin-top: 4px; }
.add-more-note {
  width: 190px; height: 366px; border: 1px dashed rgba(34,37,42,0.25); border-radius: 28px;
  display: flex; align-items: center; justify-content: center; text-align: center; font-size: 13px;
  color: #8a8d92; padding: 20px; font-weight: 300;
}

/* ---------- Eventos (hub) ---------- */
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .events-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .events-grid { grid-template-columns: 1fr; } }

.event-tile {
  background: #fff; border: 1px solid rgba(34,37,42,0.1);
  padding: 36px 30px 30px; text-align: left; display: flex; flex-direction: column; gap: 22px;
  position: relative; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.event-tile::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--amaranth); transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.event-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 44px -22px rgba(34,37,42,0.22);
  border-color: transparent;
}
.event-tile:hover::before { transform: scaleX(1); }

.event-tile-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.event-tile .event-name { font-family: var(--font-display); font-size: 30px; line-height: 1.1; color: var(--shadow-grey); }

.event-tile-arrow {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(34,37,42,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--shadow-grey);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}
.event-tile-arrow svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.event-tile:hover .event-tile-arrow { background: var(--amaranth); border-color: var(--amaranth); color: var(--porcelain); transform: rotate(45deg); }

.event-status {
  display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
  font-size: 11.5px; letter-spacing: 0.04em; font-weight: 500;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(140,38,62,0.08); color: var(--amaranth);
}
.event-status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--amaranth); }
.event-tile.has-demo .event-status { background: rgba(124,144,112,0.12); color: #5c7350; }
.event-tile.has-demo .event-status::before { background: #7c9070; }

.event-tile.reveal { transition-property: opacity, transform; }

/* ---------- Página individual de evento ---------- */
.event-plan-block { border-top: 1px solid rgba(34,37,42,0.1); padding: 70px 0; }
.event-plan-block:first-of-type { border-top: none; }
.event-plan-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 34px; flex-wrap: wrap; }
.event-plan-head h3 { font-size: 30px; }
.event-plan-head .plan-price-tag { font-family: var(--font-display); font-size: 24px; color: var(--amaranth); }
.event-plan-empty {
  border: 1px dashed rgba(34,37,42,0.25); padding: 40px; text-align: center;
}
.event-plan-empty p { color: #55595f; font-size: 15px; margin-bottom: 18px; font-weight: 300; }

/* ---------- Deluxe spotlight ---------- */
.deluxe-spotlight { background: var(--shadow-grey); color: var(--porcelain); }
.deluxe-spotlight-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.deluxe-spotlight .eyebrow { color: var(--rosy-taupe); }
.deluxe-spotlight h2 { color: var(--porcelain); }
.deluxe-spotlight p { color: rgba(244,244,240,0.78); font-size: 16.5px; font-weight: 300; margin: 22px 0 34px; }

/* ---------- Nosotros ---------- */
.about { background: var(--shadow-grey); color: var(--porcelain); }
.about-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 64px; align-items: center; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }
.about .eyebrow { color: var(--rosy-taupe); }
.about h2 { color: var(--porcelain); margin-bottom: 0; }
.about-mark { display: flex; justify-content: center; }
.about-mark img { width: 100%; max-width: 220px; opacity: 0.92; }
.about-copy p { font-size: 16px; color: rgba(244,244,240,0.78); margin-top: 20px; font-weight: 300; }
.about-copy p:first-of-type { margin-top: 0; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-top: 1px solid rgba(34,37,42,0.12); }
.faq-item:last-child { border-bottom: 1px solid rgba(34,37,42,0.12); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px; background: none; border: none; text-align: left; cursor: pointer;
  font-family: var(--font-body); font-size: 16.5px; font-weight: 400; color: var(--shadow-grey);
}
.faq-q .icon-plus { flex-shrink: 0; width: 18px; height: 18px; position: relative; }
.faq-q .icon-plus::before, .faq-q .icon-plus::after { content: ''; position: absolute; background: var(--amaranth); transition: transform 0.25s ease; }
.faq-q .icon-plus::before { width: 18px; height: 1.5px; top: 8px; left: 0; }
.faq-q .icon-plus::after { width: 1.5px; height: 18px; top: 0; left: 8px; }
.faq-item.open .icon-plus::after { transform: rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding: 0 4px 24px; font-size: 14.5px; color: #55595f; font-weight: 300; max-width: 640px; }

/* ---------- Contacto ---------- */
.contact { background: var(--amaranth); color: var(--porcelain); text-align: center; padding: 100px 0; }
.contact .eyebrow { color: var(--rosy-taupe-soft); }
.contact h2 { color: var(--porcelain); }
.contact p { color: rgba(244,244,240,0.82); max-width: 480px; margin: 18px auto 36px; font-size: 16px; font-weight: 300; }
.contact-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.contact .btn-primary { background: var(--porcelain); color: var(--amaranth); }
.contact .btn-primary:hover { background: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--shadow-grey); color: rgba(244,244,240,0.55); padding: 44px 0 28px; text-align: center; font-size: 13px; }
.site-footer > .wrap > img { height: 22px; margin: 0 auto 30px; opacity: 0.92; }
.footer-nav {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 28px;
  margin-bottom: 30px; padding-bottom: 30px; border-bottom: 1px solid rgba(244,244,240,0.12);
}
.footer-nav a { font-size: 13.5px; color: rgba(244,244,240,0.72); transition: color 0.2s ease; }
.footer-nav a:hover { color: var(--rosy-taupe); }
.brand-footer { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-bottom: 24px; }
.brand-footer > a {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px;
  color: rgba(244,244,240,0.65); transition: color 0.2s ease;
}
.brand-footer > a:hover { color: var(--rosy-taupe); }
.brand-social { display: flex; gap: 16px; }
.brand-social a { color: rgba(244,244,240,0.65); transition: color 0.2s ease; }
.brand-social a:hover { color: var(--rosy-taupe); }
.footer-copy { font-size: 12px; color: rgba(244,244,240,0.4); }

/* ---------- Utilidades ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (max-width: 640px) {
  section { padding: 80px 0; }
  .wrap { padding: 0 22px; }
  .page-hero { padding: 140px 0 50px; }
}
