/* ==========================================
   CARLOS ROSA — ADVOGADO CRIMINALISTA
   Paleta: Dark #1A1A1A | Dourado #C4A355 | Crimson #8B1A1A
   ========================================== */

:root {
  --gold:        #C4A355;
  --gold-light:  #D4B870;
  --gold-dark:   #A8882A;
  --gold-bg:     rgba(196,163,85,0.08);
  --crimson:     #8B1A1A;
  --crimson-light: #A52525;
  --crimson-bg:  rgba(139,26,26,0.12);
  --dark:        #1A1A1A;
  --dark-2:      #242424;
  --dark-3:      #2D2D2D;
  --white:       #FFFFFF;
  --off-white:   #FAFAF8;
  --gray:        #888888;
  --gray-muted:  rgba(255,255,255,0.45);

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Lato', system-ui, sans-serif;

  --container:   1200px;
  --radius:      4px;
  --transition:  0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  background: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* CONTAINER */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================
   TIPOGRAFIA COMPARTILHADA
   ========================================== */

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-sub {
  font-size: 1rem;
  color: var(--gray-muted);
  margin-top: 12px;
  font-weight: 300;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.tag--light {
  color: rgba(196,163,85,0.9);
  border-color: rgba(196,163,85,0.4);
}

/* BOTÕES */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn--whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 32px rgba(37,211,102,0.25);
}
.btn--whatsapp:hover {
  background: #1ebe5b;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.35);
}
.btn--whatsapp svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn--whatsapp span { display: flex; flex-direction: column; gap: 1px; }
.btn--whatsapp .cta-label {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  opacity: 0.85;
  text-transform: uppercase;
}
.btn--whatsapp .cta-action {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: none;
}
.btn--lg { padding: 20px 40px; font-size: 0.9rem; }
.btn--lg svg { width: 24px; height: 24px; }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(196,163,85,0.5);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn--outline-gold svg { width: 18px; height: 18px; }
.btn--outline-gold:hover {
  border-color: var(--gold);
  background: var(--gold-bg);
  transform: translateY(-2px);
}

/* ==========================================
   HEADER / NAV
   ========================================== */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26,26,26,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,163,85,0.12);
  transition: var(--transition);
}
.header.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
  border-bottom-color: rgba(196,163,85,0.2);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-wrap { display: flex; flex-direction: column; gap: 2px; }
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1;
}
.logo-role {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}
.nav__logo:hover .logo-name { color: var(--gold-light); }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  position: relative;
  transition: var(--transition);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }

.nav__cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 9px 20px;
  border-radius: var(--radius);
  letter-spacing: 0.1em;
  font-weight: 700;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================
   HERO — IMERSIVO
   ========================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 72px;
  overflow: hidden;
}


/* Balança decorativa */
.hero__symbol {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: min(420px, 38vw);
  color: rgba(196,163,85,0.07);
  pointer-events: none;
  z-index: 1;
}
.hero__symbol svg {
  width: 100%;
  height: auto;
  display: block;
}

.hero__center {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Moldura com cantos em vermelho */
/* Moldura — imagem de fundo + overlay */
.hero__frame {
  width: 100%;
  text-align: center;
  padding: 64px 72px;
  border: 1px solid rgba(139,26,26,0.55);
  position: relative;
  background-image: url('assets/images/hero2.jpg');
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}
/* Overlay escuro dentro da moldura */
.hero__frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  z-index: 0;
}
/* Todo o conteúdo da moldura acima do overlay */
.hero__frame-inner {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--crimson-light);
  font-weight: 700;
  margin-bottom: 40px;
  display: block;
}

.hero__frase {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1.45;
  margin-bottom: 40px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.9), 0 0 40px rgba(0,0,0,0.8);
}
.hero__frase em {
  font-style: normal;
  color: var(--gold);
  text-shadow: 0 2px 20px rgba(0,0,0,1), 0 0 48px rgba(0,0,0,0.9);
}

.hero__divider {
  width: 48px;
  height: 1px;
  background: var(--crimson);
  margin: 0 auto 36px;
}

.hero__id {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 44px;
}
.hero__name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.hero__role {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}
.hero__oab {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(196,163,85,0.5);
  font-weight: 400;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 1;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero__scroll svg { width: 18px; height: 18px; }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ==========================================
   SOBRE
   ========================================== */

.sobre {
  padding: 120px 0;
  background: var(--dark-2);
}

.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 96px;
  align-items: center;
}

