/* ===========================
   PersonaTest — Estilos Globais
   =========================== */

/* ── Qanelas Font Family ── */
@font-face { font-family: 'Qanelas'; src: url('/fonts/Qanelas-UltraLight.otf'); font-weight: 100; font-style: normal; }
@font-face { font-family: 'Qanelas'; src: url('/fonts/Qanelas-UltraLightItalic.otf'); font-weight: 100; font-style: italic; }
@font-face { font-family: 'Qanelas'; src: url('/fonts/Qanelas-Thin.otf'); font-weight: 200; font-style: normal; }
@font-face { font-family: 'Qanelas'; src: url('/fonts/Qanelas-ThinItalic.otf'); font-weight: 200; font-style: italic; }
@font-face { font-family: 'Qanelas'; src: url('/fonts/Qanelas-Light.otf'); font-weight: 300; font-style: normal; }
@font-face { font-family: 'Qanelas'; src: url('/fonts/Qanelas-LightItalic.otf'); font-weight: 300; font-style: italic; }
@font-face { font-family: 'Qanelas'; src: url('/fonts/Qanelas-Regular.otf'); font-weight: 400; font-style: normal; }
@font-face { font-family: 'Qanelas'; src: url('/fonts/Qanelas-RegularItalic.otf'); font-weight: 400; font-style: italic; }
@font-face { font-family: 'Qanelas'; src: url('/fonts/Qanelas-Medium.otf'); font-weight: 500; font-style: normal; }
@font-face { font-family: 'Qanelas'; src: url('/fonts/Qanelas-MediumItalic.otf'); font-weight: 500; font-style: italic; }
@font-face { font-family: 'Qanelas'; src: url('/fonts/Qanelas-SemiBold.otf'); font-weight: 600; font-style: normal; }
@font-face { font-family: 'Qanelas'; src: url('/fonts/Qanelas-SemiBoldItalic.otf'); font-weight: 600; font-style: italic; }
@font-face { font-family: 'Qanelas'; src: url('/fonts/Qanelas-Bold.otf'); font-weight: 700; font-style: normal; }
@font-face { font-family: 'Qanelas'; src: url('/fonts/Qanelas-BoldItalic.otf'); font-weight: 700; font-style: italic; }
@font-face { font-family: 'Qanelas'; src: url('/fonts/Qanelas-ExtraBold.otf'); font-weight: 800; font-style: normal; }
@font-face { font-family: 'Qanelas'; src: url('/fonts/Qanelas-ExtraBoldItalic.otf'); font-weight: 800; font-style: italic; }
@font-face { font-family: 'Qanelas'; src: url('/fonts/Qanelas-Heavy.otf'); font-weight: 900; font-style: normal; }
@font-face { font-family: 'Qanelas'; src: url('/fonts/Qanelas-HeavyItalic.otf'); font-weight: 900; font-style: italic; }
@font-face { font-family: 'Qanelas'; src: url('/fonts/Qanelas-Black.otf'); font-weight: 950; font-style: normal; }
@font-face { font-family: 'Qanelas'; src: url('/fonts/Qanelas-BlackItalic.otf'); font-weight: 950; font-style: italic; }

:root {
  /* Cores oficiais PersonaTest */
  --primary:       #D73068;   /* rosa oficial da marca */
  --primary-dark:  #AC2653;
  --accent:        #F26624;   /* laranja oficial da marca */
  --accent-dark:   #C2521D;
  --brand-gradient: linear-gradient(135deg, #F26624 0%, #D73068 100%);
  --gold:          #FFCA28;
  --gold-light:    #FFE082;
  --btn-gray:       #A0A0AC;  /* tom do fundo da foto do Prof. Hosannah */
  --btn-gray-light: #B3B2BC;
  --white:         #FFFFFF;
  --light:         #FCF4F6;
  --text:          #1F2937;
  --text-muted:    #6B7280;
  --border:        #F4DCE4;
  --shadow:        0 4px 24px rgba(215,48,104,0.10);
  --shadow-lg:     0 8px 40px rgba(215,48,104,0.20);
  --radius:        12px;
  --radius-lg:     20px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Qanelas', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===========================
   UTILIDADES
   =========================== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 640px;
}

.badge-pill {
  display: inline-block;
  background: rgba(242,102,36,0.1);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .2s;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

.btn-accent {
  background: var(--accent);
  color: var(--white);
}
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-1px); }

