/* ===== Brand tokens ===== */
:root {
  --color-tan: #DCC8B1;
  --color-sage: #A69F7E;
  --color-sage-dark: #7C7659;
  --color-terracotta: #C77F61;
  --color-beige-light: #EAD9C6;
  --color-cream: #F5F1E8;

  --color-ink: #3B362D;
  --color-ink-soft: #6B6355;
  --color-white: #FFFFFF;

  --font-body: 'Poppins', sans-serif;

  --container-width: 1160px;
  --radius-md: 10px;
  --radius-lg: 20px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 0.7s;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-ink);
  background: var(--color-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1, h2, h3 {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--color-ink);
  margin: 0 0 16px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.8rem, 6.4vw, 4.6rem); font-weight: 600; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); font-weight: 500; }
h3 { font-size: 1.15rem; font-weight: 500; }

p { margin: 0 0 16px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 400;
  color: var(--color-sage-dark);
  margin-bottom: 14px;
  font-style: italic;
}

.center { text-align: center; }
.center.eyebrow { display: block; }

.section-lead {
  max-width: 680px;
  margin: 0 auto 56px;
  color: var(--color-ink-soft);
  font-weight: 300;
}

.section { padding: 110px 0; }

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.cards-grid .card:nth-child(1) { --reveal-delay: 0s; }
.cards-grid .card:nth-child(2) { --reveal-delay: 0.08s; }
.cards-grid .card:nth-child(3) { --reveal-delay: 0.16s; }
.cards-grid .card:nth-child(4) { --reveal-delay: 0.24s; }
.cards-grid .card:nth-child(5) { --reveal-delay: 0.32s; }
.cards-grid .card:nth-child(6) { --reveal-delay: 0.4s; }
.cards-grid .card:nth-child(7) { --reveal-delay: 0.48s; }
.cards-grid .card:nth-child(8) { --reveal-delay: 0.56s; }

.carousel-track > *:nth-child(1)  { --reveal-delay: 0s; }
.carousel-track > *:nth-child(2)  { --reveal-delay: 0.06s; }
.carousel-track > *:nth-child(3)  { --reveal-delay: 0.12s; }
.carousel-track > *:nth-child(4)  { --reveal-delay: 0.18s; }
.carousel-track > *:nth-child(5)  { --reveal-delay: 0.24s; }
.carousel-track > *:nth-child(6)  { --reveal-delay: 0.3s; }
.carousel-track > *:nth-child(7)  { --reveal-delay: 0.36s; }
.carousel-track > *:nth-child(8)  { --reveal-delay: 0.42s; }
.carousel-track > *:nth-child(9)  { --reveal-delay: 0.48s; }
.carousel-track > *:nth-child(10) { --reveal-delay: 0.54s; }
.carousel-track > *:nth-child(11) { --reveal-delay: 0.6s; }
.carousel-track > *:nth-child(12) { --reveal-delay: 0.66s; }
.carousel-track > *:nth-child(13) { --reveal-delay: 0.72s; }

.technique-grid .technique-card:nth-child(1) { --reveal-delay: 0s; }
.technique-grid .technique-card:nth-child(2) { --reveal-delay: 0.05s; }
.technique-grid .technique-card:nth-child(3) { --reveal-delay: 0.1s; }
.technique-grid .technique-card:nth-child(4) { --reveal-delay: 0.15s; }
.technique-grid .technique-card:nth-child(5) { --reveal-delay: 0.2s; }
.technique-grid .technique-card:nth-child(6) { --reveal-delay: 0.25s; }
.technique-grid .technique-card:nth-child(7) { --reveal-delay: 0.3s; }
.technique-grid .technique-card:nth-child(8) { --reveal-delay: 0.35s; }

.steps .step:nth-child(1) { --reveal-delay: 0s; }
.steps .step:nth-child(2) { --reveal-delay: 0.1s; }
.steps .step:nth-child(3) { --reveal-delay: 0.2s; }
.steps .step:nth-child(4) { --reveal-delay: 0.3s; }