.sobre__visual { position: relative; }

.sobre__img-wrap {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 2px solid rgba(196,163,85,0.5);
  box-shadow: 20px 20px 0 rgba(196,163,85,0.12), 20px 20px 0 1px rgba(196,163,85,0.3);
}
.sobre__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}
.sobre__img-wrap:hover img { transform: scale(1.03); }

.sobre__badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--gold);
  color: var(--dark);
  width: 96px; height: 96px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 24px rgba(196,163,85,0.35);
}
.sobre__badge span {
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(26,26,26,0.7);
}
.sobre__badge strong {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
}

.sobre__content p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
}

.sobre__atendimento {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  padding: 20px 24px;
  background: var(--gold-bg);
  border: 1px solid rgba(196,163,85,0.2);
  border-radius: var(--radius);
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.sobre__atendimento svg {
  width: 22px; height: 22px;
  flex-shrink: 0;
  color: var(--gold);
}

/* ==========================================
   ÁREAS DE ATUAÇÃO
   ========================================== */

.atuacao {
  padding: 120px 0;
  background: var(--dark);
}

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

.card {
  padding: 52px 40px;
  background: var(--dark-2);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.card:hover::before { width: 100%; }
.card:hover { background: var(--dark-3); }

.card--featured {
  background: var(--crimson);
  color: var(--white);
}
.card--featured::before { background: var(--gold); }
.card--featured:hover { background: var(--crimson-light); }

.card__icon {
  width: 44px; height: 44px;
  color: var(--gold);
  margin-bottom: 28px;
}
.card--featured .card__icon { color: var(--gold); }
.card__icon svg { width: 100%; height: 100%; }

.card h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--white);
}
.card--featured h3 { color: var(--white); }

.card p {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.card--featured p { color: rgba(255,255,255,0.65); }

.card ul { display: flex; flex-direction: column; gap: 8px; }
.card li {
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  padding-left: 18px;
  position: relative;
}
.card--featured li { color: rgba(255,255,255,0.6); }
.card li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 1px;
  background: var(--gold);
}
.card--featured li::before { background: var(--gold); }

/* ==========================================
   FORMAÇÃO ACADÊMICA
   ========================================== */

.formacao {
  padding: 120px 0;
  background: var(--dark-2);
}

.formacao__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 96px;
  align-items: center;
}

.formacao__sub { text-align: left; }

.formacao__lista {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.formacao__lista li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(196,163,85,0.1);
  transition: var(--transition);
}
.formacao__lista li:last-child { border-bottom: none; }
.formacao__lista li:hover { transform: translateX(4px); }

.formacao__icon {
  width: 40px; height: 40px;
  background: var(--gold-bg);
  border: 1px solid rgba(196,163,85,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.formacao__icon svg { width: 18px; height: 18px; }

.formacao__lista strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}
.formacao__lista span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
}

.formacao__visual { position: relative; }
.formacao__img-wrap {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 2px solid rgba(196,163,85,0.4);
  box-shadow: -20px 20px 0 rgba(196,163,85,0.1), -20px 20px 0 1px rgba(196,163,85,0.25);
}
.formacao__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
  filter: grayscale(15%);
}
.formacao__img-wrap:hover img { transform: scale(1.03); filter: grayscale(0%); }

/* ==========================================
   FAQ
   ========================================== */

.faq {
  padding: 120px 0;
  background: var(--dark);
}

.faq__lista {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq__item {
  border: 1px solid rgba(196,163,85,0.12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq__item:hover { border-color: rgba(196,163,85,0.25); }
.faq__item.open { border-color: rgba(196,163,85,0.35); }

.faq__pergunta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  background: var(--dark-2);
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  transition: var(--transition);
}
.faq__pergunta:hover { background: var(--dark-3); color: var(--gold); }
.faq__item.open .faq__pergunta { background: var(--dark-3); color: var(--gold); }

.faq__icon {
  width: 20px; height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.35s ease;
}
.faq__item.open .faq__icon { transform: rotate(180deg); }

.faq__resposta {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq__resposta p {
  padding: 0 28px 24px;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
  background: var(--dark-3);
}
.faq__resposta a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ==========================================
   LOCALIZAÇÃO
   ========================================== */

.localizacao {
  padding: 120px 0;
  background: var(--dark-2);
}

.localizacao__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: start;
}

.localizacao__mapa {
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid rgba(196,163,85,0.2);
  aspect-ratio: 4/3;
}
.localizacao__mapa iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(30%) invert(92%) hue-rotate(180deg);
}

.localizacao__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.localizacao__card {
  background: var(--dark-3);
  border: 1px solid rgba(196,163,85,0.12);
  border-radius: var(--radius);
  overflow: hidden;
}

.localizacao__item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(196,163,85,0.08);
  transition: var(--transition);
}
.localizacao__item:last-child { border-bottom: none; }
.localizacao__item:hover { background: var(--gold-bg); }

