/* ===== OPBB-ES | Estilos Globais ===== */
@import url('https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,400;0,500;0,600;1,400;1,500&family=IBM+Plex+Sans:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --teal:   #0d4757;
  --teal-dark: #092f3a;
  --teal-light: #155f78;
  --gold:   #c9a227;
  --gold-light: #e0b83a;
  --gold-pale: #f5e9c0;
  --white:  #ffffff;
  --off-white: #f7f8f9;
  --marfim: #f6f2e9;
  --gray-100: #f0f2f4;
  --gray-300: #cfd4da;
  --gray-600: #6c757d;
  --gray-800: #343a40;
  --text:   #1e2a32;
  --ink:    #16242b;
  --serif:  'Spectral', Georgia, 'Times New Roman', serif;
  --sans:   'IBM Plex Sans', 'Segoe UI', system-ui, sans-serif;
  --mono:   'IBM Plex Mono', 'Courier New', monospace;
  --radius: 8px;
  --shadow: 0 1px 2px rgba(13,71,87,.06), 0 8px 28px -18px rgba(13,71,87,.35);
  --shadow-hover: 0 2px 4px rgba(13,71,87,.08), 0 18px 40px -22px rgba(13,71,87,.5);
  --hairline: 1px solid rgba(13,71,87,.12);
  --transition: .25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* ===== ÍCONES (Lucide) ===== */
.lucide {
  width: 1.05em;
  height: 1.05em;
  stroke-width: 1.75;
  vertical-align: -.15em;
  display: inline-block;
  flex-shrink: 0;
}
.btn .lucide { width: 1.05em; height: 1.05em; }
.download-icon .lucide,
.contact-icon .lucide,
.parceiro-logo-placeholder .lucide { width: 1em; height: 1em; }
.about-placeholder-cross .lucide { width: 1em; height: 1em; stroke-width: 1.4; }

h1, h2, h3, h4, .section-title, .hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -.01em;
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--teal-dark);
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  padding: .4rem 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar a { color: var(--gold); }
.topbar a:hover { color: var(--gold-light); }

/* ===== NAVBAR ===== */
.navbar {
  background: var(--teal);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: .75rem 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.nav-logo img {
  height: 52px;
  filter: brightness(0) invert(1);
}
.nav-logo .logo-text {
  color: var(--white);
  font-size: .72rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: .03em;
  text-transform: uppercase;
  opacity: .9;
}
.nav-logo .logo-text span {
  display: block;
  color: var(--gold);
  font-size: .85rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.88);
  font-size: .9rem;
  font-weight: 500;
  padding: .5rem .85rem;
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  background: rgba(255,255,255,.12);
  color: var(--gold-light);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--teal-dark) !important;
  font-weight: 700 !important;
  padding: .5rem 1.1rem !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--teal-dark) !important;
}

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-size: 2.15rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: .5rem;
  line-height: 1.15;
}
.section-sub {
  color: var(--gray-600);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}
/* Seal mark — disco + filete, evoca o carimbo de consagração da Ordem */
.divider-gold {
  width: 64px;
  height: 2px;
  background: var(--gold);
  border-radius: 0;
  margin: 1rem 0 1.25rem;
  position: relative;
}
.divider-gold::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
  box-shadow: 0 0 0 3px rgba(201,162,39,.18);
}
.text-center { text-align: center; }
.text-center .divider-gold { margin-left: auto; margin-right: auto; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(160deg, var(--teal-dark) 0%, var(--teal) 100%);
  color: var(--white);
  padding: 5.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(201,162,39,.07)'/%3E%3C/svg%3E") repeat;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: transparent;
  color: var(--gold-light);
  border: none;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .3rem 0;
  border-radius: 4px;
  margin-bottom: 1.4rem;
}
.hero-badge::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.hero h1 {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.015em;
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero p {
  font-size: 1.05rem;
  opacity: .88;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-buttons {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.6rem;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .01em;
  transition: var(--transition);
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--teal-dark);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); transform: translateY(-2px); }
.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-2px); }

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* ===== SELO INSTITUCIONAL (assinatura) ===== */
.hero-seal { width: 100%; display: flex; justify-content: center; }
.hero-seal svg {
  width: 340px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.3));
}
.seal-text {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2.2px;
}
.seal-mark {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: .06em;
}
.seal-date {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  fill: #c9a227;
}
.seal-rotate {
  transform-box: fill-box;
  transform-origin: center;
  animation: sealSpin 90s linear infinite;
}
@keyframes sealSpin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .seal-rotate { animation: none; }
}
.hero-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 2rem;
  width: 100%;
  max-width: 340px;
}
.hero-card h3 {
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-bottom: .5rem;
  font-weight: 700;
}
.hero-card p {
  font-size: .88rem;
  opacity: .8;
  margin-bottom: 0;
}
.hero-stats {
  display: flex;
  gap: 1.5rem;
  width: 100%;
  max-width: 340px;
  justify-content: center;
}
.stat-box {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(201,162,39,.3);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  text-align: center;
  flex: 1;
}
.stat-box .num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-box .lbl {
  font-size: .72rem;
  color: rgba(255,255,255,.82);
  margin-top: .25rem;
}

