/* ========================================
   Jessica Costa PSI - Estilos Principais
   ======================================== */

/* === Reset & Base === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #F5A623;
  --primary-light: #FFF8E7;
  --primary-dark: #D4891A;
  --accent: #E84B8A;
  --text: #333333;
  --text-light: #666666;
  --white: #FFFFFF;
  --card-bg: #FFFFFF;
  --border: #F5C518;
  --footer-bg: #4A3728;
  --footer-text: #E8DDD3;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-pill: 50px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul { list-style: none; }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

/* === Tipografia === */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; margin-bottom: 16px; }
h3 { font-size: 1.4rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; }

.section-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 700px;
  margin-bottom: 48px;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* === Botões === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* === Header / Navegação === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  transition: all var(--transition);
  padding: 16px 0;
}

.header.sticky {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
}

.logo .bee-icon {
  font-size: 1.8rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light);
  position: relative;
  padding: 4px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary);
}

.nav-menu a.active {
  background: var(--primary-light);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  color: var(--primary);
  font-weight: 600;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--text);
  border-radius: 3px;
  transition: var(--transition);
}

/* === Hero Section === */
.hero {
  background: var(--primary-light);
  padding-top: 120px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 650px;
}

.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;
}

.hero h1 .highlight {
  color: var(--accent);
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-badges .badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.hero-badges .badge-item .badge-icon {
  font-size: 1.2rem;
}

.hero-image {
  position: absolute;
  right: 5%;
  bottom: 10%;
  max-width: 350px;
  z-index: 1;
}

/* === Abelhas Animadas === */
.bee {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
  scale: -1 1;
}

.bee-1 { top: 15%; left: 30%; animation: float-bee-1 12s ease-in-out infinite; font-size: 1.2rem; opacity: 0.5; }
.bee-2 { top: 25%; left: 55%; animation: float-bee-2 15s ease-in-out infinite; font-size: 1.8rem; opacity: 0.7; }
.bee-3 { top: 45%; left: 40%; animation: float-bee-3 18s ease-in-out infinite; font-size: 1rem; opacity: 0.4; }
.bee-4 { top: 60%; left: 65%; animation: float-bee-4 14s ease-in-out infinite; font-size: 1.5rem; opacity: 0.6; }
.bee-5 { top: 35%; left: 75%; animation: float-bee-5 16s ease-in-out infinite; font-size: 1.3rem; opacity: 0.5; }
.bee-6 { top: 70%; left: 20%; animation: float-bee-6 20s ease-in-out infinite; font-size: 1.1rem; opacity: 0.4; }

@keyframes float-bee-1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(-60px, -30px) rotate(10deg); }
  50% { transform: translate(-120px, 15px) rotate(-5deg); }
  75% { transform: translate(-40px, -20px) rotate(8deg); }
}

@keyframes float-bee-2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(-50px, 25px) rotate(-8deg); }
  50% { transform: translate(-100px, -20px) rotate(12deg); }
  75% { transform: translate(-30px, 10px) rotate(-3deg); }
}

@keyframes float-bee-3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-80px, -40px) rotate(15deg); }
  66% { transform: translate(-40px, 20px) rotate(-10deg); }
}

@keyframes float-bee-4 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-70px, -35px) rotate(-12deg); }
  50% { transform: translate(-30px, 20px) rotate(6deg); }
  75% { transform: translate(-20px, -15px) rotate(-4deg); }
}

@keyframes float-bee-5 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-90px, 30px) rotate(8deg); }
}

@keyframes float-bee-6 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(50px, 25px) rotate(5deg); }
  50% { transform: translate(100px, -10px) rotate(-8deg); }
  75% { transform: translate(30px, 15px) rotate(3deg); }
}

/* === Cards Grid === */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.cards-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid #f0f0f0;
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.card h3 {
  color: var(--text);
  font-size: 1.2rem;
}

.card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* === Especialidades === */
.especialidades {
  background: var(--white);
}

.metodologias {
  margin-top: 48px;
}

.metodologias h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.metodologias-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.metodologia-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.metodologia-badge .check {
  color: var(--primary);
  font-weight: 700;
}

/* === Biografia (resumo index) === */
.sobre {
  background: var(--primary-light);
}

.sobre-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.sobre-text blockquote {
  font-style: italic;
  color: var(--text-light);
  border-left: 4px solid var(--primary);
  padding-left: 20px;
  margin: 24px 0;
  font-size: 1.05rem;
}

.sobre-text cite {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-top: 8px;
  font-style: normal;
}

.diferenciais {
  display: flex;
  gap: 20px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.diferencial-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow);
}

.diferencial-badge .icon {
  font-size: 1.3rem;
}

.competencias {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 16px 0 24px;
}

.competencia-tag {
  background: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  color: var(--text-light);
  border: 1px solid #e0e0e0;
}

.foto-placeholder {
  background: #e8e0d8;
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 1rem;
}

/* === Depoimentos === */
.depoimentos {
  background: var(--white);
}

.depoimento-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid #f0f0f0;
}

