/* ============================================================
   BLAIR & PHOEBE LANDING PAGE — CSS
   O Duo Mais Iconicamente Oposto do Mundo
   ============================================================ */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Blair — warm, soft, sleepy */
  --blair-cream:         #fdf6ee;
  --blair-cream-dark:    #f5ead8;
  --blair-blush:         #f4c2c2;
  --blair-blush-dark:    #e8a0a0;
  --blair-lavender:      #d8c9f0;
  --blair-lavender-dark: #b8a0d8;
  --blair-peach:         #ffd6b0;
  --blair-peach-dark:    #ffb880;
  --blair-brown:         #8B5E3C;
  --blair-brown-dark:    #5c3d21;
  --blair-text:          #3d2b1a;
  --blair-text-light:    #7a5a42;

  /* Phoebe — electric, vibrant, explosive */
  --phoebe-dark:         #0a0a1a;
  --phoebe-darker:       #050510;
  --phoebe-electric:     #00e5ff;
  --phoebe-electric-glow:#00b8d4;
  --phoebe-volt:         #ffe600;
  --phoebe-volt-dark:    #ffc400;
  --phoebe-neon:         #39ff14;
  --phoebe-hot:          #ff4d00;
  --phoebe-purple:       #bf00ff;
  --phoebe-text:         #e8f4ff;
  --phoebe-text-dim:     rgba(232, 244, 255, 0.7);

  /* Shared */
  --color-white:         #ffffff;

  --font-display:        'Playfair Display', Georgia, serif;
  --font-body:           'Nunito', system-ui, sans-serif;
  --font-tech:           'Space Grotesk', system-ui, sans-serif;

  --radius-sm:           8px;
  --radius-md:           16px;
  --radius-lg:           24px;
  --radius-xl:           40px;
  --radius-full:         9999px;

  --shadow-soft:         0 4px 24px rgba(61, 43, 26, 0.08);
  --shadow-card:         0 8px 40px rgba(61, 43, 26, 0.12);
  --shadow-float:        0 20px 60px rgba(61, 43, 26, 0.18);
  --shadow-electric:     0 0 30px rgba(0, 229, 255, 0.4), 0 0 60px rgba(0, 229, 255, 0.2);
  --shadow-volt:         0 0 30px rgba(255, 230, 0, 0.5), 0 0 60px rgba(255, 230, 0, 0.2);

  --transition-base:     0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring:   0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-snap:     0.15s cubic-bezier(0.0, 0, 0.2, 1);
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

/* ── PARTICLES ──────────────────────────────────────────────── */
.particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: var(--radius-full);
  opacity: 0;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

/* ── DUO NAV ────────────────────────────────────────────────── */
.duo-nav {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  pointer-events: all;
}

.duo-nav__inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(10, 10, 26, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  padding: 0.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.duo-nav__dog {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--transition-spring);
  cursor: pointer;
}

.duo-nav__dog--blair {
  color: var(--blair-cream);
}

.duo-nav__dog--blair:hover,
.duo-nav__dog--blair.active {
  background: linear-gradient(135deg, var(--blair-blush-dark), var(--blair-brown));
  color: var(--color-white);
}

.duo-nav__dog--phoebe {
  color: var(--phoebe-text);
}

.duo-nav__dog--phoebe:hover,
.duo-nav__dog--phoebe.active {
  background: linear-gradient(135deg, var(--phoebe-electric), var(--phoebe-purple));
  color: var(--phoebe-dark);
  box-shadow: var(--shadow-electric);
}

.duo-nav__icon { font-size: 1.1rem; }
.duo-nav__name { font-size: 0.9rem; font-weight: 800; }

