/* ==========================================================
   01. IMPORTAÇÃO DAS FONTES
========================================================== */

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap");

/* ==========================================================
   02. VARIÁVEIS GLOBAIS
========================================================== */

:root {
  --black: #080808;
  --black-light: #151515;
  --black-soft: #202020;

  --gold: #d4af37;
  --gold-dark: #9b6810;
  --gold-light: #f6e8ad;

  --cream: #f8f3e7;
  --ivory: #fffdf8;
  --white: #ffffff;

  --text: #211d16;
  --muted: #70695f;

  --border: rgba(212, 175, 55, 0.22);

  --shadow: 0 18px 50px rgba(0, 0, 0, 0.14);

  --shadow-dark: 0 18px 50px rgba(0, 0, 0, 0.28);

  --radius: 24px;
  --container: 1180px;
  --header-height: 82px;
}

/* ==========================================================
   03. RESET GERAL
========================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  appearance: none;
}

::selection {
  color: var(--black);
  background: var(--gold-light);
}

/* ==========================================================
   04. ELEMENTOS GERAIS
========================================================== */

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

section {
  padding: 100px 0;
}

/* ==========================================================
   05. CABEÇALHOS DAS SEÇÕES
========================================================== */

.section-header {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-header > span,
.section-label,
.destaque-content > span,
.contato-content > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 14px;

  color: #b88a21;

  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-header > span::before,
.section-label::before,
.destaque-content > span::before,
.contato-content > span::before {
  content: "";

  width: 28px;
  height: 1px;

  background: currentColor;
}

.section-header h2,
.sobre-content h2,
.destaque-content h2,
.contato-content h2 {
  margin-bottom: 20px;

  color: #1a150c;

  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.12;
}

.section-header p,
.sobre-content p,
.destaque-content p,
.contato-content p {
  color: var(--muted);
  font-size: 1.03rem;
}

/* ==========================================================
   06. CABEÇALHO E MENU
========================================================== */

#header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;

  width: 100%;

  background: rgba(5, 5, 5, 0.97);
  border-bottom: 1px solid rgba(212, 175, 55, 0.24);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);

  backdrop-filter: blur(16px);

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

#header.scrolled {
  background: rgba(5, 5, 5, 0.99);

  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.34);
}

