/* ================================================================
   DIÁCONO ROBERTO GUEDES — STYLESHEET GLOBAL
   Paleta: Azul Marinho #1E2A5E | Dourado #C6A43F | Fundo #F8F5F0
   Fonte: Open Sans + Playfair Display (Google Fonts)
   ================================================================ */

/* ──────────────────────────────────────────────────────────────
   1. GOOGLE FONTS
   ────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ──────────────────────────────────────────────────────────────
   2. VARIÁVEIS CSS
   ────────────────────────────────────────────────────────────── */
:root {
  --azul:        #1E2A5E;
  --azul-medio:  #2B3A8C;
  --azul-claro:  #3D52A8;
  --dourado:     #C6A43F;
  --dourado-lt:  #E8C668;
  --dourado-dk:  #A08330;
  --fundo:       #F8F5F0;
  --fundo-card:  #FFFFFF;
  --fundo-dark:  #121828;
  --texto:       #2C2C2C;
  --texto-med:   #555555;
  --texto-claro: #888888;
  --borda:       #E0D9D0;
  --sombra-sm:   0 2px 8px rgba(30,42,94,0.10);
  --sombra-md:   0 4px 20px rgba(30,42,94,0.15);
  --sombra-lg:   0 8px 40px rgba(30,42,94,0.20);
  --raio-sm:     8px;
  --raio:        14px;
  --raio-lg:     24px;
  --font-titulo: 'Playfair Display', Georgia, serif;
  --font-corpo:  'Open Sans', Arial, sans-serif;
  --trans:       all 0.3s ease;
  --header-h:    72px;
}

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

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

body {
  font-family: var(--font-corpo);
  background: var(--fundo);
  color: var(--texto);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--azul); text-decoration: none; transition: var(--trans); }
a:hover { color: var(--dourado); }
ul, ol { list-style: none; }

