/* ============================================
   OtimizaFinanças - Complete Stylesheet
   Design: Organic Shapes | Scandinavian Warmth
   ============================================ */


:root {
  --color-bg: #f7f5f1;
  --color-bg-alt: #eef4ef;
  --color-surface: #ffffff;
  --color-surface-warm: #fdf9f4;
  --color-primary: #2d6a4f;
  --color-primary-light: #40916c;
  --color-primary-dark: #1b4332;
  --color-secondary: #74c69d;
  --color-accent: #d4a843;
  --color-accent-light: #f0c96a;
  --color-text: #1e2d24;
  --color-text-muted: #5a7063;
  --color-text-light: #8aa494;
  --color-border: #d8e8dd;
  --color-blob-1: rgba(116, 198, 157, 0.15);
  --color-blob-2: rgba(212, 168, 67, 0.12);
  --color-blob-3: rgba(45, 106, 79, 0.08);

  --shadow-sm: 0 1px 3px rgba(30,45,36,0.06), 0 1px 2px rgba(30,45,36,0.04);
  --shadow-md: 0 4px 12px rgba(30,45,36,0.08), 0 2px 6px rgba(30,45,36,0.05), 0 1px 2px rgba(30,45,36,0.04);
  --shadow-lg: 0 12px 32px rgba(30,45,36,0.10), 0 6px 16px rgba(30,45,36,0.07), 0 2px 6px rgba(30,45,36,0.04);
  --shadow-xl: 0 24px 56px rgba(30,45,36,0.12), 0 12px 24px rgba(30,45,36,0.08), 0 4px 8px rgba(30,45,36,0.05);
  --shadow-accent: 0 8px 24px rgba(212,168,67,0.25), 0 4px 10px rgba(212,168,67,0.15);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-blob: 60% 40% 55% 45% / 50% 60% 40% 50%;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Manrope', sans-serif;

  --transition-fast: 0.18s ease;
  --transition-base: 0.28s ease;
  --transition-slow: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


*, *::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(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
input, textarea, select { font-family: var(--font-body); }


h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-text);
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 600; }
h4 { font-size: clamp(1.05rem, 1.8vw, 1.3rem); font-weight: 600; }

p { font-size: 1rem; line-height: 1.75; color: var(--color-text-muted); }
.lead { font-size: clamp(1.05rem, 1.8vw, 1.2rem); line-height: 1.8; }


.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 var(--space-md); }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 var(--space-md); }

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.9rem 0;
  transition: background var(--transition-base), box-shadow var(--transition-base), padding var(--transition-base);
}

.site-header.scrolled {
  background: rgba(247, 245, 241, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(30,45,36,0.08), 0 1px 4px rgba(30,45,36,0.05);
  padding: 0.6rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  transition: opacity var(--transition-fast);
}
.nav-logo:hover { opacity: 0.82; }
.nav-logo img { height: 36px; width: auto; }
.nav-logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}
.nav-logo-text span { color: var(--color-accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-xl);
  transition: color var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--color-primary);
  background: rgba(45,106,79,0.08);
}

.nav-cta {
  background: var(--color-primary);
  color: #fff !important;
  padding: 0.55rem 1.25rem !important;
  border-radius: var(--radius-xl) !important;
  font-weight: 600 !important;
  box-shadow: var(--shadow-sm);
  transition: background var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast) !important;
}
.nav-cta:hover {
  background: var(--color-primary-light) !important;
  box-shadow: var(--shadow-md) !important;
  transform: translateY(-1px);
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(45,106,79,0.07);
  border-radius: var(--radius-xl);
  padding: 0.3rem 0.6rem;
  flex-shrink: 0;
}
.lang-btn {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  padding: 0.2rem 0.45rem;
  border-radius: 20px;
  transition: color var(--transition-fast), background var(--transition-fast);
  letter-spacing: 0.04em;
}
.lang-btn:hover { color: var(--color-primary); }
.lang-btn.active {
  color: var(--color-primary);
  background: rgba(45,106,79,0.12);
}
.lang-divider { color: var(--color-border); font-size: 0.75rem; }

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}