.depoimento-card p {
  font-style: italic;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.depoimento-author {
  font-weight: 600;
  color: var(--text);
  font-size: 0.9rem;
}

.depoimento-detail {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 500;
}

.depoimento-stars {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

/* === Blog === */
.blog {
  background: var(--primary-light);
}

.blog-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.blog-card-img {
  background: linear-gradient(135deg, var(--primary-light), #fce4b8);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.blog-card-content {
  padding: 24px;
}

.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.blog-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.blog-card .read-more {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.blog-card .read-more:hover {
  gap: 8px;
}

/* === Contato === */
.contato {
  background: var(--primary-light);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contato-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contato-info-item .icon {
  font-size: 1.5rem;
  color: var(--primary);
  min-width: 32px;
  text-align: center;
}

.contato-info-item h4 {
  margin-bottom: 4px;
}

.contato-info-item p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.locais-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}

.local-card {
  background: var(--card-bg);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.local-card .icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.local-card h4 {
  margin-bottom: 8px;
}

.local-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.local-card .city {
  font-weight: 600;
  color: var(--text);
}

/* === Formulário === */
.form-contato {
  background: var(--card-bg);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-success {
  display: none;
  background: #d4edda;
  color: #155724;
  padding: 16px;
  border-radius: var(--radius-sm);
  text-align: center;
  margin-top: 16px;
}

.form-success.show {
  display: block;
}

/* === CTA Final === */
.cta-final {
  background: var(--white);
  text-align: center;
  padding: 80px 0;
}

.cta-final h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.cta-final p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* === Footer === */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--footer-text);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer h4 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 1rem;
}

.footer-links a {
  display: block;
  color: var(--footer-text);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact p {
  color: var(--footer-text);
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--footer-text);
  font-size: 1.2rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === WhatsApp Flutuante === */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* === Botão Voltar ao Topo === */
.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* === Mapa === */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 24px;
  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* === Biografia Page === */
.bio-hero {
  background: var(--primary-light);
  padding-top: 120px;
  padding-bottom: 60px;
}

.bio-quote {
  font-size: 1.2rem;
  font-style: italic;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
  color: var(--text);
}

.bio-quote strong {
  color: var(--text);
}

.bio-quote cite {
  display: block;
  margin-top: 12px;
  font-weight: 600;
  font-style: normal;
  color: var(--primary);
}

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-left: 56px;
  margin-bottom: 32px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--primary);
}

.timeline-item.current::before {
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent);
}

.timeline-item h4 {
  margin-bottom: 4px;
}

.timeline-item .institution {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.timeline-item p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 4px;
}

.missao-visao {
  max-width: 800px;
  margin: 0 auto;
}

.missao-visao h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.missao-visao p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* === Filosofia Cards === */
.filosofia-intro {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.filosofia-intro p {
  font-size: 1.1rem;
  color: var(--text-light);
}

.filosofia-intro strong {
  color: var(--text);
}

/* === Blog Card Links === */
.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card-link:hover .blog-card {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

/* === Artigo Page === */
.artigo-categoria {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: var(--text);
  padding: 6px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.artigo-meta {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 12px;
}

.artigo-conteudo {
  padding: 60px 0 40px;
}

.container-artigo {
  max-width: 780px;
}

.artigo-destaque {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text);
  border-left: 4px solid var(--primary);
  padding-left: 20px;
  margin-bottom: 40px;
  font-weight: 400;
}

.artigo-conteudo h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--text);
}

.artigo-conteudo h3 {
  font-size: 1.15rem;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--text);
}

.artigo-conteudo p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1rem;
}

.artigo-conteudo ul {
  margin-bottom: 20px;
  padding-left: 24px;
}

.artigo-conteudo li {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 8px;
  font-size: 1rem;
}

.artigo-conteudo li strong {
  color: var(--text);
}

.artigo-conteudo blockquote {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  padding: 24px 28px;
  margin: 32px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
}

.artigo-conteudo blockquote cite {
  display: block;
  margin-top: 12px;
  font-weight: 600;
  font-style: normal;
  color: var(--primary);
  font-size: 0.9rem;
}

.artigo-autor {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--primary-light);
  border-radius: var(--radius);
  margin-top: 48px;
}

.artigo-autor-foto {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), #fce4b8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.artigo-autor strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
}

