/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #222;
  background: #fff;
  overflow-x: hidden;
}

/* ===== VARIÁVEIS ===== */
:root {
  --roxo: #370C87;
  --roxo-hover: #8F63B6;
  --branco: #FFFFFF;
  --preto: #000000;
  --raleway: 'Raleway', sans-serif;
}

/* ===== TIPOGRAFIA ESPECIAL ===== */
@font-face {
  font-family: 'PalaceScript';
  src: local('Palace Script MT'), local('PalaceScriptMT');
  font-display: swap;
}
@font-face {
  font-family: 'Lifelogo';
  src: url('assets/fonts/Lifelogo-Easy.ttf') format('truetype');
  font-display: swap;
}

/* ===== BOTÃO PADRÃO ===== */
.btn-roxo {
  display: inline-block;
  background: var(--roxo);
  color: var(--branco);
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 12px 22px;
  border: 2px solid var(--branco);
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  white-space: nowrap;
  border-radius: 50px;
}
.btn-roxo:hover { background: var(--roxo-hover); }

/* ===== BOTÃO AVALIACOES ===== */
.btn-roxo-2 {
  display: block;
  background: var(--roxo);
  color: var(--branco);
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 12px 22px;
  border: 2px solid var(--branco);
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  white-space: nowrap;
  border-radius: 50px;
  width: fit-content;
  margin: 0 auto;
}
.btn-roxo-2:hover { background: var(--roxo-hover); }

/* ===== HEADER / MENU ===== */
#header {
  background: var(--roxo);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 80px;
}

/* LOGO */
.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-nome {
  font-family: 'PalaceScript', 'Palatino Linotype', cursive;
  font-size: clamp(20px, 3vw, 32px);
  color: var(--branco);
  font-weight: 600;
  letter-spacing: 0.5px;
}
.logo-titulo {
  font-family: 'ITC Avant Garde Gothic', 'Century Gothic', 'Trebuchet MS', sans-serif;
  font-size: clamp(8px, 1vw, 11px);
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* NAV */
nav { display: flex; align-items: center; gap: 6px; }
nav a {
  color: var(--branco);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 12px;
  letter-spacing: 0.3px;
  transition: color 0.2s, background 0.2s;
  border-radius: 2px;
}
nav a:hover { background: var(--roxo-hover); }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--branco);
  transition: all 0.3s;
}

/* ===== HERO / BANNER ===== */
#hero {
  background-color: #FFFFFF;
  min-height: 520px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: #FFFFFF;
  opacity: 0.15;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content h1 {
  font-family: 'PalaceScript', 'Palatino Linotype', cursive;
  font-size: clamp(60px, 10vw, 165px);
  color: #370C87;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 12px;
}
.hero-content h2 {
  font-family: 'ITC Avant Garde Gothic', 'Century Gothic', sans-serif;
  font-size: clamp(14px, 2.5vw, 35px);
  color: #370C87;
  font-weight: 510;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-content p {
  color: #370C87;
  font-size: clamp(15px, 1.5vw, 20px);
  margin-bottom: 32px;
  max-width: 100%;
  line-height: 1.5;
}
.hero-foto {
  display: flex;
  justify-content: center;
}
.hero-foto img {
  width: 360px;
  max-width: 100%;
  border-radius: 4px;
  object-fit: cover;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.3));
}