/* ===== PILLS / HIGHLIGHTS ===== */
.highlights {
  background: var(--teal-dark);
  padding: 1.25rem 0;
}
.highlights-inner {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
}
.highlight-item .icon { color: var(--gold); font-size: 1.15rem; }

/* ===== SECTIONS ===== */
.section { padding: 5rem 0; }
.section-alt { background: var(--off-white); }

/* ===== ABOUT SNIPPET ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  border-radius: 16px;
  width: 100%;
  object-fit: cover;
}
.about-placeholder {
  width: 100%;
  height: 420px;
  background: linear-gradient(145deg, var(--teal-dark) 0%, var(--teal) 60%, var(--teal-light) 100%);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
}
.about-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(201,162,39,.15)'/%3E%3C/svg%3E") repeat;
}
.about-placeholder-cross {
  position: relative;
  font-size: 5rem;
  color: var(--gold);
  opacity: .9;
  text-shadow: 0 0 40px rgba(201,162,39,.4);
  line-height: 1;
}
.about-placeholder-text {
  position: relative;
  text-align: center;
}
.about-placeholder-text span {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .08em;
  line-height: 1;
}
.about-placeholder-text small {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.about-placeholder-verse {
  position: relative;
  text-align: center;
  color: rgba(255,255,255,.7);
  font-size: .82rem;
  font-style: italic;
  max-width: 240px;
  line-height: 1.6;
  border-top: 1px solid rgba(201,162,39,.3);
  padding-top: 1rem;
}
.about-placeholder-verse em {
  font-style: normal;
  color: var(--gold-light);
  font-weight: 600;
}

.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--teal-dark);
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow);
  font-weight: 700;
}
.about-img-badge .num { font-size: 2rem; line-height: 1; }
.about-img-badge .lbl { font-size: .78rem; }

.values-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .92rem;
}
.value-item .icon { color: var(--gold); margin-top: .15rem; flex-shrink: 0; }

/* ===== ANUIDADE ===== */
.anuidade-section {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
}
.anuidade-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.anuidade-text .section-title { color: var(--white); }
.anuidade-text .divider-gold { }
.anuidade-text p { opacity: .88; margin-bottom: 1.25rem; }

.anuidade-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}
.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}
.step-num {
  background: var(--gold);
  color: var(--teal-dark);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .9rem;
  flex-shrink: 0;
}
.step-item .step-body { font-size: .93rem; }
.step-item .step-body strong { display: block; margin-bottom: .2rem; }
.step-item a { color: var(--gold-light); text-decoration: underline; }

/* ===== ANUIDADE STEPS ROW ===== */
.anuidade-steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.step-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  transition: var(--transition);
}
.step-card:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(201,162,39,.5);
}
.step-card .step-num {
  background: var(--gold);
  color: var(--teal-dark);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.step-card-body strong {
  display: block;
  font-size: .97rem;
  color: var(--white);
  margin-bottom: .35rem;
}
.step-card-body p {
  font-size: .86rem;
  opacity: .8;
  margin-bottom: .5rem;
}
.step-card-body a {
  font-size: .84rem;
  color: var(--gold-light);
  text-decoration: underline;
}
@media (max-width: 640px) {
  .anuidade-steps-row { grid-template-columns: 1fr; }
}

/* ===== YOUTUBE THUMBNAIL PLAYER ===== */
.yt-thumb {
  display: block;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  cursor: pointer;
  aspect-ratio: 16/9;
  background: #000;
  text-decoration: none;
}
.yt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: .3s ease;
  opacity: .85;
}
.yt-thumb:hover img { opacity: .65; transform: scale(1.03); }
.yt-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .25s ease;
}
.yt-thumb:hover .yt-play svg path:first-child { fill: #cc0000; }
.yt-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  padding: 1.5rem 1rem .85rem;
  text-align: center;
  letter-spacing: .04em;
}

.video-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  background: #000;
  aspect-ratio: 16/9;
}
.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ===== BOARD CARDS ===== */
.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.board-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.board-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.board-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: var(--gray-100);
  border: 4px solid var(--gold);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 2.5rem;
  font-weight: 700;
}
.board-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.board-card .role {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .35rem;
}
.board-card .name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: .25rem;
}
.board-card .church {
  font-size: .82rem;
  color: var(--gray-600);
}

