/* ============================================
   Raíces & Vuelo — Psicología | Crecimientos & Bienestar
   Eamee Pozo
   Rediseño bold — editorial, llamativo, dinámico
   ============================================ */

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

:root {
  /* Brand colors del logo */
  --forest:      #2F5243;   /* verde oscuro principal */
  --forest-deep: #1A3328;   /* verde más oscuro para fondos dark */
  --forest-mid:  #3D6B58;   /* verde medio */
  --forest-sage: #C7DFD2;   /* sage claro */
  --gold:        #D9A26D;   /* dorado/tan del logo */
  --gold-light:  #EFC99A;   /* dorado suave */
  --gold-dark:   #B8823E;   /* dorado intenso */
  --cream:       #F7F9F7;   /* fondo claro */
  --white:       #FFFFFF;
  --text-dark:   #0F1F18;   /* texto oscuro */
  --text-mid:    #3D5249;
  --text-light:  #7A9087;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Nunito', system-ui, sans-serif;

  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--forest-deep);
  padding: 16px 36px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(217, 162, 109, 0.45);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 15px 34px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

.btn-forest {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-forest:hover {
  background: var(--forest-deep);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(47, 82, 67, 0.4);
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #0D1A14;
  border-bottom: 1px solid rgba(217, 162, 109, 0.25);
  transition: box-shadow var(--transition);
}
.header.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.45);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  width: 64px; height: 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-img img {
  width: auto; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-top: 2px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-desktop ul {
  display: flex;
  gap: 32px;
}
.nav-desktop ul li a {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.nav-desktop ul li a:hover { color: var(--gold); }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.lang-switch a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.lang-switch a.active { color: var(--gold); }
.lang-switch a:hover { color: var(--gold); }
.lang-switch span { color: rgba(255,255,255,0.2); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 90px; left: 0; right: 0;
  background: var(--forest-deep);
  padding: 28px;
  gap: 4px;
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.nav-mobile.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.nav-mobile ul { display: flex; flex-direction: column; gap: 0; }
.nav-mobile ul li a {
  display: block;
  padding: 14px 0;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}
.nav-mobile ul li a:hover { color: var(--gold); }
.nav-mobile .lang-switch {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ============================================
   HERO — full dark, editorial
   ============================================ */
.hero {
  min-height: 100vh;
  background: var(--forest-deep);
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

/* Bird wing SVG background decoration */
.hero-bird-bg {
  position: absolute;
  right: -40px; top: 50%;
  transform: translateY(-55%);
  width: 52%;
  max-width: 700px;
  opacity: 0.07;
  pointer-events: none;
}

/* Gold radial glow */
.hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(217, 162, 109, 0.18) 0%, transparent 65%);
  top: -200px; right: -200px;
  border-radius: 50%;
  pointer-events: none;
}

/* Bottom wave separator */
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  overflow: hidden;
}
.hero-wave svg { display: block; width: 100%; height: 100%; }

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

.hero-text {}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.hero-eyebrow-line {
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero-eyebrow-text {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 28px;
}
.hero h1 .accent {
  color: var(--gold);
  font-style: italic;
}
.h1-line {
  display: block;
}
.hero h1 .line-indent {
  padding-left: 60px;
}
.hero-vuelo {
  padding-left: 60px;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  line-height: 1.85;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* Hero right — logo visual */
.hero-logo-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}
.hero-logo-circle {
  width: 460px; height: 460px;
  border-radius: 50%;
  background: rgba(217, 162, 109, 0.06);
  border: 1px solid rgba(217, 162, 109, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-logo-circle::before {
  content: '';
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  border: 1px dashed rgba(217, 162, 109, 0.2);
}
.hero-logo-circle img {
  width: 340px; height: 340px;
  object-fit: contain;
  filter: drop-shadow(0 8px 40px rgba(217, 162, 109, 0.25));
}
.hero-logo-tagline {
  text-align: center;
}
.hero-logo-tagline strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
}
.hero-logo-tagline span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat {}
.hero-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

/* ============================================
   GOLD STRIP — quote band
   ============================================ */
.strip-quote {
  background: var(--gold);
  padding: 28px 0;
  overflow: hidden;
}
.strip-quote-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
}
.strip-quote blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: 600;
  font-style: italic;
  color: var(--forest-deep);
  line-height: 1.4;
}
.strip-quote-icon {
  font-size: 2rem;
  opacity: 0.35;
  flex-shrink: 0;
}

/* ============================================
   SOBRE EAMEE — full-width sin foto
   ============================================ */
.sobre {
  background: var(--cream);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.sobre::after {
  content: '"';
  position: absolute;
  font-family: var(--font-heading);
  font-size: 36rem;
  color: rgba(47, 82, 67, 0.04);
  font-weight: 700;
  line-height: 1;
  bottom: -120px; right: -40px;
  pointer-events: none;
}

.sobre-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

.sobre-left {}

.sobre-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sobre-label::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold-dark);
  display: inline-block;
}

.sobre-left h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--forest-deep);
  line-height: 1.1;
  margin-bottom: 0;
}
.sobre-left h2 em {
  font-style: italic;
  color: var(--forest);
}