.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(45,106,79,0.08);
  gap: 5px;
  transition: background var(--transition-fast);
  flex-shrink: 0;
}
.nav-hamburger:hover { background: rgba(45,106,79,0.15); }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-fast);
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(247,245,241,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 6rem var(--space-md) var(--space-xl);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity var(--transition-base), transform var(--transition-base);
  pointer-events: none;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.mobile-menu .nav-link {
  font-size: 1.3rem;
  font-weight: 600;
  padding: 0.8rem 2rem;
  text-align: center;
  width: 100%;
  max-width: 300px;
}
.mobile-menu .lang-switcher { margin-top: var(--space-md); }
.mobile-menu .nav-cta { margin-top: var(--space-sm); font-size: 1rem !important; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 5rem;
  background: linear-gradient(145deg, #f0f7f2 0%, #f7f5f1 45%, #fdf9f4 100%);
}

.hero-blob-1 {
  position: absolute;
  width: 600px; height: 600px;
  top: -120px; right: -150px;
  background: radial-gradient(ellipse at center, rgba(116,198,157,0.22) 0%, rgba(116,198,157,0.06) 55%, transparent 75%);
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  animation: blobFloat1 12s ease-in-out infinite;
  pointer-events: none;
}
.hero-blob-2 {
  position: absolute;
  width: 400px; height: 400px;
  bottom: -80px; left: -100px;
  background: radial-gradient(ellipse at center, rgba(212,168,67,0.14) 0%, rgba(212,168,67,0.04) 55%, transparent 75%);
  border-radius: 42% 58% 46% 54% / 60% 40% 60% 40%;
  animation: blobFloat2 15s ease-in-out infinite;
  pointer-events: none;
}
.hero-blob-3 {
  position: absolute;
  width: 280px; height: 280px;
  top: 30%; left: 50%;
  background: radial-gradient(ellipse at center, rgba(45,106,79,0.07) 0%, transparent 70%);
  border-radius: 50%;
  animation: blobFloat3 10s ease-in-out infinite;
  pointer-events: none;
}

@keyframes blobFloat1 {
  0%, 100% { transform: translate(0,0) rotate(0deg); border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; }
  33% { transform: translate(-20px, 30px) rotate(5deg); border-radius: 50% 50% 45% 55% / 60% 40% 60% 40%; }
  66% { transform: translate(15px, -15px) rotate(-3deg); border-radius: 40% 60% 55% 45% / 45% 55% 45% 55%; }
}
@keyframes blobFloat2 {
  0%, 100% { transform: translate(0,0) rotate(0deg); }
  40% { transform: translate(25px, -20px) rotate(8deg); }
  70% { transform: translate(-10px, 15px) rotate(-4deg); }
}
@keyframes blobFloat3 {
  0%, 100% { transform: translate(-50%, 0) scale(1); }
  50% { transform: translate(-50%, -20px) scale(1.1); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content { max-width: 560px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(45,106,79,0.1);
  border: 1px solid rgba(45,106,79,0.2);
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-md);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-badge i { font-size: 0.75rem; }

.hero-headline {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}
.hero-headline .typed-wrap {
  color: var(--color-primary);
  position: relative;
  display: inline-block;
}
.hero-headline .typed-cursor { color: var(--color-accent); }

.hero-desc {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  align-items: center;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.hero-img-blob {
  position: absolute;
  inset: -20px;
  background: linear-gradient(135deg, rgba(116,198,157,0.3) 0%, rgba(45,106,79,0.15) 100%);
  border-radius: 58% 42% 46% 54% / 52% 60% 40% 48%;
  z-index: 0;
}

.hero-img-main {
  position: relative;
  z-index: 1;
  border-radius: 48% 52% 44% 56% / 54% 46% 54% 46%;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

.hero-float-card {
  position: absolute;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 0.9rem 1.2rem;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid rgba(255,255,255,0.9);
  animation: floatCard 6s ease-in-out infinite;
}
.hero-float-card:nth-child(2) { bottom: -20px; left: -30px; animation-delay: 2s; }
.hero-float-card:nth-child(3) { top: 20px; right: -25px; animation-delay: 4s; }

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

.float-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.float-label { font-size: 0.75rem; font-weight: 700; color: var(--color-text); line-height: 1.2; }
.float-sub { font-size: 0.68rem; color: var(--color-text-light); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-xl);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(45,106,79,0.3), 0 2px 6px rgba(45,106,79,0.2);
}
.btn-primary:hover {
  background: var(--color-primary-light);
  box-shadow: 0 8px 24px rgba(45,106,79,0.35), 0 4px 10px rgba(45,106,79,0.25);
  transform: translateY(-2px);
  color: #fff;
}
.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: rgba(45,106,79,0.35);
}
.btn-secondary:hover {
  background: rgba(45,106,79,0.07);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}
.btn-accent {
  background: var(--color-accent);
  color: var(--color-text);
  box-shadow: var(--shadow-accent);
}
.btn-accent:hover {
  background: var(--color-accent-light);
  box-shadow: 0 10px 28px rgba(212,168,67,0.35);
  transform: translateY(-2px);
}
.btn-lg { padding: 1rem 2.2rem; font-size: 1.05rem; }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.85rem; }
.btn i { transition: transform var(--transition-fast); }
.btn:hover i { transform: translateX(3px); }

/* ============================================
   SECTION SHARED STYLES
   ============================================ */
.section { padding: var(--space-3xl) 0; position: relative; overflow: hidden; }
.section-sm { padding: var(--space-2xl) 0; }
.section-alt { background: var(--color-bg-alt); }
.section-dark {
  background: var(--color-primary-dark);
  color: #fff;
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.75); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 0.9rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}

.section-header { margin-bottom: var(--space-xl); }
.section-header.centered { text-align: center; }
.section-header h2 { margin-bottom: 0.8rem; }
.section-header p { max-width: 580px; }
.section-header.centered p { margin: 0 auto; }


.wave-top, .wave-bottom { position: absolute; left: 0; right: 0; overflow: hidden; line-height: 0; }
.wave-top { top: -2px; }
.wave-bottom { bottom: -2px; }
.wave-top svg, .wave-bottom svg { display: block; width: 100%; }


.gradient-fade {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
  padding: 0;
  height: 80px;
  position: relative;
  z-index: 1;
}
.gradient-fade-reverse {
  background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
  height: 80px;
  position: relative;
  z-index: 1;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(216,232,221,0.6);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.card-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
  flex-shrink: 0;
}
.card-icon-primary { background: rgba(45,106,79,0.1); color: var(--color-primary); }
.card-icon-accent { background: rgba(212,168,67,0.15); color: var(--color-accent); }
.card-icon-secondary { background: rgba(116,198,157,0.2); color: var(--color-primary-light); }

.card h3 { margin-bottom: 0.6rem; }
.card p { font-size: 0.95rem; }


.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
.card-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }

/* ============================================
   CHECKLIST SECTION
   ============================================ */
.checklist-section {
  background: var(--color-surface-warm);
  position: relative;
}

.checklist-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(ellipse, rgba(116,198,157,0.15) 0%, transparent 70%);
  border-radius: 58% 42% 46% 54% / 52% 60% 40% 48%;
  pointer-events: none;
}