/* ===== FAIXA ESTRELAS ===== */
#faixa-estrelas {
  background: var(--roxo);
  padding: 40px 0;
  overflow: hidden;
}
.faixa-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.faixa-texto {
  color: var(--branco);
  font-family: 'Lifelogo', sans-serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: capitalize;
}
.faixa-estrelas-img {
  height: clamp(50px, 8vw, 100px);
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ===== SEÇÃO SOBRE MIM ===== */
#sobre {
  padding: 80px 40px;
  background: #faf8fd;
  scroll-margin-top: 50px;
}
.sobre-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 50px;
  align-items: start;
}
.sobre-texto h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--roxo);
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.1;
}
.sobre-texto .subtitulo {
  color: var(--roxo-hover);
  font-size: clamp(13px, 1.5vw, 20px);
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.sobre-texto p {
  color: #370C87;
  margin-bottom: 16px;
  line-height: 1.6;
  font-size: clamp(13px, 1.2vw, 16px);
}

/* LOGOS SCROLL */
.logos-scroll-wrapper {
  margin-top: 36px;
  overflow: hidden;
  position: relative;
}
.logos-scroll-wrapper::before,
.logos-scroll-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 40px;
  z-index: 2;
}
.logos-scroll-wrapper::before { left: 0; background: linear-gradient(to right, #faf8fd, transparent); }
.logos-scroll-wrapper::after  { right: 0; background: linear-gradient(to left, #faf8fd, transparent); }
.logos-track {
  display: flex;
  gap: 32px;
  align-items: center;
  animation: scroll-logos 8s linear infinite;
  width: max-content;
}
.logos-track:hover { animation-play-state: paused; }
@keyframes scroll-logos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logos-track img {
  height: 40px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.3s, opacity 0.3s;
}
.logos-track img:hover { filter: none; opacity: 1; }

/* FOTO SOBRE */
.sobre-foto {
  overflow: hidden;
  border-radius: 8px;
}
.sobre-foto img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(55,12,135,0.15);
}

/* ===== SEÇÃO DEPOIMENTOS ===== */
#depoimentos {
  padding: 80px 30px;
  background: var(--roxo);
  scroll-margin-top: 50px;
}
.depoimentos-inner { max-width: 1200px; margin: 0 auto; }
.depoimentos-inner > h2 {
  text-align: center;
  color: var(--branco);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 8px;
}
.depoimentos-inner > p {
  text-align: center;
  color: rgba(255,255,255,0.75);
  margin-bottom: 48px;
}
.google-reviews-notice {
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  margin-top: 24px;
}

/* ===== CARROSSEL REVIEWS ===== */
.carrossel-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}
.carrossel-track {
  flex: 1;
  position: relative;
  min-height: 320px;
}
.review-card {
  display: none;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  animation: fadeIn 0.4s ease;
}
.review-card.active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.review-foto {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.4);
  margin: 0 auto 16px;
  display: block;
}
.review-stars {
  color: #FFD700;
  font-size: 22px;
  margin-bottom: 16px;
}
.review-text {
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.review-autor {
  color: var(--branco);
  font-weight: 700;
  font-size: 14px;
}
.review-source {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  margin-top: 4px;
}
.carrossel-btn {
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}
.carrossel-btn:hover { background: rgba(255,255,255,0.3); }
.carrossel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.carrossel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.2s;
}
.carrossel-dot.active { background: #fff; }

/* ===== SEÇÃO INSTAGRAM ===== */
#instagram {
  padding: 80px 20px;
  background: #fff;
}
.instagram-inner { max-width: 1200px; margin: 0 auto; }
.instagram-inner > h2 {
  text-align: center;
  color: var(--roxo);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 8px;
}
.instagram-inner > p {
  text-align: center;
  color: #888;
  margin-bottom: 40px;
}
.instagram-inner > p a {
  color: var(--roxo);
  font-weight: 700;
  text-decoration: none;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
.insta-item {
  aspect-ratio: 1;
  overflow: hidden;
  background: #f0ebfa;
  border-radius: 4px;
}
.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.insta-item:hover img { transform: scale(1.05); }
.insta-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f0ebfa;
  color: var(--roxo-hover);
  font-size: 28px;
}
.insta-placeholder span { font-size: 11px; color: #aaa; margin-top: 6px; }

/* ===== SEÇÃO ATENDIMENTOS ===== */
#atendimentos {
  padding: 80px 20px;
  background: #faf8fd;
  scroll-margin-top: 80px;
}
.atendimentos-inner { max-width: 1400px; margin: 0 auto; }
.atendimentos-inner > h2 {
  text-align: center;
  color: var(--roxo);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 8px;
}
.atendimentos-inner > p {
  text-align: center;
  color: #666666;
  margin-bottom: 48px;
}
.atendimentos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.atend-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(55,12,135,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.atend-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(55,12,135,0.15);
}
.atend-card h3 {
  color: var(--roxo);
  font-size: 12px;
  font-weight: 700;
  padding: 20px 16px 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.atend-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.atend-card p {
  color: #5e0c64;
  font-size: 14px;
  line-height: 1.7;
  padding: 16px 20px 20px;
}
.atend-card .btn-atend {
  display: block;
  background: var(--roxo);
  color: var(--branco);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  padding: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.25s;
  margin-top: auto;
}
.atend-card .btn-atend:hover { background: var(--roxo-hover); }

/* ===== SEÇÃO LIVROS & CURSOS ===== */
#livros {
  padding: 80px 20px;
  background: var(--roxo);
}
.livros-inner { max-width: 1200px; margin: 0 auto; }
.livros-inner > h2 {
  text-align: center;
  color: var(--branco);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 8px;
}
.livros-inner > p {
  text-align: center;
  color: #f2c4f5;
  margin-bottom: 48px;
}
.livros-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.livro-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}
.livro-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.livro-card h3 {
  font-family: var(--raleway);
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.4;
}
.livro-card p {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.5;
}
.btn-livro {
  display: inline-block;
  font-family: var(--raleway);
  font-size: 12px;
  font-weight: 700;
  padding: 10px 18px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 30px;
  transition: background 0.25s, color 0.25s;
  color: #fff;
  width: 200px;
}
.livro-1 .btn-livro { background: #E46EC0; margin-bottom: 15px; }
.livro-1 .btn-livro:hover { background: #8F60E6; }
.livro-2 .btn-livro { background: #6EC1E4; margin-bottom: 15px; }
.livro-2 .btn-livro:hover { background: #8F60E6; }
.livro-3 .btn-livro { background: #F7D459; color: #c23d19; margin-bottom: 15px; }
.livro-3 .btn-livro:hover { background: #8F60E6; color: #fff; }
.livro-4 .btn-livro { background: #AA5877; margin-bottom: 15px; }
.livro-4 .btn-livro:hover { background: #8F60E6; }
.livro-5 .btn-livro { background: #FF116B; margin-bottom: 15px; }
.livro-5 .btn-livro:hover { background: #8F60E6; }

/* ===== SEÇÃO CONTATO ===== */
#contato {
  scroll-margin-top: 80px;
  padding: 40px 20px;
  background: #faf8fd;
}
.contato-inner { max-width: 1200px; margin: 0 auto; }
.contato-inner > h2 {
  text-align: center;
  color: var(--roxo);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 16px;
}
.contato-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(55,12,135,0.1);
  display: grid;
  grid-template-columns: 420px 1fr;
  margin-bottom: 40px;
}
.contato-foto {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.contato-foto img {
  width: 280px;
  height: 280px;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 50%;
  border: 8px solid var(--roxo);
}
.contato-info {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.contato-info h3 {
  color: var(--roxo);
  font-size: clamp(18px, 2vw, 32px);
  font-weight: 700;
  line-height: 1.3;
}
.contato-info p {
  color: #555;
  line-height: 1.7;
}
.contato-telefone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--roxo);
  text-decoration: none;
}
.contato-telefone:hover { color: var(--roxo-hover); }
.mapa-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(55,12,135,0.08);
}
.mapa-wrapper iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* ===== SEÇÃO PRÉ-RODAPÉ (CTA) ===== */
#pre-footer {
  background: var(--roxo);
  padding: 60px 20px;
  text-align: center;
}
.pre-footer-inner { max-width: 700px; margin: 0 auto; }
.pre-footer-logo {
  width: 70px;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}
.pre-footer-inner h2 {
  color: var(--branco);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}
.pre-footer-inner p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  font-size: 16px;
}

/* ===== RODAPÉ ===== */
footer {
  background: var(--preto);
  padding: 48px 20px 24px;
  color: rgba(255,255,255,0.7);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.footer-logo img { width: 44px; filter: brightness(0) invert(1); }
.footer-logo-text .logo-nome { font-size: 20px; }
.footer-contatos p { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 6px; }
.footer-contatos a { color: rgba(255,255,255,0.8); text-decoration: none; }
.footer-contatos a:hover { color: var(--branco); }
.footer-nav { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-nav a:hover { color: var(--branco); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-links { display: flex; gap: 16px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-links a:hover { color: rgba(255,255,255,0.7); }

/* ===== BOTÃO WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse-wpp 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
  animation: none;
}
.whatsapp-float svg { width: 32px; height: 32px; fill: #fff; }
@keyframes pulse-wpp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 30px rgba(37,211,102,0.65); }
}

/* ===== COOKIES / LGPD ===== */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1a1a1a;
  color: rgba(255,255,255,0.85);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  z-index: 9998;
  font-size: 13px;
  border-top: 2px solid var(--roxo);
  transform: translateY(0);
  transition: transform 0.4s ease;
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner a { color: #b89eff; text-decoration: underline; }
.cookie-btn-aceitar {
  background: var(--roxo);
  color: #fff;
  border: none;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.cookie-btn-aceitar:hover { background: var(--roxo-hover); }

/* ===== ANIMATE ON SCROLL ===== */
.aos { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.aos.visible { opacity: 1; transform: translateY(0); }

/* ===== TAGS DE SEÇÃO ===== */
.section-tag {
  display: inline-block;
  background: #f0ebfa;
  color: var(--roxo);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* ===== RESPONSIVO TABLET (max 1024px) ===== */
@media (max-width: 1024px) {
  .sobre-inner { grid-template-columns: 1fr 400px; }
  .atendimentos-grid { grid-template-columns: repeat(3, 1fr); }
  .livros-grid { grid-template-columns: repeat(3, 1fr); }
  .contato-card { grid-template-columns: 360px 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* ===== RESPONSIVO MOBILE (max 900px) ===== */
@media (max-width: 900px) {
  /* HEADER */
  .header-inner { height: 70px; }
  .logo-img { width: 42px; height: 42px; }
  nav { display: none; flex-direction: column; gap: 0; }
  nav.open {
    display: flex;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--roxo);
    padding: 12px 0 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    z-index: 999;
  }
  nav.open a { padding: 14px 24px; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 15px; }
  .hamburger { display: flex; }

  /* HERO */
  .hero-inner { grid-template-columns: 1fr; padding: 40px 20px; }
  .hero-foto { display: none; }
  .hero-content { text-align: center; }
  .hero-content p { max-width: 100%; }

  /* FAIXA */
  .faixa-inner { gap: 16px; }
  .faixa-texto { letter-spacing: 2px; }

  /* SOBRE */
  #sobre { padding: 60px 20px; }
  .sobre-inner { grid-template-columns: 1fr; gap: 30px; }
  .sobre-foto { max-width: 400px; margin: 0 auto; }

  /* DEPOIMENTOS */
  .carrossel-btn { width: 36px; height: 36px; font-size: 16px; }
  .carrossel-track { min-height: 380px; }
  .review-card { padding: 24px 16px; }

  /* INSTAGRAM */
  .insta-grid { grid-template-columns: repeat(3, 1fr); }

  /* ATENDIMENTOS */
  .atendimentos-grid { grid-template-columns: repeat(2, 1fr); }

  /* LIVROS */
  .livros-grid { grid-template-columns: repeat(2, 1fr); }

  /* CONTATO */
  .contato-card { grid-template-columns: 1fr; }
  .contato-foto { display: none; }
  .contato-info { padding: 32px 24px; }
  .contato-info h3 { font-size: 22px; }

  /* RODAPÉ */
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

/* ===== RESPONSIVO MOBILE PEQUENO (max 600px) ===== */
@media (max-width: 600px) {
  /* HERO */
  .hero-content h1 { font-size: 52px; }
  .hero-content h2 { font-size: 13px; }
  .btn-roxo { font-size: 11px; padding: 12px 16px; white-space: normal; text-align: center; }

  /* FAIXA */
  #faixa-estrelas { padding: 28px 0; }
  .faixa-estrelas-img { height: 40px; }

  /* SOBRE */
  .sobre-texto h2 { font-size: 28px; }
  .sobre-texto .subtitulo { font-size: 12px; }

  /* ATENDIMENTOS */
  .atendimentos-grid { grid-template-columns: 1fr; }

  /* LIVROS */
  .livros-grid { grid-template-columns: 1fr; }
  .btn-livro { width: 100%; }

  /* INSTAGRAM */
  .insta-grid { grid-template-columns: repeat(2, 1fr); }

  /* CARROSSEL */
  .carrossel-wrapper { gap: 8px; }
  .carrossel-btn { width: 32px; height: 32px; font-size: 14px; }

  /* CONTATO */
  .contato-info { padding: 24px 16px; }
  .contato-telefone { font-size: 17px; }

  /* PRÉ RODAPÉ */
  #pre-footer { padding: 40px 16px; }
  .pre-footer-inner h2 { font-size: 20px; }

  /* RODAPÉ */
  footer { padding: 36px 16px 20px; }

  /* WPP FLOAT */
  .whatsapp-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }
  .whatsapp-float svg { width: 26px; height: 26px; }

  /* COOKIE */
  #cookie-banner { flex-direction: column; text-align: center; }
}