.localizacao__icone {
  width: 40px; height: 40px;
  background: var(--gold-bg);
  border: 1px solid rgba(196,163,85,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.localizacao__icone svg { width: 18px; height: 18px; }

.localizacao__label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
}
.localizacao__valor {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  line-height: 1.7;
}
.localizacao__link { transition: color var(--transition); }
.localizacao__link:hover { color: var(--gold); }

.localizacao__brasil {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: var(--gold-bg);
  border: 1px solid rgba(196,163,85,0.2);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  font-weight: 300;
}
.localizacao__brasil svg {
  width: 24px; height: 24px;
  color: var(--gold);
  flex-shrink: 0;
}
.localizacao__brasil strong { color: var(--gold); font-weight: 700; }

/* ==========================================
   CONTATO CTA
   ========================================== */

.contato-cta {
  padding: 120px 0;
  background: var(--dark);
  border-top: 1px solid rgba(196,163,85,0.1);
}

.contato-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contato-cta__content .section-title { margin-bottom: 20px; }
.contato-cta__content > p {
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
}

.contato-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
  background: #111;
  padding: 36px 0;
  border-top: 1px solid rgba(196,163,85,0.1);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__name {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}
.footer__sep { color: rgba(196,163,85,0.4); }
.footer__oab {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}

.footer__bottom { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.footer__copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}
.footer__city { color: rgba(196,163,85,0.4) !important; }

/* ==========================================
   ANIMAÇÃO DE ENTRADA
   ========================================== */

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   RESPONSIVO
   ========================================== */

@media (max-width: 1024px) {
  .hero__frame { padding: 48px 48px; }

  .sobre__grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .sobre__visual { max-width: 440px; margin: 0 auto; }

  .atuacao__grid { grid-template-columns: 1fr 1fr; }

  .formacao__grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .formacao__visual { max-width: 400px; margin: 0 auto; }

  .localizacao__grid { grid-template-columns: 1fr; }
  .localizacao__mapa { aspect-ratio: 16/9; }

  .contato-cta__inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 900px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(26,26,26,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 0;
    border-bottom: 1px solid rgba(196,163,85,0.15);
    transform: translateY(-110%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
    z-index: 99;
  }
  .nav__menu.open {
    transform: translateY(0);
    visibility: visible;
  }
  .nav__menu li { width: 100%; border-bottom: 1px solid rgba(196,163,85,0.08); }
  .nav__link {
    display: block;
    padding: 16px 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
  }
  .nav__cta { margin-top: 16px; display: inline-block !important; padding: 10px 22px; }
}

@media (max-width: 768px) {
  .hero__frame { padding: 40px 28px; }
  .hero__frase { font-size: 1.5rem; }
  .hero__actions { flex-direction: column; }

  .sobre { padding: 80px 0; }
  .sobre__badge { bottom: -10px; right: 8px; }

  .atuacao { padding: 80px 0; }
  .atuacao__grid { grid-template-columns: 1fr; }
  .card { padding: 40px 28px; }

  .formacao { padding: 80px 0; }

  .faq { padding: 80px 0; }
  .faq__pergunta { font-size: 1rem; padding: 18px 20px; }
  .faq__resposta p { padding: 0 20px 20px; }

  .localizacao { padding: 80px 0; }

  .contato-cta { padding: 80px 0; }
  .contato-cta__actions { align-items: stretch; }
  .btn--lg { justify-content: center; }
  .btn--outline-gold { justify-content: center; }

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__brand { justify-content: center; }
  .footer__bottom { align-items: center; }
}

@media (max-width: 480px) {
  .hero__content h1 { font-size: 2rem; }
  .hero__actions { flex-direction: column; }
  .btn { text-align: center; justify-content: center; }
  .section-title { font-size: 1.8rem; }
  .faq__pergunta { font-size: 0.95rem; }
}