.sobre-divider {
  width: 60px; height: 3px;
  background: var(--gold);
  margin: 28px 0;
  border-radius: 2px;
}

.sobre-bio {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 14px;
}

.sobre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.tag {
  background: rgba(47, 82, 67, 0.07);
  color: var(--forest);
  padding: 7px 16px;
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(47, 82, 67, 0.15);
  transition: var(--transition);
}
.tag:hover {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

/* ============================================
   SERVICIOS — dark, bold cards
   ============================================ */
.servicios {
  background: var(--forest-deep);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Top wave */
.servicios-wave-top {
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 60px;
  overflow: hidden;
}
.servicios-wave-top svg { display: block; width: 100%; height: 100%; }

.servicios-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}
.servicios-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.servicios-label::before,
.servicios-label::after {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
  display: inline-block;
}
.servicios-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.servicios-header p {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  position: relative;
  z-index: 1;
}

.servicio-card {
  background: rgba(255,255,255,0.04);
  padding: 40px 32px;
  border: 1px solid rgba(255,255,255,0.07);
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.servicio-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.servicio-card:hover {
  background: rgba(217, 162, 109, 0.07);
  border-color: rgba(217, 162, 109, 0.2);
  transform: translateY(-4px);
}
.servicio-card:hover::after { width: 100%; }

.servicio-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(217, 162, 109, 0.12);
  border: 1px solid rgba(217, 162, 109, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: background var(--transition);
}
.servicio-card:hover .servicio-icon-wrap {
  background: rgba(217, 162, 109, 0.22);
}

.servicio-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.servicio-card p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.8;
}

/* ============================================
   MEDIDOR DE EMOCIONES
   ============================================ */
.medidor {
  background: var(--cream);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.medidor-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.medidor-label::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold-dark);
}

.medidor-header {
  max-width: 600px;
  margin-bottom: 56px;
}
.medidor-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
  color: var(--forest-deep);
  line-height: 1.15;
  margin-bottom: 12px;
}
.medidor-header h2 em { color: var(--forest); font-style: italic; }
.medidor-header p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* Instruction hint */
.emotion-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(47, 82, 67, 0.06);
  border: 1px solid rgba(47, 82, 67, 0.12);
  border-radius: 4px;
  padding: 14px 20px;
  margin-bottom: 28px;
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.emotion-hint-icon { font-size: 1.1rem; flex-shrink: 0; }
.emotion-hint strong { color: var(--forest); }

/* Emotion buttons grid */
.emotion-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.emotion-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--white);
  border: 1.5px solid rgba(47, 82, 67, 0.15);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
}
.emotion-btn .e-icon { font-size: 1.2rem; }
.emotion-btn:hover {
  border-color: var(--forest);
  color: var(--forest);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(47, 82, 67, 0.12);
}
.emotion-btn.active {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(47, 82, 67, 0.25);
}
/* Positive emotions — warm gold tint */
.emotion-btn.positive {
  border-color: rgba(217, 162, 109, 0.35);
  background: rgba(217, 162, 109, 0.06);
}
.emotion-btn.positive:hover {
  border-color: var(--gold-dark);
  color: var(--gold-dark);
}
.emotion-btn.positive.active {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(184, 130, 62, 0.3);
}

/* Section divider label */
.emotion-section-label {
  width: 100%;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 4px 0 2px;
  border-top: 1px solid rgba(47,82,67,0.1);
  margin-top: 4px;
}