.duo-nav__vibe {
  font-size: 0.7rem;
  opacity: 0.7;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.duo-nav__vs {
  font-family: var(--font-tech);
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  padding: 0 0.25rem;
  letter-spacing: 0.1em;
}

/* ── LAYOUT HELPERS ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.container--narrow { max-width: 760px; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-label--blair {
  color: var(--blair-brown);
  background: var(--blair-blush);
}

.section-label--phoebe {
  color: var(--phoebe-dark);
  background: var(--phoebe-electric);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
  font-family: var(--font-tech);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
}

.section-title--blair { color: var(--blair-brown-dark); }
.section-title--blair em { font-style: italic; color: var(--blair-blush-dark); }
.section-title--phoebe { color: var(--phoebe-text); font-family: var(--font-tech); }
.section-title--phoebe em { font-style: italic; color: var(--phoebe-electric); }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-spring);
  border: none;
}

.btn--primary.btn--blair {
  background: var(--blair-brown);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(139, 94, 60, 0.35);
}
.btn--primary.btn--blair:hover {
  background: var(--blair-brown-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(139, 94, 60, 0.45);
}

.btn--ghost.btn--ghost-blair {
  background: transparent;
  color: var(--blair-brown);
  border: 2px solid var(--blair-brown);
}
.btn--ghost.btn--ghost-blair:hover {
  background: var(--blair-brown);
  color: var(--color-white);
  transform: translateY(-3px);
}

.btn--phoebe {
  background: linear-gradient(135deg, var(--phoebe-electric), var(--phoebe-purple));
  color: var(--phoebe-dark);
  font-family: var(--font-tech);
  font-weight: 700;
  box-shadow: var(--shadow-electric);
}
.btn--phoebe:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.6), 0 0 80px rgba(0, 229, 255, 0.3);
  filter: brightness(1.1);
}

.btn--ghost.btn--ghost-phoebe {
  background: transparent;
  color: var(--phoebe-electric);
  border: 2px solid var(--phoebe-electric);
  font-family: var(--font-tech);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}
.btn--ghost.btn--ghost-phoebe:hover {
  background: var(--phoebe-electric);
  color: var(--phoebe-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-electric);
}

/* ── WORLD WRAPPERS ─────────────────────────────────────────── */
.world--blair { background: var(--blair-cream); }
.world--phoebe { background: var(--phoebe-dark); }

/* ── HERO — SHARED ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 8rem 4rem 4rem;
  overflow: hidden;
}

/* ── HERO — BLAIR ───────────────────────────────────────────── */
.hero--blair {
  background: linear-gradient(135deg, var(--blair-cream) 0%, var(--blair-cream-dark) 40%, #f0e4d4 100%);
}

.hero__bg-blur--blair {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,194,194,0.4) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
  animation: pulseBg 6s ease-in-out infinite;
}

@keyframes pulseBg {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.15); opacity: 0.9; }
}