.navbar {
  width: min(100% - 40px, 1280px);
  min-height: var(--header-height);

  margin-inline: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

/* ==========================================================
   07. LOGO
========================================================== */

.logo {
  width: 270px;
  min-width: 270px;

  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  width: 100%;
  height: auto;
  max-height: 66px;

  display: block;

  object-fit: contain;
  object-position: left center;

  filter: none;
}

/* ==========================================================
   08. NAVEGAÇÃO
========================================================== */

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-menu a {
  position: relative;

  color: var(--white);

  font-size: 0.93rem;
  font-weight: 600;

  transition: color 0.25s ease;
}

.nav-menu a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -8px;

  width: 0;
  height: 2px;

  background: linear-gradient(
    90deg,
    var(--gold-dark),
    var(--gold-light),
    #b98217
  );

  transition: width 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #f3d878;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

/* ==========================================================
   09. BOTÃO DO MENU MOBILE
========================================================== */

.menu-toggle {
  width: 46px;
  height: 46px;

  display: none;

  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 50%;

  background: #1b1b1b;

  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;

  display: block;

  margin: 4px auto;

  background: #e4c65b;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ==========================================================
   10. BOTÕES GERAIS — IDENTIDADE WHATSAPP
========================================================== */

.header-button,
.button-primary,
.button-secondary {
  min-height: 50px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 0 22px;

  border-radius: 999px;

  font-weight: 700;
  cursor: pointer;

  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.header-button,
.button-primary {
  color: #ffffff;

  background: linear-gradient(135deg, #2ee66b, #25d366 55%, #159447);

  border: 1px solid rgba(255, 255, 255, 0.12);

  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.28);
}

.header-button:hover,
.button-primary:hover {
  color: #ffffff;

  background: linear-gradient(135deg, #35ee76, #20bd5b 55%, #117c3c);

  transform: translateY(-2px);

  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.38);
}

.header-button i,
.button-primary i {
  color: #ffffff;
  font-size: 1.1rem;
}

.button-secondary {
  color: #169b4b;
  background: transparent;
  border: 1px solid rgba(37, 211, 102, 0.6);
}

.button-secondary:hover {
  color: #ffffff;

  background: linear-gradient(135deg, #2ee66b, #25d366 55%, #159447);

  border-color: #25d366;
  transform: translateY(-2px);

  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.24);
}

/* ==========================================================
   BOTÃO SECUNDÁRIO DA HERO — DOURADO
========================================================== */

.hero .button-secondary {
  color: #f0d575;
  background: transparent;

  border: 1px solid rgba(212, 175, 55, 0.55);

  box-shadow: none;
}

.hero .button-secondary:hover {
  color: #080808;

  background: linear-gradient(135deg, #f6e8ad, #d4af37 55%, #b98217);

  border-color: #d4af37;

  transform: translateY(-2px);

  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.24);
}

/* ==========================================================
   11. HERO
========================================================== */

.hero {
  position: relative;

  min-height: 800px;

  display: flex;
  align-items: center;

  padding-top: 150px;

  background:
    radial-gradient(
      circle at 83% 18%,
      rgba(212, 175, 55, 0.2),
      transparent 25%
    ),
    linear-gradient(135deg, #030303 0%, #0d0d0d 58%, #211807 100%);

  overflow: hidden;
}

.hero::after {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.16), transparent 45%),
    repeating-linear-gradient(
      135deg,
      transparent 0 65px,
      rgba(212, 175, 55, 0.025) 65px 66px
    );
}

.hero-container {
  position: relative;
  z-index: 2;

  width: min(100% - 40px, var(--container));

  margin-inline: auto;

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 74px;
}

/* ==========================================================
   12. CONTEÚDO DA HERO
========================================================== */

.hero-label {
  display: inline-flex;

  padding: 9px 15px;
  margin-bottom: 24px;

  color: #f2d77d;

  background: rgba(212, 175, 55, 0.1);

  border: 1px solid rgba(212, 175, 55, 0.34);

  border-radius: 999px;

  font-size: 0.82rem;
  font-weight: 700;
}

.hero h1 {
  color: #f8e9b6;

  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 5.6vw, 5rem);
  line-height: 1.03;
  letter-spacing: -0.035em;

  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.hero h1::after {
  content: "";

  display: block;

  width: 95px;
  height: 3px;

  margin-top: 24px;

  border-radius: 999px;

  background: linear-gradient(90deg, #8c6011, #f7e59a, #b77e12);
}

.hero-content > p {
  max-width: 650px;

  margin: 28px 0 34px;

  color: #d2c8b1;

  font-size: 1.1rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ==========================================================
   13. BENEFÍCIOS DA HERO
========================================================== */

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;

  margin-top: 42px;
}

.hero-benefits > div {
  min-height: 105px;

  padding: 20px;

  display: flex;
  flex-direction: column;
  gap: 10px;

  background: rgba(255, 255, 255, 0.045);

  border: 1px solid rgba(212, 175, 55, 0.22);

  border-radius: 18px;

  backdrop-filter: blur(8px);
}

.hero-benefits i {
  color: var(--gold);
  font-size: 1.25rem;
}

.hero-benefits span {
  color: #f4e3aa;

  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
}

/* ==========================================================
   14. IMAGEM DA HERO
========================================================== */

.hero-image {
  position: relative;

  max-width: 500px;

  justify-self: end;
}

.hero-image::before {
  content: "";

  position: absolute;
  inset: 24px -24px -24px 24px;
  z-index: -1;

  border: 1px solid rgba(212, 175, 55, 0.62);

  border-radius: 260px 260px 40px 40px;

  box-shadow: 0 0 60px rgba(212, 175, 55, 0.12);
}

.hero-image img {
  min-height: 610px;

  border: 1px solid rgba(212, 175, 55, 0.36);

  border-radius: 260px 260px 40px 40px;

  background: linear-gradient(145deg, #171717, #2b210d);

  box-shadow: var(--shadow-dark);
}

/* ==========================================================
   15. ÁREAS DE ATUAÇÃO
========================================================== */

.areas {
  background: var(--ivory);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.area-card {
  min-height: 280px;

  padding: 34px;

  color: #f2e8ca;

  background:
    linear-gradient(#101010, #101010) padding-box,
    linear-gradient(135deg, rgba(212, 175, 55, 0.6), rgba(212, 175, 55, 0.06))
      border-box;

  border: 1px solid transparent;
  border-radius: var(--radius);

  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.1);

  transform-style: preserve-3d;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.area-card:hover {
  transform: translateY(-7px);

  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}

.area-card > i {
  width: 58px;
  height: 58px;

  display: grid;
  place-items: center;

  margin-bottom: 24px;

  color: var(--black);

  background: linear-gradient(145deg, #f7e8ac, var(--gold), #a87312);

  border-radius: 18px;

  box-shadow: 0 12px 25px rgba(212, 175, 55, 0.16);

  font-size: 1.45rem;
}

.area-card h3 {
  margin-bottom: 12px;

  color: #f4dda0;

  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
}

.area-card p {
  color: #c8bfac;
}

/* ==========================================================
   16. SOBRE A ADVOGADA
========================================================== */

.sobre {
  background: var(--cream);
}

.sobre-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 76px;
}

.sobre-image {
  position: relative;
}

.sobre-image::after {
  content: "Direito com humanidade";

  position: absolute;
  right: -30px;
  bottom: 35px;

  max-width: 220px;

  padding: 20px 24px;

  color: var(--black);

  background: linear-gradient(135deg, #f2dd95, var(--gold), #a36d10);

  border-radius: 18px;

  box-shadow: var(--shadow);

  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  line-height: 1.25;
}

.sobre-image img {
  min-height: 620px;

  border: 1px solid rgba(212, 175, 55, 0.3);

  border-radius: 30px;

  background: linear-gradient(145deg, #171717, #2b210d);

  box-shadow: var(--shadow);
}

.sobre-content p + p {
  margin-top: 15px;
}

/* ==========================================================
   17. INFORMAÇÕES DA SEÇÃO SOBRE
========================================================== */

.sobre-info {
  display: grid;
  gap: 12px;

  margin-top: 30px;
}

.sobre-info > div {
  padding: 17px 18px;

  display: flex;
  align-items: center;
  gap: 14px;

  background: rgba(255, 255, 255, 0.72);

  border: 1px solid rgba(212, 175, 55, 0.22);

  border-radius: 14px;
}

.sobre-info i {
  color: var(--gold);
}

/* ==========================================================
   18. COMO FUNCIONA O ATENDIMENTO
========================================================== */

.atendimento {
  background:
    radial-gradient(
      circle at top right,
      rgba(212, 175, 55, 0.1),
      transparent 30%
    ),
    #070707;
}

.atendimento .section-header h2,
.atendimento .section-header p {
  color: #f8ebbc;
}

.atendimento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.etapa-card {
  min-height: 270px;

  padding: 32px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.055),
    rgba(212, 175, 55, 0.035)
  );

  border: 1px solid rgba(212, 175, 55, 0.25);

  border-radius: var(--radius);

  transform-style: preserve-3d;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.etapa-card:hover {
  transform: translateY(-6px);

  border-color: rgba(212, 175, 55, 0.48);

  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.3);
}

.etapa-card > span {
  color: #e1c45a;

  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  font-weight: 700;
}

.etapa-card h3 {
  margin: 18px 0 12px;

  color: var(--white);

  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
}

.etapa-card p {
  color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================
   19. SERVIÇOS EM DESTAQUE
========================================================== */

.servico-destaque {
  background: var(--ivory);
}

.servico-destaque:nth-of-type(even) {
  background: var(--cream);
}

.destaque-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
}

.destaque-content ul {
  display: grid;
  gap: 12px;

  margin: 28px 0 34px;
}

.destaque-content li {
  position: relative;

  padding-left: 30px;

  color: #1b160d;

  font-weight: 600;
}

.destaque-content li::before {
  content: "✓";

  position: absolute;
  left: 0;

  color: #b38419;

  font-weight: 800;
}

.destaque-image img {
  min-height: 530px;

  border: 1px solid rgba(212, 175, 55, 0.3);

  border-radius: 34px;

  background: linear-gradient(145deg, #171717, #2b210d);

  box-shadow: var(--shadow);
}

/* ==========================================================
   20. FAQ — DÚVIDAS FREQUENTES
========================================================== */

.faq {
  background: var(--cream);
}

.faq-list {
  width: 100%;
  max-width: 900px;

  margin-inline: auto;

  display: grid;
  gap: 14px;
}

.faq-native-item {
  width: 100%;

  background: var(--ivory);

  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 18px;

  overflow: hidden;

  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.faq-native-item[open] {
  border-color: rgba(212, 175, 55, 0.55);

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.faq-native-question {
  width: 100%;

  padding: 22px 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  color: #19140b;

  font-size: 1rem;
  font-weight: 700;
  text-align: left;

  cursor: pointer;

  list-style: none;
}

.faq-native-question::-webkit-details-marker {
  display: none;
}

.faq-native-question::marker {
  display: none;
  content: "";
}

.faq-native-question span {
  flex: 1;
}

.faq-native-question i {
  flex-shrink: 0;

  color: #b78718;

  transition: transform 0.3s ease;
}

.faq-native-item[open] .faq-native-question i {
  transform: rotate(180deg);
}

.faq-native-answer {
  padding: 0 24px 22px;
}

.faq-native-answer p {
  margin: 0;

  color: var(--muted);

  line-height: 1.7;
}

/* ==========================================================
   FAQ — CELULARES
========================================================== */

@media (max-width: 580px) {
  .faq-native-question {
    padding: 20px;

    font-size: 0.95rem;
  }

  .faq-native-answer {
    padding: 0 20px 20px;
  }
}

/* ==========================================================
   21. LOCALIZAÇÃO
========================================================== */

.localizacao {
  background: var(--ivory);
}

.localizacao-container {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
}

.localizacao-info {
  padding: 34px;

  display: grid;
  gap: 22px;

  color: var(--white);

  background:
    radial-gradient(
      circle at top right,
      rgba(212, 175, 55, 0.15),
      transparent 36%
    ),
    #0b0b0b;

  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: var(--radius);
}

.localizacao-info > div {
  display: flex;
  gap: 16px;
}

.localizacao-info i {
  margin-top: 5px;

  color: #e4c65b;

  font-size: 1.1rem;
}

.localizacao-info strong {
  color: var(--white);
}

.localizacao-info p {
  color: rgba(255, 255, 255, 0.74);
}

/* ==========================================================
   BOTÃO GOOGLE MAPS
========================================================== */

.localizacao-info .button-secondary {
  width: 100%;

  color: #ffffff;
  background: transparent;

  border-color: rgba(37, 211, 102, 0.65);

  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.localizacao-info .button-secondary:hover {
  color: #ffffff;

  background: linear-gradient(135deg, #2ee66b, #25d366 55%, #159447);

  border-color: #25d366;
  transform: translateY(-2px);

  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.28);
}

/* ==========================================================
   MAPA
========================================================== */

.localizacao-map {
  min-height: 520px;

  overflow: hidden;

  border-radius: var(--radius);

  box-shadow: var(--shadow);
}

.localizacao-map iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;

  border: 0;
}

/* ==========================================================
   22. CTA FINAL DE CONTATO
========================================================== */

.contato {
  padding: 70px 0;

  background: var(--ivory);
}

.contato-box {
  padding: 58px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;

  color: var(--white);

  background:
    radial-gradient(circle at right, rgba(212, 175, 55, 0.16), transparent 42%),
    linear-gradient(135deg, #050505, #161616 68%, #241b08);

  border: 1px solid rgba(212, 175, 55, 0.35);

  border-radius: 32px;

  box-shadow: var(--shadow-dark);
}

.contato-content {
  max-width: 700px;
}

.contato-content h2,
.contato-content p {
  color: #f7e8b6;
}

/* ==========================================================
   23. RODAPÉ
========================================================== */

#footer {
  padding-top: 74px;
  padding-bottom: 28px;

  color: rgba(255, 255, 255, 0.72);

  background: #050505;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr;
  gap: 60px;

  padding-bottom: 55px;
}

.footer-brand h2,
.footer-links h3 {
  color: #f7e8b6;

  font-family: "Playfair Display", serif;
}

.footer-brand h2 {
  font-size: 2rem;
}

.footer-brand > span {
  display: block;

  margin: 8px 0 16px;

  color: #e4c75f;

  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-brand p {
  max-width: 520px;
}

.footer-links h3 {
  margin-bottom: 18px;
}

.footer-links ul {
  display: grid;
  gap: 9px;
}

.footer-links a,
.footer-bottom a {
  transition: color 0.25s ease;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: #e4c75f;
}

/* ==========================================================
   24. PARTE INFERIOR DO RODAPÉ
========================================================== */

.footer-bottom {
  width: min(100% - 40px, var(--container));

  margin-inline: auto;
  padding: 24px 88px 24px 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  color: #bdb29b;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  font-size: 0.88rem;
}

.footer-bottom > div {
  display: flex;
  gap: 18px;
}

/* ==========================================================
   BOTÃO FLUTUANTE DO WHATSAPP
========================================================== */

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;

  width: 62px;
  height: 62px;

  display: grid;
  place-items: center;

  color: #ffffff;

  background: linear-gradient(135deg, #2ee66b, #25d366 55%, #159447);

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;

  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.34);

  font-size: 1.75rem;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);

  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.44);
}

/* ==========================================================
   26. ANIMAÇÕES CONTROLADAS PELO JAVASCRIPT
========================================================== */

.reveal {
  opacity: 0;

  transform: translateY(30px);

  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;

  transform: translateY(0);
}

/* ==========================================================
   INTERAÇÕES DOS CARDS APÓS A ANIMAÇÃO
========================================================== */

.area-card.reveal.visible:hover {
  transform: translateY(-8px);

  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.22),
    0 0 25px rgba(212, 175, 55, 0.08);
}

.area-card > i {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.area-card.reveal.visible:hover > i {
  transform: translateY(-3px) scale(1.06);

  box-shadow: 0 16px 30px rgba(212, 175, 55, 0.28);
}

.etapa-card.reveal.visible:hover {
  transform: translateY(-7px);

  border-color: rgba(212, 175, 55, 0.5);

  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.32);
}

.faq-native-item.reveal.visible:hover {
  transform: translateY(-3px);

  border-color: rgba(212, 175, 55, 0.42);

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* ==========================================================
   27. ATRASO DAS ANIMAÇÕES DOS CARDS
========================================================== */

.area-card:nth-child(2),
.etapa-card:nth-child(2) {
  transition-delay: 0.08s;
}

.area-card:nth-child(3),
.etapa-card:nth-child(3) {
  transition-delay: 0.16s;
}

.area-card:nth-child(4),
.etapa-card:nth-child(4) {
  transition-delay: 0.24s;
}

.area-card:nth-child(5) {
  transition-delay: 0.32s;
}

.area-card:nth-child(6) {
  transition-delay: 0.4s;
}

/* ==========================================================
   28. BOTÃO VOLTAR AO TOPO — REMOVIDO
========================================================== */

.back-to-top {
  display: none !important;
}

/* ==========================================================
   29. RESPONSIVIDADE — TELAS ATÉ 1080PX
========================================================== */

@media (max-width: 1080px) {
  .logo {
    width: 225px;
    min-width: 225px;
  }

  .logo img {
    max-height: 58px;
  }

  .nav-menu {
    gap: 16px;
  }

  .header-button {
    display: none;
  }

  .hero-container,
  .sobre-container,
  .destaque-container {
    gap: 45px;
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .atendimento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================
   30. RESPONSIVIDADE — TABLETS E CELULARES
========================================================== */

@media (max-width: 820px) {
  section {
    padding: 78px 0;
  }

  .menu-toggle {
    display: block;
  }

  #header nav {
    position: fixed;
    top: var(--header-height);
    left: 20px;
    right: 20px;

    padding: 20px;

    background: #0b0b0b;

    border: 1px solid rgba(212, 175, 55, 0.25);

    border-radius: 18px;

    box-shadow: var(--shadow-dark);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-12px);

    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease;
  }

  #header nav.active {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
  }

  .nav-menu {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .nav-menu a {
    display: block;

    padding: 12px 8px;

    color: var(--white);
  }

  .nav-menu a::after {
    bottom: 4px;
  }

  .hero {
    min-height: auto;

    padding-top: 130px;
  }

  .hero-container,
  .sobre-container,
  .destaque-container,
  .localizacao-container {
    grid-template-columns: 1fr;
  }

  .hero-image {
    max-width: 540px;

    justify-self: center;
  }

  .hero-image img {
    min-height: 520px;
  }

  .sobre-image {
    max-width: 560px;

    margin-inline: auto;
  }

  .destaque-image {
    order: -1;
  }

  .contato-box,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .reveal {
    transform: translateY(20px);
  }
}

/* ==========================================================
   31. RESPONSIVIDADE — CELULARES PEQUENOS
========================================================== */

@media (max-width: 580px) {
  :root {
    --header-height: 74px;
  }

  #footer {
    padding-bottom: 22px;
  }

  .container,
  .navbar,
  .hero-container {
    width: min(100% - 28px, var(--container));
  }

  .navbar {
    min-height: var(--header-height);
  }

  .logo {
    width: 205px;
    min-width: 205px;
  }

  .logo img {
    width: 100%;
    height: auto;
    max-height: 54px;
  }

  #header nav {
    top: var(--header-height);
    left: 14px;
    right: 14px;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons a {
    width: 100%;
  }

  .hero-benefits,
  .areas-grid,
  .atendimento-grid,
  .footer-container {
    grid-template-columns: 1fr;
  }

  .hero-benefits > div {
    min-height: auto;
  }

  .hero-image img,
  .sobre-image img,
  .destaque-image img {
    min-height: 420px;
  }

  .hero-image::before {
    inset: 16px -10px -16px 10px;
  }

  .sobre-image::after {
    right: 12px;
    bottom: 18px;

    max-width: 190px;

    padding: 16px 18px;

    font-size: 1.1rem;
  }

  .area-card,
  .etapa-card {
    min-height: auto;

    padding: 28px;
  }

  .faq-question {
    padding: 20px;

    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
  }

  .localizacao-info {
    padding: 28px 24px;
  }

  .localizacao-map,
  .localizacao-map iframe {
    min-height: 420px;
  }

  .contato-box {
    padding: 38px 26px;
  }

  .contato-box .button-primary {
    width: 100%;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom > div {
    flex-direction: column;
    gap: 8px;
  }

  .footer-bottom {
    padding: 24px 0 76px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 18px;

    width: 56px;
    height: 56px;
  }
}

/* ==========================================================
   32. ACESSIBILIDADE — REDUÇÃO DE MOVIMENTO
========================================================== */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;

    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;

    transform: none;
  }
}

/* ==========================================================
   33. AJUSTE FINAL DO TAMANHO DAS FOTOS
========================================================== */

.hero-image {
  width: 100%;
  max-width: 390px;
  justify-self: center;
}

.hero-image img {
  width: 100%;
  height: 530px;
  min-height: 0;
  object-fit: cover;
  object-position: center 18%;
}

.sobre-image {
  width: 100%;
  max-width: 430px;
  margin-inline: auto;
}

.sobre-image img {
  width: 100%;
  height: 520px;
  min-height: 0;
  object-fit: cover;
  object-position: center 20%;
}

.destaque-image {
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
  justify-self: center;
}

.destaque-image img {
  width: 100%;
  height: 460px;
  min-height: 0;
  object-fit: cover;
  border-radius: 28px;
}

#familia .destaque-image img {
  object-position: center 25%;
}

#saude .destaque-image img {
  object-position: center 18%;
}

/* ==========================================================
   34. AJUSTE DAS FOTOS — TABLETS
========================================================== */

@media (max-width: 820px) {
  .hero-image {
    max-width: 360px;
  }

  .hero-image img {
    height: 490px;
    min-height: 0;
  }

  .sobre-image {
    max-width: 400px;
  }

  .sobre-image img {
    height: 480px;
    min-height: 0;
  }

  .destaque-image {
    max-width: 440px;
  }

  .destaque-image img {
    height: 430px;
    min-height: 0;
  }
}

/* ==========================================================
   35. AJUSTE DAS FOTOS — CELULARES
========================================================== */

@media (max-width: 580px) {
  .hero-image {
    max-width: 320px;
  }

  .hero-image img {
    height: 430px;
    min-height: 0;
  }

  .sobre-image {
    max-width: 330px;
  }

  .sobre-image img {
    height: 410px;
    min-height: 0;
  }

  .destaque-image {
    max-width: 340px;
  }

  .destaque-image img {
    height: 390px;
    min-height: 0;
  }
}