.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm) var(--space-xl);
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.9rem;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
}
.checklist-item:hover { background: rgba(45,106,79,0.04); }

.check-icon {
  width: 26px; height: 26px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
  box-shadow: 0 2px 8px rgba(45,106,79,0.25);
}

.checklist-item-text h4 { font-size: 0.95rem; margin-bottom: 0.2rem; color: var(--color-text); }
.checklist-item-text p { font-size: 0.88rem; line-height: 1.55; }

/* ============================================
   IMAGE COMPARISON SLIDER (CSS Only)
   ============================================ */
.comparison-section { background: var(--color-bg); }

.comparison-wrap {
  max-width: 700px;
  margin: 0 auto;
}

.comparison-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  cursor: col-resize;
  user-select: none;
}

.comparison-before,
.comparison-after {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.comparison-before img,
.comparison-after img {
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.comparison-after {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.05s linear;
}

.comparison-slider-input {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  cursor: col-resize;
  z-index: 10;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
}

.comparison-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 5;
  box-shadow: 0 0 12px rgba(0,0,0,0.25);
  transition: left 0.05s linear;
}

.comparison-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  pointer-events: none;
  z-index: 6;
  transition: left 0.05s linear;
  color: var(--color-primary);
  font-size: 0.9rem;
}

.comparison-label {
  position: absolute;
  top: 16px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(0,0,0,0.45);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-xl);
  pointer-events: none;
  z-index: 7;
}
.comparison-label-before { left: 16px; }
.comparison-label-after { right: 16px; }

.comparison-caption { text-align: center; margin-top: var(--space-md); }
.comparison-caption p { font-size: 0.9rem; font-style: italic; }

/* ============================================
   PROCESS / HOW IT WORKS
   ============================================ */
.process-steps { display: flex; flex-direction: column; gap: var(--space-lg); }

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-md);
  align-items: start;
}