.benefits-list li:nth-child(1) { --reveal-delay: 0s; }
.benefits-list li:nth-child(2) { --reveal-delay: 0.06s; }
.benefits-list li:nth-child(3) { --reveal-delay: 0.12s; }
.benefits-list li:nth-child(4) { --reveal-delay: 0.18s; }
.benefits-list li:nth-child(5) { --reveal-delay: 0.24s; }
.benefits-list li:nth-child(6) { --reveal-delay: 0.3s; }

.faq-item:nth-child(1) { --reveal-delay: 0s; }
.faq-item:nth-child(2) { --reveal-delay: 0.05s; }
.faq-item:nth-child(3) { --reveal-delay: 0.1s; }
.faq-item:nth-child(4) { --reveal-delay: 0.15s; }
.faq-item:nth-child(5) { --reveal-delay: 0.2s; }
.faq-item:nth-child(6) { --reveal-delay: 0.25s; }
.faq-item:nth-child(7) { --reveal-delay: 0.3s; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
  position: relative;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn-primary {
  background: var(--color-terracotta);
  color: var(--color-white);
}
.btn-primary:hover { box-shadow: 0 14px 28px rgba(199, 127, 97, 0.32); }

.btn-outline {
  background: transparent;
  border-color: var(--color-sage);
  color: var(--color-sage-dark);
}
.btn-outline:hover { background: var(--color-sage); color: var(--color-white); border-color: var(--color-sage); }

.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.7);
  color: var(--color-white);
}
.btn-outline-light:hover { background: var(--color-white); color: var(--color-terracotta); border-color: var(--color-white); }

