/* CSS Design System for Raul Carneiro Landing Page */

:root {
  /* Colors */
  --color-cocoa: #29211e;
  --color-cocoa-rgb: 41, 33, 30;
  --color-cocoa-light: #3e332f;
  --color-teal: #017167;
  --color-teal-rgb: 1, 113, 103;
  --color-teal-light: #018a7d;
  --color-white: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.7);
  --color-border: rgba(255, 255, 255, 0.15);
  
  /* Fonts — DM Sans em tudo */
  --font-heading: 'DM Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  
  /* Layout */
  --container-max-width: 1200px;
  --header-height: 80px;
  
  /* Animations */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-cocoa);
  color: var(--color-white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.45;
}

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

.section {
  padding: 100px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

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

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

/* =========================================================
   MARK HIGHLIGHTS
   - display: inline  → o fundo abraça apenas o texto
   - padding mínimo   → sem espaço extra horizontal/vertical
   - box-decoration-break: clone → cada linha quebrada recebe
     seu próprio retângulo de fundo, sem transbordar
   ========================================================= */
mark {
  background: none;
  color: inherit;
  /* inline: fundo só no texto, quebrando corretamente em múltiplas linhas */
  display: inline;
  /* padding mínimo: cobre os glifos sem sobrar espaço */
  padding: 0.05em 0.1em;
  margin: 0 -0.05em;
  border-radius: 2px;
  /* garante que cada linha partida tenha seu próprio fundo */
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  font-weight: 800;
}

/* Fundo verde (teal) — para seções escuras */
mark.mk-teal {
  background-color: var(--color-teal);
  color: var(--color-white);
}

/* Fundo marrom (cocoa) — para seções teal */
mark.mk-cocoa {
  background-color: var(--color-cocoa);
  color: var(--color-white);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-teal, .btn-cocoa {
  background-color: #bb8b16;
  color: var(--color-cocoa);
}

.btn-teal:hover, .btn-cocoa:hover {
  background-color: #dba623;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(187, 139, 22, 0.4);
}

/* Centering section CTA buttons */
.cta-line,
.offer-text > div {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
}

.header.scrolled {
  background-color: rgba(41, 33, 30, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--color-white);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.8;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover {
  opacity: 1;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-white);
  transition: var(--transition-smooth);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  border-radius: 6px;
  box-shadow: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger .bar {
  width: 30px;
  height: 3px;
  background-color: var(--color-white);
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ===========================================
   SECTION 1: HERO
   
   DESKTOP (grid 2 colunas):
   ┌────────────────────┬──────────┐
   │ h1 (row 1)         │          │
   │                    │  foto    │
   │ p.hero-intro (row2)│          │
   └────────────────────┴──────────┘
   
   MOBILE (flex coluna):
   ┌──────────────────┐
   │ h1               │ order:1
   ├──────────────────┤
   │ foto             │ order:2
   ├──────────────────┤
   │ p.hero-intro     │ order:3
   └──────────────────┘
   =========================================== */
/* Hero ocupa exatamente a altura da janela — tudo visível sem scroll */
#hero {
  min-height: 100vh;
  /* sobrescreve o padding do .section */
  padding: 0 !important;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

/* Container do hero centraliza o grid verticalmente, com espaçamento inferior ajustado */
#hero > .container {
  padding-top: calc(var(--header-height) + 1.5rem);
  padding-bottom: 4rem;
  display: flex;
  align-items: center;
  flex: 1;
}

/* Desktop: texto na esquerda (menor), imagem na direita (maior) */
.hero-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  grid-template-rows: auto auto;
  gap: 1.5rem 4rem;
  width: 100%;
  /* alinha o texto verticalmente ao centro */
  align-items: center;
}

/* h1 fica na coluna 1, linha 1 — tamanho ajustado para caber acima do fold */
.hero-title {
  grid-column: 1;
  grid-row: 1;
  font-size: clamp(1.5rem, 2.2vw + 0.6rem, 2.8rem);
  line-height: 1.45;
  font-weight: 900;
  align-self: end;
}

/* hero-right (foto) ocupa coluna 2, todas as linhas */
.hero-right {
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  align-self: center;
}

/* p.hero-intro fica na coluna 1, linha 2 */
.hero-intro {
  grid-column: 1;
  grid-row: 2;
  font-size: clamp(0.95rem, 0.8vw + 0.7rem, 1.25rem);
  line-height: 1.55;
  font-weight: 500;
  align-self: start;
}

/* Caixa da imagem: fit-content, sem padding, sem borda/sombra própria */
.hero-img-box {
  position: relative;
  width: fit-content;
  height: fit-content;
  max-width: 520px;  /* largura máxima compacta, como no exemplo */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  border-radius: 0;
  padding: 0;
  margin: 0 auto;
  animation: float 6s ease-in-out infinite;
}

/* Subtle glow behind Raul */
.hero-img-box::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(var(--color-teal-rgb), 0.2) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

/* Foto — aspect-ratio 4/3 crop no rosto/busto, bordas arredondadas aplicadas direto */
.hero-img {
  position: relative;
  z-index: 2;
  /* aspect-ratio horizontal recorta o retrato no enquadramento do exemplo */
  width: clamp(280px, 38vw, 500px);
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  /* posição vertical sobe levemente para focar no rosto+busto */
  object-position: center 15%;
  border-radius: 20px;
  border: 1px solid rgba(var(--color-teal-rgb), 0.55);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.25);
}

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

/* SECTION 2: MANIFESTO */
.manifesto-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.manifesto-image {
  position: relative;
}

.manifesto-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 16px;
  /* teal section → borda variante cocoa */
  border: 1px solid rgba(41, 33, 30, 0.55);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28), 0 2px 8px rgba(0, 0, 0, 0.18);
}