.step-number-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.step-number {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 4px 14px rgba(45,106,79,0.3);
  flex-shrink: 0;
}

.step-connector {
  width: 2px;
  flex: 1;
  min-height: 40px;
  background: linear-gradient(to bottom, var(--color-primary-light), transparent);
  border-radius: 2px;
}

.step-content { padding-top: 0.5rem; }
.step-content h3 { margin-bottom: 0.5rem; font-size: 1.15rem; }
.step-content p { font-size: 0.95rem; }

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.features-img-wrap {
  position: relative;
}

.features-img-blob {
  position: absolute;
  inset: -15px;
  background: linear-gradient(135deg, rgba(212,168,67,0.2) 0%, rgba(116,198,157,0.15) 100%);
  border-radius: 42% 58% 54% 46% / 48% 52% 48% 52%;
  z-index: 0;
}

.features-img {
  position: relative;
  z-index: 1;
  border-radius: 38% 62% 50% 50% / 46% 50% 50% 54%;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}

.features-list { display: flex; flex-direction: column; gap: var(--space-md); }

.feature-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
}
.feature-item:hover { background: rgba(45,106,79,0.04); }

.feature-item-icon {
  width: 44px; height: 44px;
  background: rgba(45,106,79,0.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary);
  font-size: 1rem;
  flex-shrink: 0;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.feature-item:hover .feature-item-icon {
  background: var(--color-primary);
  color: #fff;
}
.feature-item-text h4 { margin-bottom: 0.25rem; font-size: 1rem; }
.feature-item-text p { font-size: 0.9rem; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 60%, var(--color-primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: var(--radius-blob);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 350px; height: 350px;
  background: radial-gradient(ellipse, rgba(212,168,67,0.15) 0%, transparent 70%);
  border-radius: 55% 45% 42% 58% / 48% 52% 48% 52%;
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.cta-inner h2 { color: #fff; margin-bottom: var(--space-sm); }
.cta-inner p { color: rgba(255,255,255,0.8); margin-bottom: var(--space-lg); font-size: 1.1rem; }
.cta-actions { display: flex; gap: var(--space-sm); justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: #fff;
  color: var(--color-primary-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover {
  background: var(--color-bg);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
  transform: translateY(-2px);
  color: var(--color-primary-dark);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
  color: #fff;
}

/* ============================================
   SIMULATOR SECTION
   ============================================ */
.simulator-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
  max-width: 860px;
  margin: 0 auto;
}

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

.form-group { margin-bottom: var(--space-md); }
.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.45rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(45,106,79,0.12);
  background: var(--color-surface);
}
.form-textarea { resize: vertical; min-height: 120px; }

.range-wrap { position: relative; }
.range-input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--color-border);
  outline: none;
  cursor: pointer;
}
.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--color-primary);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(45,106,79,0.35);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.range-input::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 14px rgba(45,106,79,0.4);
}
.range-value {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-xl);
  margin-top: 0.5rem;
}

.sim-results {
  background: linear-gradient(135deg, var(--color-bg-alt), var(--color-surface-warm));
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
}

.sim-result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--color-border);
}
.sim-result-item:last-child { border-bottom: none; }
.sim-result-label { font-size: 0.9rem; color: var(--color-text-muted); font-weight: 500; }
.sim-result-value { font-size: 1.1rem; font-weight: 700; color: var(--color-primary); }
.sim-result-value.accent { color: var(--color-accent); }

.sim-disclaimer {
  font-size: 0.8rem;
  color: var(--color-text-light);
  text-align: center;
  margin-top: var(--space-md);
  font-style: italic;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info { padding-top: var(--space-sm); }

.contact-info-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(45,106,79,0.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-text h4 { font-size: 0.9rem; margin-bottom: 0.2rem; }
.contact-info-text p, .contact-info-text a { font-size: 0.95rem; color: var(--color-text-muted); }
.contact-info-text a:hover { color: var(--color-primary); }

.contact-form-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
}

.privacy-check { display: flex; gap: 0.7rem; align-items: flex-start; margin-top: var(--space-sm); }
.privacy-check input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 0.1rem;
  accent-color: var(--color-primary);
  flex-shrink: 0;
  cursor: pointer;
}
.privacy-check label { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.5; cursor: pointer; }
.privacy-check a { color: var(--color-primary); text-decoration: underline; }

