/* ============================================================
   CONEXIÓN ALMA · Design System & Styles
   Landing de conversión · Indira Astrid Apartin
   ============================================================ */

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

/* --- Design Tokens --- */
:root {
  /* Paleta — distribución 60/15/10/7/5/2/1 */
  --crema:       #F5EDE4;
  --crema-dark:  #EDE3D8;
  --crema-light: #FAF6F1;
  --salvia:      #A8B5A0;
  --salvia-light:#C8D4C2;
  --salvia-dark: #8A9A82;
  --aguamarina:  #8FBFB4;
  --aguamarina-light: #B5D8D0;
  --lavanda:     #C4B1D4;
  --lavanda-light:#DDD0EA;
  --lavanda-dark: #9A82AE;
  --rosa:        #D4A5A5;
  --rosa-light:  #E8CBCB;
  --rosa-oro:    #C9967B;
  --violeta:     #7B5E8A;
  --violeta-dark:#5E4570;
  --magenta:     #A13670;
  --magenta-dark:#872D5E;

  --texto:       #3A2F2F;
  --texto-suave: #6B5E5E;
  --texto-light: #8A7D7D;
  --blanco:      #FFFDF9;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Raleway', 'Segoe UI', system-ui, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --max-width-text: 680px;

  /* Borders & Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-round: 50%;

  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(58, 47, 47, 0.06);
  --shadow-medium: 0 8px 32px rgba(58, 47, 47, 0.1);
  --shadow-float: 0 16px 48px rgba(58, 47, 47, 0.12);

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 700ms;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--texto);
  background-color: var(--crema);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--texto);
}

h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 500;
}

h4 {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-weight: 500;
}

p {
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  color: var(--texto-suave);
  max-width: 65ch;
}

.label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--violeta);
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section--alt {
  background-color: var(--crema-dark);
}

.section--white {
  background-color: var(--blanco);
}

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

/* --- Nav --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-sm) 0;
  transition: all var(--duration-normal) var(--ease-out);
}

.nav--scrolled {
  background: rgba(245, 237, 228, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(58, 47, 47, 0.06);
  padding: var(--space-xs) 0;
}

.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.nav__brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--violeta);
  letter-spacing: 0.02em;
}

.nav__links {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
  align-items: center;
}

.nav__link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--texto-suave);
  transition: color var(--duration-fast) var(--ease-out);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--violeta);
  transition: width var(--duration-normal) var(--ease-out);
}

.nav__link:hover {
  color: var(--violeta);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--texto);
  transition: all var(--duration-fast) var(--ease-out);
  border-radius: 2px;
}

/* Mobile Nav */
@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--crema-light);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-lg);
    padding: var(--space-xl);
    transition: right var(--duration-slow) var(--ease-out);
    box-shadow: -8px 0 40px rgba(58, 47, 47, 0.1);
  }

  .nav__links--open {
    right: 0;
  }

  .nav__link {
    font-size: 1.1rem;
  }

  .nav__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(58, 47, 47, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-normal) var(--ease-out);
    z-index: -1;
  }

  .nav__overlay--visible {
    opacity: 1;
    visibility: visible;
  }
}

/* --- CTA Button --- */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--magenta);
  color: var(--blanco);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: var(--radius-xl);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left var(--duration-slow) var(--ease-out);
}

.cta:hover {
  background: var(--magenta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(161, 54, 112, 0.3);
}

.cta:hover::before {
  left: 100%;
}

.cta--secondary {
  background: transparent;
  color: var(--violeta);
  border: 1.5px solid var(--violeta);
}

.cta--secondary:hover {
  background: var(--violeta);
  color: var(--blanco);
  box-shadow: 0 8px 24px rgba(123, 94, 138, 0.25);
}

.cta--small {
  padding: 12px 28px;
  font-size: 0.82rem;
}

.cta__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* --- HERO --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--crema);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: calc(var(--space-3xl) + 60px) var(--space-md) var(--space-3xl);
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__label {
  margin-bottom: var(--space-md);
  display: inline-block;
}

.hero__title {
  margin-bottom: var(--space-md);
  color: var(--texto);
}

.hero__title span {
  display: block;
  color: var(--violeta);
  font-style: italic;
  font-weight: 300;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--texto-suave);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
  max-width: 50ch;
}

.hero__ctas {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero__image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__image {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
}

.hero__image-accent {
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(196, 177, 212, 0.15) 0%, transparent 70%);
  z-index: -1;
  animation: pulse-soft 6s ease-in-out infinite;
}

@keyframes pulse-soft {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.05); opacity: 1; }
}

.hero__decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--crema));
  z-index: 1;
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-lg);
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__ctas {
    justify-content: center;
  }

  .hero__image-wrapper {
    order: -1;
  }

  .hero__image {
    max-width: 320px;
  }
}