.btn-ghost {
  background: transparent;
  color: var(--color-ink);
  padding: 10px 4px;
  position: relative;
}
.btn-ghost::after {
  content: "";
  position: absolute;
  left: 4px; right: 4px; bottom: 4px;
  height: 1px;
  background: var(--color-ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.btn-ghost:hover { color: var(--color-terracotta); transform: none; }
.btn-ghost:hover::after { transform: scaleX(1); transform-origin: left; background: var(--color-terracotta); }

.btn-lg { padding: 17px 34px; font-size: 1rem; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}

.site-header.scrolled {
  background: rgba(245, 241, 232, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(166, 159, 126, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  padding-bottom: 20px;
  transition: padding 0.4s var(--ease);
}

.site-header.scrolled .header-inner { padding-top: 14px; padding-bottom: 14px; }

.logo {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-ink);
  text-decoration: none;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}

.logo-tagline {
  font-size: 0.68rem;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--color-sage-dark);
}

.main-nav {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  text-decoration: none;
  color: var(--color-ink);
  font-size: 0.92rem;
  font-weight: 400;
  position: relative;
  padding-bottom: 4px;
  white-space: nowrap;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--color-terracotta);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.main-nav a:hover { color: var(--color-terracotta); }
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-ctas { display: flex; align-items: center; gap: 18px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

/* ===== Ambient blobs (movimiento en calma) ===== */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(30px, -20px) scale(1.08); }
  100% { transform: translate(-20px, 15px) scale(0.96); }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 120px 0 90px;
  overflow: hidden;
}

.hero .blob-1 {
  width: 360px; height: 360px;
  background: var(--color-tan);
  top: -80px; left: -100px;
  animation: drift 22s ease-in-out infinite alternate;
}
.hero .blob-2 {
  width: 300px; height: 300px;
  background: var(--color-sage);
  bottom: -100px; right: -80px;
  opacity: 0.22;
  animation: drift 26s ease-in-out infinite alternate-reverse;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-title {
  animation: hero-float 6s ease-in-out infinite;
  will-change: transform;
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-title-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px) scale(0.94);
}

.hero-title-word--accent {
  background: linear-gradient(100deg, var(--color-ink) 0%, var(--color-terracotta) 35%, var(--color-sage-dark) 65%, var(--color-ink) 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text.in-view .hero-title-word--accent {
  animation: word-in 0.85s var(--ease) forwards, gradient-shift 7s ease-in-out 0.9s infinite;
}
.hero-text.in-view .hero-title-word:not(.hero-title-word--accent) {
  animation: word-in 0.85s var(--ease) 0.15s forwards;
}

@keyframes word-in {
  from { opacity: 0; transform: translateY(24px) scale(0.94); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-subtitle {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--color-sage-dark);
  margin: -8px 0 24px;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--color-ink-soft);
  max-width: 460px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.media-placeholder {
  aspect-ratio: 4 / 5;
  width: 100%;
  border-radius: var(--radius-lg);
  background: var(--color-tan);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  color: var(--color-sage-dark);
  font-style: italic;
  font-size: 0.95rem;
  overflow: hidden;
  position: relative;
}

.media-placeholder--portrait { aspect-ratio: 3 / 4; }

.media-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}
.media-placeholder:hover .media-photo { transform: scale(1.05); }

@keyframes ken-burns {
  0%   { transform: scale(1.02) translate(0, 0); }
  50%  { transform: scale(1.09) translate(-1.5%, -1%); }
  100% { transform: scale(1.02) translate(0, 0); }
}

.hero-media .media-photo {
  filter: blur(1.5px);
  animation: ken-burns 16s ease-in-out infinite;
}
.hero-media .media-placeholder:hover .media-photo {
  filter: blur(0px);
  transform: scale(1.09);
}

/* Hero photo: no hard frame, soft organic edge, scroll parallax */
.hero-media {
  overflow: visible;
}
.hero-media .media-placeholder {
  background: none;
  padding: 0;
  border-radius: 58% 42% 63% 37% / 48% 55% 45% 52%;
  overflow: hidden;
  box-shadow: 0 50px 90px -30px rgba(59, 54, 45, 0.28);
  transition: transform 0.1s linear, border-radius 1.2s var(--ease);
  will-change: transform;
}
.hero-media .media-placeholder:hover {
  border-radius: 45% 55% 48% 52% / 55% 45% 55% 45%;
}

.media-fallback { padding: 24px; }

/* ===== Quote banner ===== */
.quote-banner {
  position: relative;
  background: var(--color-sage);
  padding: 64px 0;
  overflow: hidden;
}
.quote-banner p {
  position: relative;
  z-index: 1;
  color: var(--color-white);
  text-align: center;
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  font-style: italic;
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto;
}

/* ===== Sobre Luisa ===== */
.about-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.about-text p { color: var(--color-ink-soft); }

.about-media { margin-top: 38px; }

.about-photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.about-photo-wrap::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3%;
  width: 58%;
  height: 7%;
  background: radial-gradient(closest-side, rgba(59, 54, 45, 0.3), transparent 72%);
  transform: translateX(-50%);
  filter: blur(3px);
  z-index: 0;
}

.about-photo-quote {
  margin: 0 0 2.8em;
  padding: 0.9em 6%;
  border-top: 1px solid rgba(124, 118, 89, 0.35);
  border-bottom: 1px solid rgba(124, 118, 89, 0.35);
  text-align: center;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.05rem, 1.9vw, 1.4rem);
  line-height: 1.4;
  color: var(--color-sage-dark);
}

.about-photo-cutout {
  position: relative;
  z-index: 1;
  display: block;
  width: 92%;
  height: auto;
  filter: drop-shadow(0 30px 30px rgba(59, 54, 45, 0.26));
  animation: about-photo-float 6s ease-in-out infinite;
  will-change: transform;
}

@keyframes about-photo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* ===== Como trabaja ===== */
.como-trabaja { background: var(--color-cream); }

.steps {
  list-style: none;
  margin: 64px 0 0;
  padding: 32px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  border-top: 1px solid rgba(166, 159, 126, 0.25);
}

.steps::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  height: 1px;
  width: 0;
  background: var(--color-terracotta);
  transition: width 1.1s var(--ease) 0.1s;
}
.steps.in-view::before { width: 100%; }

.step { padding: 0 8px; }

.step-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--color-tan);
  margin-bottom: 14px;
  transition: color 0.4s var(--ease);
}
.step:hover .step-number { color: var(--color-terracotta); }

.step p { color: var(--color-ink-soft); font-size: 0.95rem; margin: 0; }

/* ===== Cards grid (bonos) ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 20px;
}

.cards-grid--bonos { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

/* ===== Técnicas (cuadrícula 2 columnas) ===== */
.technique-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 880px;
  margin: 0 auto 56px;
}

