/* ============================================================
   SEMIPA - ESTILOS GERAIS
   Paleta e layout base
   ============================================================ */

:root {
  /* Paleta principal baseada no logo */
  --azul-escuro: #043d80;
  --azul-medio:  #007ac1;
  --azul-claro:  #21b0e7;

  /* Verdes – elementos naturais / missão */
  --verde-escuro: #128b3d;
  --verde-claro:  #a1c334;

  /* Neutros – apoio e equilíbrio visual */
  --bege-claro:   #eee3ad;
  --marrom-claro: #b59d69;
  --marrom-medio: #847245;

  /* Base do layout */
  --fundo:  #ffffff;
  --texto:  #1f2428;

  /* Tokens usados pelo resto do CSS */
  --primary:   var(--azul-escuro);
  --secondary: var(--azul-claro);
  --dark:      #012247;
  --light:     var(--bege-claro);
  --text:      var(--texto);
  --white:     #ffffff;
}

/* ============================================================
   POLIMENTO FINAL - NAVEGACAO, HOME, PROJETOS E BLOG
   ============================================================ */

.navbar,
body:has(.hero-modern) .navbar,
body:not(:has(.hero-modern)) .navbar,
body:has(.hero-modern) .navbar.navbar--scrolled {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background: rgba(5, 26, 40, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
}

.navbar-container {
  min-height: 78px;
}

.desktop-menu a,
body:has(.hero-modern) .navbar:not(.navbar--scrolled) .desktop-menu a,
body:has(.hero-modern) .navbar:not(.navbar--scrolled) .language-switch a {
  color: rgba(255, 255, 255, 0.96);
}

.desktop-menu a:hover,
.desktop-menu a.active {
  color: #ffffff;
}

.desktop-menu a {
  padding: 0.55rem 0;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.28);
}

.desktop-menu a::after {
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #ffffff);
  box-shadow: 0 0 14px rgba(33, 176, 231, 0.36);
}

.desktop-menu a:hover::after,
.desktop-menu a.active::after {
  width: 100%;
}

.desktop-menu ul {
  gap: clamp(1.05rem, 1.55vw, 1.55rem);
}

.language-switch,
body:has(.hero-modern) .navbar:not(.navbar--scrolled) .language-switch {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.language-switch a,
body:has(.hero-modern) .navbar:not(.navbar--scrolled) .language-switch a {
  color: rgba(255, 255, 255, 0.82);
}

html[lang="pt-BR"] .language-switch a[data-lang="pt"],
html[lang^="es"] .language-switch a[data-lang="es"],
html[lang="pt-BR"] body:has(.hero-modern) .navbar:not(.navbar--scrolled) .language-switch a[data-lang="pt"],
html[lang^="es"] body:has(.hero-modern) .navbar:not(.navbar--scrolled) .language-switch a[data-lang="es"] {
  background: #ffffff;
  color: var(--primary);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.14);
}

.mobile-menu-toggle span,
body:has(.hero-modern) .navbar:not(.navbar--scrolled) .mobile-menu-toggle span {
  background-color: #ffffff;
}

body:not(:has(.hero-modern)) main {
  padding-top: 78px;
}

.hero-proof {
  width: min(100%, 760px);
  gap: 0.65rem;
  padding: 0.65rem;
  border-radius: 8px;
  background: rgba(6, 27, 47, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.2);
}

.hero-proof span {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  justify-content: center;
  gap: 0.45rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07));
}

.hero-proof span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-proof strong {
  display: block;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.92rem, 1.3vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.hero-proof small {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.45;
}

.projects-page .page-intro {
  max-width: 920px;
  margin: 0 auto;
  color: #51616f;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.8;
}

.project-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(210px, 0.9fr);
  gap: 0;
  max-width: 1040px;
  margin: 2rem auto 0;
  padding: 0.7rem;
  border: 1px solid rgba(7, 25, 39, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(7, 25, 39, 0.08);
}

.project-overview > div,
.project-overview__cta {
  min-height: 88px;
  padding: 1rem 1.15rem;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}

.project-overview > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(7, 25, 39, 0.08);
}

.project-overview__number {
  color: var(--primary);
  font-family: 'Poppins', sans-serif;
  font-size: 1.72rem;
  font-weight: 800;
  letter-spacing: 0;
}

.project-overview__label {
  display: block;
  max-width: 150px;
  color: #5f6f7e;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.project-overview__cta {
  min-height: 88px;
  background: linear-gradient(135deg, #11823b, #26a45a);
  color: #ffffff;
  font-size: 0.94rem;
  line-height: 1.25;
  box-shadow: 0 12px 26px rgba(18, 139, 61, 0.2);
}

.newsletter-section {
  background: linear-gradient(180deg, #f4f8fb, #ffffff);
}

.newsletter-box,
.blog-page .newsletter-box {
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(4, 61, 128, 0.96), rgba(6, 27, 47, 0.96)),
    var(--primary);
  color: #ffffff;
  box-shadow: 0 26px 64px rgba(4, 61, 128, 0.24);
}

.newsletter-box .newsletter-title,
.newsletter-box .newsletter-subtitle,
.blog-page .newsletter-box .newsletter-title,
.blog-page .newsletter-box .newsletter-subtitle {
  color: #ffffff;
}

.newsletter-box .newsletter-subtitle,
.blog-page .newsletter-box .newsletter-subtitle {
  opacity: 0.84;
}

.newsletter-box .btn-primary,
.blog-page .newsletter-box .btn-primary {
  background: #ffffff;
  color: var(--primary);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.newsletter-box .btn-primary:hover,
.blog-page .newsletter-box .btn-primary:hover {
  background: var(--accent);
  color: #ffffff;
}

@media (max-width: 900px) {
  .hero-proof,
  .project-overview {
    grid-template-columns: 1fr;
  }

  .hero-proof span + span,
  .project-overview > div {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .project-overview > div {
    border-top-color: rgba(7, 25, 39, 0.08);
  }
}

/* Reforco final de contraste do menu global */
.navbar .desktop-menu a,
body:has(.hero-modern) .navbar .desktop-menu a,
body:not(:has(.hero-modern)) .navbar .desktop-menu a {
  color: rgba(255, 255, 255, 0.98);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.32);
}

.navbar .desktop-menu a:hover,
.navbar .desktop-menu a.active,
body:has(.hero-modern) .navbar .desktop-menu a:hover,
body:has(.hero-modern) .navbar .desktop-menu a.active,
body:not(:has(.hero-modern)) .navbar .desktop-menu a:hover,
body:not(:has(.hero-modern)) .navbar .desktop-menu a.active {
  color: #ffffff;
}

.navbar .desktop-menu a::after {
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--verde-claro));
  box-shadow: 0 0 16px rgba(33, 176, 231, 0.45);
}

/* ============================================================
   RESET BÁSICO
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  padding: 0;
  background-color: var(--fundo);
  color: var(--text);
}

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

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

/* Opção C — Links inline em parágrafos (sem classe) */
p > a:not([class]),
.page-intro > a:not([class]),
.section-subtitle > a:not([class]),
li > a:not([class]) {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: rgba(4, 61, 128, 0.3);
  text-underline-offset: 3px;
  font-weight: 600;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

p > a:not([class]):hover,
.page-intro > a:not([class]):hover,
.section-subtitle > a:not([class]):hover,
li > a:not([class]):hover {
  color: var(--azul-medio);
  text-decoration-color: var(--azul-medio);
}

button {
  font-family: inherit;
}

/* ============================================================
   LAYOUT GERAL
   ============================================================ */

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================================
   NAVBAR
   ============================================================ */

#navbar {
  display: contents;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 5%;
}

.logo img {
  height: 52px;
  width: auto;
}

.desktop-menu ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-menu a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  position: relative;
  padding-bottom: 0.25rem;
}

.desktop-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  transition: width 0.25s ease;
}

.desktop-menu a:hover::after {
  width: 100%;
}

.desktop-menu a.active {
  color: var(--secondary);
}

.desktop-menu a.active::after {
  width: 100%;
}

.mobile-menu a.active {
  color: var(--secondary);
  font-weight: 700;
}

/* Botão "Doe Agora" no menu */

.btn-doar {
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--verde-escuro), var(--verde-claro));
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn-doar:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* Menu mobile */

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 22px;
  height: 2px;
  background-color: var(--dark);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  background-color: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0.75rem 5% 1rem;
}

.mobile-menu li {
  margin-bottom: 0.5rem;
}

.mobile-menu a {
  display: inline-block;
  padding: 0.35rem 0;
  font-size: 0.95rem;
}

/* ============================================================
   HERO / BANNERS PRINCIPAIS
   ============================================================ */

.hero {
  background: linear-gradient(135deg, rgba(4, 61, 128, 0.9), rgba(0, 122, 193, 0.85));
  color: #fff;
  padding: 5rem 0 4rem;
}

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

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.text-gradient {
  background: linear-gradient(90deg, #ffffff, var(--light));
  background-clip: text;            
  -webkit-background-clip: text;    
  color: transparent;               
  -webkit-text-fill-color: transparent; 
}


.hero-subtitle {
  font-size: 1rem;
  opacity: 0.95;
  max-width: 640px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

/* Botões principais */

.btn-primary,
.btn-secondary,
.btn-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.18s ease;
  border: none;
}

.btn-primary {
  padding: 0.8rem 1.6rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
  filter: brightness(1.02);
}

.btn-secondary {
  padding: 0.8rem 1.6rem;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #fff;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.06);
}

.btn-text {
  padding: 0;
  background: none;
  color: var(--primary);
  font-weight: 600;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  text-decoration: underline;
  text-decoration-color: rgba(4, 61, 128, 0.2);
  text-underline-offset: 4px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease, gap 0.2s ease;
}

.btn-text::after {
  content: '→';
  font-style: normal;
  font-weight: 400;
  display: inline-block;
  transition: transform 0.2s ease;
}

.btn-text:hover {
  color: var(--azul-medio);
  text-decoration-color: rgba(0, 122, 193, 0.45);
  gap: 0.5rem;
}

.btn-text:hover::after {
  transform: translateX(3px);
}

/* Suprime a seta em links que já contêm ícone (WhatsApp, seta ←, etc.) */
.btn-text:has(i)::after {
  display: none;
}

/* btn-text em fundos escuros (hero, cta-box, newsletter-box) */
.hero .btn-text,
.cta-box .btn-text,
.newsletter-box .btn-text {
  color: rgba(255, 255, 255, 0.92);
  text-decoration-color: rgba(255, 255, 255, 0.3);
}

.hero .btn-text:hover,
.cta-box .btn-text:hover,
.newsletter-box .btn-text:hover {
  color: #ffffff;
  text-decoration-color: rgba(255, 255, 255, 0.65);
}

/* Animação de foco no botão */

.btn-pulse {
  position: relative;
  overflow: visible;
}

.btn-pulse::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent 60%);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn-pulse:hover::before {
  opacity: 0.3;
  transform: scale(1.15);
}

/* Hero secundário (páginas internas) */

.page-hero,
.blog-hero,
.adoption-hero {
  padding: 4rem 0 3rem;
  text-align: left;
}

.page-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
  color: #fff;
}