.hero__badge--blair {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blair-brown);
  background: var(--blair-peach);
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.hero__title {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.hero__title--phoebe {
  margin-bottom: 1.5rem;
}

.hero__title-line {
  font-family: var(--font-display);
  line-height: 1;
}

.hero__title-line--small {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  color: var(--blair-text-light);
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.hero__title-line--big.hero__title-line--blair {
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 900;
  color: var(--blair-brown-dark);
  line-height: 0.9;
  background: linear-gradient(135deg, var(--blair-brown-dark) 0%, var(--blair-blush-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__title-line--italic {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-style: italic;
  font-weight: 400;
  color: var(--blair-brown);
  margin-top: 0.3rem;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--blair-text-light);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero__cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Dog Card — Blair */
.hero__dog-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__dog-card--blair {
  position: relative;
  width: 320px;
  height: 320px;
  background: linear-gradient(145deg, var(--blair-blush) 0%, var(--blair-lavender) 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-float);
  animation: floatCardBlair 5s ease-in-out infinite;
}

@keyframes floatCardBlair {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50%       { transform: translateY(-20px) rotate(2deg); }
}

.hero__dog-emoji {
  font-size: 8rem;
  line-height: 1;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15));
  animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}

.hero__dog-label {
  font-size: 0.75rem;
  color: var(--blair-brown);
  font-weight: 600;
  margin-top: 0.8rem;
  opacity: 0.8;
}

/* ZZZ Animation — Blair */
.hero__zzz {
  position: absolute;
  top: 20px;
  right: 10px;
}

.zzz {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--blair-lavender-dark);
  animation: floatZzz ease-in-out infinite;
  opacity: 0;
}

.zzz--1 { font-size: 1rem;   top: 40px; right: 10px; animation-duration: 3s; animation-delay: 0s; }
.zzz--2 { font-size: 1.2rem; top: 20px; right: 20px; animation-duration: 3s; animation-delay: 0.5s; }
.zzz--3 { font-size: 1.5rem; top: 0px;  right: 35px; animation-duration: 3s; animation-delay: 1s; }
.zzz--4 { font-size: 1.8rem; top: -20px; right: 50px; animation-duration: 3s; animation-delay: 1.5s; }
.zzz--5 { font-size: 2.2rem; top: -45px; right: 65px; animation-duration: 3s; animation-delay: 2s; }

@keyframes floatZzz {
  0%   { opacity: 0; transform: translate(0, 0) scale(0.5); }
  30%  { opacity: 0.9; }
  100% { opacity: 0; transform: translate(-10px, -30px) scale(1.2); }
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 0.8rem;
  z-index: 2;
  animation: bounceHint 2s ease-in-out infinite;
}

.hero__scroll-hint--blair { color: var(--blair-text-light); }
.hero__scroll-hint--phoebe { color: var(--phoebe-electric); }

.hero__scroll-hint span {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

@keyframes bounceHint {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── HERO — PHOEBE ──────────────────────────────────────────── */
.hero--phoebe {
  background: var(--phoebe-dark);
  grid-template-columns: 1fr 1fr;
}

.hero__bg-blur--phoebe {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,0.08) 0%, rgba(191,0,255,0.05) 50%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
  animation: pulseBgPhoebe 4s ease-in-out infinite;
}

@keyframes pulseBgPhoebe {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%       { transform: scale(1.2); opacity: 1; }
}

.hero__lightning {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.lightning-bolt {
  position: absolute;
  font-size: 2rem;
  opacity: 0;
  animation: lightningFlash linear infinite;
}

@keyframes lightningFlash {
  0%, 89%  { opacity: 0; transform: scale(0.5) rotate(var(--rot, 0deg)); }
  90%      { opacity: 1; transform: scale(1.2) rotate(var(--rot, 0deg)); }
  92%      { opacity: 0.5; }
  94%      { opacity: 1; }
  96%      { opacity: 0; transform: scale(0.8) rotate(var(--rot, 0deg)); }
  100%     { opacity: 0; }
}

.hero__badge--phoebe {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--phoebe-dark);
  background: var(--phoebe-electric);
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  font-family: var(--font-tech);
  box-shadow: var(--shadow-electric);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 229, 255, 0.4); }
  50%       { box-shadow: 0 0 40px rgba(0, 229, 255, 0.8), 0 0 80px rgba(0, 229, 255, 0.3); }
}

.hero__title-line--phoebe-small {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  color: var(--phoebe-text-dim);
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
  font-family: var(--font-tech);
}

.hero__title-line--phoebe {
  font-family: var(--font-tech);
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 700;
  line-height: 0.9;
  background: linear-gradient(135deg, var(--phoebe-electric) 0%, var(--phoebe-volt) 50%, var(--phoebe-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(0, 229, 255, 0.5));
  animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.4)); }
  50%       { filter: drop-shadow(0 0 40px rgba(0, 229, 255, 0.8)) drop-shadow(0 0 60px rgba(191, 0, 255, 0.4)); }
}

.hero__title-line--phoebe-italic {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-style: italic;
  font-weight: 400;
  color: var(--phoebe-volt);
  margin-top: 0.3rem;
  font-family: var(--font-tech);
}

.hero__subtitle--phoebe {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--phoebe-text-dim);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  font-family: var(--font-tech);
}

/* Dog Card — Phoebe */
.hero__dog-card--phoebe {
  position: relative;
  width: 320px;
  height: 320px;
  background: linear-gradient(145deg, rgba(0,229,255,0.1) 0%, rgba(191,0,255,0.1) 100%);
  border: 2px solid rgba(0, 229, 255, 0.3);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-electric), inset 0 0 60px rgba(0,229,255,0.05);
  animation: floatCardPhoebe 2s ease-in-out infinite;
}

@keyframes floatCardPhoebe {
  0%   { transform: translateY(0px) rotate(-1deg) scale(1); }
  25%  { transform: translateY(-15px) rotate(2deg) scale(1.02); }
  50%  { transform: translateY(-5px) rotate(-3deg) scale(0.99); }
  75%  { transform: translateY(-20px) rotate(1deg) scale(1.01); }
  100% { transform: translateY(0px) rotate(-1deg) scale(1); }
}