.technique-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  position: relative;
  box-shadow: 0 1px 0 rgba(166, 159, 126, 0.18);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.technique-card::before {
  content: "";
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 2px;
  background: var(--color-terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.technique-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 34px rgba(59, 54, 45, 0.1);
}
.technique-card:hover::before { transform: scaleX(1); }

.technique-number {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-tan);
  margin-bottom: 8px;
}

.technique-card h3 {
  font-size: 1.05rem;
  margin: 0 0 10px;
}

.technique-card p {
  color: var(--color-ink-soft);
  margin: 0;
  font-size: 0.9rem;
}

.technique-card .card-tag { margin-bottom: 8px; }

@media (max-width: 640px) {
  .technique-grid { grid-template-columns: 1fr; }
}

/* ===== Carousel (fotos de apoyo) ===== */
.carousel-hint {
  color: var(--color-sage-dark);
  font-style: italic;
  font-size: 0.85rem;
  margin: -12px 0 28px;
}

.carousel {
  position: relative;
}

.carousel-track {
  display: flex;
  align-items: stretch;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-padding-left: 4px;
  padding: 4px 4px 20px;
  margin: 0 -4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.carousel-track > * {
  scroll-snap-align: start;
  flex: 0 0 auto;
}

.photo-slide {
  width: 240px;
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 4;
}

.photo-slide--wide {
  width: 380px;
  aspect-ratio: var(--photo-ratio, 3 / 2);
}

.photo-slide--wide img { object-fit: cover; }

.photo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  filter: saturate(1.05) contrast(1.03);
  transition: transform 0.8s var(--ease), filter 0.5s var(--ease);
}

.photo-slide:hover img {
  transform: scale(1.06);
}

.photo-slide figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  color: var(--color-white);
  font-size: 0.72rem;
  font-style: italic;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--color-sage);
  background: var(--color-cream);
  color: var(--color-sage-dark);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.carousel-btn:hover { background: var(--color-sage); color: var(--color-white); }
.carousel-prev { left: -22px; }
.carousel-next { right: -22px; }

@media (max-width: 700px) {
  .carousel-btn { display: none; }
  .photo-slide { width: 60vw; }
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 0 rgba(166, 159, 126, 0.18);
  position: relative;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 28px; right: 28px;
  height: 2px;
  background: var(--color-terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px rgba(59, 54, 45, 0.1);
}
.card:hover::before { transform: scaleX(1); }

.card-tag {
  align-self: flex-start;
  color: var(--color-sage-dark);
  font-size: 0.74rem;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 10px;
}

.service-card p { color: var(--color-ink-soft); font-size: 0.95rem; flex-grow: 0; }

.service-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--color-sage-dark);
  border-top: 1px solid rgba(166, 159, 126, 0.2);
  padding-top: 16px;
  margin: 12px 0 22px;
}

.card-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}
.card-ctas .btn { width: 100%; }

/* Bonos */
.bonos-subheading {
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-sage-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 48px 0 8px;
}
.bonos-subheading:first-of-type { margin-top: 0; }

.bono-card { text-align: center; align-items: center; }
.bono-price {
  font-size: 2.1rem;
  font-weight: 500;
  color: var(--color-terracotta);
  margin-bottom: 4px;
}
.bono-note { color: var(--color-ink-soft); font-size: 0.9rem; }

.bonos-aviso {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  color: var(--color-sage-dark);
}

/* ===== Beneficios ===== */
.beneficios { background: var(--color-cream); }

.beneficios-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: start;
}

.beneficios-text p { color: var(--color-ink-soft); }

.benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.benefits-list li {
  font-weight: 400;
  position: relative;
  padding: 16px 0 16px 34px;
  border-bottom: 1px solid rgba(166, 159, 126, 0.2);
  transition: padding-left 0.35s var(--ease), color 0.35s var(--ease);
}
.benefits-list li:first-child { border-top: 1px solid rgba(166, 159, 126, 0.2); }

.benefits-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-terracotta);
  transition: transform 0.35s var(--ease);
}
.benefits-list li:hover {
  padding-left: 40px;
  color: var(--color-terracotta);
}
.benefits-list li:hover::before { transform: translateY(-50%) scale(1.3); }