.page-subtitle {
  max-width: 640px;
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.header-divider {
  width: 80px;
  height: 3px;
  border-radius: 999px;
  margin-top: 1.25rem;
  background: linear-gradient(90deg, var(--secondary), var(--light));
}

/* Blog hero específico */

.blog-hero {
  background: linear-gradient(135deg, rgba(4, 61, 128, 0.92), rgba(18, 139, 61, 0.9));
  color: #fff;
  text-align: left;
}

/* ============================================================
   SEÇÕES GERAIS
   ============================================================ */

.section {
  padding: 3.5rem 0;
}

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

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.section-subtitle {
  max-width: 720px;
  margin: 0.25rem auto 0;
  color: #555;
  font-size: 0.98rem;
}

.page-intro {
  font-size: 0.98rem;
  color: #444;
  max-width: 860px;
  margin: 1rem auto;
}

/* ============================================================
   CARDS DE PROJETOS / GRID GENÉRICO
   ============================================================ */

.projects-grid,
.missionaries-grid,
.posts-grid,
.methods-grid,
.benefits-grid,
.reports-grid,
.highlight-cards {
  display: grid;
  gap: 1.8rem;
}

.projects-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.project-card,
.method-card,
.option-card,
.report-card,
.highlight-card,
.featured-post,
.post-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 1.5rem 1.4rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.project-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 0.6rem;
  color: var(--dark);
}

.project-excerpt {
  font-size: 0.95rem;
  color: #555;
  margin: 0.4rem 0;
}

/* ============================================================
   CURSOS – CARDS ELEGANTES
   ============================================================ */

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.course-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 2rem 1.8rem 1.8rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.course-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.course-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.course-card__accent--green {
  background: linear-gradient(90deg, var(--verde-escuro), var(--verde-claro));
}

.course-card__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.course-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.course-card__icon--green {
  background: linear-gradient(135deg, var(--verde-escuro), var(--verde-claro));
}

.course-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--dark);
  margin: 0 0 0.4rem;
  line-height: 1.3;
}

.course-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.course-badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(4, 61, 128, 0.08);
  color: var(--primary);
}

.course-badge--green {
  background: rgba(18, 139, 61, 0.08);
  color: var(--verde-escuro);
}

.course-card__text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin: 0 0 1.2rem;
}

.course-card__subjects {
  background: #f8f9fb;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  margin-bottom: 1.2rem;
}

.course-card__subjects-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.course-card__subjects-title i {
  margin-right: 0.35rem;
  color: var(--secondary);
}

.course-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.3rem;
}

.course-card__list li {
  font-size: 0.88rem;
  color: #444;
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}

.course-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--secondary);
}

.course-card__details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.3rem;
}

.course-detail {
  font-size: 0.88rem;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.course-detail i {
  color: var(--primary);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.course-card__btn {
  margin-top: auto;
  align-self: flex-start;
}

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

  .course-card {
    padding: 1.5rem 1.2rem 1.4rem;
  }

  .course-card__title {
    font-size: 1.2rem;
  }
}

/* ============================================================
   "NOSSOS NÚMEROS" / ESTATÍSTICAS
   ============================================================ */

.impact-section {
  position: relative;
}

.stat-card {
  text-align: left;
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-weight: 600;
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #666;
}

/* ============================================================
   PÁGINA HISTÓRIA
   ============================================================ */

.history-page section {
  padding: 3rem 0;
}

/* ============================================================
   PROJETOS & MISSIONÁRIOS
   ============================================================ */

.missionaries-header {
  padding-bottom: 1rem;
}

.missionaries-filter {
  display: flex;
  justify-content: flex-end;
}

.filter-options {
  display: flex;
  gap: 0.75rem;
}

.filter-options select {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 0.9rem;
  background-color: #fff;
  min-width: 150px;
  cursor: pointer;
}

.missionary-card {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: flex-start;
}

.missionary-image img {
  border-radius: 14px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.missionary-info h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  color: var(--dark);
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: #666;
}

.project-meta span i {
  margin-right: 0.25rem;
}

.missionary-card {
  position: relative;
  overflow: hidden;
  align-items: start;
  padding: 1.1rem;
  grid-template-columns: 1fr;
}

.missionary-image {
  align-self: start;
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(220px, 30vw, 320px);
  padding: 0.55rem;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(7, 25, 39, 0.04), rgba(21, 148, 201, 0.08)),
    #f4f7f8;
}

.missionary-image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: contain;
  box-shadow: inset 0 0 0 1px rgba(7, 25, 39, 0.04);
}

.missionary-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.missionary-info h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.22;
}

.project-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 0.75rem;
}

.project-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.28rem 0.64rem;
  border: 1px solid rgba(21, 148, 201, 0.18);
  border-radius: 999px;
  background: rgba(21, 148, 201, 0.08);
  color: var(--primary);
  font-family: 'Poppins', sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
}

.project-meta--compact {
  gap: 0.55rem 0.9rem;
  margin-bottom: 0.85rem;
}

.project-meta--compact span {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.32rem;
  line-height: 1.45;
}

.project-summary {
  margin: 0 0 0.85rem;
  color: #344451;
  font-size: 1rem;
  line-height: 1.72;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-summary--expanded {
  display: block;
  overflow: visible;
}

.project-details {
  display: grid;
  gap: 0.75rem;
  margin: 0.3rem 0 1rem;
  padding: 1rem 1.05rem;
  border-left: 3px solid rgba(21, 148, 201, 0.38);
  border-radius: 0 12px 12px 0;
  background: #f7fbfc;
}

.project-details[hidden] {
  display: none !important;
}

.project-details p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.project-details-toggle {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding: 0.48rem 0.78rem;
  border: 1px solid rgba(7, 25, 39, 0.1);
  border-radius: 999px;
  background: #ffffff;
  color: var(--primary);
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  transition: transform 0.16s ease, border-color 0.16s ease, background-color 0.16s ease;
}

.project-details-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(21, 148, 201, 0.32);
  background: rgba(21, 148, 201, 0.06);
}

.project-details-toggle i {
  font-size: 0.75rem;
  transition: transform 0.18s ease;
}

.project-details-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.project-needs {
  margin-top: auto;
  padding: 1rem;
  border: 1px solid rgba(161, 195, 52, 0.26);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(161, 195, 52, 0.12), rgba(21, 148, 201, 0.07)),
    #fbfdf7;
}

.project-needs__label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.45rem;
  color: var(--verde-escuro);
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.project-needs p {
  margin: 0;
  color: #42515c;
  line-height: 1.62;
}

.project-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(7, 25, 39, 0.08);
}

.project-action-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.68rem 1rem;
  font-size: 0.88rem;
}

/* CTA projetos */

.projects-cta {
  padding: 3rem 0;
  text-align: center;
}

.projects-cta .cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.projects-cta .cta-text {
  max-width: 700px;
  margin: 0 auto 1.5rem;
  color: #555;
}

/* ============================================================
   CURSOS & FAQ (ACORDEÃO)
   ============================================================ */

.faq-accordion {
  margin-top: 2rem;
}

.accordion-item {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background-color: #fff;
  margin-bottom: 0.9rem;
  overflow: hidden;
}

.accordion-btn {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.98rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: #333;
}

.accordion-icon {
  margin-left: 1rem;
  color: var(--secondary);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.22s ease;
}

.accordion-item.active .accordion-panel {
  max-height: 600px;
}

.accordion-content {
  padding: 0 1.1rem 0.85rem;
  font-size: 0.94rem;
  color: #555;
}

/* ============================================================
   BLOG / ARTIGOS
   ============================================================ */

.featured-post-section {
  padding: 3rem 0 2rem;
}

.featured-post {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: 1.8rem;
}

.post-image-container {
  position: relative;
}

.post-image {
  border-radius: 14px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.post-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.post-content {
  display: flex;
  flex-direction: column;
}

.post-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.85rem;
  color: #595959;
  margin-bottom: 0.6rem;
}

.post-meta .meta-item i {
  margin-right: 0.25rem;
}

.post-excerpt {
  font-size: 0.95rem;
  color: #555;
}

.secondary-posts {
  padding: 2rem 0 3rem;
}

.posts-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.post-card .post-title {
  font-size: 1.1rem;
}

/* Newsletter no blog */

.newsletter-box .newsletter-title,
.newsletter-box .newsletter-subtitle {
  color: #ffffff;
}

.newsletter-section {
  padding: 3rem 0;
}

.newsletter-box {
  border-radius: 16px;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, rgba(4, 61, 128, 0.96), rgba(0, 122, 193, 0.96));
  color: #fff;
  text-align: center;
}

.newsletter-form {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.newsletter-form input[type="email"] {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: none;
  min-width: 0;
  width: 100%;
  max-width: 320px;
}

/* ============================================================
   COMO AJUDAR / ADOÇÃO
   ============================================================ */

.help-tabs-section {
  padding: 3rem 0;
}

.methods-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.method-card {
  position: relative;
}

.method-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  margin-bottom: 0.75rem;
}

.method-title {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  margin-bottom: 0.35rem;
  font-size: 1.15rem;
  color: var(--dark);
}

.method-description {
  font-size: 0.95rem;
  color: #555;
  margin: 0.4rem 0 0.1rem;
}

/* Apadrinhe um Projeto ou Missionário */

.adoption-page {
  padding: 3rem 0;
}

.benefits-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.option-card .option-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.option-card .option-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(4, 61, 128, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

/* Canais de contribuição / CTA final */

.become-partner {
  padding: 3rem 0 4rem;
}

.cta-box {
  border-radius: 16px;
  padding: 2rem 1.6rem;
  background: linear-gradient(135deg, rgba(4, 61, 128, 0.96), rgba(18, 139, 61, 0.92));
  color: #fff;
  text-align: center;
}

.cta-box .cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.cta-box .cta-text {
  max-width: 660px;
  margin: 0 auto 1.3rem;
  font-size: 0.95rem;
}

/* ============================================================
   TRANSPARÊNCIA
   ============================================================ */

.transparency-page section {
  padding: 3rem 0;
}

.highlight-cards {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 1.3rem;
}

.highlight-card {
  position: relative;
}

.highlight-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(4, 61, 128, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 0.7rem;
}

.chart-container {
  max-width: 320px;
  margin: 2rem auto 1.5rem;
}

.financial-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.detail-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.detail-percentage {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
}

.detail-info h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--dark);
}

.detail-info p {
  margin: 0.25rem 0 0;
  font-size: 0.94rem;
  color: #555;
}

/* Prestação de contas */

.reports-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 1.6rem;
}

.report-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  margin-bottom: 0.6rem;
}

.report-info h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--dark);
}

.report-info p {
  margin: 0.35rem 0 0;
  font-size: 0.94rem;
  color: #555;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background-color: #041018;
  color: #f7f7f7;
  padding: 2.5rem 0 1rem;
  margin-top: 3rem;
}