.hero__dog-emoji--phoebe {
  font-size: 8rem;
  line-height: 1;
  filter: drop-shadow(0 0 20px rgba(0,229,255,0.5));
  animation: phoebeShake 0.5s ease-in-out infinite;
}

@keyframes phoebeShake {
  0%, 100% { transform: rotate(-3deg) scale(1); }
  25%       { transform: rotate(3deg) scale(1.05); }
  50%       { transform: rotate(-2deg) scale(0.98); }
  75%       { transform: rotate(4deg) scale(1.03); }
}

.hero__sparks {
  position: absolute;
  top: 15px;
  right: 15px;
}

.spark {
  position: absolute;
  animation: floatSpark ease-in-out infinite;
  opacity: 0;
}

.spark--1 { font-size: 1.2rem; top: 30px; right: 5px;  animation-duration: 1.5s; animation-delay: 0s; }
.spark--2 { font-size: 0.9rem; top: 15px; right: 20px; animation-duration: 1.5s; animation-delay: 0.2s; }
.spark--3 { font-size: 1.5rem; top: 0px;  right: 35px; animation-duration: 1.5s; animation-delay: 0.4s; }
.spark--4 { font-size: 1.8rem; top: -18px; right: 10px; animation-duration: 1.5s; animation-delay: 0.6s; }
.spark--5 { font-size: 1rem; top: -35px; right: 45px; animation-duration: 1.5s; animation-delay: 0.8s; }

@keyframes floatSpark {
  0%   { opacity: 0; transform: translate(0, 0) scale(0.5); }
  30%  { opacity: 1; }
  100% { opacity: 0; transform: translate(-15px, -40px) scale(1.5); }
}

.hero__dog-label--phoebe {
  font-size: 0.75rem;
  color: var(--phoebe-electric);
  font-weight: 600;
  margin-top: 0.8rem;
  opacity: 0.9;
  font-family: var(--font-tech);
  letter-spacing: 0.05em;
}

/* ── DUO BRIDGE ─────────────────────────────────────────────── */
.duo-bridge {
  background: linear-gradient(135deg, var(--blair-brown-dark) 0%, #1a0a2e 50%, var(--phoebe-darker) 100%);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.duo-bridge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(0,229,255,0.05) 0%, transparent 60%);
}

.duo-bridge__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.duo-bridge__dog {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.duo-bridge__emoji {
  font-size: 5rem;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3));
  animation: bridgeBlair 5s ease-in-out infinite;
}

@keyframes bridgeBlair {
  0%, 100% { transform: rotate(-5deg) scale(1); }
  50%       { transform: rotate(5deg) scale(1.05); }
}

.duo-bridge__emoji--phoebe {
  animation: bridgePhoebe 1s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(0,229,255,0.5));
}

@keyframes bridgePhoebe {
  0%, 100% { transform: rotate(-8deg) scale(1); }
  25%       { transform: rotate(8deg) scale(1.1); }
  50%       { transform: rotate(-5deg) scale(0.95); }
  75%       { transform: rotate(10deg) scale(1.05); }
}

.duo-bridge__zzz {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--blair-lavender);
  letter-spacing: 0.3em;
  opacity: 0.8;
}

.duo-bridge__sparks {
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  animation: sparkFlash 0.8s ease-in-out infinite;
}

@keyframes sparkFlash {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.duo-bridge__name {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--blair-cream);
}

.duo-bridge__name--phoebe {
  font-family: var(--font-tech);
  background: linear-gradient(135deg, var(--phoebe-electric), var(--phoebe-volt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.duo-bridge__subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253,246,238,0.5);
}

.duo-bridge__subtitle--phoebe {
  color: var(--phoebe-electric);
  font-family: var(--font-tech);
}

.duo-bridge__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.duo-bridge__vs {
  font-family: var(--font-tech);
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--blair-blush), var(--phoebe-electric));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.duo-bridge__desc {
  font-size: 1rem;
  color: rgba(253,246,238,0.7);
  line-height: 1.8;
}

/* ── STATS — SHARED ─────────────────────────────────────────── */
.stats {
  padding: 6rem 0;
  position: relative;
}