/* ──────────────────────────────────────────────────────────────
   4. TIPOGRAFIA
   ────────────────────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-titulo);
  color: var(--azul);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; }
.subtitulo {
  font-size: 1.05rem;
  color: var(--texto-med);
  font-weight: 300;
  max-width: 620px;
}

/* ──────────────────────────────────────────────────────────────
   5. LAYOUT UTILITÁRIOS
   ────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }
.text-center { text-align: center; }
.text-gold   { color: var(--dourado); }
.text-navy   { color: var(--azul); }
.bg-navy     { background: var(--azul); }
.bg-gold     { background: var(--dourado); }
.bg-dark     { background: var(--fundo-dark); }
.bg-light    { background: var(--fundo); }

.section-titulo {
  text-align: center;
  margin-bottom: 16px;
}
.section-titulo::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--dourado);
  margin: 14px auto 0;
  border-radius: 2px;
}
.section-subtitulo {
  text-align: center;
  color: var(--texto-med);
  margin-bottom: 48px;
  font-size: 1.05rem;
}

/* ──────────────────────────────────────────────────────────────
   6. BOTÕES
   ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--raio-sm);
  font-family: var(--font-corpo);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--trans);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primario {
  background: var(--dourado);
  color: var(--azul);
}
.btn-primario:hover {
  background: var(--dourado-dk);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--sombra-md);
}
.btn-secundario {
  background: transparent;
  color: var(--dourado);
  border: 2px solid var(--dourado);
}
.btn-secundario:hover {
  background: var(--dourado);
  color: var(--azul);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--azul);
  color: #fff;
}
.btn-navy:hover {
  background: var(--azul-medio);
  transform: translateY(-2px);
  box-shadow: var(--sombra-md);
  color: #fff;
}
.btn-branco {
  background: #fff;
  color: var(--azul);
}
.btn-branco:hover {
  background: var(--fundo);
  color: var(--dourado);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #128C7E;
  color: #fff;
  transform: translateY(-2px);
}
.btn-grupo { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ──────────────────────────────────────────────────────────────
   7. HEADER & NAVEGAÇÃO
   ────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--azul);
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
  transition: var(--trans);
}
.site-header.scrolled {
  background: rgba(30,42,94,0.97);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-nome {
  font-family: var(--font-titulo);
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: 0.5px;
}
.logo-subtitulo {
  font-size: 0.7rem;
  color: var(--dourado);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-menu a {
  color: rgba(255,255,255,0.85);
  padding: 8px 12px;
  border-radius: var(--raio-sm);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: var(--trans);
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--dourado);
  background: rgba(198,164,63,0.1);
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--trans);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--azul);
  z-index: 999;
  flex-direction: column;
  padding: 24px;
  gap: 4px;
  overflow-y: auto;
}
.nav-overlay.open { display: flex; }
.nav-overlay a {
  color: rgba(255,255,255,0.9);
  padding: 14px 16px;
  font-size: 1.1rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--raio-sm);
  transition: var(--trans);
}
.nav-overlay a:hover { color: var(--dourado); background: rgba(198,164,63,0.1); }

/* ──────────────────────────────────────────────────────────────
   8. HERO
   ────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding-top: var(--header-h);
  background: linear-gradient(135deg, var(--azul) 0%, #0D1533 60%, #1a2050 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(198,164,63,0.05)" d="M0,160L48,165.3C96,171,192,181,288,176C384,171,480,149,576,149.3C672,149,768,171,864,186.7C960,203,1056,213,1152,202.7C1248,192,1344,160,1392,144L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"/></svg>') bottom/cover no-repeat;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 60px 24px;
  position: relative;
  z-index: 1;
}
.hero-texto { color: #fff; }
.hero-badge {
  display: inline-block;
  background: rgba(198,164,63,0.15);
  border: 1px solid var(--dourado);
  color: var(--dourado);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-titulo {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero-titulo em { color: var(--dourado); font-style: italic; }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-foto {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-foto-img {
  width: 100%;
  max-width: 420px;
  border-radius: var(--raio-lg);
  box-shadow: var(--sombra-lg);
  object-fit: cover;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--azul-medio), var(--dourado-dk));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-foto-placeholder {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  border-radius: var(--raio-lg);
  background: linear-gradient(160deg, #2B3A8C, #A08330);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  text-align: center;
  border: 3px solid rgba(198,164,63,0.3);
  box-shadow: var(--sombra-lg);
  gap: 12px;
}
.hero-foto-placeholder svg { width: 80px; height: 80px; opacity: 0.4; }

/* ──────────────────────────────────────────────────────────────
   9. CARDS
   ────────────────────────────────────────────────────────────── */
.card {
  background: var(--fundo-card);
  border-radius: var(--raio);
  box-shadow: var(--sombra-sm);
  overflow: hidden;
  transition: var(--trans);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra-lg);
}
.card-body { padding: 28px; }
.card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* LIVRO CARD */
.livro-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
  background: var(--fundo-card);
  border-radius: var(--raio-lg);
  padding: 40px;
  box-shadow: var(--sombra-md);
  border: 1px solid var(--borda);
  margin-bottom: 48px;
}
.livro-capa {
  width: 100%;
  aspect-ratio: 2/3;
  border-radius: var(--raio);
  object-fit: cover;
  box-shadow: var(--sombra-lg);
  background: linear-gradient(160deg, var(--azul), var(--dourado-dk));
}
.livro-capa-placeholder {
  width: 100%;
  aspect-ratio: 2/3;
  border-radius: var(--raio);
  background: linear-gradient(160deg, var(--azul), var(--dourado-dk));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-titulo);
  font-size: 1rem;
  text-align: center;
  padding: 20px;
  box-shadow: var(--sombra-lg);
}
.livro-info .tag {
  display: inline-block;
  background: rgba(198,164,63,0.12);
  color: var(--dourado-dk);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.livro-titulo { color: var(--azul); margin-bottom: 12px; }
.livro-sinopse { color: var(--texto-med); margin-bottom: 24px; line-height: 1.8; }
.livro-preco {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--azul);
  margin-bottom: 8px;
}
.livro-preco span { font-size: 1rem; color: var(--texto-claro); font-weight: 400; }