.footer-container {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 2rem;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo-text {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer-logo-text img {
  height: 48px;
  width: auto;
}

.footer-logo-text h3 {
  margin: 0;
  font-size: 1rem;
}

.footer-about p {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  color: #d2d2d2;
}

.social-links {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.social-links a {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  color: #f4f4f4;
  font-size: 0.85rem;
  transition: background 0.15s ease, transform 0.15s ease;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.footer-newsletter h3,
.footer-contact h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

.footer-newsletter form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.footer-newsletter input[type="email"] {
  flex: 1 1 150px;
  min-width: 0;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: none;
  font-size: 0.9rem;
}

.footer-newsletter button {
  flex: 0 0 auto;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: none;
  background: var(--secondary);
  color: #041018;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
}

.footer-newsletter p {
  margin: 0.6rem 0 0;
  font-size: 0.85rem;
  color: #dfdfdf;
}

.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.footer-contact li {
  margin-bottom: 0.5rem;
}

.footer-contact i {
  margin-right: 0.4rem;
  color: var(--secondary);
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 2rem;
  padding-top: 0.8rem;
  text-align: center;
  font-size: 0.82rem;
  color: #bfbfbf;
}

.dev-credit {
  margin: 0.2rem 0 0;
}

.dev-credit i {
  margin-right: 0.25rem;
}

@media (max-width: 768px) {
  .footer-newsletter form {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ============================================================
   COMPONENTES GENÉRICOS / FORMULÁRIOS
   ============================================================ */

input,
textarea,
select {
  font-family: inherit;
}

/* ============================================================
   RESPONSIVIDADE
   (Breakpoints: <=992px, <=768px, <=576px, <=480px)
   ============================================================ */

@media (max-width: 992px) {
  .featured-post {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 4rem 0 3rem;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .navbar-container {
    padding: 0.6rem 1rem;
  }

  .desktop-menu {
    display: none;
  }

  .navbar-container > .btn-doar {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu {
    display: none;
  }

  .mobile-menu.open {
    display: block;
  }

  .missionary-card {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .newsletter-box {
    text-align: left;
  }

  .newsletter-form {
    justify-content: flex-start;
  }

  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.9rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-logo-text img {
    height: 40px;
    width: auto;
  }

  .projects-grid,
  .missionaries-grid,
  .posts-grid,
  .methods-grid,
  .benefits-grid,
  .reports-grid,
  .highlight-cards {
    gap: 1.3rem;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-box {
    text-align: left;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .accordion-btn {
    font-size: 0.92rem;
    padding: 0.75rem 0.9rem;
  }

  .page-hero,
  .blog-hero,
  .adoption-hero {
    padding: 3rem 0 2rem;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .hero-subtitle,
  .section-subtitle,
  .page-subtitle {
    font-size: 0.95rem;
  }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: 1.65rem;
  }

  .page-title {
    font-size: 1.6rem;
  }
}

/* ============================================================
   PREFERS-REDUCED-MOTION
   Desativa animações para usuários com sensibilidade a movimento
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  html {
    scroll-behavior: auto;
  }

  .btn-pulse::before {
    display: none;
  }

  .whatsapp-float,
  .back-to-top {
    transition: none;
  }
}

/* ============================================================
   FUNDOS DE PÁGINA INTERNA (substituem inline styles)
   ============================================================ */

.page-hero--blue {
  background: linear-gradient(135deg, rgba(4, 61, 128, 0.9), rgba(0, 122, 193, 0.9));
  color: #fff;
}

.page-hero--blue-light {
  background: linear-gradient(135deg, rgba(4, 61, 128, 0.92), rgba(33, 176, 231, 0.9));
  color: #fff;
}

.page-hero--green {
  background: linear-gradient(135deg, rgba(4, 61, 128, 0.9), rgba(18, 139, 61, 0.9));
  color: #fff;
}

.bg-light {
  background-color: #f9f9f9;
}

/* ============================================================
   ACESSIBILIDADE – FOCO VISÍVEL E CLASSE SR-ONLY
   ============================================================ */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-to-content {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.6rem 1.2rem;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  border-radius: 0 0 8px 8px;
  transition: top 0.15s ease;
}

.skip-to-content:focus {
  top: 0;
}

/* ============================================================
   BOTÃO FLUTUANTE DE WHATSAPP
   ============================================================ */

/* Botão flutuante de WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 1200;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-float:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

/* ============================================================
   DEPOIMENTOS / TESTEMUNHOS
   ============================================================ */

.testimonials-section {
  background-color: #ffffff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}

.testimonial-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 0.8rem;
  right: 1.2rem;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--azul-claro);
  opacity: 0.15;
  pointer-events: none;
}

.testimonial-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-icon svg {
  width: 28px;
  height: 28px;
}

.testimonial-text {
  margin: 0;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
  font-style: italic;
  border: none;
  padding: 0;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.testimonial-name {
  font-size: 0.97rem;
  color: var(--dark);
  font-weight: 700;
}

.testimonial-role {
  font-size: 0.85rem;
  color: #595959;
}

@media (max-width: 576px) {
  .testimonials-grid {
    gap: 1.3rem;
  }
}

/* ============================================================
   POST-CARD – META LINHA (elimina inline styles do blog)
   ============================================================ */

.post-card .post-meta {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.post-card .post-meta span + span {
  margin-left: 0.8rem;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */

.back-to-top {
  position: fixed;
  bottom: 84px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  border: none;
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.2s ease;
  transform: translateY(8px);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--azul-medio);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}

/* ============================================================
   SEMIPA MODERNO - camada visual 2026
   ============================================================ */

:root {
  --primary: #06365f;
  --secondary: #1594c9;
  --accent: #94bd2c;
  --dark: #071927;
  --text: #26323b;
  --muted: #66747f;
  --fundo: #ffffff;
  --soft: #f3f7f8;
  --line: rgba(7, 25, 39, 0.1);
  --shadow-soft: 0 18px 45px rgba(7, 25, 39, 0.1);
  --shadow-card: 0 10px 28px rgba(7, 25, 39, 0.08);
}

body {
  background: var(--fundo);
  color: var(--text);
  font-size: 16px;
}

.container {
  width: min(92%, 1180px);
}

.bg-soft,
.bg-light {
  background: var(--soft);
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--secondary);
  font-family: 'Poppins', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.72);
}

.section {
  padding: 5rem 0;
}

.section-header {
  margin-bottom: 2.6rem;
}

.section-title {
  color: var(--dark);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0 0 0.9rem;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.navbar {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(7, 25, 39, 0.08);
  box-shadow: none;
  backdrop-filter: blur(16px);
}

.navbar-container {
  width: min(94%, 1220px);
  margin: 0 auto;
  padding: 0.75rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  height: 48px;
}

.desktop-menu ul {
  gap: 1.25rem;
}

.desktop-menu a {
  color: #233746;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
}

.desktop-menu a.active,
.desktop-menu a:hover {
  color: var(--primary);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.language-switch,
.mobile-language {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.18rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7fafb;
}

.language-switch a,
.mobile-language a {
  min-width: 34px;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  color: var(--muted);
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
}

.language-switch a.active,
.mobile-language a.active,
html[lang="pt-BR"] .language-switch a[data-lang="pt"],
html[lang="pt-BR"] .mobile-language a[data-lang="pt"],
html[lang^="es"] .language-switch a[data-lang="es"],
html[lang^="es"] .mobile-language a[data-lang="es"] {
  background: #ffffff;
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(7, 25, 39, 0.08);
}

.btn-doar,
.btn-primary,
.btn-secondary {
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0;
}

.btn-doar,
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(6, 54, 95, 0.22);
}

.btn-doar {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.68rem 1.15rem;
}

.btn-primary {
  padding: 0.88rem 1.55rem;
}

.btn-secondary {
  padding: 0.86rem 1.55rem;
}

.btn-text {
  color: var(--primary);
  font-family: 'Poppins', sans-serif;
}

.project-card,
.method-card,
.option-card,
.report-card,
.highlight-card,
.featured-post,
.post-card,
.testimonial-card,
.course-card {
  border: 1px solid rgba(7, 25, 39, 0.08);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
}

.hero-modern {
  position: relative;
  min-height: 680px;
  padding: 7.5rem 0 5.5rem;
  overflow: hidden;
  background: #08233a;
  color: #ffffff;
}

.hero-modern__media {
  position: absolute;
  inset: 0;
}

.hero-modern__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.02);
}

.hero-modern__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 24, 39, 0.93) 0%, rgba(5, 36, 62, 0.78) 44%, rgba(5, 36, 62, 0.25) 100%),
    linear-gradient(0deg, rgba(5, 24, 39, 0.52), rgba(5, 24, 39, 0.18));
}

.hero-modern__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.hero-modern .hero-title {
  max-width: 760px;
  margin: 0 0 1.3rem;
  color: #ffffff;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-modern .hero-subtitle {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  line-height: 1.8;
}

.hero-modern .btn-secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2.4rem;
}

.hero-proof span {
  display: inline-flex;
  align-items: baseline;
  gap: 0.38rem;
  padding: 0.6rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
}

.hero-proof strong {
  color: #ffffff;
  font-size: 1.15rem;
}

.intro-split__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.intro-split__text {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.85;
}

.intro-split__text p:first-child {
  margin-top: 0;
}

.pillars-grid,
.pathways-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.pillar-card,
.pathway-card {
  min-height: 100%;
  padding: 1.6rem;
  border: 1px solid rgba(7, 25, 39, 0.08);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.pillar-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  border-radius: 12px;
  background: rgba(21, 148, 201, 0.1);
  color: var(--primary);
}

.pillar-card h3,
.pathway-card h3,
.feature-card h3 {
  margin: 0 0 0.65rem;
  color: var(--dark);
  font-family: 'Poppins', sans-serif;
  font-size: 1.12rem;
  line-height: 1.35;
}

.pillar-card p,
.pathway-card p,
.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.pathway-card .btn-text {
  margin-top: 1.2rem;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-heading-row .section-title {
  max-width: 760px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  grid-template-rows: repeat(2, minmax(260px, auto));
  gap: 1.2rem;
}

.feature-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 16px;
  background: #0a2235;
  box-shadow: var(--shadow-soft);
}

.feature-card--large {
  grid-row: span 2;
  min-height: 540px;
}

.feature-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.feature-card:hover img {
  transform: scale(1.035);
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 24, 39, 0.9), rgba(5, 24, 39, 0.05) 62%);
}

.feature-card__body {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 1;
}

.feature-card__body h3 {
  color: #ffffff;
  font-size: 1.25rem;
}

.feature-card__body p {
  color: rgba(255, 255, 255, 0.82);
}

.feature-card--large .feature-card__body h3 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.tag {
  display: inline-flex;
  margin-bottom: 0.7rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.impact-band {
  padding: 4.4rem 0;
  background:
    linear-gradient(135deg, rgba(6, 54, 95, 0.98), rgba(7, 25, 39, 0.98)),
    url("img/igreja_local.webp");
  color: #ffffff;
}

.impact-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 3rem;
  align-items: center;
}

.impact-band h2 {
  margin: 0;
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.impact-stats div {
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.impact-stats .stat-number {
  display: block;
  color: #ffffff;
  font-size: 2.4rem;
  line-height: 1;
}

.impact-stats span {
  display: block;
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  line-height: 1.45;
}

.testimonials-section .testimonial-card {
  background: #ffffff;
}

.testimonial-icon {
  display: none;
}

.testimonial-card::before {
  top: 1rem;
  right: 1.35rem;
  color: var(--secondary);
}

.final-cta {
  padding: 0 0 5rem;
}

.final-cta__inner {
  padding: clamp(2.2rem, 6vw, 4.5rem);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(6, 54, 95, 0.94), rgba(13, 126, 88, 0.86)),
    url("img/social.webp") center/cover;
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.final-cta h2 {
  max-width: 760px;
  margin: 0 0 1rem;
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.04;
}

.final-cta p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
  line-height: 1.75;
}

.course-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #071927;
  color: #ffffff;
}

.course-hero__media {
  position: absolute;
  inset: 0;
}

.course-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

.course-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 25, 39, 0.94), rgba(6, 54, 95, 0.76) 52%, rgba(6, 54, 95, 0.24)),
    linear-gradient(0deg, rgba(7, 25, 39, 0.5), rgba(7, 25, 39, 0.1));
}

