/* ==========================================================================
   DRA. ADRIANA F. SANTOS | ADVOCACIA & CONSULTORIA JURÍDICA
   Design System: Marrom Café Imperial, Branco Linho & Dourado Champagne
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIÁVEIS E PALETA DE CORES (MARROM, BRANCO & OURO)
   -------------------------------------------------------------------------- */
:root {
  /* Tons de Marrom (Nobre, Terroso e Formal) */
  --brown-950: #190F0B; /* Café ultra escuro / Quase preto acolhedor */
  --brown-900: #231610; /* Marrom Espresso Principal */
  --brown-850: #2E1D16; /* Marrom Cacau Profundo */
  --brown-800: #3B261D; /* Marrom Mogno Nobre */
  --brown-700: #4D3327; /* Marrom Café com Leite Escuro */
  --brown-600: #684838; /* Marrom Canela / Castanho */
  --brown-500: #85614F; /* Marrom Médio / Taupe */
  --brown-300: #B39585; /* Marrom Areia Claro */
  --brown-100: #EADBCE; /* Marrom Linho Suave */

  /* Tons de Dourado (Champagne, Ouro Escovado e Acácia) */
  --gold-700: #9E7B35;
  --gold-600: #B88E3E;
  --gold-500: #C5A059; /* Dourado Nobre */
  --gold-400: #D8B468;
  --gold-300: #E6CA85;
  --gold-200: #F1DEC0;
  --gold-100: #FAF4E6;
  --gold-gradient: linear-gradient(135deg, #C5A059 0%, #E6CA85 50%, #B88E3E 100%);
  --gold-gradient-subtle: linear-gradient(135deg, rgba(197, 160, 89, 0.15) 0%, rgba(230, 202, 133, 0.25) 100%);

  /* Tons Claros (Branco, Alabastro e Linho) */
  --white: #FFFFFF;
  --bg-page: #FDFBF8;   /* Branco Quente / Marfim Nobre */
  --bg-surface: #F8F4EE; /* Linho Claro Acolhedor */
  --bg-card: #FFFFFF;
  --border-light: rgba(77, 51, 39, 0.1);
  --border-gold: rgba(197, 160, 89, 0.35);

  /* Cores de Texto */
  --text-heading: #231610;
  --text-body: #4A3A32;
  --text-muted: #736259;
  --text-light: #9C8C83;
  --text-white: #FAF6F0;
  --text-gold: #C5A059;

  /* WhatsApp & Interação */
  --whatsapp-green: #25D366;
  --whatsapp-dark: #128C7E;

  /* Formas & Efeitos */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 9999px;

  --shadow-subtle: 0 4px 20px rgba(35, 22, 16, 0.04);
  --shadow-card: 0 10px 30px rgba(35, 22, 16, 0.07);
  --shadow-hover: 0 18px 40px rgba(35, 22, 16, 0.12);
  --shadow-dark: 0 20px 45px rgba(0, 0, 0, 0.35);

  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-page);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-fast);
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font: inherit;
  border: none;
  outline: none;
}

/* Tipografia Serif Clássica */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  line-height: 1.18;
  color: var(--text-heading);
  letter-spacing: -0.01em;
}

.container {
  width: min(1200px, calc(100% - 44px));
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------------------------------------
   3. ELEMENTOS DECORATIVOS & BADGES
   -------------------------------------------------------------------------- */
.badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  background: var(--gold-100);
  border: 1px solid var(--gold-300);
  border-radius: var(--radius-full);
  color: var(--brown-900);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.badge-gold i {
  width: 14px;
  height: 14px;
  color: var(--gold-600);
}

.badge-gold--dark {
  background: rgba(197, 160, 89, 0.12);
  border-color: rgba(197, 160, 89, 0.4);
  color: var(--gold-300);
}

.badge-gold--dark i {
  color: var(--gold-300);
}

.gold-line {
  width: 50px;
  height: 2px;
  background: var(--gold-gradient);
  margin: 14px 0 20px;
  border-radius: 2px;
}

.gold-line--center {
  margin-left: auto;
  margin-right: auto;
}

.text-gold {
  color: var(--gold-500);
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 30px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn i {
  width: 17px;
  height: 17px;
  transition: transform var(--transition-fast);
}

.btn:hover i {
  transform: translateX(3px);
}

/* Botão Marrom Nobre com Dourado */
.btn--primary {
  background: var(--brown-900);
  color: var(--gold-200);
  border: 1px solid var(--gold-500);
  box-shadow: 0 6px 20px rgba(35, 22, 16, 0.2);
}

.btn--primary:hover {
  background: var(--brown-800);
  color: var(--white);
  border-color: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(35, 22, 16, 0.3);
}

/* Botão Ouro Puro */
.btn--gold {
  background: var(--gold-gradient);
  color: var(--brown-950);
  border: 1px solid var(--gold-400);
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.28);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(197, 160, 89, 0.45);
  filter: brightness(1.05);
}

/* Botão Contorno / Outline */
.btn--outline {
  background: transparent;
  border: 1.5px solid var(--brown-700);
  color: var(--brown-900);
}

.btn--outline:hover {
  background: var(--brown-900);
  color: var(--gold-200);
  border-color: var(--brown-900);
  transform: translateY(-2px);
}

/* Botão WhatsApp */
.btn--whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1EBE5D 100%);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