.btn-gold {
  background: var(--btn-gray);
  color: #1F2937;
  font-weight: 700;
}
.btn-gold:hover { background: var(--btn-gray-light); transform: translateY(-1px); }

.btn-white {
  background: var(--white);
  color: var(--primary);
}
.btn-white:hover { background: var(--light); transform: translateY(-1px); }

.btn-lg { padding: .9rem 2.2rem; font-size: 1rem; border-radius: 10px; }

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(31,41,55,.06);
  transition: all .3s;
}

.navbar.scrolled {
  box-shadow: var(--shadow);
  padding: .7rem 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--text);
  font-weight: 700;
  font-size: 1.2rem;
}

.navbar-brand img { height: 52px; }

.navbar-brand span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  font-size: .9rem;
  font-weight: 500;
  padding: .5rem .9rem;
  border-radius: 6px;
  transition: all .2s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
  background: var(--light);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.nav-actions .btn-login {
  color: var(--text);
  font-size: .9rem;
  font-weight: 500;
  padding: .5rem 1rem;
  border-radius: 6px;
  transition: all .2s;
}
.nav-actions .btn-login:hover { color: var(--primary); background: var(--light); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  background: var(--white);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 7.5rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3rem;
  align-items: center;
  max-width: 100%;
}

.hero-content { color: var(--text); }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(242,102,36,.1);
  border: 1px solid rgba(242,102,36,.25);
  color: var(--accent-dark);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(1.9rem, 3.25vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: .65rem;
  color: var(--text);
}

.hero-title span { color: var(--accent); }

.hero-subtitle {
  font-size: clamp(2.7rem, 5.4vw, 4.25rem);
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 1rem;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.45rem;
  max-width: 500px;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-actions .btn-outline {
  color: var(--text);
  border-color: var(--border);
}
.hero-actions .btn-outline:hover { background: var(--light); border-color: var(--primary); }

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--border);
}

.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
}

.hero-stat-label {
  font-size: .82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.hero-photo {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-photo::before {
  content: '';
  position: absolute;
  inset: 3% 8% -3% 8%;
  background: var(--brand-gradient);
  border-radius: var(--radius-lg);
  transform: rotate(-3deg);
  z-index: 0;
}

.hero-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-wrap {
  position: relative;
  width: 360px;
}

.hero-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--white);
}

.hero-card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,.7);
}

.tipos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}

.tipo-item {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
}

.tipo-icon { font-size: 1.6rem; margin-bottom: .4rem; }

.tipo-name {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gold-light);
}

.tipo-pct {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: .2rem;
}