.course-hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 5rem 0;
}

.course-hero .page-title {
  max-width: 800px;
  margin: 0 0 1.1rem;
  color: #ffffff;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.02;
}

.course-hero .page-subtitle {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  line-height: 1.78;
}

.course-hero .btn-secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.image-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
  background: #071927;
  color: #ffffff;
  text-align: left;
}

.image-hero__media {
  position: absolute;
  inset: 0;
}

.image-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.04);
}

.image-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 25, 39, 0.93), rgba(6, 54, 95, 0.72) 52%, rgba(6, 54, 95, 0.2)),
    linear-gradient(0deg, rgba(7, 25, 39, 0.5), rgba(7, 25, 39, 0.08));
}

.image-hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: 5.6rem 0;
}

.image-hero .page-title,
.image-hero .hero-title {
  max-width: 780px;
  margin: 0 0 1rem;
  color: #ffffff;
  font-size: clamp(2.45rem, 5.5vw, 4.8rem);
  line-height: 1.02;
}

.image-hero .page-subtitle,
.image-hero .hero-subtitle {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  line-height: 1.78;
}

.image-hero--history .image-hero__media img {
  object-position: center 42%;
}

.image-hero--projects .image-hero__media img {
  object-position: center;
}

.image-hero--help .image-hero__media img {
  object-position: center 45%;
}

.image-hero--transparency .image-hero__media img {
  object-position: center 38%;
}

.image-hero--blog .image-hero__media img {
  object-position: center 45%;
}

.course-modes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.course-upgrade-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f3f7f8 100%);
}

.course-upgrade-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.course-upgrade-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid rgba(21, 148, 201, 0.16);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.course-upgrade-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.course-upgrade-card--green::before {
  background: linear-gradient(90deg, var(--verde-escuro), var(--accent));
}

.course-upgrade-card__badge {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.34rem 0.75rem;
  border-radius: 999px;
  background: rgba(21, 148, 201, 0.1);
  color: var(--primary);
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.course-upgrade-card--green .course-upgrade-card__badge {
  background: rgba(18, 139, 61, 0.1);
  color: var(--verde-escuro);
}

.course-upgrade-card h3 {
  margin: 0 0 0.75rem;
  color: var(--dark);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.08;
}

.course-upgrade-card p {
  color: var(--muted);
  line-height: 1.75;
}

.course-upgrade-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}

.course-upgrade-card li {
  position: relative;
  padding-left: 1.35rem;
  color: #42515c;
  line-height: 1.55;
}

.course-upgrade-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--secondary);
}

.course-upgrade-card--green li::before {
  background: var(--verde-escuro);
}

.course-mode-card,
.course-program-card,
.course-audience-list article {
  border: 1px solid rgba(7, 25, 39, 0.08);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.course-mode-card {
  padding: 1.45rem;
}

.course-mode-card__icon,
.course-program-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(21, 148, 201, 0.11);
  color: var(--primary);
  font-size: 1.1rem;
}

.course-mode-card h3 {
  margin: 1.05rem 0 0.55rem;
  color: var(--dark);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}

.course-mode-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.68;
}

.course-programs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: start;
}

.course-program-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.35rem, 3vw, 2rem);
}

.course-program-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.course-program-card--green::before {
  background: linear-gradient(90deg, var(--verde-escuro), var(--accent));
}

.course-program-card--green .course-program-card__icon {
  background: rgba(18, 139, 61, 0.12);
  color: var(--verde-escuro);
}

.course-program-card__top {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.course-program-card__top .eyebrow {
  margin-bottom: 0.35rem;
}

.course-program-card h2 {
  margin: 0;
  color: var(--dark);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.course-program-card p {
  color: var(--muted);
  line-height: 1.75;
}

.course-program-card__meta {
  display: grid;
  gap: 0.55rem;
  margin: 1.2rem 0;
  padding: 1rem;
  border-radius: 12px;
  background: var(--soft);
}

.course-program-card__meta span {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  color: #42515c;
  font-size: 0.92rem;
  line-height: 1.55;
}

.course-program-card__meta i {
  color: var(--secondary);
  margin-top: 0.2rem;
}

.course-subjects {
  margin-top: 1.2rem;
}

.course-subjects h3 {
  margin: 0 0 0.8rem;
  color: var(--dark);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.course-subjects ol {
  columns: 2;
  column-gap: 1.6rem;
  margin: 0;
  padding-left: 1.25rem;
}

.course-subjects li {
  break-inside: avoid;
  margin: 0 0 0.42rem;
  color: #42515c;
  font-size: 0.92rem;
  line-height: 1.45;
}

.course-online-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin-top: 1.6rem;
  padding: 1.1rem;
  border: 1px solid rgba(21, 148, 201, 0.18);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(6, 54, 95, 0.08), rgba(21, 148, 201, 0.12)),
    #f7fbfc;
}

.course-online-cta__label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.45rem;
  color: var(--secondary);
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.course-online-cta strong {
  display: block;
  color: var(--dark);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}

.course-online-cta p {
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.btn-hotmart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff6b00, #ff9d1b);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(255, 107, 0, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.btn-hotmart:hover {
  color: #ffffff;
  filter: brightness(1.03);
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(255, 107, 0, 0.3);
}

.btn-hotmart--outline {
  border: 1px solid rgba(255, 107, 0, 0.38);
  background: #ffffff;
  color: #b95000;
  box-shadow: none;
}

.btn-hotmart--outline:hover {
  color: #b95000;
  background: #fff7ef;
  box-shadow: 0 12px 24px rgba(255, 107, 0, 0.12);
}

.btn-hotmart--disabled {
  background: linear-gradient(135deg, #ff8a1c, #ffc247);
  color: #3a2305;
  cursor: default;
  box-shadow: 0 12px 24px rgba(255, 138, 28, 0.18);
}

.btn-hotmart--disabled:hover {
  color: #3a2305;
  filter: none;
  transform: none;
  box-shadow: 0 12px 24px rgba(255, 138, 28, 0.18);
}

.course-audience-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 4rem);
}

.course-audience-list {
  display: grid;
  gap: 1rem;
}

.course-audience-list article {
  padding: 1.25rem 1.35rem;
}

.course-audience-list h3 {
  margin: 0 0 0.45rem;
  color: var(--dark);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}

.course-audience-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  margin-top: 0;
  background: #071927;
}

.footer-container {
  gap: 2.8rem;
}

.footer-logo-text img {
  height: 54px;
}

.footer-newsletter .btn-doar {
  margin-top: 0.65rem;
}

.whatsapp-float,
.back-to-top {
  box-shadow: 0 12px 26px rgba(7, 25, 39, 0.24);
}

/* ============================================================
   CAMADA DE MOVIMENTO SOBRIO E INTERACOES
   ============================================================ */

.navbar {
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.navbar.navbar--scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: rgba(7, 25, 39, 0.12);
  box-shadow: 0 14px 32px rgba(7, 25, 39, 0.1);
}

.navbar.navbar--scrolled .navbar-container {
  padding-top: 0.52rem;
  padding-bottom: 0.52rem;
}

.navbar.navbar--scrolled .logo img {
  height: 42px;
}

.navbar-container,
.logo img {
  transition: padding 0.22s ease, height 0.22s ease;
}

.revealable {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.62s ease var(--reveal-delay, 0ms),
    transform 0.62s ease var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.hero-motion {
  animation: heroDrift 18s ease-in-out infinite alternate;
  transform-origin: center;
}

@keyframes heroDrift {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.045);
  }
}

.project-card,
.missionary-card,
.method-card,
.option-card,
.report-card,
.highlight-card,
.feature-card,
.post-card,
.featured-post,
.testimonial-card,
.course-card,
.course-mode-card,
.course-program-card,
.course-upgrade-card,
.course-audience-list article,
.pillar-card,
.pathway-card {
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease;
}

.project-card:hover,
.missionary-card:hover,
.method-card:hover,
.option-card:hover,
.report-card:hover,
.highlight-card:hover,
.post-card:hover,
.featured-post:hover,
.testimonial-card:hover,
.course-card:hover,
.course-mode-card:hover,
.course-program-card:hover,
.course-upgrade-card:hover,
.course-audience-list article:hover,
.pillar-card:hover,
.pathway-card:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 148, 201, 0.22);
  box-shadow: 0 18px 42px rgba(7, 25, 39, 0.12);
}