.stats--blair {
  background: linear-gradient(180deg, #f0e4d4 0%, var(--blair-blush) 100%);
}

.stats--phoebe {
  background: linear-gradient(180deg, var(--phoebe-dark) 0%, #0d0d2b 100%);
}

.stats h2,
.stats > .container > h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stats__card {
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: var(--transition-spring);
  position: relative;
  overflow: hidden;
}

.stats__card--blair {
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.stats__card--phoebe {
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.stats__card--blair::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blair-blush-dark), var(--blair-lavender-dark));
}

.stats__card--phoebe::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--phoebe-electric), var(--phoebe-purple));
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
}

.stats__card--blair:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-float);
}

.stats__card--phoebe:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--phoebe-electric);
  box-shadow: var(--shadow-electric), 0 8px 40px rgba(0,0,0,0.4);
}

.stats__number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--blair-brown-dark);
  line-height: 1;
}

.stats__number--phoebe {
  font-family: var(--font-tech);
  color: var(--phoebe-electric);
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
}

.stats__unit {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0.3rem 0;
}

.stats__unit--blair { color: var(--blair-blush-dark); }
.stats__unit--phoebe {
  color: var(--phoebe-volt);
  font-family: var(--font-tech);
}

.stats__desc {
  font-size: 0.85rem;
  color: var(--blair-text-light);
  line-height: 1.4;
}

.stats__desc--phoebe { color: var(--phoebe-text-dim); }

/* ── MANIFESTO ──────────────────────────────────────────────── */
.manifesto {
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.manifesto--blair {
  background: var(--blair-brown-dark);
  color: var(--blair-cream);
}

.manifesto--blair::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(244,194,194,0.1) 0%, transparent 60%);
}

.manifesto--phoebe {
  background: linear-gradient(135deg, #050510 0%, #0a0a2a 50%, #05051a 100%);
  color: var(--phoebe-text);
  border-top: 1px solid rgba(0, 229, 255, 0.1);
  border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}

.manifesto--phoebe::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,229,255,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(191,0,255,0.05) 0%, transparent 50%);
}

.manifesto__quote-mark {
  font-family: var(--font-display);
  font-size: 10rem;
  line-height: 0.5;
  opacity: 0.3;
  margin-bottom: 1rem;
}

.manifesto--blair .manifesto__quote-mark { color: var(--blair-blush); }
.manifesto__quote-mark--phoebe {
  font-size: 8rem;
  line-height: 1;
  animation: sparkFlash 1s ease-in-out infinite;
  opacity: 0.8;
}