/* --- Section Header --- */
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header .label {
  margin-bottom: var(--space-sm);
  display: block;
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header p {
  margin: 0 auto;
  max-width: 55ch;
}

.section-header__line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--rosa-oro), var(--lavanda));
  margin: var(--space-md) auto 0;
  border-radius: 2px;
}

/* --- Service Card (Servicio Estrella) --- */
.service-star {
  background: var(--blanco);
  position: relative;
  overflow: hidden;
}

.service-star::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lavanda), var(--rosa-oro), var(--magenta));
}

.service-star__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.service-star__image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.service-star__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.service-star__badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: rgba(245, 237, 228, 0.92);
  backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: var(--radius-xl);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--magenta);
}

.service-star__content h2 {
  margin-bottom: var(--space-sm);
}

.service-star__content h2 em {
  font-style: italic;
  color: var(--violeta);
  font-weight: 300;
}

.service-star__description {
  margin-bottom: var(--space-md);
}

.service-star__note {
  background: var(--crema-light);
  border-left: 3px solid var(--salvia);
  padding: var(--space-sm) var(--space-md);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: var(--space-lg);
  font-size: 0.88rem;
  color: var(--texto-suave);
  line-height: 1.7;
}

.service-star__note strong {
  color: var(--texto);
  font-weight: 600;
}

@media (max-width: 900px) {
  .service-star__grid {
    grid-template-columns: 1fr;
  }
}

/* --- Testimonial Cards --- */
.testimonials-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.testimonial-card {
  background: var(--crema-light);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  position: relative;
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.testimonial-card__quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--lavanda);
  opacity: 0.5;
  position: absolute;
  top: 16px;
  left: 24px;
}

.testimonial-card__text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 400;
  color: var(--texto);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.testimonial-card__author {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--violeta);
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial-card__author::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--rosa-oro);
  display: block;
}

@media (max-width: 900px) {
  .testimonials-row {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
}

/* --- Service Section (Carta Natal, Registros) --- */
.service {
  overflow: hidden;
}

.service__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.service__grid--reverse {
  direction: rtl;
}

.service__grid--reverse > * {
  direction: ltr;
}

.service__image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.service__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.service__content .label {
  margin-bottom: var(--space-sm);
  display: block;
}

.service__content h2 {
  margin-bottom: var(--space-sm);
}

.service__content p {
  margin-bottom: var(--space-md);
}

.service__testimonial {
  background: var(--crema-light);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
  border-left: 3px solid var(--lavanda);
}

.service__testimonial blockquote {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--texto);
  line-height: 1.7;
  margin-bottom: var(--space-xs);
}

.service__testimonial cite {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 600;
  color: var(--violeta);
}

@media (max-width: 900px) {
  .service__grid,
  .service__grid--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* --- Parallax Banner --- */
.parallax-banner {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-banner__image {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  object-fit: cover;
  z-index: 0;
}

.parallax-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(245, 237, 228, 0.3),
    rgba(245, 237, 228, 0.1),
    rgba(245, 237, 228, 0.3)
  );
  z-index: 1;
}

.parallax-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--blanco);
  text-shadow: 0 2px 12px rgba(58, 47, 47, 0.3);
}

.parallax-banner__content h3 {
  color: var(--blanco);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
}

@media (max-width: 768px) {
  .parallax-banner {
    height: 280px;
  }
}

/* --- About / Sobre Mí --- */
.about {
  background: var(--crema-dark);
  overflow: hidden;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: center;
}

.about__image-wrapper {
  position: relative;
}

.about__image {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
}

.about__image-frame {
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 1.5px solid var(--lavanda);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.5;
}

.about__content .label {
  margin-bottom: var(--space-sm);
  display: block;
}

.about__content h2 {
  margin-bottom: var(--space-md);
}

.about__text {
  margin-bottom: var(--space-md);
}

.about__credentials {
  list-style: none;
  margin-bottom: var(--space-lg);
}

.about__credentials li {
  font-size: 0.92rem;
  color: var(--texto-suave);
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}

.about__credentials li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--rosa-oro);
  font-size: 0.7rem;
  top: 9px;
}

.about__location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--salvia-dark);
  font-weight: 500;
}

.about__location svg {
  width: 18px;
  height: 18px;
  color: var(--salvia);
}

@media (max-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about__image {
    margin: 0 auto;
    max-width: 320px;
  }

  .about__image-frame {
    display: none;
  }

  .about__credentials {
    display: inline-block;
    text-align: left;
  }

  .about__location {
    justify-content: center;
  }
}

/* --- Modality Section --- */
.modality {
  background: var(--blanco);
}

.modality__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.modality__image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.modality__image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center;
}

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