.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: var(--space-xl);
  height: 380px;
  border: 1px solid var(--color-border);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.75);
  padding: var(--space-3xl) 0 var(--space-lg);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -80px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(ellipse, rgba(116,198,157,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-top: var(--space-sm); max-width: 280px; }

.footer-logo-wrap { display: flex; align-items: center; gap: 0.6rem; }
.footer-logo-text { font-size: 1rem; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.footer-logo-text span { color: var(--color-accent); }

.footer-col h5 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-sm);
}

.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}
.footer-links a:hover { color: var(--color-secondary); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.7rem;
}
.footer-contact-item i { color: var(--color-secondary); font-size: 0.85rem; margin-top: 0.2rem; flex-shrink: 0; }
.footer-contact-item span { font-size: 0.88rem; color: rgba(255,255,255,0.6); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.footer-bottom p { font-size: 0.82rem; margin: 0; color: rgba(255,255,255,0.45); }
.footer-bottom-links { display: flex; gap: var(--space-md); }
.footer-bottom-links a { font-size: 0.82rem; color: rgba(255,255,255,0.45); transition: color var(--transition-fast); }
.footer-bottom-links a:hover { color: var(--color-secondary); }

/* ============================================
   COOKIE CONSENT
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -8px 32px rgba(30,45,36,0.12), 0 -2px 8px rgba(30,45,36,0.06);
  padding: var(--space-md) 0;
  transform: translateY(0);
  transition: transform var(--transition-slow);
}
.cookie-banner.hidden { transform: translateY(110%); }

.cookie-inner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cookie-text { flex: 1; min-width: 280px; }
.cookie-text p { font-size: 0.88rem; margin: 0; line-height: 1.6; }
.cookie-text a { color: var(--color-primary); text-decoration: underline; }

.cookie-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; flex-shrink: 0; }
.cookie-btn {
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: 1.5px solid transparent;
}
.cookie-btn-accept { background: var(--color-primary); color: #fff; }
.cookie-btn-accept:hover { background: var(--color-primary-light); transform: translateY(-1px); }
.cookie-btn-reject { background: transparent; color: var(--color-text-muted); border-color: var(--color-border); }
.cookie-btn-reject:hover { border-color: var(--color-text-muted); transform: translateY(-1px); }
.cookie-btn-customize { background: transparent; color: var(--color-primary); border-color: rgba(45,106,79,0.3); }
.cookie-btn-customize:hover { background: rgba(45,106,79,0.07); transform: translateY(-1px); }


.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30,45,36,0.55);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}
.cookie-modal-overlay.open { opacity: 1; pointer-events: all; }

.cookie-modal {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  max-width: 560px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  max-height: 90vh;
  overflow-y: auto;
}
.cookie-modal h3 { margin-bottom: var(--space-sm); font-size: 1.3rem; }
.cookie-modal p { font-size: 0.9rem; margin-bottom: var(--space-md); }

.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
  gap: var(--space-sm);
}
.cookie-category:last-of-type { border-bottom: none; }
.cookie-category-info h4 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.cookie-category-info p { font-size: 0.82rem; margin: 0; }


.toggle-switch { position: relative; display: inline-block; width: 46px; height: 24px; flex-shrink: 0; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--color-border);
  border-radius: 24px;
  transition: background var(--transition-fast);
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 3px; bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition-fast);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.toggle-switch input:checked + .toggle-slider { background: var(--color-primary); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(22px); }
.toggle-switch input:disabled + .toggle-slider { opacity: 0.6; cursor: not-allowed; }

.cookie-modal-actions { display: flex; gap: 0.6rem; justify-content: flex-end; margin-top: var(--space-md); flex-wrap: wrap; }

/* ============================================
   INNER PAGE HERO
   ============================================ */
.page-hero {
  padding: 9rem 0 4rem;
  background: linear-gradient(145deg, #f0f7f2 0%, #f7f5f1 60%, #fdf9f4 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 450px; height: 450px;
  background: radial-gradient(ellipse, rgba(116,198,157,0.18) 0%, transparent 65%);
  border-radius: 58% 42% 46% 54% / 52% 60% 40% 48%;
  pointer-events: none;
}

.page-hero-inner { max-width: 680px; }
.page-hero-inner .section-label { margin-bottom: var(--space-sm); }
.page-hero-inner h1 { margin-bottom: var(--space-sm); }
.page-hero-inner p { font-size: 1.1rem; max-width: 560px; }

/* ============================================
   THANKS PAGE
   ============================================ */
.thanks-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f0f7f2 0%, #f7f5f1 100%);
  padding: var(--space-xl) 0;
}

.thanks-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl) var(--space-xl);
  text-align: center;
  max-width: 560px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
}