.btn--whatsapp:hover {
  background: linear-gradient(135deg, #29e06c 0%, #1da853 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.38);
}

.btn--lg {
  padding: 15px 34px;
  font-size: 0.95rem;
}

.btn--full {
  width: 100%;
}

/* --------------------------------------------------------------------------
   4. TOP BAR INFORMATIVA & HEADER
   -------------------------------------------------------------------------- */
.top-notice {
  background: var(--brown-950);
  color: var(--text-white);
  padding: 8px 0;
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(197, 160, 89, 0.25);
}

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

.top-notice__left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-notice__item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(250, 246, 240, 0.85);
}

.top-notice__item i {
  width: 14px;
  height: 14px;
  color: var(--gold-400);
}

.top-notice__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-300);
  font-weight: 700;
}

.top-notice__phone:hover {
  color: var(--white);
}

/* Header Principal */
.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253, 251, 248, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

.topbar.is-scrolled {
  background: rgba(253, 251, 248, 0.99);
  box-shadow: 0 4px 20px rgba(35, 22, 16, 0.08);
  border-bottom-color: var(--gold-300);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand__emblem {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-xs);
  object-fit: cover;
  border: 1px solid var(--gold-500);
  box-shadow: 0 2px 8px rgba(35, 22, 16, 0.15);
}

.brand__name {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brown-900);
  line-height: 1.05;
}

.brand__name strong {
  color: var(--gold-600);
}

.brand__sub {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 2px;
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--brown-800);
  padding: 6px 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-600);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav__mobile-cta {
  display: none;
}

.menu-toggle {
  display: none;
  background: transparent;
  color: var(--brown-900);
  cursor: pointer;
  padding: 6px;
}

.menu-toggle i {
  width: 26px;
  height: 26px;
}

/* --------------------------------------------------------------------------
   5. HERO SECTION (EDITORIAL & FORMAL)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, #FDFBF8 0%, #F5EFE6 100%);
  padding: 60px 0 80px;
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 630px;
}

.hero__title {
  font-size: clamp(2.4rem, 4.4vw, 4rem);
  font-weight: 700;
  color: var(--brown-900);
  line-height: 1.12;
  margin-bottom: 20px;
}

.hero__title em {
  color: var(--gold-600);
  font-style: italic;
}

.hero__lead {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(77, 51, 39, 0.12);
}

.hero-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brown-800);
  background: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-subtle);
}

.hero-pill i {
  width: 14px;
  height: 14px;
  color: var(--gold-600);
}

/* Marca d'Água AFS — Fundo Completo da Seção Início */
.hero__bg-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  overflow: hidden;
}

.hero__bg-watermark-img {
  width: min(700px, 90%);
  height: auto;
  opacity: 0.22;
  filter: drop-shadow(0 0 80px rgba(197, 160, 89, 0.3));
}

/* Moldura Editorial da Foto da Advogada */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.portrait-frame {
  position: relative;
  width: 100%;
  max-width: 390px;
  z-index: 2;
}

.portrait-frame__card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: 
    0 20px 45px rgba(35, 22, 16, 0.15),
    0 0 0 1px var(--gold-300);
}

.portrait-frame__inner {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-light);
}

.portrait-frame__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--transition-normal);
}

.portrait-frame:hover .portrait-frame__img {
  transform: scale(1.02);
}

/* Badge Flutuante no Retrato */
.floating-tag {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brown-900);
  color: var(--white);
  border: 1px solid var(--gold-400);
  border-radius: var(--radius-md);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-dark);
  white-space: nowrap;
  width: 88%;
}