.btn-primary,
.btn-secondary,
.btn-doar,
.btn-text,
.btn-hotmart,
.course-card__btn {
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    color 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    filter 0.18s ease;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-doar:hover,
.btn-hotmart:hover,
.course-card__btn:hover {
  transform: translateY(-2px);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.btn-text::after {
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 0.76em;
  transform: translateX(0);
  transition: transform 0.18s ease;
}

.btn-text:hover::after {
  transform: translateX(3px);
}

.accordion-item {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.accordion-item.active {
  border-color: rgba(21, 148, 201, 0.28);
  box-shadow: 0 16px 36px rgba(7, 25, 39, 0.09);
}

.accordion-btn {
  transition: color 0.18s ease, background-color 0.18s ease;
}

.accordion-btn:hover {
  color: var(--primary);
}

.accordion-icon {
  transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  background: rgba(21, 148, 201, 0.1);
  color: var(--primary);
}

.smart-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1.2rem;
  margin: 0 0 1.4rem;
  padding: 0.85rem;
  border: 1px solid rgba(7, 25, 39, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 28px rgba(7, 25, 39, 0.06);
  backdrop-filter: blur(10px);
}

.smart-filter__group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.smart-filter__label {
  color: var(--muted);
  font-family: 'Poppins', sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.smart-filter__options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.smart-filter__chip {
  min-height: 36px;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(7, 25, 39, 0.1);
  border-radius: 999px;
  background: #ffffff;
  color: #42515c;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  transition:
    transform 0.16s ease,
    background-color 0.16s ease,
    border-color 0.16s ease,
    color 0.16s ease,
    box-shadow 0.16s ease;
}

.smart-filter__chip:hover {
  transform: translateY(-1px);
  border-color: rgba(21, 148, 201, 0.32);
  color: var(--primary);
}

.smart-filter__chip.is-active {
  border-color: rgba(21, 148, 201, 0.38);
  background: rgba(21, 148, 201, 0.1);
  color: var(--primary);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

[hidden] {
  display: none !important;
}

.history-timeline {
  position: relative;
  display: grid;
  gap: 1rem;
  margin: 2rem 0 3rem;
}

.history-timeline::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(21, 148, 201, 0.2), rgba(161, 195, 52, 0.38));
}

.timeline-card {
  position: relative;
  margin-left: 3.1rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(7, 25, 39, 0.08);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.timeline-card::before {
  content: "";
  position: absolute;
  left: -2.45rem;
  top: 1.25rem;
  width: 16px;
  height: 16px;
  border: 3px solid #ffffff;
  border-radius: 999px;
  background: var(--secondary);
  box-shadow: 0 0 0 5px rgba(21, 148, 201, 0.12);
}

.timeline-card.is-current,
.timeline-card:hover {
  transform: translateY(-3px);
  border-color: rgba(21, 148, 201, 0.24);
  box-shadow: 0 18px 42px rgba(7, 25, 39, 0.12);
}

.timeline-card time {
  display: inline-flex;
  margin-bottom: 0.45rem;
  color: var(--secondary);
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline-card h3 {
  margin: 0 0 0.4rem;
  color: var(--dark);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}

.timeline-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.whatsapp-float {
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(7, 25, 39, 0.24);
}

@media (max-width: 1100px) {
  .missionary-card {
    padding: 0.85rem;
  }

  .missionary-image img {
    width: auto;
    height: auto;
  }
}

@media (max-width: 720px) {
  .smart-filter {
    align-items: flex-start;
    border-radius: 14px;
  }

  .smart-filter__group {
    width: 100%;
    align-items: flex-start;
  }

  .smart-filter__options {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.1rem;
  }

  .smart-filter__chip {
    white-space: nowrap;
  }

  .history-timeline::before {
    left: 0.75rem;
  }

  .timeline-card {
    margin-left: 2.25rem;
  }

  .timeline-card::before {
    left: -1.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .revealable,
  .hero-motion,
  .navbar,
  .navbar-container,
  .logo img,
  .project-card,
  .missionary-card,
  .method-card,
  .option-card,
  .report-card,
  .highlight-card,
  .feature-card,
  .post-card,
  .featured-post,
  .testimonial-card,
  .course-card,
  .course-mode-card,
  .course-program-card,
  .course-upgrade-card,
  .course-audience-list article,
  .pillar-card,
  .pathway-card,
  .timeline-card,
  .btn-primary,
  .btn-secondary,
  .btn-doar,
  .btn-text,
  .btn-hotmart,
  .course-card__btn,
  .accordion-icon,
  .smart-filter__chip,
  .whatsapp-float {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1024px) {
  .desktop-menu ul {
    gap: 0.9rem;
  }

  .desktop-menu a {
    font-size: 0.82rem;
  }

  .impact-band__grid,
  .intro-split__grid,
  .course-audience-grid {
    grid-template-columns: 1fr;
  }

  .course-modes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .course-upgrade-grid {
    grid-template-columns: 1fr;
  }

  .course-programs {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .desktop-menu,
  .navbar-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3.8rem 0;
  }

  .navbar-container {
    padding: 0.65rem 0;
  }

  .logo img {
    height: 42px;
  }

  .mobile-menu {
    border-top: 1px solid rgba(7, 25, 39, 0.08);
  }

  .mobile-menu ul {
    padding: 0.9rem 4% 1.2rem;
  }

  .mobile-menu a {
    width: 100%;
    padding: 0.55rem 0;
    font-family: 'Poppins', sans-serif;
  }

  .mobile-language {
    width: max-content;
    margin-top: 0.35rem;
  }

  .hero-modern {
    min-height: 650px;
    padding: 5.4rem 0 3.8rem;
  }

  .hero-modern__media::after {
    background:
      linear-gradient(0deg, rgba(5, 24, 39, 0.9), rgba(5, 36, 62, 0.72)),
      linear-gradient(90deg, rgba(5, 24, 39, 0.68), rgba(5, 24, 39, 0.35));
  }

  .hero-modern .hero-title {
    font-size: clamp(2.4rem, 12vw, 3.8rem);
  }

  .hero-modern .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
  }

  .pillars-grid,
  .pathways-grid,
  .feature-grid,
  .impact-stats {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card--large {
    min-height: 360px;
  }

  .section-heading-row {
    display: block;
  }

  .impact-band {
    padding: 3.8rem 0;
  }

  .course-hero {
    min-height: 560px;
  }

  .course-hero__media::after {
    background: linear-gradient(0deg, rgba(7, 25, 39, 0.9), rgba(6, 54, 95, 0.65));
  }

  .course-hero .page-title {
    font-size: clamp(2.25rem, 11vw, 3.6rem);
  }

  .image-hero {
    min-height: 520px;
  }

  .image-hero__content {
    padding: 4.4rem 0;
  }

  .image-hero__media::after {
    background: linear-gradient(0deg, rgba(7, 25, 39, 0.92), rgba(6, 54, 95, 0.66));
  }

  .image-hero .page-title,
  .image-hero .hero-title {
    font-size: clamp(2.2rem, 11vw, 3.6rem);
  }

  .course-modes-grid {
    grid-template-columns: 1fr;
  }

  .course-subjects ol {
    columns: 1;
  }

  .course-online-cta {
    grid-template-columns: 1fr;
  }

  .btn-hotmart {
    width: 100%;
  }

  .final-cta {
    padding-bottom: 3.8rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(90%, 1180px);
  }

  .section-title {
    font-size: 2rem;
  }

  .feature-card,
  .feature-card--large {
    min-height: 310px;
  }

  .feature-card__body {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .impact-stats .stat-number {
    font-size: 2rem;
  }
}

/* ============================================================
   CAMADA PREMIUM 2026 - DIRECAO VISUAL E CONVERSAO
   ============================================================ */

:root {
  --primary: #073b72;
  --secondary: #0c8ccc;
  --dark: #061b2f;
  --verde-escuro: #147a3d;
  --verde-claro: #8fc63d;
  --surface: #f5f8f9;
  --surface-strong: #eaf2f5;
  --muted: #5d6b75;
  --line: rgba(6, 27, 47, 0.1);
  --shadow-card: 0 16px 36px rgba(6, 27, 47, 0.08);
  --shadow-soft: 0 24px 70px rgba(6, 27, 47, 0.16);
}

body {
  background:
    linear-gradient(180deg, rgba(245, 248, 249, 0.4), rgba(255, 255, 255, 0) 22rem),
    #ffffff;
  color: #172531;
}

.skip-to-content {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 2000;
  transform: translateY(-150%);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: var(--dark);
  color: #ffffff;
  font-weight: 700;
  transition: transform 0.18s ease;
}

.skip-to-content:focus {
  transform: translateY(0);
}

.section {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.section-title,
.page-title,
.hero-title {
  letter-spacing: 0;
}

.eyebrow {
  color: var(--secondary);
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.navbar {
  border-bottom: 1px solid rgba(6, 27, 47, 0.08);
  box-shadow: 0 10px 28px rgba(6, 27, 47, 0.06);
}

.navbar-container {
  width: min(92%, 1280px);
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.desktop-menu a {
  color: #14314a;
}

.btn-primary,
.btn-doar,
.course-card__btn,
.btn-hotmart {
  background: linear-gradient(135deg, #0a5f9d, #099bd2);
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(9, 119, 183, 0.24);
}

.btn-doar {
  border-radius: 999px;
}

.btn-secondary {
  border-radius: 10px;
}

.btn-text {
  text-decoration-thickness: 1px;
}

.hero-modern {
  min-height: min(760px, calc(100vh - 72px));
  display: flex;
  align-items: center;
  padding: clamp(5rem, 9vw, 8rem) 0 clamp(4rem, 7vw, 6rem);
}

.hero-modern__media img {
  object-position: center 38%;
}

.hero-modern__media::after {
  background:
    radial-gradient(circle at 70% 40%, rgba(12, 140, 204, 0.08), transparent 30%),
    linear-gradient(90deg, rgba(4, 19, 34, 0.94) 0%, rgba(5, 38, 64, 0.78) 48%, rgba(5, 38, 64, 0.2) 100%),
    linear-gradient(0deg, rgba(4, 19, 34, 0.5), rgba(4, 19, 34, 0.12));
}

.hero-modern__content {
  width: min(92%, 1280px);
  max-width: 1280px;
  margin: 0 auto;
}

.hero-modern .hero-title {
  max-width: 780px;
  font-size: clamp(3rem, 6.4vw, 6.1rem);
  line-height: 0.96;
}

.hero-modern .hero-subtitle {
  max-width: 700px;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
}

.hero-proof {
  gap: 0.8rem;
  margin-top: 2.7rem;
}

.hero-proof span {
  min-height: 54px;
  padding: 0.72rem 1rem;
  border-radius: 12px;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.hero-proof strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
}

.intro-split {
  background: #ffffff;
}

.mission-presence {
  padding-top: 0;
  background: linear-gradient(180deg, #ffffff, var(--surface));
}

.mission-presence__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.mission-presence__visual {
  min-height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(4, 24, 42, 0.94), rgba(7, 59, 114, 0.88)),
    url("img/hero-projetos-missionarios.webp") center/cover;
  box-shadow: 0 32px 80px rgba(6, 27, 47, 0.22);
  overflow: hidden;
  position: relative;
}

.mission-presence__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 24, 42, 0.94), rgba(4, 24, 42, 0.55)),
    radial-gradient(circle at 28% 32%, rgba(12, 140, 204, 0.34), transparent 30%),
    radial-gradient(circle at 75% 72%, rgba(143, 198, 61, 0.24), transparent 34%);
  z-index: 0;
}

.mission-map {
  position: relative;
  min-height: 430px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  z-index: 1;
}

.mission-map::before {
  content: "";
  position: absolute;
  inset: 12% 7% 18%;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 24% 58%, rgba(143, 198, 61, 0.9) 0 0.45rem, transparent 0.5rem),
    radial-gradient(circle at 49% 36%, rgba(143, 198, 61, 0.9) 0 0.45rem, transparent 0.5rem),
    radial-gradient(circle at 55% 58%, rgba(143, 198, 61, 0.9) 0 0.45rem, transparent 0.5rem),
    radial-gradient(circle at 70% 52%, rgba(143, 198, 61, 0.9) 0 0.45rem, transparent 0.5rem),
    linear-gradient(100deg, transparent 18%, rgba(255, 255, 255, 0.16) 18.4%, transparent 19% 47%, rgba(255, 255, 255, 0.18) 47.5%, transparent 48.5%),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 22px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
}

.mission-map::after {
  content: "";
  position: absolute;
  left: 11%;
  right: 9%;
  top: 28%;
  bottom: 26%;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(143, 198, 61, 0.56) 18.2% 18.8%, transparent 19%),
    linear-gradient(152deg, transparent 0 38%, rgba(12, 140, 204, 0.5) 38.2% 38.8%, transparent 39%),
    linear-gradient(28deg, transparent 0 52%, rgba(255, 255, 255, 0.32) 52.2% 52.8%, transparent 53%);
  opacity: 0.9;
  pointer-events: none;
}

.mission-map__point {
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.1rem 0.45rem;
  padding: 0.6rem 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.mission-map__point::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--verde-claro);
  box-shadow: 0 0 0 6px rgba(143, 198, 61, 0.18), 0 0 22px rgba(143, 198, 61, 0.7);
}

.mission-map__point--brasil { left: 16%; top: 56%; }
.mission-map__point--europa { left: 43%; top: 25%; }
.mission-map__point--africa { left: 47%; top: 58%; }
.mission-map__point--asia { left: 67%; top: 45%; }

.mission-map__point--brasil::after,
.mission-map__point--europa::after,
.mission-map__point--africa::after,
.mission-map__point--asia::after {
  display: block;
  grid-column: 2;
  margin-top: -0.12rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
  font-weight: 600;
}

.mission-map__point--brasil::after { content: "bases e campos"; }
.mission-map__point--europa::after { content: "formação"; }
.mission-map__point--africa::after { content: "cuidado social"; }
.mission-map__point--asia::after { content: "discipulado"; }

.mission-presence__content p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.mission-presence__list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.mission-presence__list span {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: #203545;
  font-weight: 600;
}

.mission-presence__list i {
  width: 28px;
  height: 28px;
  display: inline-flex;
  flex: 0 0 28px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(12, 140, 204, 0.1);
  color: var(--primary);
}

.pillars-section,
.testimonials-section,
.bg-soft {
  background: var(--surface);
}

.pillar-card,
.pathway-card,
.testimonial-card,
.method-card,
.option-card,
.post-card,
.featured-post,
.course-card,
.report-card,
.highlight-card {
  border-radius: 12px;
  border-color: var(--line);
  box-shadow: var(--shadow-card);
}

.feature-card {
  border-radius: 12px;
}

.feature-card::after {
  background:
    linear-gradient(0deg, rgba(4, 19, 34, 0.9), rgba(4, 19, 34, 0.24) 58%, rgba(4, 19, 34, 0.04));
}

.impact-band {
  background:
    linear-gradient(135deg, rgba(4, 26, 46, 0.98), rgba(7, 59, 114, 0.94)),
    url("img/igreja_local.webp") center/cover;
}

.impact-stats div {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.pathway-card {
  position: relative;
  overflow: hidden;
}

.pathway-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--secondary), var(--verde-claro));
}

.final-cta__inner {
  border-radius: 16px;
}

.image-hero {
  min-height: 460px;
}

.image-hero__content {
  width: min(92%, 1280px);
  max-width: 1280px;
}

.image-hero .page-title,
.image-hero .hero-title {
  max-width: 850px;
}

.project-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 0.9rem;
  align-items: stretch;
  margin: 2rem 0 0;
}

.project-overview > div,
.project-overview__cta {
  min-height: 92px;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(6, 27, 47, 0.06);
}

.project-overview__number {
  display: block;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.project-overview__label {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.project-overview__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--verde-escuro), #1a9a53);
  color: #ffffff;
  font-weight: 800;
  text-align: center;
}

.projects-page .page-intro {
  margin-bottom: 0;
}

.projects-smart-filter {
  position: sticky;
  top: 78px;
  z-index: 20;
  margin-top: 0;
}

.smart-filter {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
}

.smart-filter__chip {
  border-radius: 8px;
}

.missionary-card {
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.3fr);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.missionary-image img {
  border-radius: 10px;
}

.project-badges span {
  border-radius: 999px;
}

.project-needs {
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(20, 122, 61, 0.08), rgba(12, 140, 204, 0.06));
}

.project-actions {
  align-items: center;
}

.project-action-primary {
  min-width: 150px;
}

.support-chooser {
  margin-top: -3.3rem;
  position: relative;
  z-index: 3;
  padding-bottom: 2.5rem;
}

.support-chooser__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.support-choice {
  display: grid;
  gap: 0.45rem;
  min-height: 210px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.support-choice__icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(12, 140, 204, 0.1);
  color: var(--primary);
}

.support-choice__kicker {
  color: var(--secondary);
  font-family: 'Poppins', sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-choice strong {
  color: var(--dark);
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  line-height: 1.15;
}

.support-choice span:last-child {
  color: var(--muted);
  line-height: 1.6;
}

.support-choice--primary {
  background: linear-gradient(135deg, #06213a, #074f83);
  color: #ffffff;
}

.support-choice--primary .support-choice__icon {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.support-choice--primary .support-choice__kicker,
.support-choice--primary strong,
.support-choice--primary span:last-child {
  color: #ffffff;
}

.help-tabs-section:first-of-type {
  padding-top: 2.5rem;
}

.methods-grid {
  align-items: stretch;
}

.method-card,
.option-card {
  display: flex;
  flex-direction: column;
}

.method-icon,
.option-icon {
  border-radius: 12px;
}

.featured-post,
.post-card {
  overflow: hidden;
}

.post-image {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.cookie-banner {
  border-radius: 12px;
  box-shadow: 0 18px 46px rgba(6, 27, 47, 0.22);
}

@media (max-width: 1024px) {
  .mission-presence__grid,
  .project-overview,
  .support-chooser__grid {
    grid-template-columns: 1fr;
  }

  .projects-smart-filter {
    position: static;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3.7rem 0;
  }

  .hero-modern {
    min-height: 680px;
  }

  .hero-modern .hero-title {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .mission-presence__visual,
  .mission-map {
    min-height: 320px;
  }

  .mission-map__point {
    font-size: 0.7rem;
    padding: 0.48rem 0.6rem;
  }

  .mission-map__point--brasil::after,
  .mission-map__point--europa::after,
  .mission-map__point--africa::after,
  .mission-map__point--asia::after {
    display: none;
  }

  .missionary-card {
    grid-template-columns: 1fr;
  }

  .support-chooser {
    margin-top: -2rem;
  }

  .support-choice {
    min-height: auto;
  }
}

/* ============================================================
   CAMADA ATLAS V2 - HOME E PROJETOS
   ============================================================ */

.hero-modern {
  isolation: isolate;
}

.hero-modern::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.98));
  pointer-events: none;
}

.hero-modern__content {
  transform: translateY(-0.35rem);
}

.hero-buttons {
  align-items: center;
}

.hero-modern .btn-primary,
.hero-modern .btn-secondary {
  min-height: 48px;
  border-radius: 10px;
}

.hero-proof {
  width: min(100%, 760px);
}

.hero-proof span {
  flex: 1 1 180px;
  justify-content: center;
  border-radius: 10px;
}

.intro-split {
  padding-top: clamp(3.2rem, 6vw, 5rem);
}

.intro-split__grid {
  padding-bottom: clamp(1rem, 2vw, 1.5rem);
  border-bottom: 1px solid rgba(7, 25, 39, 0.08);
}

.mission-presence__visual {
  min-height: 470px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(4, 24, 42, 0.92), rgba(4, 61, 128, 0.74)),
    url("img/hero-semipa-mission-camisa-semipa-v2.webp") center/cover;
}

.mission-presence__visual::before {
  background:
    linear-gradient(90deg, rgba(3, 20, 35, 0.94), rgba(3, 20, 35, 0.4)),
    radial-gradient(circle at 22% 32%, rgba(33, 176, 231, 0.32), transparent 26%),
    radial-gradient(circle at 70% 70%, rgba(161, 195, 52, 0.25), transparent 34%);
}

.mission-map {
  min-height: 470px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.mission-map::before {
  inset: 10% 7% 16%;
  border-radius: 22px;
  background:
    radial-gradient(circle at 24% 58%, rgba(161, 195, 52, 0.96) 0 0.42rem, transparent 0.48rem),
    radial-gradient(circle at 47% 36%, rgba(161, 195, 52, 0.96) 0 0.42rem, transparent 0.48rem),
    radial-gradient(circle at 54% 59%, rgba(161, 195, 52, 0.96) 0 0.42rem, transparent 0.48rem),
    radial-gradient(circle at 69% 50%, rgba(161, 195, 52, 0.96) 0 0.42rem, transparent 0.48rem),
    linear-gradient(100deg, transparent 18%, rgba(255, 255, 255, 0.14) 18.4%, transparent 19% 47%, rgba(255, 255, 255, 0.17) 47.5%, transparent 48.5%),
    rgba(255, 255, 255, 0.08);
}

.mission-map::after {
  opacity: 0.72;
}

.mission-map__point {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.14);
}

.mission-map__point--europa::after { content: "formação"; }
.mission-map__point--africa::after { content: "cuidado social"; }

.featured-projects {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fa 100%);
}

.feature-grid {
  grid-template-columns: 1.18fr 0.92fr;
  gap: 1rem;
}

.feature-card {
  border-radius: 10px;
}

.feature-card__body {
  left: clamp(1rem, 2vw, 1.5rem);
  right: clamp(1rem, 2vw, 1.5rem);
  bottom: clamp(1rem, 2vw, 1.5rem);
}

.projects-page {
  background: #f5f8fa;
}

.projects-page .image-hero {
  min-height: 500px;
}

.projects-page .image-hero__media::after {
  background:
    linear-gradient(90deg, rgba(4, 19, 34, 0.92) 0%, rgba(5, 38, 64, 0.7) 42%, rgba(5, 38, 64, 0.14) 100%),
    linear-gradient(0deg, rgba(4, 19, 34, 0.38), rgba(4, 19, 34, 0.12));
}

.projects-page .page-intro {
  max-width: 980px;
  margin-top: -2.6rem;
  position: relative;
  z-index: 2;
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid rgba(7, 25, 39, 0.08);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(7, 25, 39, 0.1);
}

.project-overview {
  margin-top: 1rem;
}

.project-overview > div,
.project-overview__cta {
  border-radius: 10px;
}

.projects-smart-filter {
  top: 74px;
  margin-bottom: 1.2rem;
}

.projects-page .smart-filter {
  justify-content: space-between;
  padding: 0.75rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
}

.projects-page .missionaries-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.projects-page .missionary-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(7, 25, 39, 0.08);
}

.projects-page .missionary-image {
  flex: 0 0 auto;
  display: block;
  height: auto;
  min-height: 0;
  padding: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 0;
  background: #dce8ef;
}

.projects-page .missionary-image img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  border-radius: 0;
  object-fit: cover;
}