.manifesto-text {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.manifesto-text p {
  font-size: clamp(1.1rem, 0.8vw + 0.9rem, 1.45rem);
  line-height: 1.6;
}

/* SECTION 3: HOW I CAN HELP */
.solutions-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.solutions-text {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.solutions-text h2 {
  font-size: clamp(2rem, 2.5vw + 1rem, 3rem);
}

.solutions-text p {
  font-size: clamp(1.1rem, 0.5vw + 0.9rem, 1.35rem);
  line-height: 1.6;
  color: var(--color-text-muted);
}

.solutions-image img {
  border-radius: 16px;
  /* dark section → borda variante teal */
  border: 1px solid rgba(var(--color-teal-rgb), 0.55);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.32), 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* OFFER LAYOUTS (SECTIONS 4, 5, 6) */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.offer-grid.reverse {
  direction: ltr;
}

/* Make reverse swap visual order on desktop */
.offer-grid.reverse .offer-image {
  grid-column: 1;
}
.offer-grid.reverse .offer-text {
  grid-column: 2;
}

.offer-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.offer-tag {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  opacity: 0.6;
}

.offer-text h2 {
  font-size: clamp(1.8rem, 2vw + 1rem, 2.8rem);
  line-height: 1.45;
}

.offer-text p {
  font-size: clamp(1.05rem, 0.3vw + 0.95rem, 1.25rem);
  line-height: 1.6;
}

/* offer-image img: a cor da borda é definida por modificadores de seção abaixo */
/* .book-cover-img é excluído: usa clip-path que corta box-shadow; sombra vem do filter no wrapper */
.offer-image img:not(.book-cover-img) {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28), 0 2px 8px rgba(0, 0, 0, 0.18);
}

/* Section teal → borda variante cocoa (Seção 6: Consultoria) */
.section.teal .offer-image img:not(.book-cover-img) {
  border: 1px solid rgba(41, 33, 30, 0.55);
}

/* Section dark → borda variante teal (Seção 5: Casulo) */
.section.dark .offer-image img:not(.book-cover-img) {
  border: 1px solid rgba(var(--color-teal-rgb), 0.55);
}

/* Book Specific — capa com cantos arredondados */
/* border e sombra ficam no wrapper via filter:drop-shadow,
   que segue o shape visual renderizado (após o clip-path do filho) */
.book-container {
  width: 100%;
  height: 100%;
  justify-self: center;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  border-radius: 0;
  padding: 0;
}

.book-cover-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  max-height: 80vh;
  object-fit: cover;
  border-radius: 16px;
  background: transparent;
}

/* Regras gerais de transição e zoom no hover de todas as imagens das seções */
.hero-img,
.manifesto-img,
.solutions-image img,
.book-cover-img,
.offer-image img,
.about-image img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-img-box:hover .hero-img,
.manifesto-image:hover .manifesto-img,
.solutions-image:hover img,
.book-container:hover .book-cover-img,
.offer-image:hover img,
.about-image:hover img {
  transform: scale(1.04);
}

/* SECTION 7: ABOUT RAUL */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.about-image img {
  border-radius: 16px;
  /* dark section → borda variante teal */
  border: 1px solid rgba(var(--color-teal-rgb), 0.55);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.32), 0 2px 8px rgba(0, 0, 0, 0.2);
  max-height: 600px;
  width: 100%;
  object-fit: cover;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.about-text h2 {
  font-size: clamp(2rem, 2.5vw + 1rem, 3rem);
}

.about-text p {
  font-size: clamp(1.1rem, 0.6vw + 0.95rem, 1.45rem);
  line-height: 1.6;
}

/* SECTION 8: A REAL */
.areal-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.areal-content h2 {
  font-size: clamp(2rem, 2.5vw + 1rem, 3rem);
}