.hero-scroll {
  position: absolute;
  bottom: .9rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: var(--text-muted);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

@media (max-height: 820px) and (min-width: 993px) {
  .hero { padding-top: 6.5rem; padding-bottom: 1.75rem; }
  .hero-eyebrow { margin-bottom: .75rem; }
  .hero-title { font-size: clamp(1.75rem, 3vw, 2.45rem); }
  .hero-subtitle { font-size: clamp(2.45rem, 4.9vw, 3.75rem); margin-bottom: .85rem; }
  .hero-desc { margin-bottom: 1.15rem; }
  .hero-stats { margin-top: 1.45rem; padding-top: 1rem; }
  .hero-scroll { display: none; }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===========================
   SEÇÃO: TIPOS PSICOLÓGICOS
   =========================== */
.tipos-section {
  padding: 6rem 0;
  background: var(--light);
}

.tipos-section .center { text-align: center; }

.tipos-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.tipo-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid transparent;
  transition: all .3s;
}

.tipo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.tipo-card.pensamento { border-top-color: #3B82F6; }
.tipo-card.sentimento  { border-top-color: #EF4444; }
.tipo-card.sensacao    { border-top-color: #10B981; }
.tipo-card.intuicao    { border-top-color: #8B5CF6; }

.tipo-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.25rem;
}

.pensamento .tipo-card-icon { background: #EFF6FF; }
.sentimento  .tipo-card-icon { background: #FEF2F2; }
.sensacao    .tipo-card-icon { background: #ECFDF5; }
.intuicao    .tipo-card-icon { background: #F5F3FF; }

.tipo-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .6rem;
}

.tipo-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===========================
   SEÇÃO: SOBRE O PERSONATEST
   =========================== */
.about-section { padding: 6rem 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrap img { width: 100%; height: 420px; object-fit: cover; }

/* Card de exemplo de resultado na seção sobre */
.about-resultado-card {
  background: var(--brand-gradient);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.about-resultado-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,.8);
}

.about-resultado-rodape {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.2);
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  text-align: center;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.about-badge-num {
  font-size: 2rem;
  font-weight: 800;
}

.about-badge-label {
  font-size: .75rem;
  opacity: .85;
}

.about-content { padding-left: 1rem; }

.about-quote {
  background: var(--light);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  color: var(--text);
  font-style: italic;
  font-size: .95rem;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin: 1.5rem 0;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
  color: var(--text-muted);
}

.about-list li::before {
  content: '✦';
  color: var(--accent);
  font-size: .7rem;
  margin-top: .35rem;
  flex-shrink: 0;
}

/* ===========================
   SEÇÃO: PROF. HOSANNAH
   =========================== */
.hosannah-section {
  padding: 6rem 0;
  background: var(--brand-gradient);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.hosannah-section::after {
  content: '"';
  position: absolute;
  right: 5%;
  top: -2rem;
  font-size: 18rem;
  font-family: Georgia, serif;
  color: rgba(255,255,255,.04);
  line-height: 1;
  pointer-events: none;
}

.hosannah-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: center;
}

.hosannah-photo-wrap {
  position: relative;
}

.hosannah-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}

.hosannah-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
}

.hosannah-photo-placeholder {
  display: none;
  width: 100%;
  height: 480px;
  background: linear-gradient(135deg, rgba(217,30,140,.3), rgba(255,255,255,.05));
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(255,255,255,.5);
  font-size: .9rem;
}

.hosannah-photo-placeholder .icon { font-size: 4rem; opacity: .4; }

.hosannah-social {
  display: flex;
  gap: .75rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.hosannah-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  transition: all .2s;
  background: rgba(255,255,255,.07);
}

.hosannah-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.hosannah-content .badge-pill {
  background: rgba(245,158,11,.15);
  color: var(--gold-light);
}

.hosannah-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: .4rem;
}

.hosannah-content .role {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hosannah-content p {
  color: rgba(255,255,255,.75);
  font-size: .97rem;
  margin-bottom: 1rem;
}

.hosannah-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: 1.75rem 0;
}

.credential-tag {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.85);
  padding: .4rem .9rem;
  border-radius: 99px;
  font-size: .78rem;
  font-weight: 500;
}

.hosannah-clients {
  margin-top: 1.5rem;
}

.hosannah-clients-title {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .75rem;
}

.clients-list {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  line-height: 1.8;
}

/* ===========================
   SEÇÃO: PLANOS
   =========================== */
.planos-section {
  padding: 6rem 0;
  background: var(--light);
}

.planos-section .center { text-align: center; }

.planos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.plano-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: all .3s;
  position: relative;
}

.plano-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.plano-card.destaque {
  border-color: var(--accent);
  background: var(--primary);
  color: var(--white);
}

.plano-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .3rem .9rem;
  border-radius: 99px;
  white-space: nowrap;
}

.plano-nome {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .6rem;
}

.destaque .plano-nome { color: var(--gold); }

.plano-preco {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: .4rem;
}

.destaque .plano-preco { color: var(--white); }

.plano-preco sup { font-size: 1rem; vertical-align: super; font-weight: 600; }

.plano-desc {
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.destaque .plano-desc { color: rgba(255,255,255,.65); }

.plano-features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.plano-features li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .88rem;
  color: var(--text-muted);
}

.destaque .plano-features li { color: rgba(255,255,255,.7); }

.plano-features li .check {
  color: #10B981;
  font-weight: 700;
  flex-shrink: 0;
}

.destaque .plano-features li .check { color: var(--gold); }

/* ===========================
   SEÇÃO: CTA FINAL
   =========================== */
.cta-section {
  padding: 5rem 0;
  background: var(--brand-gradient);
  text-align: center;
  color: var(--white);
}

.cta-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  gap: .6rem;
}
.btn-whatsapp:hover { background: #1ebe57; transform: translateY(-1px); }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand { color: var(--white); font-weight: 700; font-size: 1.1rem; margin-bottom: .75rem; }
.footer-brand span { color: var(--gold); }

.footer p { font-size: .88rem; line-height: 1.8; margin-bottom: 1rem; }

.footer h4 {
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: .5rem; }

.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .85rem;
  margin-bottom: .6rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
}