/* --- CTA Final --- */
.cta-final {
  background: linear-gradient(135deg, var(--violeta-dark) 0%, var(--violeta) 40%, var(--lavanda-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(196, 177, 212, 0.2) 0%, transparent 60%);
}

.cta-final__inner {
  position: relative;
  z-index: 1;
}

.cta-final h2 {
  color: var(--blanco);
  margin-bottom: var(--space-sm);
  font-weight: 300;
}

.cta-final p {
  color: rgba(255, 253, 249, 0.85);
  margin: 0 auto var(--space-lg);
  font-size: 1.05rem;
}

.cta-final .cta {
  background: var(--blanco);
  color: var(--violeta);
  font-weight: 600;
}

.cta-final .cta:hover {
  background: var(--crema-light);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* --- Footer --- */
.footer {
  background: var(--texto);
  color: rgba(255, 253, 249, 0.6);
  padding: var(--space-lg) 0;
  text-align: center;
}

.footer p {
  font-size: 0.82rem;
  color: rgba(255, 253, 249, 0.5);
  max-width: none;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: rgba(255, 253, 249, 0.8);
  margin-bottom: var(--space-xs);
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

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

.reveal--delay-1 { transition-delay: 100ms; }
.reveal--delay-2 { transition-delay: 200ms; }
.reveal--delay-3 { transition-delay: 300ms; }

/* --- Testimonials Inline (inside service star) --- */
.testimonials-star {
  margin-top: var(--space-xl);
}

/* --- WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: all var(--duration-normal) var(--ease-out);
  animation: whatsapp-pulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 4px 28px rgba(37, 211, 102, 0.5), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* --- FAQ --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  background: var(--blanco);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--duration-normal) var(--ease-out);
}

.faq-item:hover {
  box-shadow: var(--shadow-soft);
}

.faq-item[open] {
  box-shadow: var(--shadow-medium);
}

.faq-item__question {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 500;
  color: var(--texto);
  cursor: pointer;
  padding: var(--space-md) var(--space-lg);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  transition: color var(--duration-fast) var(--ease-out);
  user-select: none;
}

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

.faq-item__question::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--rosa-oro);
  flex-shrink: 0;
  transition: transform var(--duration-normal) var(--ease-out);
  line-height: 1;
}

.faq-item[open] .faq-item__question::after {
  transform: rotate(45deg);
}

.faq-item[open] .faq-item__question {
  color: var(--violeta);
}

.faq-item__answer {
  padding: 0 var(--space-lg) var(--space-lg);
  animation: faq-open var(--duration-normal) var(--ease-out);
}

.faq-item__answer p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--texto-suave);
  margin-bottom: var(--space-sm);
}

.faq-item__answer p:last-child {
  margin-bottom: 0;
}

.faq-item__answer .cta {
  margin-top: var(--space-sm);
}

@keyframes faq-open {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Misc --- */
::selection {
  background: var(--lavanda-light);
  color: var(--texto);
}

/* Smooth image loading */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.5s ease;
}

img[loading="lazy"].loaded {
  opacity: 1;
}

/* --- Otras Propuestas (Programa 4 Fases + Meditación) --- */
.otras-propuestas {
  padding: var(--space-xl) 0 var(--space-lg);
}

.otras-propuestas__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.propuesta-card {
  max-width: var(--max-width-narrow);
  margin: 0 auto var(--space-md);
  background: var(--crema-light);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  border-left: 3px solid var(--rosa-oro);
}

.propuesta-card h3 {
  margin-bottom: var(--space-xs);
  color: var(--violeta);
}

.propuesta-card p {
  margin-bottom: var(--space-md);
}

.propuesta-card--discreta {
  background: transparent;
  border-left: 2px solid var(--salvia-light);
  padding: var(--space-md) var(--space-lg);
  margin-bottom: 0;
}

.propuesta-card--discreta h4 {
  color: var(--texto-suave);
  margin-bottom: var(--space-xs);
}

.propuesta-card--discreta p {
  font-size: 0.92rem;
  margin-bottom: var(--space-sm);
}

.propuesta-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--violeta);
  transition: color var(--duration-fast) var(--ease-out);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.propuesta-link:hover {
  color: var(--magenta);
}

/* --- About Intro (warm presentation) --- */
.about__intro {
  text-align: center;
  max-width: var(--max-width-text);
  margin: 0 auto var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(196, 177, 212, 0.3);
}

.about__intro p:first-child {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 400;
  font-style: italic;
  color: var(--texto);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.about__intro p:last-child {
  color: var(--texto-suave);
  margin: 0 auto;
}

/* --- Registros image: show full heads --- */
#registros .service__image {
  object-position: center top;
}

/* --- Subtle brightness for darker photos --- */
.parallax-banner__image {
  filter: brightness(1.08);
}

/* --- Footer Social --- */
.footer__social {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-sm);
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-round);
  background: rgba(255, 253, 249, 0.08);
  transition: all var(--duration-fast) var(--ease-out);
}

.footer__social a:hover {
  background: rgba(255, 253, 249, 0.15);
  transform: translateY(-2px);
}

.footer__social svg {
  width: 18px;
  height: 18px;
  fill: rgba(255, 253, 249, 0.5);
  transition: fill var(--duration-fast) var(--ease-out);
}

.footer__social a:hover svg {
  fill: rgba(255, 253, 249, 0.8);
}