/* highlight card (president) */
.board-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
  grid-column: span 1;
}
.board-card.featured .role { color: var(--gold-light); }
.board-card.featured .name { color: var(--white); }
.board-card.featured .church { color: rgba(255,255,255,.7); }

/* ===== DOWNLOADS ===== */
.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.download-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 14px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.download-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--gold); }
.download-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--teal);
  flex-shrink: 0;
}
.download-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--teal); }
.download-card p { font-size: .88rem; color: var(--gray-600); flex: 1; }
.download-card .btn { align-self: flex-start; font-size: .85rem; padding: .55rem 1.2rem; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-info h3 { font-size: 1.3rem; font-weight: 700; color: var(--teal); margin-bottom: 1.5rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.15rem;
  flex-shrink: 0;
}
.contact-item .body strong { display: block; font-size: .88rem; color: var(--gray-600); margin-bottom: .1rem; }
.contact-item .body p { font-size: .95rem; color: var(--text); }

.form-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--teal); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--text);
  transition: var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,71,87,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group .btn { width: 100%; justify-content: center; margin-top: .5rem; }

/* ===== PARCEIROS ===== */
.parceiro-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.parceiro-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--gold); }
.parceiro-logo {
  background: var(--gray-100);
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--gray-300);
  padding: 1rem;
}
.parceiro-logo img {
  max-height: 70px;
  max-width: 100%;
  object-fit: contain;
}
.parceiro-logo-placeholder {
  width: 64px; height: 64px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: 1.6rem;
}
.parceiro-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.parceiro-tag {
  display: inline-block;
  font-size: .72rem; font-weight: 700;
  padding: .2rem .65rem; border-radius: 20px;
  background: var(--gold-pale); color: #7a5c0a;
  align-self: flex-start;
}
.parceiro-nome { font-size: 1rem; font-weight: 700; color: var(--teal); }
.parceiro-desc { font-size: .88rem; color: var(--gray-600); line-height: 1.6; flex: 1; }
.parceiro-btn {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  margin-top: .75rem; padding: .65rem;
  border-radius: var(--radius);
  font-size: .88rem; font-weight: 600;
  background: var(--teal); color: var(--white);
  border: none; cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}
.parceiro-btn:hover { background: var(--teal-dark); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--gold);
  padding: 3.5rem 0;
  text-align: center;
}
.cta-banner h2 { font-size: 2rem; font-weight: 800; color: var(--teal-dark); margin-bottom: .5rem; }
.cta-banner p { color: var(--teal); opacity: .85; margin-bottom: 1.75rem; font-size: 1.05rem; }

/* ===== FOOTER ===== */
footer {
  background: var(--teal-dark);
  color: rgba(255,255,255,.8);
  padding: 3.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand img {
  height: 50px;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}
.footer-brand p { font-size: .88rem; opacity: .75; line-height: 1.7; max-width: 300px; }
.footer-col h4 { color: var(--gold); font-size: .9rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul a { color: rgba(255,255,255,.72); font-size: .9rem; transition: var(--transition); }
.footer-col ul a:hover { color: var(--gold-light); }
.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .82rem;
  opacity: .65;
}
.footer-bottom a { color: var(--gold-light); transition: var(--transition); }
.footer-bottom a:hover { opacity: 1; color: var(--gold); }
.footer-creator { opacity: 1 !important; }
.footer-creator a {
  color: var(--gold-light) !important;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.footer-creator a:hover { color: var(--gold) !important; }

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  color: var(--white);
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(201,162,39,.1)'/%3E%3C/svg%3E") repeat;
}
.page-header-inner { position: relative; }
.breadcrumb {
  font-size: .82rem;
  opacity: .7;
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.breadcrumb a { color: var(--gold-light); }
.page-header h1 { font-size: 2.4rem; font-weight: 800; margin-bottom: .75rem; }
.page-header p { font-size: 1.05rem; opacity: .85; max-width: 600px; }
.page-header .divider-gold { margin-top: 1rem; }

/* ===== UTILITY ===== */
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero h1 { font-size: 2rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { display: none; }
  .anuidade-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--teal-dark); padding: 1rem; gap: .25rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .navbar { position: relative; }
  .nav-inner { position: relative; }
  .hero { padding: 3rem 0; }
  .hero h1 { font-size: 1.75rem; }
  .section { padding: 3.5rem 0; }
  .section-title { font-size: 1.6rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values-list { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .highlights-inner { gap: 1rem; }
}