.manifesto__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.manifesto--blair .manifesto__title { color: var(--blair-cream); }
.manifesto__title--phoebe {
  font-family: var(--font-tech);
  background: linear-gradient(135deg, var(--phoebe-electric), var(--phoebe-volt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.manifesto__text {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.9;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.manifesto--blair .manifesto__text { color: rgba(253, 246, 238, 0.85); }
.manifesto__text--phoebe { color: var(--phoebe-text-dim); font-family: var(--font-tech); font-size: 1.05rem; }

.manifesto--blair .manifesto__text strong { color: var(--blair-blush); font-weight: 700; }
.manifesto__text--phoebe strong { color: var(--phoebe-electric); font-weight: 700; }

.manifesto--blair .manifesto__text em { font-style: italic; color: var(--blair-peach); }
.manifesto__text--phoebe em { font-style: italic; color: var(--phoebe-volt); }

.manifesto__signature {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.manifesto--blair .manifesto__signature { color: var(--blair-peach); }
.manifesto__signature--phoebe {
  font-family: var(--font-tech);
  color: var(--phoebe-electric);
  font-style: normal;
  font-weight: 700;
}

/* ── GALERIA ────────────────────────────────────────────────── */
.galeria { padding: 8rem 0; }

.galeria--blair {
  background: linear-gradient(180deg, var(--blair-cream-dark) 0%, var(--blair-lavender) 100%);
}

.galeria--phoebe {
  background: linear-gradient(180deg, #0d0d2b 0%, var(--phoebe-dark) 100%);
}

.galeria__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.galeria__card--large {
  grid-column: 1 / 3;
  grid-row: 1;
}

.galeria__card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-spring);
  cursor: pointer;
}

.galeria--blair .galeria__card {
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.galeria--phoebe .galeria__card,
.galeria__card--phoebe {
  background: rgba(0,229,255,0.05);
  border: 1px solid rgba(0,229,255,0.15);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.galeria--blair .galeria__card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-float);
}

.galeria__card--phoebe:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--phoebe-electric);
  box-shadow: var(--shadow-electric), 0 8px 40px rgba(0,0,0,0.4);
}

.galeria__inner {
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.galeria__card--large .galeria__inner { aspect-ratio: 16 / 8; }

.galeria__scene {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition-base);
}

/* Blair scenes */
.galeria__scene--sofa   { background: linear-gradient(135deg, #ffd6b0, #f4c2c2); }
.galeria__scene--sun    { background: linear-gradient(135deg, #fff3c0, #ffd6b0); }
.galeria__scene--blanket { background: linear-gradient(135deg, #d8c9f0, #f4c2c2); }
.galeria__scene--floor  { background: linear-gradient(135deg, #c9e0d8, #d8c9f0); }
.galeria__scene--window { background: linear-gradient(135deg, #b8d4f0, #d8c9f0); }

/* Phoebe scenes */
.galeria__scene--zoomie    { background: linear-gradient(135deg, #0a0a2a, #001a2e); }
.galeria__scene--toy       { background: linear-gradient(135deg, #1a0a2e, #0a1a1a); }
.galeria__scene--park      { background: linear-gradient(135deg, #0a1a0a, #0a0a2a); }
.galeria__scene--excitement { background: linear-gradient(135deg, #2a1a00, #001a2a); }
.galeria__scene--chaos     { background: linear-gradient(135deg, #1a0a0a, #0a0a2a); }

.galeria__dog--blair {
  font-size: 5rem;
  z-index: 2;
  animation: napdog 4s ease-in-out infinite;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.1));
}

.galeria__card--large .galeria__dog--blair { font-size: 8rem; }

.galeria__dog--phoebe {
  font-size: 5rem;
  z-index: 2;
  animation: zoomiedog 0.4s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(0,229,255,0.5));
}

.galeria__card--large .galeria__dog--phoebe { font-size: 8rem; }

@keyframes napdog {
  0%, 100% { transform: rotate(-3deg) scale(1); }
  50%       { transform: rotate(3deg) scale(1.05); }
}

@keyframes zoomiedog {
  0%, 100% { transform: rotate(-8deg) scale(1); }
  25%       { transform: rotate(8deg) scale(1.1) translateX(5px); }
  50%       { transform: rotate(-5deg) scale(0.95) translateX(-5px); }
  75%       { transform: rotate(10deg) scale(1.05) translateX(3px); }
}

.galeria__props {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  font-size: 3rem;
  opacity: 0.6;
}

.galeria__caption {
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.galeria__caption strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blair-brown-dark);
}

.galeria__caption--phoebe strong {
  color: var(--phoebe-electric);
  font-family: var(--font-tech);
}

.galeria__caption span { font-size: 0.8rem; color: var(--blair-text-light); }
.galeria__caption--phoebe span { color: var(--phoebe-text-dim); }

/* ── TIMELINE ───────────────────────────────────────────────── */
.timeline { padding: 8rem 2rem; }
.timeline--blair { background: var(--blair-cream); }
.timeline--phoebe { background: var(--phoebe-dark); }

.timeline__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline__list::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  transform: translateX(-50%);
}

.timeline--blair .timeline__list::before {
  background: linear-gradient(180deg, var(--blair-blush-dark), var(--blair-lavender-dark));
}

.timeline--phoebe .timeline__list::before {
  background: linear-gradient(180deg, var(--phoebe-electric), var(--phoebe-purple));
  box-shadow: 0 0 10px rgba(0,229,255,0.3);
}

.timeline__item {
  display: grid;
  grid-template-columns: 1fr 3rem 1fr;
  align-items: start;
  gap: 1rem;
  padding: 1.5rem 0;
}

.timeline__item:nth-child(odd)  { direction: rtl; }
.timeline__item:nth-child(odd) .timeline__content { direction: ltr; text-align: right; }
.timeline__item:nth-child(even) { direction: ltr; }
.timeline__item:nth-child(even) .timeline__content { text-align: left; }
.timeline__item:nth-child(even) .timeline__time { text-align: right; }

.timeline__time {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blair-brown);
  padding-top: 0.1rem;
}

.timeline__time--phoebe {
  font-family: var(--font-tech);
  color: var(--phoebe-electric);
}

.timeline__dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 3px solid var(--color-white);
  justify-self: center;
  margin-top: 0.3rem;
  transition: var(--transition-spring);
}

.timeline__dot--blair {
  background: var(--blair-blush-dark);
  box-shadow: 0 0 0 3px var(--blair-blush-dark);
}

.timeline__dot--phoebe {
  background: var(--phoebe-electric);
  box-shadow: 0 0 0 3px var(--phoebe-electric), 0 0 10px rgba(0,229,255,0.5);
  animation: dotPulse 1s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 3px var(--phoebe-electric), 0 0 10px rgba(0,229,255,0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(0,229,255,0.3), 0 0 20px rgba(0,229,255,0.8); }
}

.timeline__item:hover .timeline__dot--blair {
  transform: scale(1.5);
  background: var(--blair-brown);
  box-shadow: 0 0 0 3px var(--blair-brown);
}

.timeline__item:hover .timeline__dot--phoebe {
  transform: scale(1.8);
  box-shadow: 0 0 0 6px rgba(0,229,255,0.4), 0 0 30px rgba(0,229,255,0.9);
}

.timeline__content strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.timeline--blair .timeline__content strong { color: var(--blair-brown-dark); }
.timeline--phoebe .timeline__content strong {
  color: var(--phoebe-electric);
  font-family: var(--font-tech);
}

.timeline__content p { font-size: 0.9rem; line-height: 1.5; }
.timeline--blair .timeline__content p { color: var(--blair-text-light); }
.timeline--phoebe .timeline__content p { color: var(--phoebe-text-dim); }

/* ── CURIOSIDADES ───────────────────────────────────────────── */
.curiosidades { padding: 8rem 0; }

.curiosidades--blair {
  background: linear-gradient(180deg, var(--blair-lavender) 0%, var(--blair-blush) 100%);
}

.curiosidades--phoebe {
  background: linear-gradient(180deg, #0d0d2b 0%, #05050f 100%);
}

.curiosidades__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.curiosidades__card {
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: var(--transition-spring);
  text-align: center;
}

.curiosidades__card--blair {
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.curiosidades__card--phoebe {
  background: rgba(0,229,255,0.04);
  border: 1px solid rgba(0,229,255,0.15);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.curiosidades__card--blair:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-float);
}

.curiosidades__card--phoebe:hover {
  transform: translateY(-8px);
  border-color: var(--phoebe-electric);
  box-shadow: var(--shadow-electric), 0 8px 40px rgba(0,0,0,0.4);
}

.curiosidades__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.curiosidades__card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.curiosidades__card--blair h3 { color: var(--blair-brown-dark); }
.curiosidades__card--phoebe h3 {
  font-family: var(--font-tech);
  color: var(--phoebe-electric);
}

.curiosidades__card p { font-size: 0.9rem; line-height: 1.7; }
.curiosidades__card--blair p { color: var(--blair-text-light); }
.curiosidades__card--phoebe p { color: var(--phoebe-text-dim); }

/* ── TRIBUTO ────────────────────────────────────────────────── */
.tributo {
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tributo--blair {
  background: linear-gradient(135deg, var(--blair-brown-dark) 0%, #3d1a0f 100%);
  color: var(--blair-cream);
}

.tributo--blair::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(244,194,194,0.15) 0%, transparent 60%);
}

.tributo--phoebe {
  background: linear-gradient(135deg, var(--phoebe-darker) 0%, #0a0a2a 50%, #050510 100%);
  color: var(--phoebe-text);
}

.tributo--phoebe::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(0,229,255,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 100%, rgba(191,0,255,0.08) 0%, transparent 50%);
}

.tributo__heart {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
  animation: heartbeat 1.5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.tributo__heart--phoebe {
  animation: phoebeHeartbeat 0.6s ease-in-out infinite;
  font-size: 2.5rem;
  letter-spacing: 0.2em;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  14%       { transform: scale(1.2); }
  28%       { transform: scale(1); }
  42%       { transform: scale(1.15); }
  56%       { transform: scale(1); }
}

@keyframes phoebeHeartbeat {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50%       { transform: scale(1.3); filter: brightness(1.5) drop-shadow(0 0 10px rgba(0,229,255,0.8)); }
}

.tributo__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.tributo--blair .tributo__title { color: var(--blair-cream); }
.tributo__title--phoebe {
  font-family: var(--font-tech);
  background: linear-gradient(135deg, var(--phoebe-electric), var(--phoebe-volt), var(--phoebe-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tributo__text {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.9;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.tributo--blair .tributo__text { color: rgba(253, 246, 238, 0.85); }
.tributo__text--phoebe { color: var(--phoebe-text-dim); font-family: var(--font-tech); }

.tributo--blair .tributo__text em { color: var(--blair-peach); font-style: italic; }
.tributo__text--phoebe em { color: var(--phoebe-electric); font-style: italic; }

.tributo__paws {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 2rem;
  margin-top: 2.5rem;
  position: relative;
  z-index: 1;
}

.tributo__paws span {
  animation: pawBounce 2s ease-in-out infinite;
}

.tributo__paws--phoebe span {
  animation: sparkBounce 0.6s ease-in-out infinite;
}

.tributo__paws span:nth-child(1) { animation-delay: 0s; }
.tributo__paws span:nth-child(2) { animation-delay: 0.3s; }
.tributo__paws span:nth-child(3) { animation-delay: 0.6s; }

@keyframes pawBounce {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%       { transform: translateY(-10px) rotate(5deg); }
}

@keyframes sparkBounce {
  0%, 100% { transform: translateY(0) scale(1); filter: brightness(1); }
  50%       { transform: translateY(-15px) scale(1.3); filter: brightness(2) drop-shadow(0 0 10px rgba(0,229,255,0.8)); }
}

/* ── FOOTER DUO ─────────────────────────────────────────────── */
.footer--duo {
  background: #050508;
  color: var(--blair-cream);
  padding: 5rem 0 3rem;
  text-align: center;
}

.footer__duo-dogs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.footer__duo-heart {
  font-size: 2.5rem;
  animation: heartbeat 1.5s ease-in-out infinite;
}

.footer__dog {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.footer__name {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.3rem;
}

.footer__name--blair { color: var(--blair-blush); }
.footer__name--phoebe {
  font-family: var(--font-tech);
  background: linear-gradient(135deg, var(--phoebe-electric), var(--phoebe-volt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__tagline {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__tagline--blair { color: rgba(253,246,238,0.4); }
.footer__tagline--phoebe {
  color: var(--phoebe-electric);
  font-family: var(--font-tech);
  opacity: 0.7;
}

.footer__copy {
  font-size: 0.85rem;
  color: rgba(253,246,238,0.3);
  line-height: 2;
}

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

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 8rem 2rem 4rem;
    gap: 3rem;
  }

  .hero__cta-group {
    justify-content: center;
  }

  .hero__dog-card--blair,
  .hero__dog-card--phoebe {
    width: 260px;
    height: 260px;
  }

  .hero__dog-emoji,
  .hero__dog-emoji--phoebe {
    font-size: 6rem;
  }

  .hero__scroll-hint {
    display: none;
  }

  .curiosidades__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .duo-bridge__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}

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

  .galeria__card--large {
    grid-column: 1;
  }

  .timeline__list::before {
    left: 1.5rem;
  }

  .timeline__item {
    grid-template-columns: 3rem 1fr;
    direction: ltr !important;
  }

  .timeline__time {
    display: none;
  }

  .timeline__item .timeline__content {
    text-align: left !important;
  }

  .timeline__dot {
    justify-self: start;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .curiosidades__grid {
    grid-template-columns: 1fr;
  }

  .hero__bg-blur--blair,
  .hero__bg-blur--phoebe {
    width: 300px;
    height: 300px;
  }

  .duo-nav {
    top: 0.75rem;
  }

  .duo-nav__name { font-size: 0.8rem; }
  .duo-nav__vibe { display: none; }
}

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

  .hero__cta-group {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .footer__duo-dogs {
    gap: 2rem;
  }
}