.floating-tag__icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-xs);
  background: var(--gold-gradient);
  color: var(--brown-950);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floating-tag__icon i {
  width: 18px;
  height: 18px;
}

.floating-tag strong {
  display: block;
  font-size: 0.88rem;
  color: var(--white);
  line-height: 1.2;
}

.floating-tag span {
  display: block;
  font-size: 0.72rem;
  color: var(--gold-300);
}

/* --------------------------------------------------------------------------
   6. FAIXA DE MANIFESTO / PILARES INSTITUCIONAIS
   -------------------------------------------------------------------------- */
.manifesto-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 36px 0;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.manifesto-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 8px 12px;
  border-right: 1px solid var(--border-light);
}

.manifesto-item:last-child {
  border-right: none;
}

.manifesto-item__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-600);
  line-height: 1;
}

.manifesto-item__text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--brown-900);
  margin-bottom: 3px;
}

.manifesto-item__text p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   7. SEÇÕES GERAIS
   -------------------------------------------------------------------------- */
.section {
  padding: 90px 0;
}

.section-header {
  margin-bottom: 50px;
}

.section-header--center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: clamp(2.1rem, 3.6vw, 3.2rem);
  color: var(--brown-900);
  margin-bottom: 14px;
}

.section-title--light {
  color: var(--text-white);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.section-subtitle--light {
  color: rgba(250, 246, 240, 0.8);
}

/* --------------------------------------------------------------------------
   8. ÁREAS DE ATUAÇÃO (LAYOUT MARROM, BRANCO & OURO)
   -------------------------------------------------------------------------- */
.section--expertise {
  background: var(--bg-surface);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 26px;
  margin-bottom: 40px;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px 30px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-400);
  box-shadow: var(--shadow-hover);
}

.service-card--featured {
  border-top: 3px solid var(--gold-500);
}

.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--gold-100);
  color: var(--brown-900);
  border: 1px solid var(--gold-300);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.service-card:hover .service-card__icon {
  background: var(--brown-900);
  color: var(--gold-300);
  border-color: var(--brown-900);
}

.service-card__icon i {
  width: 24px;
  height: 24px;
}

.service-card__tag {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brown-800);
  background: var(--gold-100);
  border: 1px solid var(--gold-300);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.service-card__title {
  font-size: 1.55rem;
  color: var(--brown-900);
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card__list {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.service-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.service-card__list i {
  width: 15px;
  height: 15px;
  color: var(--gold-600);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 11px 18px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--brown-900);
  transition: all var(--transition-fast);
}

.service-card__btn i {
  width: 15px;
  height: 15px;
  color: var(--gold-600);
  transition: transform var(--transition-fast);
}

.service-card:hover .service-card__btn {
  background: var(--brown-900);
  color: var(--gold-200);
  border-color: var(--brown-900);
}

.service-card:hover .service-card__btn i {
  transform: translateX(4px);
  color: var(--gold-300);
}

/* Caixa de CTA das Especialidades */
.services-banner {
  background: var(--brown-900);
  border: 1px solid var(--gold-500);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--white);
  box-shadow: var(--shadow-card);
}

.services-banner h4 {
  font-size: 1.45rem;
  color: var(--gold-200);
  margin-bottom: 4px;
}

.services-banner p {
  color: rgba(250, 246, 240, 0.85);
  font-size: 0.92rem;
}

/* --------------------------------------------------------------------------
   9. SOBRE O ESCRITÓRIO & BIOGRAFIA
   -------------------------------------------------------------------------- */
.section--about {
  background: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 56px;
}

.about-visual {
  position: relative;
}

.about-visual__box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gold-400);
  box-shadow: var(--shadow-card);
  position: relative;
}

.about-visual__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-visual__seal {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--brown-900);
  border: 1px solid var(--gold-400);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-dark);
}

.about-visual__emblem {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-xs);
  object-fit: cover;
  border: 1px solid var(--gold-400);
}

.about-visual__seal strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
}

.about-visual__seal span {
  display: block;
  font-size: 0.74rem;
  color: var(--gold-300);
}

.about-content__lead {
  font-size: 1.1rem;
  color: var(--brown-900);
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-content p {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 24px;
  line-height: 1.7;
}

.about-cards {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}

.about-card-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.about-card-item__icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-xs);
  background: var(--white);
  color: var(--gold-600);
  border: 1px solid var(--gold-300);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-card-item__icon i {
  width: 18px;
  height: 18px;
}