/* Result panel — single column */
.emotion-result {
  display: none;
  background: var(--white);
  border: 1px solid rgba(47, 82, 67, 0.12);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.emotion-result.visible { display: block; }

/* Compact top strip */
.result-top {
  background: var(--forest);
  padding: 24px 32px 20px;
  position: relative;
  overflow: hidden;
}
.result-top::after {
  content: '';
  position: absolute;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(217,162,109,0.08);
  top: -60px; right: -40px;
  pointer-events: none;
}
.result-top-header {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.result-emotion-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  flex-shrink: 0;
}
.result-emotion-icon {
  font-size: 1.9rem;
  display: block;
}
.result-emotion-meta {
  flex: 1;
  min-width: 0;
}
.result-emotion-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.result-emotion-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Meter bar */
.result-meter {
  position: relative;
  z-index: 1;
}
.meter-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 7px;
  display: block;
}
.meter-track {
  background: rgba(255,255,255,0.12);
  border-radius: 4px;
  height: 5px;
  overflow: hidden;
}
.meter-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  border-radius: 4px;
  transition: width 0.8s ease;
  width: 0%;
}

/* Content body */
.result-body {
  padding: 32px 36px 36px;
}
.result-body .result-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.result-body .result-label::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--gold-dark);
}
.result-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: 16px;
  line-height: 1.3;
}
.result-advice {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 32px;
}

/* Single emotion: title above advice */
.result-single-title {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: 12px;
  line-height: 1.3;
}

/* Two emotions: dual blocks */
.result-dual {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}
.result-dual-block {
  padding: 20px 0;
  border-bottom: 1px solid rgba(47,82,67,0.1);
}
.result-dual-block:last-child { border-bottom: none; padding-bottom: 0; }
.result-dual-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  background: rgba(47,82,67,0.07);
  border: 1px solid rgba(47,82,67,0.14);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.result-dual-tag.positive {
  color: var(--gold-dark);
  background: rgba(217,162,109,0.1);
  border-color: rgba(217,162,109,0.25);
}
.result-dual-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: 8px;
  line-height: 1.3;
}
.result-dual-advice {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* 3+ emotions: summary card */
.emotion-summary {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.emotion-summary-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.emotion-summary-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 13px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(47,82,67,0.07);
  color: var(--forest);
  border: 1px solid rgba(47,82,67,0.14);
}
.emotion-summary-chip.positive {
  background: rgba(217,162,109,0.1);
  color: var(--gold-dark);
  border-color: rgba(217,162,109,0.25);
}
.emotion-summary-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--forest-deep);
  line-height: 1.3;
}
.emotion-summary-intro {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
  padding: 12px 16px;
  background: rgba(47,82,67,0.04);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
}
.emotion-summary-advice {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.85;
}
/* (kept for fallback) */
.result-combined-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: 12px;
  line-height: 1.3;
}
.result-combined-advice {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 32px;
}
.result-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.result-eamee {
  display: flex;
  align-items: center;
  gap: 10px;
}
.result-eamee-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--forest-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  overflow: hidden;
}
.result-eamee-avatar img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.result-eamee-info span {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--forest);
}
.result-eamee-info small {
  font-size: 0.7rem;
  color: var(--text-light);
}

/* (mobile overrides consolidated in main @media block below) */

/* ============================================
   CTA SECTION — bold gold
   ============================================ */
.cta-section {
  background: var(--forest);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 162, 109, 0.12) 0%, transparent 70%);
  top: -200px; left: 50%;
  transform: translateX(-50%);
}
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D9A26D' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
}
.cta-bird {
  font-size: 3rem;
  margin-bottom: 24px;
  display: block;
}
.cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.cta-section h2 em { color: var(--gold); font-style: italic; }
.cta-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   CONTACTO
   ============================================ */
.contacto {
  background: var(--cream);
  padding: 100px 0;
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contacto-info .section-label-light {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contacto-info .section-label-light::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold-dark);
}

.contacto-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--forest-deep);
  line-height: 1.15;
  margin-bottom: 16px;
}
.contacto-info > p {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 44px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(47, 82, 67, 0.12);
  border-radius: 4px;
  overflow: hidden;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(47, 82, 67, 0.1);
  transition: background var(--transition);
}
.contact-item:last-child { border-bottom: none; }
.contact-item:hover { background: rgba(47, 82, 67, 0.04); }

.contact-item-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: var(--forest);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-item-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 3px;
}
.contact-item-text a,
.contact-item-text p {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--forest);
  transition: color var(--transition);
}
.contact-item-text a:hover { color: var(--gold-dark); }

/* Right — CTA card */
.contacto-cta-card {
  background: var(--forest-deep);
  border-radius: 4px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contacto-cta-card::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 162, 109, 0.15) 0%, transparent 70%);
  top: -80px; right: -80px;
}