.artigo-autor p {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* === Responsivo === */
@media (max-width: 1024px) {
  h1 { font-size: 2.4rem; }
  .hero h1 { font-size: 2.6rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.8rem; }
  .hero h1 { font-size: 2.2rem; }
  .hero { min-height: auto; padding-top: 100px; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 20px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transition: right var(--transition);
    z-index: 1001;
  }

  .nav-menu.open {
    right: 0;
  }

  .menu-toggle {
    display: flex;
    z-index: 1002;
  }

  .cards-grid,
  .cards-grid-3 {
    grid-template-columns: 1fr;
  }

  .sobre-content {
    grid-template-columns: 1fr;
  }

  .contato-grid {
    grid-template-columns: 1fr;
  }

  .locais-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-image {
    display: none;
  }

  .cta-final h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 1.8rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .diferenciais { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
}

/* Rodape: linha legal (LGPD / DPO) */
.footer-legal {
  margin-top: 8px;
  font-size: 0.85rem;
}
.footer-legal a {
  color: inherit;
  text-decoration: underline;
}
.footer-legal a:hover {
  opacity: 0.8;
}

/* === Tubarão x Abelhinha === */
/* Metáfora terapêutica autoral da Jessica Costa (biografia.html). */
.tubarao-abelhinha {
  background: linear-gradient(135deg, var(--primary-light), #fce4b8);
}

.tubarao-abelhinha h2 {
  color: var(--text);
}

.tubarao-abelhinha h2 .vs {
  display: inline-block;
  margin: 0 8px;
  color: var(--accent);
  font-weight: 800;
  font-style: italic;
  transform: rotate(-4deg);
}

.metafora-intro {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
}

.metafora-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.metafora-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.metafora-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.metafora-card--tubarao {
  border-top: 4px solid #5B7C99;
}

.metafora-card--abelhinha {
  border-top: 4px solid var(--primary);
}

.metafora-icon {
  font-size: 2.6rem;
  line-height: 1;
  margin-bottom: 12px;
}

.metafora-card h3 {
  margin-bottom: 8px;
  color: var(--text);
}

.metafora-card--tubarao h3 {
  color: #2F4A66;
}

.metafora-card--abelhinha h3 {
  color: var(--primary-dark);
}

.metafora-lede {
  font-size: 1.05rem;
  margin-bottom: 16px;
  color: var(--text);
}

.metafora-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.metafora-list li {
  position: relative;
  padding: 8px 0 8px 26px;
  color: var(--text-light);
  line-height: 1.6;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.metafora-list li:last-child {
  border-bottom: none;
}

.metafora-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: 8px;
  font-weight: 700;
}

.metafora-card--tubarao .metafora-list li::before {
  color: #5B7C99;
}

.metafora-card--abelhinha .metafora-list li::before {
  color: var(--primary);
}

.metafora-nota {
  margin-top: 32px;
  background: var(--white);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text);
}

@media (max-width: 768px) {
  .metafora-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================== */
/* LEAD CAPTURE FORM + STICKY WHATSAPP            */
/* ============================================== */

.lead-cta-section {
  padding: 60px 24px;
  background: linear-gradient(135deg, #FFD93D 0%, #F5A623 100%);
  color: #2d1900;
  text-align: center;
}

.lead-cta-section h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: #2d1900;
}

.lead-cta-section p.lcta-sub {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 24px;
}

.lcta-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 auto;
  max-width: 540px;
  text-align: left;
}

.lcta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.lcta-input,
.lcta-select {
  padding: 14px 16px;
  border: 2px solid rgba(45, 25, 0, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.85);
  color: #2d1900;
  font-size: 0.98rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.lcta-input::placeholder {
  color: rgba(45, 25, 0, 0.5);
}

.lcta-input:focus,
.lcta-select:focus {
  border-color: #2d1900;
  background: white;
}

.lcta-btn {
  padding: 14px 22px;
  background: #25d366;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s, box-shadow 0.2s;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.lcta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.lcta-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.lcta-alt {
  display: block;
  text-align: center;
  margin-top: 12px;
  color: rgba(45, 25, 0, 0.7);
  font-size: 0.85rem;
  text-decoration: none;
}

.lcta-alt:hover {
  color: #2d1900;
}

.lcta-msg {
  text-align: center;
  padding: 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 12px;
}

.lcta-msg--success {
  background: rgba(22, 163, 106, 0.15);
  color: #166534;
}

.lcta-msg--error {
  background: rgba(220, 38, 38, 0.15);
  color: #991b1b;
}

.lcta-disclaimer {
  font-size: 0.78rem;
  color: rgba(45, 25, 0, 0.65);
  text-align: center;
  margin-top: 8px;
  line-height: 1.5;
}

.lcta-disclaimer a {
  color: rgba(45, 25, 0, 0.85);
  text-decoration: underline;
}

@media (max-width: 600px) {
  .lcta-row {
    grid-template-columns: 1fr;
  }
}

/* Sticky WhatsApp button — todas as paginas */
.sticky-wa {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background: #25d366;
  color: white !important;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.sticky-wa:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.4);
}

.sticky-wa-icon {
  font-size: 1.3rem;
  line-height: 1;
}

@media (max-width: 480px) {
  .sticky-wa {
    bottom: 16px;
    right: 16px;
    padding: 12px 18px;
    font-size: 0.88rem;
  }
}

/* Mid-article CTA box */
.mid-cta {
  margin: 32px 0;
  padding: 24px 28px;
  background: linear-gradient(135deg, #fff8e1 0%, #ffe9a8 100%);
  border-left: 6px solid #F5A623;
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mid-cta-text {
  flex: 1;
  min-width: 240px;
}

.mid-cta-text strong {
  display: block;
  font-size: 1.05rem;
  color: #2d1900;
  margin-bottom: 4px;
}

.mid-cta-text small {
  color: rgba(45, 25, 0, 0.7);
  font-size: 0.9rem;
}

.mid-cta a.btn {
  flex-shrink: 0;
}