.about-card-item h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brown-900);
  margin-bottom: 2px;
}

.about-card-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   10. METODOLOGIA / COMO ATUAMOS
   -------------------------------------------------------------------------- */
.section--process {
  background: var(--brown-950);
  color: var(--text-white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.process-card {
  background: var(--brown-900);
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: var(--radius-lg);
  padding: 34px 24px;
  transition: all var(--transition-normal);
  position: relative;
}

.process-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-400);
  background: var(--brown-850);
}

.process-card__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 14px;
}

.process-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(197, 160, 89, 0.15);
  color: var(--gold-300);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.process-card__icon i {
  width: 20px;
  height: 20px;
}

.process-card__title {
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 10px;
}

.process-card__desc {
  font-size: 0.88rem;
  color: rgba(250, 246, 240, 0.75);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   11. DEPOIMENTOS
   -------------------------------------------------------------------------- */
.section--testimonials {
  background: var(--bg-page);
}

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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  color: var(--gold-500);
  margin-bottom: 16px;
}

.testimonial-card__stars i {
  width: 16px;
  height: 16px;
  fill: var(--gold-500);
}

.testimonial-card__quote {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 22px;
  flex-grow: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brown-900);
  color: var(--gold-300);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  border: 1px solid var(--gold-400);
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--brown-900);
}

.testimonial-card__author span {
  display: block;
  font-size: 0.74rem;
  color: var(--gold-600);
  font-weight: 600;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   12. FAQ (PERGUNTAS FREQUENTES)
   -------------------------------------------------------------------------- */
.section--faq {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
}

.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition-fast);
}

.faq-item.is-open {
  border-color: var(--gold-500);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: transparent;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown-900);
  cursor: pointer;
}

.faq-icon {
  width: 18px;
  height: 18px;
  color: var(--gold-600);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-item.is-open .faq-answer {
  max-height: 280px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   13. CTA BAND FORMAL
   -------------------------------------------------------------------------- */
.cta-band {
  background: linear-gradient(135deg, var(--brown-950) 0%, var(--brown-900) 100%);
  border-top: 1px solid var(--gold-600);
  border-bottom: 1px solid var(--gold-600);
  padding: 60px 0;
  color: var(--white);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.cta-band__text h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--gold-200);
  margin-bottom: 8px;
}

.cta-band__text p {
  font-size: 1rem;
  color: rgba(250, 246, 240, 0.85);
  max-width: 600px;
}

/* --------------------------------------------------------------------------
   14. CONTATO & LOCALIZAÇÃO
   -------------------------------------------------------------------------- */
.section--contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}

.contact-info {
  display: grid;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
}

.contact-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-xs);
  background: var(--brown-900);
  color: var(--gold-300);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-400);
  flex-shrink: 0;
}

.contact-card__icon i {
  width: 20px;
  height: 20px;
}

/* Instagram icon — sem fundo escuro, mostra gradiente real da marca */
.contact-card__icon--instagram {
  background: transparent;
  border-color: transparent;
  padding: 0;
  width: 44px;
  height: 44px;
}

.contact-icon-instagram {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-icon-instagram:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(214, 36, 159, 0.3);
}

.contact-card__body h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brown-900);
  margin-bottom: 3px;
}

.contact-card__body p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.45;
}

.contact-link-main {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown-900);
}

.contact-link-main:hover {
  color: var(--gold-600);
}

.contact-note {
  display: block;
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 3px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-600);
  margin-top: 6px;
}

.contact-link:hover {
  color: var(--brown-900);
}

.contact-link i {
  width: 13px;
  height: 13px;
}

/* Formulário de Contato Rápido */
.contact-form-wrapper {
  background: var(--bg-surface);
  border: 1px solid var(--gold-400);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
}

.form-header {
  margin-bottom: 24px;
}

.form-header h3 {
  font-size: 1.65rem;
  color: var(--brown-900);
  margin-bottom: 4px;
}

.form-header p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: grid;
  gap: 5px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brown-900);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xs);
  color: var(--text-heading);
  font-size: 0.92rem;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.2);
}

.form-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.74rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 2px;
}

.form-privacy i {
  width: 13px;
  height: 13px;
  color: var(--gold-600);
}