/* ──────────────────────────────────────────────────────────────
   10. FORMULÁRIOS
   ────────────────────────────────────────────────────────────── */
.form-grupo {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-grupo label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--azul);
}
.form-grupo input,
.form-grupo select,
.form-grupo textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--borda);
  border-radius: var(--raio-sm);
  font-family: var(--font-corpo);
  font-size: 1rem;
  color: var(--texto);
  background: #fff;
  transition: var(--trans);
  outline: none;
}
.form-grupo input:focus,
.form-grupo select:focus,
.form-grupo textarea:focus {
  border-color: var(--azul);
  box-shadow: 0 0 0 3px rgba(30,42,94,0.1);
}
.form-grupo textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* NEWSLETTER INLINE */
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--raio-sm);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-family: var(--font-corpo);
  font-size: 1rem;
  outline: none;
  transition: var(--trans);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form input:focus { border-color: var(--dourado); background: rgba(255,255,255,0.15); }

/* ──────────────────────────────────────────────────────────────
   11. SECÇÕES ESPECIAIS
   ────────────────────────────────────────────────────────────── */
/* STATS */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item { padding: 24px; }
.stat-num {
  font-family: var(--font-titulo);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dourado);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.7); }

/* CITAÇÃO */
.citacao-bloco {
  border-left: 4px solid var(--dourado);
  padding: 20px 28px;
  background: rgba(198,164,63,0.06);
  border-radius: 0 var(--raio) var(--raio) 0;
  margin: 24px 0;
}
.citacao-bloco p {
  font-family: var(--font-titulo);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--azul);
  margin: 0;
}

/* VELA */
.vela-card {
  background: linear-gradient(160deg, #0D1533 0%, #1E2A5E 100%);
  border-radius: var(--raio-lg);
  padding: 48px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.vela-chama {
  font-size: 4rem;
  animation: flamejando 2s ease-in-out infinite alternate;
  display: block;
  margin-bottom: 16px;
}
@keyframes flamejando {
  0%  { transform: scale(1) rotate(-2deg); }
  100%{ transform: scale(1.1) rotate(2deg); }
}
.vela-titulo {
  font-size: 1.8rem;
  color: var(--dourado);
  margin-bottom: 16px;
}
.vela-texto { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 28px; line-height: 1.8; }

/* ORAÇÃO — lista pública */
.oracao-item {
  background: #fff;
  border-radius: var(--raio);
  padding: 20px 24px;
  border-left: 4px solid var(--dourado);
  box-shadow: var(--sombra-sm);
  margin-bottom: 12px;
}
.oracao-item p { color: var(--texto-med); margin: 0; font-style: italic; }
.oracao-item .oracao-data { font-size: 0.8rem; color: var(--texto-claro); margin-top: 8px; }

/* VIDEO GRID */
.video-card {
  background: var(--fundo-card);
  border-radius: var(--raio);
  overflow: hidden;
  box-shadow: var(--sombra-sm);
  transition: var(--trans);
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--sombra-md); }
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-info { padding: 16px 20px; }
.video-titulo { font-size: 1rem; font-weight: 600; color: var(--azul); margin-bottom: 6px; }
.video-data  { font-size: 0.8rem; color: var(--texto-claro); }

/* ──────────────────────────────────────────────────────────────
   12. FOOTER
   ────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--fundo-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px 48px;
}
.footer-marca .logo-nome { font-size: 1.4rem; margin-bottom: 4px; }
.footer-marca p { font-size: 0.9rem; line-height: 1.7; margin-top: 12px; color: rgba(255,255,255,0.55); }
.footer-col h5 {
  font-family: var(--font-corpo);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.65);
  padding: 5px 0;
  font-size: 0.9rem;
  transition: var(--trans);
}
.footer-col a:hover { color: var(--dourado); padding-left: 6px; }
.footer-newsletter h5 { margin-bottom: 8px; }
.footer-newsletter p { font-size: 0.85rem; margin-bottom: 16px; color: rgba(255,255,255,0.55); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--trans);
}
.footer-social a:hover { background: var(--dourado); color: var(--azul); }

/* ──────────────────────────────────────────────────────────────
   13. WHATSAPP FLUTUANTE
   ────────────────────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: var(--trans);
  animation: pulseWA 3s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.7);
  background: #128C7E;
}
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes pulseWA {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50%      { box-shadow: 0 4px 32px rgba(37,211,102,0.9); }
}

/* ──────────────────────────────────────────────────────────────
   14. BANNER NEWSLETTER (POPUP)
   ────────────────────────────────────────────────────────────── */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.popup-overlay.open { display: flex; }
.popup-box {
  background: #fff;
  border-radius: var(--raio-lg);
  max-width: 520px;
  width: 100%;
  padding: 48px 40px;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.popup-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none; border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--texto-claro);
  transition: var(--trans);
}
.popup-close:hover { color: var(--azul); transform: rotate(90deg); }
.popup-icone { font-size: 3rem; margin-bottom: 12px; }
.popup-titulo { margin-bottom: 10px; }
.popup-sub { color: var(--texto-med); margin-bottom: 24px; font-size: 0.95rem; }