.areal-questions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.question-block {
  background: rgba(41, 33, 30, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 16px;
  transition: var(--transition-smooth);
}

.question-block:hover {
  transform: translateY(-5px);
  background: rgba(41, 33, 30, 0.25);
  border-color: rgba(255, 255, 255, 0.2);
}

.question-block .q {
  font-family: var(--font-heading);
  font-size: calc(1.35rem + 4pt);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.question-block .a {
  font-family: var(--font-body);
  font-size: 1.2rem;
  opacity: 0.9;
  font-weight: 600;
}

.areal-text {
  font-size: clamp(1.1rem, 0.6vw + 0.95rem, 1.45rem);
  line-height: 1.6;
  position: relative;
  padding-left: 2rem;
  border-left: 4px solid var(--color-cocoa);
}

/* SECTION 9: FINAL CTA */
.final-content {
  text-align: center;
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.final-content h2 {
  font-size: clamp(1.8rem, 2.5vw + 1rem, 3rem);
}

.final-tagline {
  font-size: clamp(1.5rem, 2vw + 1rem, 2.4rem);
  margin-top: -1.5rem;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.option-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  padding: 3rem 2rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.option-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.option-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.option-card:hover::before {
  transform: scaleX(1);
}

.option-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-teal);
  line-height: 1;
  opacity: 0.9;
}

.option-card h3 {
  font-size: 1.5rem;
}

.option-card p {
  color: var(--color-text-muted);
  font-size: 1rem;
  min-height: 50px;
}

.option-btn {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: var(--color-white);
  border-bottom: 2px solid var(--color-teal);
  padding-bottom: 0.2rem;
  margin-top: 1rem;
}

.option-card:hover .option-btn {
  color: var(--color-teal-light);
  border-color: var(--color-teal-light);
}

/* FOOTER */
.footer {
  background-color: #1a1513;
  padding: 50px 0;
  border-top: 1px solid var(--color-border);
  font-family: var(--font-heading);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-copyright {
  opacity: 0.6;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-link {
  opacity: 0.6;
}

.footer-link:hover {
  opacity: 1;
}

/* SCROLL REVEAL ANIMATION SYSTEM */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Delay helpers for animations */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }


/* RESPONSIVE DESIGN (Breakpoints) */

/* TABLET LAYOUT */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }
  
  /* Header inline adjustments on tablet */
  .logo {
    font-size: 1.25rem;
  }
  
  .nav-menu {
    gap: 0.85rem;
  }
  
  .nav-link {
    font-size: 0.85rem;
  }
  
  .nav-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  
  .section {
    padding: 80px 0;
  }
  
  /* Tablet hero: empilhado. Ordem: h1 → foto → p */
  /* Em tablet/mobile o hero volta a ter altura natural */
  #hero {
    height: auto;
    min-height: auto;
    padding: 80px 0 120px !important;
  }

  #hero > .container {
    padding-top: 0;
    padding-bottom: 0;
    display: block;
    flex: unset;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-title  { order: 1; }
  .hero-right  { order: 2; }
  .hero-intro  { order: 3; }
  
  .hero-img-box {
    width: fit-content;
    height: fit-content;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .manifesto-img {
    height: 400px;
  }
  
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .offer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .offer-grid .offer-image {
    order: 1;
  }
  
  .offer-grid .offer-text {
    order: 2;
  }
  
  .offer-grid.reverse .offer-image {
    grid-column: auto;
  }
  .offer-grid.reverse .offer-text {
    grid-column: auto;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .about-image img {
    max-height: 450px;
  }
  
  .areal-questions {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .options-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 2rem auto 0;
  }
}

/* MOBILE LAYOUT */
@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .container {
    padding: 0 1.5rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .logo {
    font-size: 1.3rem;
  }
  
  /* Mobile Navigation Hamburger */
  .hamburger {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--color-cocoa);
    flex-direction: column;
    padding: 4rem 2rem;
    gap: 2.5rem;
    transition: var(--transition-smooth);
    border-top: 1px solid var(--color-border);
    z-index: 999;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-link {
    font-size: 1.2rem;
  }
  
  .nav-btn {
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-size: 1.1rem;
  }

  /* Mobile hero: altura natural, flex coluna com order explícito */
  #hero {
    height: auto;
    min-height: auto;
    padding: 60px 0 100px !important;
  }

  #hero > .container {
    padding-top: 0;
    padding-bottom: 0;
    display: block;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
  }

  .hero-title {
    order: 1;
    font-size: clamp(1.7rem, 6vw, 2.5rem);
    line-height: 1.45;
    align-self: auto;
  }

  .hero-right {
    order: 2;
    width: 100%;
    align-self: auto;
  }

  .hero-img-box {
    width: fit-content;
    height: fit-content;
    max-width: 100%;
    margin: 0 auto;
  }

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

  .hero-intro {
    order: 3;
    font-size: clamp(1rem, 4vw, 1.3rem);
    line-height: 1.6;
    text-align: left;
    align-self: auto;
  }

  /* mark mais compacto em mobile */
  mark {
    padding: 0.04em 0.08em;
    margin: 0 -0.03em;
  }
  
  .manifesto-img, .about-image img {
    height: 320px;
  }
  
  .question-block {
    padding: 1.8rem;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}