/* ===== FAQ ===== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(166, 159, 126, 0.25);
  padding: 22px 0;
}
.faq-item:first-child { border-top: 1px solid rgba(166, 159, 126, 0.25); }

.faq-item summary {
  cursor: pointer;
  font-weight: 400;
  font-size: 1rem;
  color: var(--color-ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.3s var(--ease);
}
.faq-item summary:hover { color: var(--color-terracotta); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--color-terracotta);
  transition: transform 0.3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  color: var(--color-ink-soft);
  margin: 16px 0 0;
  font-size: 0.95rem;
  max-width: 640px;
}

.faq-more {
  text-align: center;
  margin-top: 40px;
  color: var(--color-ink-soft);
}
.faq-more a { color: var(--color-terracotta); font-weight: 500; text-decoration: none; border-bottom: 1px solid currentColor; }

/* ===== CTA final ===== */
.cta-final {
  position: relative;
  background: var(--color-terracotta);
  padding: 110px 0;
  text-align: center;
  overflow: hidden;
}
.cta-final .blob-1 {
  width: 320px; height: 320px;
  background: var(--color-white);
  top: -120px; right: -60px;
  opacity: 0.12;
  animation: drift 24s ease-in-out infinite alternate;
}
.cta-final h2 {
  position: relative;
  z-index: 1;
  color: var(--color-white);
  max-width: 700px;
  margin: 0 auto 36px;
  font-weight: 400;
}
.cta-ctas {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-final .btn-primary {
  background: var(--color-white);
  color: var(--color-terracotta);
}
.cta-final .btn-primary:hover { box-shadow: 0 14px 28px rgba(0,0,0,0.2); }

/* ===== Footer ===== */
.site-footer {
  background: var(--color-ink);
  color: var(--color-cream);
  padding: 60px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(245, 241, 232, 0.15);
}

.footer-brand .logo { color: var(--color-cream); }
.footer-brand .logo-tagline { color: var(--color-tan); }

.footer-contact p, .footer-nav a {
  color: rgba(245, 241, 232, 0.8);
  font-size: 0.92rem;
}
.footer-contact a { color: var(--color-tan); }

.footer-instagram { margin-top: 14px; }

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a { text-decoration: none; transition: color 0.3s var(--ease); }
.footer-nav a:hover { color: var(--color-tan); }

.footer-bottom {
  padding-top: 20px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(245, 241, 232, 0.6);
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-inner,
  .about-inner,
  .beneficios-inner {
    grid-template-columns: 1fr;
  }
  .about-inner { row-gap: 20px; }
  .about-media { margin-top: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 48px; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 1150px) {
  .main-nav, .header-ctas { display: none; }
  .nav-toggle { display: flex; }

  .site-header.nav-open { background: var(--color-cream); }
  .site-header.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-cream);
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(166, 159, 126, 0.25);
  }
  .site-header.nav-open .header-ctas {
    display: flex;
    position: absolute;
    top: calc(100% + 220px);
    left: 0;
    right: 0;
    background: var(--color-cream);
    padding: 0 24px 20px;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .section { padding: 76px 0; }
  .steps { grid-template-columns: 1fr; }
  .hero-ctas, .cta-ctas { flex-direction: column; align-items: stretch; }
  .card-ctas .btn, .hero-ctas .btn, .cta-ctas .btn { width: 100%; }
  .btn { padding: 9px 20px; font-size: 0.82rem; }
  .btn-lg { padding: 11px 24px; font-size: 0.88rem; }
}

/* ===== Music player ===== */
.music-player {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  max-width: min(90vw, 340px);
}

.music-player-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: none;
  border-radius: 999px;
  background: var(--color-terracotta);
  color: var(--color-white);
  font-family: inherit;
  font-size: 0.88rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.music-player-toggle:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22); }

.music-player-icon { font-size: 1.05rem; line-height: 1; }

.music-player-embed {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin-top: 12px;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  transition: max-height 0.4s var(--ease), opacity 0.3s var(--ease);
}

.music-player.is-open .music-player-embed {
  max-height: 170px;
  opacity: 1;
}

.music-player.is-open .music-player-toggle { border-radius: var(--radius-md) var(--radius-md) 0 0; }