/* ──────────────────────────────────────────────────────────────
   15. PÁGINA INTERIOR — HERO SIMPLES
   ────────────────────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--azul) 0%, #0D1533 100%);
  padding: calc(var(--header-h) + 60px) 0 60px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--fundo);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p   { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 540px; margin: 0 auto; }

/* ──────────────────────────────────────────────────────────────
   16. SEPARADOR DECORATIVO
   ────────────────────────────────────────────────────────────── */
.divider-dourado {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 48px 0;
  color: var(--dourado);
}
.divider-dourado::before,
.divider-dourado::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--dourado);
  opacity: 0.3;
}

/* ──────────────────────────────────────────────────────────────
   17. RESPONSIVIDADE
   ────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-foto { order: -1; }
  .hero-foto-placeholder { max-width: 280px; margin: 0 auto; }
  .btn-grupo { justify-content: center; }

  .livro-card {
    grid-template-columns: 1fr;
    padding: 28px;
    text-align: center;
  }
  .livro-capa, .livro-capa-placeholder {
    max-width: 200px;
    margin: 0 auto;
  }
  .btn-grupo { justify-content: center; }

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

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .newsletter-form { flex-direction: column; }

  .section-pad { padding: 56px 0; }
}

@media (max-width: 480px) {
  :root { --header-h: 64px; }
  .btn-lg { padding: 14px 24px; font-size: 1rem; }
  .livro-card { padding: 20px; }
  .vela-card { padding: 32px 20px; }
  .popup-box { padding: 32px 24px; }
}

/* ──────────────────────────────────────────────────────────────
   18. ANIMAÇÕES
   ────────────────────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0); }
}
.anim-fade { animation: fadeInUp 0.7s ease forwards; }
.anim-fade-1 { animation-delay: 0.1s; }
.anim-fade-2 { animation-delay: 0.25s; }
.anim-fade-3 { animation-delay: 0.4s; }

/* ──────────────────────────────────────────────────────────────
   19. BADGE / ETIQUETAS
   ────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
}
.badge-gold { background: rgba(198,164,63,0.12); color: var(--dourado-dk); border: 1px solid rgba(198,164,63,0.3); }
.badge-navy { background: rgba(30,42,94,0.1); color: var(--azul); border: 1px solid rgba(30,42,94,0.2); }
.badge-green { background: rgba(37,211,102,0.1); color: #16a34a; border: 1px solid rgba(37,211,102,0.3); }

/* ──────────────────────────────────────────────────────────────
   20. PÁGINA EM BREVE
   ────────────────────────────────────────────────────────────── */
.em-breve-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--azul) 0%, #0D1533 100%);
  padding-top: var(--header-h);
}
.em-breve-icone { font-size: 5rem; margin-bottom: 20px; }
.em-breve-titulo { color: #fff; margin-bottom: 16px; }
.em-breve-sub { color: rgba(255,255,255,0.75); max-width: 500px; margin: 0 auto 32px; }