.cta-card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  position: relative;
  z-index: 1;
}
.contacto-cta-card h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  line-height: 1.2;
}
.contacto-cta-card h3 em { color: var(--gold); font-style: italic; }
.contacto-cta-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.contacto-cta-card .btn-gold {
  width: 100%;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #0D1F18;
  padding: 56px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-brand .footer-logo img {
  width: 84px; height: 84px;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(217,162,109,0.25));
}
.footer-brand .footer-logo span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}
.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  max-width: 300px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.footer-nav a {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold); }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 24px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}
.footer-credit {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  transition: color var(--transition);
}
.footer-credit a {
  color: rgba(217, 162, 109, 0.5);
  font-weight: 700;
  transition: color var(--transition);
}
.footer-credit a:hover { color: var(--gold); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-logo-visual { display: none; }
  .servicios-grid { grid-template-columns: repeat(2, 1fr); }
  .sobre-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-desktop { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { padding: 116px 0 52px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero h1 { font-size: 2.2rem; line-height: 1.15; margin-bottom: 18px; }
  .hero h1 .line-indent { padding-left: 0; }
  .hero-vuelo { padding-left: 0; }
  .hero-eyebrow { justify-content: center; }
  .hero-desc { font-size: 0.93rem; margin-bottom: 28px; }
  .hero-actions { justify-content: center; flex-wrap: wrap; gap: 12px; }
  .hero-logo-visual { display: none; }

  /* Quote strip */
  .strip-quote { padding: 28px 0; }
  .strip-quote blockquote { font-size: 1rem; }

  /* Sobre */
  .sobre { padding: 60px 0; }
  .sobre-inner { grid-template-columns: 1fr; gap: 32px; }
  .sobre-left h2 { font-size: 1.9rem; line-height: 1.15; }
  .sobre-divider { margin: 14px 0; }
  .sobre-bio { font-size: 0.93rem; }

  /* Servicios */
  .servicios { padding: 60px 0; }
  .servicios-grid { grid-template-columns: 1fr; gap: 0; }

  /* Medidor */
  .medidor { padding: 60px 0; }
  .medidor-header { margin-bottom: 28px; }
  .medidor-header h2 { font-size: 1.9rem; }
  .emotion-grid { gap: 8px; margin-bottom: 28px; }
  .emotion-btn { font-size: 0.82rem; padding: 10px 14px; gap: 7px; }
  .emotion-btn .e-icon { font-size: 1rem; }
  .emotion-hint { font-size: 0.8rem; padding: 11px 14px; margin-bottom: 20px; }

  /* Emotion result panel */
  .result-top { padding: 18px 18px 14px; }
  .result-body { padding: 20px 18px 24px; }
  .result-emotion-name { font-size: 0.95rem; }
  .result-emotion-icon { font-size: 1.5rem; }
  .result-single-title { font-size: 1.25rem; }
  .result-dual-title { font-size: 1rem; }
  .emotion-summary-title { font-size: 1.2rem; }
  .emotion-summary-intro { font-size: 0.83rem; padding: 10px 13px; }
  .emotion-summary-advice { font-size: 0.87rem; }
  .result-cta { flex-direction: column; align-items: flex-start; gap: 16px; }
  .result-cta .btn-forest { width: 100%; justify-content: center; }

  /* CTA section */
  .cta-section { padding: 64px 0; }
  .cta-actions { flex-direction: column; align-items: center; gap: 12px; }
  .cta-actions .btn-gold,
  .cta-actions .btn-outline-white { width: 100%; max-width: 340px; justify-content: center; text-align: center; }

  /* Contacto */
  .contacto { padding: 60px 0; }
  .contacto-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { align-items: flex-start; flex-direction: row; flex-wrap: wrap; gap: 12px 24px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 480px) {
  .hero { padding: 116px 0 44px; }
  .hero h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn-gold,
  .hero-actions .btn-outline-white { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn-gold,
  .cta-actions .btn-outline-white { width: 100%; max-width: 320px; justify-content: center; }
  .emotion-btn { font-size: 0.78rem; padding: 9px 12px; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-fadeup { animation: fadeUp 0.7s ease both; }
.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.25s; }
.d3 { animation-delay: 0.4s; }
.d4 { animation-delay: 0.55s; }

/* Scroll-triggered cards (set by JS) */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