.thanks-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: #fff;
  margin: 0 auto var(--space-md);
  box-shadow: 0 8px 24px rgba(45,106,79,0.3);
}

.thanks-card h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: var(--space-sm); }
.thanks-card p { font-size: 1.05rem; margin-bottom: var(--space-lg); }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-section { padding: var(--space-xl) 0 var(--space-3xl); }
.legal-content h2 { font-size: 1.4rem; margin: var(--space-lg) 0 var(--space-sm); color: var(--color-text); }
.legal-content h3 { font-size: 1.1rem; margin: var(--space-md) 0 0.5rem; color: var(--color-text); }
.legal-content p { margin-bottom: var(--space-sm); font-size: 0.95rem; }
.legal-content ul { padding-left: 1.5rem; margin-bottom: var(--space-sm); }
.legal-content ul li { font-size: 0.95rem; color: var(--color-text-muted); margin-bottom: 0.4rem; list-style: disc; }
.legal-content a { color: var(--color-primary); text-decoration: underline; }
.legal-meta { font-size: 0.85rem; color: var(--color-text-light); margin-bottom: var(--space-xl); }

/* ============================================
   ABOUT / PORQUE NOS
   ============================================ */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }

.value-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }

.team-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }

.team-card-img { aspect-ratio: 4/3; overflow: hidden; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.team-card:hover .team-card-img img { transform: scale(1.04); }

.team-card-body { padding: var(--space-md); }
.team-card-body h3 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.team-card-role { font-size: 0.85rem; color: var(--color-primary); font-weight: 600; margin-bottom: 0.6rem; display: block; }
.team-card-body p { font-size: 0.88rem; }

/* ============================================
   REPORT / COMO FUNCIONA SPECIFIC
   ============================================ */
.report-preview {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.report-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}

.report-bar-wrap { margin-bottom: 0.8rem; }
.report-bar-label { display: flex; justify-content: space-between; font-size: 0.85rem; font-weight: 500; margin-bottom: 0.3rem; }
.report-bar-track { height: 8px; background: var(--color-border); border-radius: 4px; overflow: hidden; }
.report-bar-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--color-primary-light), var(--color-secondary)); transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94); }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.text-accent { color: var(--color-accent); }
.text-muted { color: var(--color-text-muted); }
.font-bold { font-weight: 700; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.hidden { display: none !important; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }


.blob-accent {
  position: absolute;
  pointer-events: none;
  border-radius: 58% 42% 46% 54% / 52% 60% 40% 48%;
  opacity: 0.7;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .hero-visual { order: -1; max-width: 480px; margin: 0 auto; }
  .hero-content { max-width: 100%; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-desc { margin: 0 auto var(--space-lg); }

  .features-split { grid-template-columns: 1fr; gap: var(--space-xl); }
  .features-img-wrap { max-width: 460px; margin: 0 auto; }
  .features-img { aspect-ratio: 16/9; }

  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }

  .contact-grid { grid-template-columns: 1fr; }
  .sim-grid { grid-template-columns: 1fr; }

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

@media (max-width: 768px) {
  :root {
    --space-3xl: 5rem;
    --space-2xl: 3.5rem;
    --space-xl: 2.5rem;
  }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-right .lang-switcher { display: none; }

  .card-grid-3 { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .card-grid-4 { grid-template-columns: 1fr; }

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

  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }

  .process-step { grid-template-columns: 56px 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-float-card { display: none; }

  .comparison-container { aspect-ratio: 4/3; }

  .contact-form-card { padding: var(--space-lg); }
  .simulator-card { padding: var(--space-lg); }
  .thanks-card { padding: var(--space-xl) var(--space-md); }

  .cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: clamp(2rem, 8vw, 2.8rem); }
  .btn-lg { padding: 0.85rem 1.6rem; font-size: 0.95rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .cookie-inner { flex-direction: column; }
  .cookie-actions { width: 100%; justify-content: stretch; }
  .cookie-btn { flex: 1; text-align: center; }
  .footer-bottom-links { flex-direction: column; gap: 0.5rem; align-items: center; }
}


@media print {
  .site-header, .site-footer, .cookie-banner, .mobile-menu { display: none !important; }
  body { background: #fff; color: #000; }
}