/* --------------------------------------------------------------------------
   15. FOOTER (MARROM NOBRE & OURO)
   -------------------------------------------------------------------------- */
.footer {
  background: var(--brown-950);
  color: var(--text-white);
  padding: 70px 0 28px;
  border-top: 1px solid var(--gold-600);
}

.footer__main {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}

.brand--footer .brand__name {
  color: var(--white);
}

.brand__emblem--footer {
  width: 44px;
  height: 44px;
}

.footer__about-text {
  font-size: 0.88rem;
  color: rgba(250, 246, 240, 0.72);
  line-height: 1.65;
  margin: 16px 0 20px;
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.footer__socials a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(197, 160, 89, 0.3);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer__socials a:hover {
  background: var(--gold-500);
  color: var(--brown-950);
  transform: translateY(-2px);
}

.footer__socials i {
  width: 18px;
  height: 18px;
}

/* Instagram no footer — ícone real com gradiente */
.footer-instagram-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  border-radius: 5px;
}

.footer-social-instagram {
  background: transparent !important;
  border-color: transparent !important;
  padding: 2px;
}

.footer-social-instagram:hover {
  background: transparent !important;
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 4px 12px rgba(214, 36, 159, 0.4);
}

.footer__links-col h4,
.footer__contact-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-300);
  margin-bottom: 18px;
}

.footer__links-col ul {
  display: grid;
  gap: 10px;
}

.footer__links-col a {
  font-size: 0.88rem;
  color: rgba(250, 246, 240, 0.7);
  transition: color var(--transition-fast);
}

.footer__links-col a:hover {
  color: var(--gold-300);
  padding-left: 3px;
}

.footer__contact-col p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(250, 246, 240, 0.75);
  margin-bottom: 12px;
  line-height: 1.45;
}

.footer__contact-col i {
  width: 16px;
  height: 16px;
  color: var(--gold-400);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__bottom {
  padding-top: 28px;
}

.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.footer__bottom p {
  font-size: 0.82rem;
  color: rgba(250, 246, 240, 0.6);
}

.footer__disclaimer {
  font-size: 0.75rem;
  color: rgba(250, 246, 240, 0.4);
  max-width: 760px;
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   16. BOTÃO FLUTUANTE DO WHATSAPP
   -------------------------------------------------------------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
}

.floating-whatsapp__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  filter: drop-shadow(0 6px 20px rgba(35, 22, 16, 0.3));
  transition: transform var(--transition-normal);
}

.floating-whatsapp__btn:hover {
  transform: translateY(-3px) scale(1.03);
}

.floating-whatsapp__tooltip {
  background: var(--brown-900);
  color: var(--white);
  padding: 7px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--gold-400);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.status-dot {
  width: 7px;
  height: 7px;
  background-color: var(--whatsapp-green);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 6px var(--whatsapp-green);
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.floating-whatsapp__icon-box {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold-300);
}

.floating-whatsapp__icon-box i {
  width: 28px;
  height: 28px;
}

.floating-whatsapp__pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--gold-400);
  opacity: 0.8;
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  pointer-events: none;
}

@keyframes pulse-ring {
  0% { transform: scale(0.85); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* --------------------------------------------------------------------------
   17. RESPONSIVIDADE
   -------------------------------------------------------------------------- */
@media (max-width: 1040px) {
  .hero__inner,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__content {
    max-width: 100%;
    text-align: center;
  }

  .hero__actions,
  .hero__pills {
    justify-content: center;
  }

  .manifesto-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .manifesto-item {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 14px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer__main {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-band__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 820px) {
  .top-notice__left {
    display: none;
  }

  .top-notice__inner {
    justify-content: center;
  }

  .topbar__cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    background: var(--bg-page);
    padding: 24px 20px 32px;
    border-bottom: 2px solid var(--gold-500);
    box-shadow: 0 15px 35px rgba(35, 22, 16, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all var(--transition-normal);
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
  }

  .nav-link {
    font-size: 1.05rem;
  }

  .nav__mobile-cta {
    display: block;
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .container {
    width: calc(100% - 28px);
  }

  .section {
    padding: 60px 0;
  }

  .hero {
    padding: 40px 0 60px;
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .portrait-frame__img {
    height: 380px;
  }

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

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

  .services-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer__main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .floating-whatsapp__tooltip {
    display: none;
  }

  .floating-whatsapp {
    bottom: 18px;
    right: 18px;
  }
}