.projects-page .missionary-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1rem;
}

.projects-page .missionary-info h3 {
  display: -webkit-box;
  min-height: 2.75em;
  overflow: hidden;
  margin-bottom: 0.65rem;
  color: var(--dark);
  font-size: 1.06rem;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.projects-page .project-badges {
  margin: 0 0 0.75rem;
}

.projects-page .project-badges span {
  border-radius: 999px;
  background: rgba(4, 61, 128, 0.08);
  color: var(--primary);
}

.projects-page .project-meta {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.projects-page .project-meta span {
  font-size: 0.78rem;
  line-height: 1.35;
}

.projects-page .project-summary {
  display: -webkit-box;
  min-height: 4.95em;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.projects-page .project-summary--expanded {
  display: block;
  min-height: 0;
  overflow: visible;
  -webkit-line-clamp: unset;
}

.projects-page .project-details-toggle {
  min-height: 32px;
  margin: 0.1rem 0 0.65rem;
  padding: 0.28rem 0;
  font-size: 0.84rem;
}

.projects-page .project-needs {
  margin-top: auto;
  padding: 0.72rem;
  border-radius: 9px;
}

.projects-page .project-needs p {
  display: -webkit-box;
  overflow: hidden;
  font-size: 0.84rem;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.projects-page .project-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  margin-top: 0.95rem;
}

.projects-page .project-action-primary {
  min-width: 0;
  width: 100%;
  justify-content: center;
  border-radius: 8px;
}

.projects-page .project-actions .btn-text {
  justify-content: center;
  font-size: 0.85rem;
}

.projects-cta {
  margin-top: 0;
  background:
    linear-gradient(135deg, rgba(4, 34, 71, 0.97), rgba(18, 139, 61, 0.86)),
    url("img/igreja_local.webp") center/cover;
}

@media (max-width: 1100px) {
  .projects-page .missionaries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .hero-modern::before {
    height: 80px;
  }

  .hero-proof span {
    justify-content: flex-start;
  }

  .feature-grid,
  .projects-page .missionaries-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card--large {
    min-height: 360px;
  }

  .projects-page .page-intro {
    margin-top: -1.5rem;
  }

  .projects-page .missionary-info h3 {
    min-height: 0;
  }
}

/* ============================================================
   CAMADA MOCKUP V3 - COMPOSICAO MAIS FIEL
   ============================================================ */

body:has(.hero-modern) .navbar {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(4, 19, 34, 0.78), rgba(4, 19, 34, 0.18));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

body:has(.hero-modern) .navbar:not(.navbar--scrolled) .desktop-menu a,
body:has(.hero-modern) .navbar:not(.navbar--scrolled) .language-switch a {
  color: rgba(255, 255, 255, 0.88);
}

body:has(.hero-modern) .navbar:not(.navbar--scrolled) .mobile-menu-toggle span {
  background-color: #ffffff;
}

body:has(.hero-modern) .navbar:not(.navbar--scrolled) .logo img {
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

body:has(.hero-modern) .navbar.navbar--scrolled {
  background: rgba(255, 255, 255, 0.98);
}

.navbar-container {
  min-height: 70px;
  width: min(92%, 1220px);
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.desktop-menu ul {
  gap: clamp(0.9rem, 1.4vw, 1.35rem);
}

.desktop-menu a {
  font-size: 0.86rem;
}

.btn-doar {
  border-radius: 10px;
  background: linear-gradient(135deg, #128b3d, #38a85d);
  box-shadow: 0 12px 28px rgba(18, 139, 61, 0.24);
}

body:not(:has(.hero-modern)) .navbar {
  border-bottom: 1px solid rgba(7, 25, 39, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 28px rgba(7, 25, 39, 0.055);
}

body:not(:has(.hero-modern)) .navbar .logo img {
  height: 46px;
}

body:has(.hero-modern) .navbar:not(.navbar--scrolled) .language-switch {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

body:has(.hero-modern) .navbar:not(.navbar--scrolled) .language-switch a {
  color: rgba(255, 255, 255, 0.72);
}

html[lang="pt-BR"] body:has(.hero-modern) .navbar:not(.navbar--scrolled) .language-switch a[data-lang="pt"],
html[lang^="es"] body:has(.hero-modern) .navbar:not(.navbar--scrolled) .language-switch a[data-lang="es"] {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  box-shadow: none;
}

.hero-modern {
  min-height: min(790px, 100vh);
  padding-top: clamp(7rem, 12vw, 9.2rem);
  padding-bottom: clamp(3.8rem, 7vw, 5.5rem);
}

.hero-modern__media img {
  object-position: 67% 42%;
}

.hero-modern__media::after {
  background:
    linear-gradient(90deg, rgba(4, 17, 30, 0.96) 0%, rgba(4, 32, 55, 0.82) 41%, rgba(4, 32, 55, 0.28) 68%, rgba(4, 32, 55, 0.08) 100%),
    linear-gradient(0deg, rgba(4, 17, 30, 0.52), rgba(4, 17, 30, 0.08));
}

.hero-modern__content {
  display: grid;
  align-content: center;
  max-width: 1280px;
}

.hero-modern .eyebrow {
  width: fit-content;
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(10px);
}

.hero-modern .hero-title {
  width: min(100%, 720px);
  font-size: clamp(3.25rem, 6.2vw, 5.75rem);
  text-wrap: balance;
}

.hero-modern .hero-subtitle {
  width: min(100%, 610px);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 660px);
  margin-top: 2.2rem;
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
}

.hero-proof span {
  min-height: 62px;
  padding: 0.6rem 0.75rem;
  border: 0;
  border-radius: 10px;
  background: transparent;
  box-shadow: none;
}

.hero-proof span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.home-bridge {
  padding: clamp(3.3rem, 6vw, 5.2rem) 0;
  background: #ffffff;
}

.home-bridge__grid {
  display: grid;
  width: min(94vw, 1360px);
  max-width: 1360px;
  grid-template-columns: minmax(280px, 0.65fr) minmax(560px, 1.35fr);
  gap: clamp(1.8rem, 4vw, 3.4rem);
  align-items: center;
}

.home-bridge__content .section-title {
  max-width: 520px;
  font-size: clamp(2rem, 3.4vw, 3.3rem);
}

.home-bridge__content p:not(.eyebrow) {
  max-width: 580px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.78;
}

.home-bridge__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  margin-top: 1.3rem;
}

.home-bridge__visual {
  position: relative;
}

.home-bridge .mission-presence__visual {
  min-height: 0;
  border: 1px solid rgba(7, 25, 39, 0.08);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 20px 56px rgba(7, 25, 39, 0.09);
}

.home-bridge .mission-presence__visual::before {
  display: none;
}

.mission-projects-map {
  width: 100%;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
}

.home-bridge .mission-map {
  min-height: 365px;
  background:
    linear-gradient(90deg, rgba(4, 61, 128, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(4, 61, 128, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
}

.home-bridge .mission-map::before {
  inset: 18% 9% 25%;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(ellipse at 20% 46%, rgba(4, 61, 128, 0.13) 0 11%, transparent 11.5%),
    radial-gradient(ellipse at 36% 42%, rgba(4, 61, 128, 0.13) 0 8%, transparent 8.5%),
    radial-gradient(ellipse at 48% 56%, rgba(4, 61, 128, 0.13) 0 10%, transparent 10.5%),
    radial-gradient(ellipse at 68% 42%, rgba(4, 61, 128, 0.13) 0 15%, transparent 15.5%),
    radial-gradient(ellipse at 79% 64%, rgba(4, 61, 128, 0.1) 0 8%, transparent 8.5%);
  box-shadow: none;
  backdrop-filter: none;
}

.home-bridge .mission-map::after {
  left: 12%;
  right: 10%;
  top: 30%;
  bottom: 24%;
  background:
    linear-gradient(18deg, transparent 0 28%, rgba(33, 176, 231, 0.34) 28.2% 28.8%, transparent 29%),
    linear-gradient(148deg, transparent 0 46%, rgba(18, 139, 61, 0.35) 46.2% 46.8%, transparent 47%);
}

.home-bridge .mission-map__point {
  border-color: rgba(4, 61, 128, 0.12);
  background: #ffffff;
  color: var(--dark);
  box-shadow: 0 12px 28px rgba(7, 25, 39, 0.12);
}

.home-bridge .mission-map__point::before {
  background: var(--verde-escuro);
  box-shadow: 0 0 0 6px rgba(18, 139, 61, 0.12), 0 0 20px rgba(18, 139, 61, 0.42);
}

.home-bridge .mission-map__point::after {
  color: var(--muted);
}

.home-bridge__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.home-bridge__metrics span {
  min-height: 82px;
  padding: 0.9rem;
  border: 1px solid rgba(7, 25, 39, 0.08);
  border-radius: 10px;
  background: #ffffff;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
  box-shadow: 0 14px 34px rgba(7, 25, 39, 0.07);
}

.home-bridge__metrics strong {
  display: block;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  line-height: 1;
}

.pillars-section {
  padding-top: clamp(4rem, 7vw, 5.8rem);
}

.projects-page .missionaries-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1320px;
}

.projects-page .missionary-info {
  padding: 0.92rem;
}

.projects-page .missionary-info h3 {
  font-size: 0.98rem;
}

.projects-page .project-meta {
  display: none;
}

.projects-page .project-summary {
  min-height: 4.65em;
  font-size: 0.88rem;
}

.projects-page .project-details-toggle {
  justify-content: flex-start;
}

.projects-page .project-needs {
  padding: 0.65rem;
}

.projects-page .project-needs__label {
  font-size: 0.68rem;
}

.projects-page .project-actions {
  gap: 0.45rem;
}

.projects-page .project-action-primary {
  min-height: 40px;
  font-size: 0.86rem;
}

@media (max-width: 1180px) {
  .projects-page .missionaries-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .home-bridge__grid {
    grid-template-columns: 1fr;
  }

  body:has(.hero-modern) .navbar {
    position: sticky;
    background: #ffffff;
  }

  body:has(.hero-modern) .navbar:not(.navbar--scrolled) .desktop-menu a,
  body:has(.hero-modern) .navbar:not(.navbar--scrolled) .language-switch a {
    color: var(--dark);
  }

  body:has(.hero-modern) .navbar:not(.navbar--scrolled) .mobile-menu-toggle span {
    background-color: var(--dark);
  }
}

@media (max-width: 820px) {
  .hero-proof,
  .home-bridge__metrics,
  .projects-page .missionaries-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof span + span {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .home-bridge .mission-presence__visual,
  .home-bridge .mission-map {
    min-height: 320px;
  }
}

/* ============================================================
   CAMADA GLOBAL V4 - SITE INTEIRO MODERNO
   ============================================================ */

:root {
  --surface-strong: #ffffff;
  --surface-soft: #f4f8fa;
  --ink: #122231;
  --muted-strong: #536575;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-modern: 0 18px 48px rgba(7, 25, 39, 0.09);
  --shadow-modern-soft: 0 10px 28px rgba(7, 25, 39, 0.065);
}

body {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fafb 42%, #ffffff 100%);
  color: var(--ink);
}

.internal-page,
.blog-page {
  background: var(--surface-soft);
}

.internal-page > section:not(.page-hero):not(.image-hero):not(.course-hero):not(.projects-cta):not(.article-cta):not(.share-section):not(.become-partner),
.blog-page > section:not(.image-hero):not(.newsletter-section) {
  padding-top: clamp(4rem, 7vw, 6rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.section-title,
.page-title,
.hero-title {
  text-wrap: balance;
}

.section-subtitle,
.page-subtitle,
.page-intro,
.post-excerpt,
.method-description,
.option-card p,
.report-info p,
.course-program-card p,
.course-mode-card p,
.course-audience-list p {
  color: var(--muted-strong);
}

.section-header {
  width: min(100%, 860px);
  margin-left: auto;
  margin-right: auto;
}

.section-header .section-title,
.section-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.image-hero,
.course-hero,
.page-hero--blue,
.page-hero--blue-light,
.page-hero--green {
  min-height: clamp(430px, 58vh, 610px);
  border-bottom: 1px solid rgba(7, 25, 39, 0.08);
}

.image-hero::before,
.course-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 84px;
  background: linear-gradient(180deg, transparent, rgba(244, 248, 250, 0.98));
  pointer-events: none;
}

.image-hero__content,
.course-hero__content {
  width: min(90%, 1200px);
  max-width: 1200px;
}

.image-hero .page-title,
.image-hero .hero-title,
.course-hero .page-title {
  max-width: 820px;
  font-size: clamp(2.8rem, 5.7vw, 5.2rem);
}

.image-hero .page-subtitle,
.image-hero .hero-subtitle,
.course-hero .page-subtitle {
  max-width: 720px;
}

.page-hero--blue,
.page-hero--blue-light,
.page-hero--green {
  display: flex;
  align-items: center;
  padding: clamp(5rem, 10vw, 7.5rem) 0 clamp(4rem, 7vw, 5.5rem);
  background:
    radial-gradient(circle at 78% 20%, rgba(33, 176, 231, 0.16), transparent 28%),
    linear-gradient(135deg, #071927, #06365f 58%, #0d7e58);
  color: #ffffff;
}

.page-hero--blue .container,
.page-hero--blue-light .container,
.page-hero--green .container {
  width: min(90%, 1120px);
}

.page-hero--blue .page-title,
.page-hero--blue-light .page-title,
.page-hero--green .page-title,
.page-hero--blue .page-subtitle,
.page-hero--blue-light .page-subtitle,
.page-hero--green .page-subtitle {
  color: #ffffff;
}

.header-divider {
  width: 78px;
  height: 4px;
  margin-top: 1.4rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--verde-claro), var(--secondary));
}

.page-intro {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.02rem;
  line-height: 1.86;
}

.history-page .page-intro,
.internal-page .container > .page-intro + .page-intro {
  margin-top: 1.1rem;
}

.highlight-card,
.method-card,
.option-card,
.report-card,
.post-card,
.featured-post,
.course-mode-card,
.course-program-card,
.course-upgrade-card,
.course-audience-list article,
.timeline-card,
.accordion-item,
.newsletter-box,
.cta-box,
.projects-cta {
  border-radius: var(--radius-md);
  border: 1px solid rgba(7, 25, 39, 0.075);
  background: var(--surface-strong);
  box-shadow: var(--shadow-modern-soft);
}

.highlight-card,
.method-card,
.option-card,
.report-card,
.course-mode-card,
.course-audience-list article {
  padding: clamp(1.25rem, 2.4vw, 1.75rem);
}

.highlight-icon,
.method-icon,
.option-icon,
.report-icon,
.course-mode-card__icon,
.course-program-card__icon {
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(4, 61, 128, 0.1), rgba(33, 176, 231, 0.13));
  color: var(--primary);
}

.highlight-cards,
.methods-grid,
.benefits-grid,
.reports-grid,
.posts-grid {
  gap: 1rem;
}

.featured-post {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  overflow: hidden;
  padding: 0;
}

.featured-post .post-image-container {
  min-height: 100%;
}

.featured-post .post-image {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.featured-post .post-content {
  padding: clamp(1.6rem, 4vw, 2.7rem);
}

.post-card {
  overflow: hidden;
}

.post-card .post-content {
  padding: 1.1rem;
}

.post-title {
  color: var(--ink);
  line-height: 1.2;
}

.post-meta {
  color: #6b7a87;
}

.post-badge,
.course-upgrade-card__badge,
.course-online-cta__label {
  border-radius: 999px;
}

.newsletter-section {
  padding: clamp(4rem, 7vw, 5.5rem) 0;
  background: linear-gradient(180deg, var(--surface-soft), #ffffff);
}

.newsletter-box,
.cta-box {
  padding: clamp(2rem, 5vw, 3.5rem);
  background:
    radial-gradient(circle at 88% 18%, rgba(33, 176, 231, 0.13), transparent 28%),
    #ffffff;
}

.course-hero__media img {
  object-position: center 38%;
}

.course-upgrade-section,
.course-programs,
.course-audience-grid {
  position: relative;
}

.course-upgrade-card,
.course-program-card {
  border-radius: var(--radius-lg);
}

.course-programs {
  gap: 1rem;
}

.course-program-card {
  background:
    linear-gradient(180deg, #ffffff, #fbfdfe);
}

.course-subjects {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: #f6fafb;
}

.course-subjects ol {
  columns: 1;
}

.course-online-cta {
  border-radius: var(--radius-md);
}

.support-chooser {
  padding-bottom: 0;
}

.support-choice {
  border-radius: var(--radius-md);
}

.help-tabs-section,
.adoption-page {
  background: var(--surface-soft);
}

.adoption-page + .help-tabs-section {
  padding-top: 0;
}

.transparency-page .highlight-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.chart-container,
.financial-details {
  width: min(100%, 980px);
  margin-left: auto;
  margin-right: auto;
}

.financial-details {
  display: grid;
  gap: 1rem;
}

.detail-item {
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-modern-soft);
}

.history-page section:not(.page-hero) > .container {
  max-width: 1040px;
}

.history-page .section-title,
.history-page .section-subtitle {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.history-timeline {
  width: min(100%, 920px);
  margin-left: auto;
  margin-right: auto;
}

.timeline-card {
  border-radius: var(--radius-md);
  background: #ffffff;
}

.article-meta-bar {
  padding: 1.2rem 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(7, 25, 39, 0.08);
}

.article-meta-bar .container {
  display: grid;
  gap: 0.7rem;
}

.article-meta-info,
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  align-items: center;
  color: var(--muted-strong);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--primary);
  font-weight: 700;
}

main.internal-page:not(.history-page):not(.projects-page):not(.how-to-help-page):not(.transparency-page) > section:not(.page-hero):not(.article-meta-bar):not(.share-section):not(.article-cta):not(.related-posts) .container {
  max-width: 900px;
}

main.internal-page:not(.history-page):not(.projects-page):not(.how-to-help-page):not(.transparency-page) > section:not(.page-hero):not(.article-meta-bar):not(.share-section):not(.article-cta):not(.related-posts) .page-intro {
  max-width: 780px;
  font-size: 1.08rem;
  line-height: 1.92;
}

.share-section,
.article-cta,
.related-posts {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn-share {
  border-radius: 999px;
}

.article-cta .cta-box,
.become-partner .cta-box {
  background:
    linear-gradient(135deg, rgba(4, 34, 71, 0.96), rgba(18, 139, 61, 0.88)),
    url("img/social.webp") center/cover;
  color: #ffffff;
}

.article-cta .cta-box .cta-title,
.article-cta .cta-box .cta-text,
.become-partner .cta-box .cta-title,
.become-partner .cta-box .cta-text {
  color: #ffffff;
}

.related-posts {
  background: #ffffff;
}

.site-footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(33, 176, 231, 0.14), transparent 28%),
    linear-gradient(135deg, #061827, #071f35 58%, #082f2d);
}

.footer-container {
  width: min(90%, 1180px);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.footer-logo-text {
  align-items: center;
}

.footer-logo-text img {
  width: auto;
  height: 64px;
}

.footer-logo-text h3 {
  max-width: 260px;
  line-height: 1.25;
}

.footer-newsletter,
.footer-contact {
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-banner {
  border-radius: var(--radius-md);
}

@media (max-width: 1024px) {
  .featured-post,
  .course-programs,
  .transparency-page .highlight-cards {
    grid-template-columns: 1fr;
  }

  .featured-post .post-image {
    min-height: 300px;
  }

  .course-audience-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .internal-page > section:not(.page-hero):not(.image-hero):not(.course-hero):not(.projects-cta):not(.article-cta):not(.share-section):not(.become-partner),
  .blog-page > section:not(.image-hero):not(.newsletter-section) {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }

  .image-hero,
  .course-hero,
  .page-hero--blue,
  .page-hero--blue-light,
  .page-hero--green {
    min-height: 430px;
  }

  .image-hero .page-title,
  .image-hero .hero-title,
  .course-hero .page-title,
  .page-hero .page-title {
    font-size: clamp(2.25rem, 11vw, 3.8rem);
  }

  .featured-post .post-content,
  .newsletter-box,
  .cta-box {
    padding: 1.35rem;
  }

  .article-meta-info,
  .breadcrumb {
    font-size: 0.82rem;
  }
}

/* ============================================================
   POLIMENTO FINAL - NAVEGACAO, HOME, PROJETOS E BLOG
   ============================================================ */

.navbar,
body:has(.hero-modern) .navbar,
body:not(:has(.hero-modern)) .navbar,
body:has(.hero-modern) .navbar.navbar--scrolled {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background: rgba(5, 26, 40, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
}

.navbar-container {
  min-height: 78px;
}

.desktop-menu a,
body:has(.hero-modern) .navbar:not(.navbar--scrolled) .desktop-menu a,
body:has(.hero-modern) .navbar:not(.navbar--scrolled) .language-switch a {
  color: rgba(255, 255, 255, 0.9);
}

.desktop-menu a:hover,
.desktop-menu a.active {
  color: #ffffff;
}

.desktop-menu a::after {
  background: var(--accent);
}

.language-switch,
body:has(.hero-modern) .navbar:not(.navbar--scrolled) .language-switch {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.language-switch a,
body:has(.hero-modern) .navbar:not(.navbar--scrolled) .language-switch a {
  color: rgba(255, 255, 255, 0.82);
}

html[lang="pt-BR"] .language-switch a[data-lang="pt"],
html[lang^="es"] .language-switch a[data-lang="es"],
html[lang="pt-BR"] body:has(.hero-modern) .navbar:not(.navbar--scrolled) .language-switch a[data-lang="pt"],
html[lang^="es"] body:has(.hero-modern) .navbar:not(.navbar--scrolled) .language-switch a[data-lang="es"] {
  background: #ffffff;
  color: var(--primary);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.14);
}

.mobile-menu-toggle span,
body:has(.hero-modern) .navbar:not(.navbar--scrolled) .mobile-menu-toggle span {
  background-color: #ffffff;
}

body:not(:has(.hero-modern)) main {
  padding-top: 78px;
}

.hero-proof {
  width: min(100%, 760px);
  gap: 0.65rem;
  padding: 0.65rem;
  border-radius: 8px;
  background: rgba(6, 27, 47, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.2);
}

.hero-proof span {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  justify-content: center;
  gap: 0.45rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07));
}

.hero-proof span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-proof strong {
  display: block;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.92rem, 1.3vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.hero-proof small {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.45;
}

.projects-page .page-intro {
  max-width: 920px;
  margin: 0 auto;
  color: #51616f;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.8;
}

.project-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(210px, 0.9fr);
  gap: 0;
  max-width: 1040px;
  margin: 2rem auto 0;
  padding: 0.7rem;
  border: 1px solid rgba(7, 25, 39, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(7, 25, 39, 0.08);
}

.project-overview > div,
.project-overview__cta {
  min-height: 88px;
  padding: 1rem 1.15rem;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}

.project-overview > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(7, 25, 39, 0.08);
}

.project-overview__number {
  color: var(--primary);
  font-family: 'Poppins', sans-serif;
  font-size: 1.72rem;
  font-weight: 800;
  letter-spacing: 0;
}

.project-overview__label {
  display: block;
  max-width: 150px;
  color: #5f6f7e;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.project-overview__cta {
  min-height: 88px;
  background: linear-gradient(135deg, #11823b, #26a45a);
  color: #ffffff;
  font-size: 0.94rem;
  line-height: 1.25;
  box-shadow: 0 12px 26px rgba(18, 139, 61, 0.2);
}

.newsletter-section {
  background: linear-gradient(180deg, #f4f8fb, #ffffff);
}

.newsletter-box,
.blog-page .newsletter-box {
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(4, 61, 128, 0.96), rgba(6, 27, 47, 0.96)),
    var(--primary);
  color: #ffffff;
  box-shadow: 0 26px 64px rgba(4, 61, 128, 0.24);
}

.newsletter-box .newsletter-title,
.newsletter-box .newsletter-subtitle,
.blog-page .newsletter-box .newsletter-title,
.blog-page .newsletter-box .newsletter-subtitle {
  color: #ffffff;
}

.newsletter-box .newsletter-subtitle,
.blog-page .newsletter-box .newsletter-subtitle {
  opacity: 0.84;
}

.newsletter-box .btn-primary,
.blog-page .newsletter-box .btn-primary {
  background: #ffffff;
  color: var(--primary);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.newsletter-box .btn-primary:hover,
.blog-page .newsletter-box .btn-primary:hover {
  background: var(--accent);
  color: #ffffff;
}

@media (max-width: 900px) {
  .hero-proof,
  .project-overview {
    grid-template-columns: 1fr;
  }

  .hero-proof span + span,
  .project-overview > div {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .project-overview > div {
    border-top-color: rgba(7, 25, 39, 0.08);
  }
}