/* ===========================
   FLASH MESSAGES
   =========================== */
.flash {
  padding: .85rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.25rem;
  font-size: .92rem;
  font-weight: 500;
}
.flash-error { background: #FEF2F2; color: #B91C1C; border: 1px solid #FECACA; }
.flash-success { background: #F0FDF4; color: #166534; border: 1px solid #BBF7D0; }

/* ===========================
   AUTH PAGES
   =========================== */
.auth-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary) 0%, #312e81 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.auth-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-lg);
}

.auth-logo {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-logo a {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}
.auth-logo a span { color: var(--accent); }

.auth-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .35rem;
}

.auth-subtitle {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .4rem;
}

.form-control {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  font-family: inherit;
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(124,58,237,.12);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.auth-footer {
  text-align: center;
  margin-top: 1.75rem;
  font-size: .88rem;
  color: var(--text-muted);
}

.auth-footer a { color: var(--accent); font-weight: 600; }
.auth-footer a:hover { text-decoration: underline; }

.auth-divider {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 1.5rem 0;
  color: var(--text-muted);
  font-size: .82rem;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ===========================
   PAINEL (placeholder)
   =========================== */
.painel-page {
  min-height: 100vh;
  background: var(--light);
  padding-top: 5rem;
}

.painel-header {
  background: var(--primary);
  padding: 1.25rem 0;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

.painel-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.painel-brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.painel-brand span { color: var(--gold); }

.painel-user {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
}

.painel-content {
  max-width: 960px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.painel-welcome {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .5rem;
}

.painel-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.painel-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all .3s;
}
.painel-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.painel-card-icon { font-size: 2rem; margin-bottom: .75rem; }
.painel-card h3 { font-size: 1rem; font-weight: 600; color: var(--primary); }
.painel-card p { font-size: .84rem; color: var(--text-muted); margin-top: .3rem; }

/* ===========================
   RESPONSIVO
   =========================== */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; max-width: 100%; }
  .hero-desc { margin: 0 auto 1.45rem; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-photo { margin-top: 2rem; }
  .hero-photo img { max-width: 300px; height: 340px; }

  .about-grid { grid-template-columns: 1fr; }
  .about-content { padding-left: 0; }

  .hosannah-grid { grid-template-columns: 1fr; }
  .hosannah-photo-wrap { max-width: 320px; margin: 0 auto; }

  .tipos-cards { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--primary);
    padding: 5rem 2rem 2rem;
    gap: .25rem;
    z-index: 999;
  }

  .nav-links.open a { font-size: 1.1rem; padding: .75rem 1rem; color: var(--white); }
  .nav-links.open a:hover, .nav-links.open a.active { color: var(--white); background: rgba(255,255,255,.15); }

  .tipos-cards { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
}
