/*
Theme Name:  Ingrid Andrade Advocacia
Theme URI:   https://andradeadvs.com
Author:      Ingrid Andrade
Author URI:  https://andradeadvs.com
Description: Tema customizado para o escritório Ingrid Andrade Advocacia. Sofisticado, azul-petróleo e dourado, com interações refinadas.
Version:     2.39.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ingrid-andrade
Tags:        minimal, law, corporate, custom
*/

/* ============================================================
   CUSTOM PROPERTIES — DESIGN TOKENS
   ============================================================ */
:root {
  /* Cores */
  --petrol:         #24293b;
  --petrol-dark:    #1a1f2d;
  --petrol-light:   #36435a;
  --gold:           #C4974A;
  --gold-light:     #E8C87A;
  --gold-gradient:  linear-gradient(135deg, #C4974A 0%, #E8C87A 60%, #C4974A 100%);
  --white:          #FFFFFF;
  --off-white:      #F9F8F5;
  --gray-100:       #F2F0EB;
  --gray-200:       #E8E4DC;
  --text-primary:   #24293b;
  --text-secondary: #4A5568;
  --text-muted:     #9AA3B0;

  /* Sombras refinadas (navy) */
  --shadow-sm:      0 2px 12px rgba(36,41,59,0.08);
  --shadow-md:      0 4px 30px rgba(36,41,59,0.12);
  --shadow-lg:      0 12px 48px rgba(36,41,59,0.15);

  /* Tipografia — Lato em todo o tema (sans humanista, estilo boutique jurídico) */
  --font-serif:  'Lato', system-ui, -apple-system, sans-serif;
  --font-sans:   'Lato', system-ui, -apple-system, sans-serif;

  /* Espaçamento */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* Layout */
  --container-max:  1200px;
  --container-pad:  clamp(20px, 5vw, 80px);
  --transition:     0.35s cubic-bezier(0.3, 0, 0.2, 1);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --radius:         2px;

  /* Motion */
  --reduce-motion: (prefers-reduced-motion: reduce);
}

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

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

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--white);
}

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

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

ul, ol { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.25;
  color: var(--text-primary);
}

h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 600;
  line-height: 1.4;
}

h1 { font-size: clamp(32px, 5vw, 56px); }
h2 { font-size: clamp(26px, 4vw, 40px); }
h3 { font-size: clamp(20px, 2.5vw, 26px); }
h4 { font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; }

p { margin-bottom: var(--space-4); }
p:last-child { margin-bottom: 0; }

/* ============================================================
   ANIMATIONS & TRANSITIONS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Reduzir motion para preferências do usuário */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.section {
  padding-top: var(--space-24);
  padding-bottom: var(--space-24);
}

.section--navy {
  background-color: var(--petrol);
  color: var(--white);
}

.section--off-white {
  background-color: var(--off-white);
}

.section--gray {
  background-color: var(--gray-100);
}

/* Linha decorativa dourada — inspirada na base da árvore da logo (duas linhas paralelas) */
.section-label {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.section-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 7px;
  flex-shrink: 0;
  border-top: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  opacity: 0.7;
}

.section-label span {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Grid genérico */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }

@media (max-width: 1023px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding-top: var(--space-16); padding-bottom: var(--space-16); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold-gradient);
  color: var(--petrol);
  border-color: transparent;
}

.btn--primary {
  position: relative;
  overflow: hidden;
}

.btn--primary:hover {
  filter: brightness(0.95);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 151, 74, 0.25);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn--outline:hover {
  background: rgba(196, 151, 74, 0.12);
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-1px);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
  transition: all var(--transition-fast);
}

.btn--outline-white:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196, 151, 74, 0.08);
  transform: translateY(-1px);
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--petrol);
  border-bottom: 1px solid rgba(196, 151, 74, 0.15);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0);
  transition: box-shadow var(--transition-fast), border-bottom-color var(--transition-fast), height var(--transition-fast);
  will-change: box-shadow;
}

.site-header.scrolled {
  box-shadow: 0 4px 16px rgba(15, 76, 92, 0.12);
  border-bottom-color: rgba(196, 151, 74, 0.25);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: height var(--transition-fast);
}

.site-header.scrolled .container {
  height: 64px;
}

.site-logo {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
}

.site-logo span {
  color: var(--gold);
}

.logo-image {
  height: 60px;
  width: auto;
  display: block;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.site-nav a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  transition: color var(--transition);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a.current-menu-item {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.site-nav .btn {
  padding: 10px 24px;
}

/* Menu mobile */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: all var(--transition);
}

@media (max-width: 767px) {
  .menu-toggle { display: block; }

  .site-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--petrol);
    border-top: 1px solid rgba(196,151,74,0.2);
    padding: var(--space-6) var(--container-pad);
  }

  .site-nav.is-open { display: block; }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-6);
  }
}

/* ============================================================
   HERO — FULLSCREEN
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
}

.hero--full {
  min-height: 90vh;
  background-color: var(--petrol-dark);
  display: flex;
  align-items: center;
}

/* Foto posicionada à direita */
.hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Degradê suave entre fundo sólido e foto */
.hero-fade {
  position: absolute;
  top: 0;
  left: 45%;
  width: 30%;
  height: 100%;
  background: linear-gradient(
    to right,
    var(--petrol-dark) 0%,
    rgba(26, 31, 45, 0.95) 8%,
    rgba(26, 31, 45, 0.85) 20%,
    rgba(26, 31, 45, 0.70) 35%,
    rgba(26, 31, 45, 0.50) 50%,
    rgba(26, 31, 45, 0.30) 65%,
    rgba(26, 31, 45, 0.15) 80%,
    rgba(26, 31, 45, 0.05) 92%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-container.container {
  position: relative;
  z-index: 2;
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: clamp(60px, 8vw, 140px);
  padding-right: 0;
}

.hero-inner {
  max-width: 480px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-subtitle {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-6);
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-6);
}

.hero h1 em {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

.hero-description {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-10);
  max-width: 560px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* Responsividade do hero fullscreen */
@media (max-width: 767px) {
  .hero--full {
    min-height: 100svh;
  }

  .hero-photo {
    width: 100%;
    opacity: 0.3;
  }

  .hero-fade {
    width: 100%;
    background: linear-gradient(
      to bottom,
      rgba(26, 31, 45, 0.85) 0%,
      rgba(26, 31, 45, 0.60) 50%,
      rgba(26, 31, 45, 0.85) 100%
    );
  }

  .hero-inner {
    max-width: 100%;
  }

  .hero-description {
    font-size: 16px;
  }
}

/* ============================================================
   PILARES / DIFERENCIAIS
   ============================================================ */
.pilares-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.pilar-card {
  padding: var(--space-8);
  background: var(--white);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-top-color var(--transition-fast);
  cursor: pointer;
}

.pilar-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--gold-light);
}

.pilar-card h3 {
  font-size: 20px;
  margin-bottom: var(--space-3);
}

.pilar-card p {
  font-size: 15px;
  color: var(--text-secondary);
}

@media (max-width: 767px) {
  .pilares-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SOBRE (SNIPPET NA HOME)
   ============================================================ */
.sobre-snippet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.sobre-snippet__image {
  position: relative;
}

.sobre-snippet__image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 20%;
}

.sobre-snippet__image::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--gold);
  z-index: -1;
}

@media (max-width: 767px) {
  .sobre-snippet { grid-template-columns: 1fr; }
  .sobre-snippet__image::after { display: none; }
}

/* ============================================================
   ÁREAS DE ATUAÇÃO — FULL-WIDTH BACKGROUND + LISTA SOBREPOSTA
   ============================================================ */
.areas-fullbg {
  position: relative;
  background-color: var(--petrol);
  width: 100vw;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-left: calc(-50vw + 50%);
}

/* Overlay petrol — sempre visível por cima da imagem */
.areas-fullbg__overlay {
  position: absolute;
  inset: 0;
  background: rgba(36, 41, 59, 0.65);
  z-index: 1;
  pointer-events: none;
}

/* Imagem de fundo — textura padrão sempre visível (sutil), fica mais forte no hover */
.areas-fullbg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--area-bg, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: contrast(0.6) brightness(0.8) grayscale(1);
  opacity: 0.35;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.areas-fullbg.has-image::before {
  opacity: 1;
}

.areas-fullbg__content {
  position: relative;
  z-index: 2;
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.areas-fullbg__heading {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  position: absolute;
  top: var(--space-10);
  left: 0;
  margin-bottom: var(--space-6);
}

.areas-fullbg__list {
  max-width: none;
  margin-top: var(--space-20);
}

.area-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
  position: relative;
}

.area-item__slash {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.8vw, 32px);
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  opacity: 1;
  transition: color 0.3s ease;
  line-height: 1;
}

.area-item__title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.8vw, 32px);
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.3s ease, transform 0.35s ease;
  color: rgba(255, 255, 255, 0.7);
  display: inline-block;
  will-change: transform;
}

/* Hover & active: cores invertem — nome fica gold, slash fica claro */
.area-item:hover .area-item__slash,
.area-item--active .area-item__slash {
  color: rgba(255, 255, 255, 0.7);
}

.area-item:hover .area-item__title,
.area-item--active .area-item__title {
  color: var(--gold);
  transform: translateX(12px);
}

/* Botão outline claro */
.btn--outline-light {
  display: inline-block;
  padding: var(--space-4) var(--space-8);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn--outline-light:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
  .areas-fullbg { height: 100vh; min-height: 500px; }
  .areas-fullbg__content { padding-top: var(--space-10); padding-bottom: var(--space-10); }
  .areas-fullbg__heading { top: var(--space-6); }
  .areas-fullbg__list { margin-top: var(--space-16); }
  .area-item { padding: var(--space-2) 0; }
  .area-item__title { font-size: 18px; }
  .area-item__slash { font-size: 18px; }
}

/* ============================================================
   PROCESSO (COMO TRABALHO)
   ============================================================ */
.processo-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
  position: relative;
}

.processo-steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: var(--gray-200);
  z-index: 0;
}

.passo {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-4);
}

.passo-numero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--gold-gradient);
  color: var(--petrol);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto var(--space-4);
  border-radius: 50%;
}

.passo h3 {
  font-size: 18px;
  margin-bottom: var(--space-3);
}

.passo p {
  font-size: 14px;
  color: var(--text-secondary);
}

@media (max-width: 1023px) {
  .processo-steps { grid-template-columns: repeat(2, 1fr); }
  .processo-steps::before { display: none; }
}

@media (max-width: 767px) {
  .processo-steps { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTATO
   ============================================================ */
.contato-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-16);
  align-items: start;
}

.contato-info h2 {
  margin-bottom: var(--space-6);
}

.contato-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.contato-item-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 16px;
}

.contato-item-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contato-item-text span {
  font-size: 16px;
  color: var(--text-primary);
}

/* Contact Form 7 — override estilos */
.wpcf7-form input,
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-primary);
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition);
  margin-bottom: var(--space-4);
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

.wpcf7-form textarea {
  min-height: 140px;
  resize: vertical;
}

.wpcf7-form input[type="submit"] {
  background: var(--gold-gradient);
  color: var(--petrol);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
  width: auto;
  padding: 14px 36px;
}

.wpcf7-form input[type="submit"]:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

@media (max-width: 767px) {
  .contato-layout { grid-template-columns: 1fr; }
}

/* LGPD privacy note (linha abaixo do submit) */
.wpcf7-form .wpcf7-privacy-note {
  margin: var(--space-4) 0 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.wpcf7-form .wpcf7-privacy-note a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.wpcf7-form .wpcf7-privacy-note a:hover {
  text-decoration: none;
}

/* CF7 response / messages */
.wpcf7 form .wpcf7-response-output {
  margin: var(--space-6) 0 0;
  padding: var(--space-4) var(--space-5);
  border: 1px solid var(--gold);
  border-radius: 2px;
  background: rgba(196,151,74,0.08);
  color: var(--petrol);
  font-size: 14px;
  line-height: 1.6;
}
.wpcf7 form.sent .wpcf7-response-output {
  border-color: var(--gold);
  background: rgba(196,151,74,0.1);
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  border-color: #b45252;
  background: rgba(180,82,82,0.08);
  color: #7a2e2e;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  background: var(--off-white);
}
.faq-header {
  max-width: 640px;
  margin: 0 auto var(--space-10);
  text-align: center;
}
.faq-header h2 {
  margin-bottom: var(--space-3);
}
.faq-header p {
  color: var(--text-secondary);
  font-size: 16px;
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(10,42,58,0.12);
}
.faq-item:first-child {
  border-top: 1px solid rgba(10,42,58,0.12);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-6) 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 600;
  color: var(--petrol);
  transition: color 0.3s ease;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.35s ease;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--gold);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.faq-icon::before {
  width: 14px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 1.5px;
  height: 14px;
  transform: translate(-50%, -50%);
}
.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq-answer {
  padding: 0 0 var(--space-6);
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.75;
  max-width: 720px;
}
.faq-answer p { margin: 0; }
.faq-item[open] .faq-answer {
  animation: faqFadeIn 0.35s ease;
}
@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--petrol);
  color: rgba(255,255,255,0.6);
  padding: var(--space-16) 0 var(--space-8);
  border-top: 1px solid rgba(196,151,74,0.2);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
}

.footer-logo span { color: var(--gold); }

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: var(--space-2);
}

.footer-nav ul {
  display: flex;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* Redes sociais no rodapé */
.footer-social {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-social a:hover { color: var(--gold); }
.footer-social a svg { flex-shrink: 0; }

@media (max-width: 767px) {
  .footer-top { flex-direction: column; gap: var(--space-8); }
  .footer-nav ul { gap: var(--space-4); }
  .footer-bottom { flex-direction: column; gap: var(--space-3); text-align: center; }
  .footer-social { flex-direction: row; flex-wrap: wrap; }
  .footer-social span { display: none; }
}

/* ============================================================
   PAGE: SOBRE COMPLETA
   ============================================================ */
.sobre-hero {
  background: var(--petrol);
  padding: var(--space-20) 0;
  position: relative;
  overflow: hidden;
}


/* Animação de revelação palavra por palavra no h1 */
@keyframes sobre-hero-reveal {
  0%   { opacity: 0; transform: translateY(18px); }
  100% { opacity: 1; transform: translateY(0); }
}

.sobre-hero h1 .word {
  display: inline-block;
  opacity: 0;
  animation: sobre-hero-reveal 0.5s ease forwards;
}

.sobre-content {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--space-16);
  align-items: start;
  padding: var(--space-20) 0;
}

.sobre-photo {
  position: sticky;
  top: 100px;
}

.sobre-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 10%;
}

.formacao-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.formacao-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 14px;
  color: var(--text-secondary);
}

.formacao-item::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
}

blockquote.destaque {
  border-left: 3px solid var(--gold);
  padding: var(--space-6) var(--space-8);
  background: var(--gray-100);
  margin: var(--space-8) 0;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--petrol);
  line-height: 1.5;
}

/* Elemento decorativo da logo na blockquote */
blockquote.destaque {
  position: relative;
}
blockquote.destaque::after {
  content: '';
  position: absolute;
  right: 16px;
  bottom: 12px;
  width: 60px;
  height: 60px;
  background: url('images/logo-tree.png') no-repeat center / contain;
  opacity: 0.08;
  pointer-events: none;
}

/* Cards "como trabalho" — ícone decorativo */
.sobre-card-icon {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--gold);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: var(--space-3);
}
.sobre-card-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Elemento da logo no CTA da sobre */
.sobre-cta-section {
  position: relative;
  overflow: hidden;
}
.sobre-cta-section::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -80px;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: url('images/logo-tree.png') no-repeat center / contain;
  opacity: 0.05;
  pointer-events: none;
}

@media (max-width: 767px) {
  .sobre-content { grid-template-columns: 1fr; }
  .sobre-photo { position: static; }
}

/* ============================================================
   PAGE HERO GENÉRICO (para páginas internas)
   ============================================================ */
.page-hero {
  background: var(--petrol);
  padding: var(--space-16) 0 var(--space-12);
}

.page-hero h1 {
  color: var(--white);
  max-width: 640px;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  font-weight: 300;
  max-width: 560px;
  margin-top: var(--space-4);
  margin-bottom: 0;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--petrol);
  text-align: center;
  padding: var(--space-20) 0;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: var(--space-4);
}

.cta-section p {
  color: rgba(255,255,255,0.65);
  font-size: 18px;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto var(--space-8);
}

.cta-section .btn--primary {
  font-size: 14px;
}

/* ============================================================
   PAGE HERO (Blog, páginas internas)
   ============================================================ */
.page-hero {
  background: var(--petrol);
  padding: var(--space-20) 0 var(--space-16);
  text-align: center;
}
.page-hero .section-label span {
  background: rgba(196,151,74,.15);
  color: var(--gold-light);
  border-color: rgba(196,151,74,.25);
}
.page-hero h1 {
  color: var(--white);
  max-width: 700px;
  margin: var(--space-4) auto var(--space-4);
  font-size: clamp(28px, 4vw, 44px);
}
.page-hero p {
  color: rgba(255,255,255,.65);
  font-size: 17px;
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto;
}

/* ============================================================
   BLOG GRID
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-8);
}
.blog-grid--home {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .blog-grid--home { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .blog-grid,
  .blog-grid--home { grid-template-columns: 1fr; }
}

/* ============================================================
   BLOG CARD
   ============================================================ */
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s ease, transform .2s ease;
}
.blog-card:hover {
  box-shadow: 0 8px 32px rgba(27,42,74,.10);
  transform: translateY(-2px);
}
.blog-card__image {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--gray-100);
}
.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.blog-card:hover .blog-card__image img {
  transform: scale(1.04);
}
.blog-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--petrol) 0%, var(--petrol-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card__placeholder::after {
  content: 'IA';
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--gold);
  opacity: .4;
}
.blog-card__body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: var(--space-3);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.blog-card__meta a { color: var(--gold); text-decoration: none; }
.blog-card__meta a:hover { text-decoration: underline; }
.blog-card__sep { opacity: .5; }
.blog-card__title {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: var(--space-3);
  color: var(--text-primary);
}
.blog-card__title a {
  color: inherit;
  text-decoration: none;
}
.blog-card__title a:hover { color: var(--gold); }
.blog-card__excerpt {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-6);
  flex: 1;
}
.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: gap .2s ease;
}
.blog-card__link:hover { gap: 10px; }

/* ============================================================
   BLOG PAGINATION
   ============================================================ */
.blog-pagination {
  margin-top: var(--space-16);
  text-align: center;
}
.blog-pagination .nav-links {
  display: inline-flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  justify-content: center;
}
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 var(--space-3);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all .2s;
}
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background: var(--petrol);
  border-color: var(--petrol);
  color: var(--white);
}
.blog-empty {
  text-align: center;
  padding: var(--space-24) 0;
  color: var(--text-secondary);
}

/* ============================================================
   SINGLE POST
   ============================================================ */
.post-header {
  background: var(--petrol);
  padding: var(--space-16) 0 var(--space-12);
}
.post-header__inner {
  max-width: 760px;
}
.post-back {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 13px;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  margin-bottom: var(--space-8);
  transition: color .2s;
}
.post-back:hover { color: var(--gold-light); }
.post-meta {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 12px;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: var(--space-4);
}
.post-meta__cat { color: var(--gold-light); text-decoration: none; }
.post-meta__sep { opacity: .5; }
.post-title {
  color: var(--white);
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.2;
  margin-bottom: var(--space-4);
}
.post-subtitle {
  color: rgba(255,255,255,.60);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  max-width: 620px;
}
.post-featured-image {
  background: var(--gray-100);
}
.post-featured-image__img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}
.post-content-wrap {
  padding: var(--space-16) 0;
}
.post-content {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
}
.post-content h2,
.post-content h3 {
  color: var(--text-primary);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
}
.post-content h2 { font-size: 26px; }
.post-content h3 { font-size: 20px; }
.post-content p { margin-bottom: var(--space-6); }
.post-content ul,
.post-content ol {
  padding-left: var(--space-6);
  margin-bottom: var(--space-6);
}
.post-content li { margin-bottom: var(--space-2); }
.post-content a { color: var(--gold); }
.post-content blockquote {
  border-left: 3px solid var(--gold);
  padding: var(--space-4) var(--space-6);
  margin: var(--space-8) 0;
  background: var(--off-white);
  font-size: 18px;
  color: var(--text-primary);
}
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid var(--gray-200);
  max-width: 760px;
}
.post-tag {
  font-size: 12px;
  padding: 4px 10px;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  color: var(--text-muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: all .2s;
}
.post-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.post-author-box {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-10);
  padding: var(--space-6);
  background: var(--off-white);
  border-radius: 8px;
  max-width: 760px;
}
.post-author-box__initials {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--petrol);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.post-author-box__name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 15px;
  margin: 0 0 2px;
}
.post-author-box__role {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}
.post-cta {
  margin-top: var(--space-12);
  padding: var(--space-10);
  background: var(--petrol);
  border-radius: 8px;
  text-align: center;
  max-width: 760px;
}
.post-cta h3 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: var(--space-3);
}
.post-cta p {
  color: rgba(255,255,255,.6);
  font-size: 15px;
  margin-bottom: var(--space-6);
}
.post-nav {
  background: var(--off-white);
  border-top: 1px solid var(--gray-200);
  padding: var(--space-8) 0;
}
.post-nav .nav-links {
  display: flex;
  justify-content: space-between;
  gap: var(--space-6);
}
.post-nav .nav-previous,
.post-nav .nav-next {
  flex: 1;
}
.post-nav .nav-next { text-align: right; }
.post-nav a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  color: var(--text-primary);
}
.post-nav__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
}
.post-nav__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  transition: color .2s;
}
.post-nav a:hover .post-nav__title { color: var(--gold); }

/* ============================================================
   SOCIAL FOLLOW SECTION
   ============================================================ */
/* Instagram Feed Section */
.instagram-feed-section {
  background: var(--petrol-dark);
  padding: var(--space-12) var(--space-8) var(--space-16);
}
.instagram-feed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto var(--space-8);
  padding: 0 var(--space-4);
}
.instagram-feed-title {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--gold);
}
.instagram-feed-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-decoration: none;
  transition: opacity var(--transition);
}
.instagram-feed-cta:hover {
  opacity: 0.8;
}
.instagram-feed-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}
/* Smash Balloon overrides */
.instagram-feed-grid #sb_instagram {
  width: 100% !important;
  padding-bottom: 0 !important;
}
.instagram-feed-grid #sb_instagram #sbi_images {
  padding: 0 !important;
}
/* Hide header, load more, follow button */
.instagram-feed-grid .sb_instagram_header {
  display: none !important;
}
.instagram-feed-grid #sbi_load {
  display: none !important;
}
.instagram-feed-grid .sbi_follow_btn {
  display: none !important;
}
/* Show only first 4 posts */
.instagram-feed-grid .sbi_item:nth-child(n+5) {
  display: none !important;
}
/* Force 4-column grid layout */
.instagram-feed-grid #sbi_images {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px !important;
}
.instagram-feed-grid #sbi_images .sbi_item {
  width: 100% !important;
  max-width: 100% !important;
  transition: transform 0.4s ease;
}
.instagram-feed-grid .sbi_photo_wrap {
  width: 100% !important;
}
.instagram-feed-grid .sbi_photo_wrap .sbi_photo {
  width: 100% !important;
  height: 0 !important;
  padding-bottom: 100% !important;
  position: relative !important;
  overflow: hidden !important;
  display: block !important;
}
.instagram-feed-grid .sbi_photo_wrap .sbi_photo img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
.instagram-feed-grid .sbi_item:hover .sbi_photo_wrap .sbi_photo img {
  transform: scale(1.05);
}
.instagram-feed-grid .sbi_photo_wrap .sbi_photo img {
  transition: transform 0.4s ease !important;
}
.instagram-feed-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}
.instagram-feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.instagram-feed-item:hover img {
  transform: scale(1.05);
}
.instagram-feed-item .ig-video-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  color: rgba(255,255,255,0.9);
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5));
}
.instagram-feed-item--placeholder {
  background: linear-gradient(135deg, var(--petrol) 0%, var(--petrol-light) 60%, rgba(196,151,74,.15) 100%);
}
.instagram-feed-item--placeholder:hover {
  background: linear-gradient(135deg, var(--petrol-light) 0%, var(--petrol) 60%, rgba(196,151,74,.25) 100%);
}
.ig-placeholder-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
}
.ig-placeholder-inner span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.instagram-feed-item--placeholder:hover .ig-placeholder-inner {
  color: rgba(255,255,255,0.6);
}
@media (max-width: 767px) {
  .instagram-feed-grid #sbi_images {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ============================================================
   WHATSAPP CHAT WIDGET
   ============================================================ */
@keyframes wa-shake {
  0%, 100% { transform: rotate(0deg); }
  15% { transform: rotate(12deg); }
  30% { transform: rotate(-10deg); }
  45% { transform: rotate(8deg); }
  60% { transform: rotate(-6deg); }
  75% { transform: rotate(3deg); }
}
.wa-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  font-family: var(--font-sans);
}

/* Botão redondo */
.wa-widget__btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
}
.wa-widget__btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}
.wa-widget__btn.is-shaking {
  animation: wa-shake 0.6s ease-in-out;
}
.wa-widget__btn svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

/* Caixa de chat */
.wa-widget__box {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 320px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  opacity: 0;
  transform: translateY(16px) scale(0.92);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.wa-widget__box.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Header verde */
.wa-widget__header {
  background: #075E54;
  color: #fff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wa-widget__header-icon {
  width: 28px;
  height: 28px;
  fill: #25D366;
  flex-shrink: 0;
}
.wa-widget__header div {
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.wa-widget__header strong {
  font-size: 15px;
  font-weight: 600;
}
.wa-widget__header span {
  font-size: 11px;
  opacity: 0.8;
}
.wa-widget__close {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  padding: 0 4px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.wa-widget__close:hover { opacity: 1; }

/* Corpo — fundo estilo WhatsApp */
.wa-widget__body {
  background: #ECE5DD;
  padding: 20px 16px;
  min-height: 80px;
}
.wa-widget__msg {
  background: #fff;
  border-radius: 0 8px 8px 8px;
  padding: 10px 12px;
  max-width: 85%;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
  position: relative;
}
.wa-widget__msg strong {
  display: block;
  font-size: 12px;
  color: #075E54;
  margin-bottom: 2px;
}
.wa-widget__msg p {
  font-size: 13.5px;
  color: #333;
  margin: 0;
  line-height: 1.4;
}
.wa-widget__time {
  display: block;
  text-align: right;
  font-size: 10px;
  color: #999;
  margin-top: 4px;
}

/* Botão CTA */
.wa-widget__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 16px;
  transition: background 0.2s;
}
.wa-widget__cta:hover { background: #1fba59; }
.wa-widget__cta svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

@media (max-width: 480px) {
  .wa-widget__box { width: 280px; right: -8px; }
}

/* ============================================================
   HEADER SOCIAL ICONS
   ============================================================ */
.header-social {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-left: var(--space-4);
}
.header-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.header-social a:hover {
  color: var(--gold);
}
.header-social a svg {
  width: 18px;
  height: 18px;
}
.header-social__handle {
  font-size: 12px;
  font-weight: 500;
  margin-left: 4px;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.header-social a:hover .header-social__handle {
  opacity: 1;
}

@media (max-width: 1024px) {
  .header-social__handle { display: none; }
}
@media (max-width: 767px) {
  .header-social { display: none; }
}


/* ============================================================
   LOGO-INSPIRED ELEMENTS
   Árvore estilizada da logo como marca d'água em pontos-chave.
   ============================================================ */

/* Imagem real da árvore da logo recortada */
:root {
  --logo-tree: url("images/logo-tree.png");
}

/* CTA section: árvore centralizada como marca d'água */
.cta-section {
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  background: var(--logo-tree) center/contain no-repeat;
  opacity: 0.12;
  mix-blend-mode: screen;
  pointer-events: none;
}

/* Sobre snippet: árvore atrás da foto */
.sobre-snippet__image {
  position: relative;
}
.sobre-snippet__image::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
  width: 130px;
  height: 130px;
  background: var(--logo-tree) center/contain no-repeat;
  opacity: 0.15;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 767px) {
  .cta-section::before { width: 160px; height: 160px; }
  .sobre-snippet__image::before { display: none; }
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children animation */
.reveal-section.is-visible .pilar-card,
.reveal-section.is-visible .area-card,
.reveal-section.is-visible .passo,
.reveal-section.is-visible .blog-card {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   PÁGINAS DE ÁREA (detalhe individual)
   ============================================================ */
.area-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: var(--space-24) 0 var(--space-16);
  color: var(--white);
  overflow: hidden;
  background: var(--petrol);
}

.area-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}

.area-hero__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36,41,59,0.4) 0%, rgba(36,41,59,0.95) 100%);
}

.area-hero__inner {
  position: relative;
  z-index: 2;
}

.area-hero__number {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-4);
}

.area-hero h1 {
  color: var(--white);
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.1;
  margin: 0;
  max-width: 900px;
}

.area-hero__subtitle {
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(255,255,255,0.82);
  max-width: 720px;
  margin-top: var(--space-6);
  line-height: 1.5;
}

.area-content {
  max-width: 760px;
}

.area-content p {
  font-size: 18px;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
}

.area-audience {
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid var(--gray-200);
}

.area-audience__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold) !important;
  margin-bottom: var(--space-3) !important;
  font-family: var(--font-sans);
}

.area-audience__text {
  font-size: 17px;
  color: var(--text-primary) !important;
  margin-bottom: 0 !important;
}

/* ============================================================
   PÁGINA POLÍTICA DE PRIVACIDADE (page-id-127)
   Layout inspirado na MZ: hierarquia limpa, espaçamento homogêneo
   ============================================================ */
.page-id-127 .page-hero {
  text-align: left;
  padding: var(--space-20) 0 var(--space-12);
}
.page-id-127 .page-hero .section-label {
  display: none;
}
.page-id-127 .page-hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(30px, 4vw, 44px);
  font-style: normal;
  font-weight: 300;
  line-height: 1.2;
  text-align: left;
}

.page-id-127 .page-content {
  max-width: 780px !important;
  margin: 0 auto;
  color: var(--text-primary);
  font-family: var(--font-sans);
}

/* Parágrafos: tamanho e espaçamento homogêneos */
.page-id-127 .page-content p {
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 var(--space-5);
  color: var(--text-primary);
}
.page-id-127 .page-content p em {
  color: var(--text-muted);
}

/* Seções numeradas (títulos tipo MZ: pequenos, UPPERCASE, bold) */
.page-id-127 .page-content ol {
  list-style: none;
  padding: 0;
  margin: var(--space-10) 0 var(--space-4);
  counter-reset: none;
}
.page-id-127 .page-content ol > li {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--petrol);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--gray-200);
  margin: 0;
}
.page-id-127 .page-content ol > li strong {
  font-weight: 700;
}

/* Listas de itens: sem bullet, recuo leve, espaçamento confortável */
.page-id-127 .page-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-4);
}
.page-id-127 .page-content ul > li {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-primary);
  margin: 0 0 var(--space-3);
  padding-left: var(--space-5);
  position: relative;
}
.page-id-127 .page-content ul > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 10px;
  height: 1px;
  background: var(--gold);
}

/* Parágrafos "&nbsp;" usados como espaçador na origem: neutraliza a altura extra */
.page-id-127 .page-content p:empty {
  display: none;
  margin: 0;
}

/* Último parágrafo (assinatura) */
.page-id-127 .page-content > p:last-child {
  margin-top: var(--space-8);
  color: var(--text-muted);
  font-style: italic;
}

@media (max-width: 767px) {
  .page-id-127 .page-content p,
  .page-id-127 .page-content ul > li {
    font-size: 16px;
  }
  .page-id-127 .page-content ol {
    margin-top: var(--space-8);
  }
}

/* ============================================================
   LANDING — EQUIPARAÇÃO HOSPITALAR (body.landing-equiparacao)
   Página fantasma: header mínimo, sem menu, foco em conversão.
   ============================================================ */
body.landing-equiparacao {
  background: var(--white);
  color: var(--text-primary);
  font-family: var(--font-sans);
}
body.landing-equiparacao .site-header,
body.landing-equiparacao .site-footer { display: none !important; }

/* Header enxuto */
.landing-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
.landing-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}
.landing-logo img { height: 42px; width: auto; display: block; }
.landing-header-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid #25D366;
  border-radius: 999px;
  color: #25D366;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.landing-header-wa:hover { background: #25D366; color: var(--white); }

/* Main wrapper */
.landing-main { overflow-x: hidden; }

/* Container narrow para seções de texto */
.le-narrow { max-width: 780px; margin: 0 auto; }

/* Labels de seção */
.le-eyebrow,
.le-section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-4);
}

/* HERO */
.le-hero {
  background: linear-gradient(180deg, var(--petrol) 0%, var(--petrol-dark) 100%);
  color: var(--white);
  padding: var(--space-20) 0 var(--space-16);
  text-align: left;
  position: relative;
}
.le-hero .container { max-width: 900px; }
.le-hero h1 {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 300;
  line-height: 1.15;
  margin: 0 0 var(--space-6);
  letter-spacing: -0.01em;
}
.le-hero .le-lead {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  margin: 0 0 var(--space-10);
  max-width: 720px;
}
.le-hero .le-lead strong { color: var(--gold-light); font-weight: 600; }
.le-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.le-hero-reassure {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin: 0;
  font-style: italic;
}

/* Botões */
.le-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: all 0.2s;
  text-align: center;
  cursor: pointer;
}
.le-btn--primary {
  background: var(--gold-gradient);
  color: var(--petrol);
  box-shadow: var(--shadow-sm);
}
.le-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.le-btn--wa {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.le-btn--wa:hover { background: #1da851; border-color: #1da851; }
.le-btn--wa-inline { margin: var(--space-4) 0 var(--space-10); }

/* Números */
.le-numbers {
  background: var(--off-white);
  padding: var(--space-12) 0;
  border-bottom: 1px solid var(--gray-200);
}
.le-numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}
.le-number {
  text-align: center;
  padding: 0 var(--space-4);
}
.le-number-val {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 700;
  color: var(--petrol);
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}
.le-number-label {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}

/* Seções */
.le-section {
  padding: var(--space-20) 0;
}
.le-section--tint { background: var(--off-white); }
.le-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 300;
  line-height: 1.25;
  color: var(--petrol);
  margin: 0 0 var(--space-8);
  letter-spacing: 0;
}
.le-section p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-primary);
  margin: 0 0 var(--space-5);
}
.le-section p strong { color: var(--petrol); font-weight: 600; }

/* Checklist (bullets dourados) */
.le-checklist {
  list-style: none;
  padding: 0;
  margin: var(--space-8) 0 0;
}
.le-checklist li {
  position: relative;
  padding: var(--space-5) 0 var(--space-5) 44px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-primary);
  border-bottom: 1px solid var(--gray-200);
}
.le-checklist li:last-child { border-bottom: 0; }
.le-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(var(--space-5) + 10px);
  width: 24px;
  height: 2px;
  background: var(--gold);
}
.le-checklist li strong {
  display: block;
  font-weight: 700;
  color: var(--petrol);
  margin-bottom: 6px;
  font-size: 18px;
}

/* Steps numerados */
.le-steps {
  list-style: none;
  padding: 0;
  margin: var(--space-8) 0 0;
  counter-reset: step;
}
.le-steps > li {
  display: flex;
  gap: var(--space-8);
  padding: var(--space-8) 0;
  border-bottom: 1px solid var(--gray-200);
}
.le-steps > li:last-child { border-bottom: 0; }
.le-step-num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  min-width: 64px;
}
.le-steps h3 {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 600;
  color: var(--petrol);
  margin: 0 0 var(--space-3);
  letter-spacing: 0;
  text-transform: none;
}
.le-steps p {
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
  color: var(--text-secondary);
}

/* Autor */
.le-author { text-align: left; }
.le-author h2 { margin-bottom: var(--space-4); }
.le-author-meta {
  font-size: 14px !important;
  color: var(--text-muted);
  margin-top: var(--space-5) !important;
  letter-spacing: 0.02em;
}

/* Form */
.le-form-section { background: var(--petrol); color: var(--white); }
.le-form-section h2 { color: var(--white); }
.le-form-section .le-section-label { color: var(--gold-light); }
.le-form-section p { color: rgba(255,255,255,0.85); }
.le-form-lead { margin-bottom: var(--space-2); }
.le-form-wrap {
  background: var(--white);
  padding: var(--space-10);
  border-top: 3px solid var(--gold);
  margin-top: var(--space-8);
}
.le-form-wrap,
.le-form-wrap p,
.le-form-wrap label { color: var(--text-primary); }

.le-form-fallback {
  display: grid;
  gap: var(--space-5);
}
.le-form-fallback label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.le-form-fallback input,
.le-form-fallback select {
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 2px;
  font-size: 16px;
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--white);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.le-form-fallback input:focus,
.le-form-fallback select:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,151,74,0.15);
}
.le-form-fallback button { margin-top: var(--space-3); }
.le-form-note {
  font-size: 13px !important;
  color: var(--text-muted) !important;
  margin: var(--space-3) 0 0 !important;
  font-style: italic;
}

/* CF7 — herdar look dos inputs */
.le-form-wrap .wpcf7 input[type="text"],
.le-form-wrap .wpcf7 input[type="email"],
.le-form-wrap .wpcf7 input[type="tel"],
.le-form-wrap .wpcf7 select,
.le-form-wrap .wpcf7 textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 2px;
  font-size: 16px;
  font-family: var(--font-sans);
  background: var(--white);
}
.le-form-wrap .wpcf7 label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
}
.le-form-wrap .wpcf7 input[type="submit"] {
  background: var(--gold-gradient);
  color: var(--petrol);
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 0;
  cursor: pointer;
  width: auto;
  transition: all 0.2s;
}
.le-form-wrap .wpcf7 input[type="submit"]:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* FAQ */
.le-faq { margin-top: var(--space-8); }
.le-faq details {
  border-bottom: 1px solid var(--gray-200);
  padding: var(--space-5) 0;
}
.le-faq details[open] summary .le-faq-icon::before { transform: rotate(90deg); }
.le-faq summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  color: var(--petrol);
  padding: var(--space-2) 0;
}
.le-faq summary::-webkit-details-marker { display: none; }
.le-faq-icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.le-faq-icon::before,
.le-faq-icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  transition: transform 0.25s;
}
.le-faq-icon::before { top: 6px; left: 0; width: 14px; height: 2px; }
.le-faq-icon::after  { top: 0; left: 6px; width: 2px; height: 14px; }
.le-faq details[open] .le-faq-icon::after { transform: scaleY(0); }
.le-faq details > div { padding: var(--space-3) 0 var(--space-2); }
.le-faq details p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}

/* CTA final */
.le-cta-final {
  background: linear-gradient(180deg, var(--petrol-dark) 0%, var(--petrol) 100%);
  color: var(--white);
  padding: var(--space-20) 0;
  text-align: left;
}
.le-cta-final h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 300;
  line-height: 1.25;
  color: var(--white);
  margin: 0 0 var(--space-5);
}
.le-cta-final p {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  margin: 0 0 var(--space-8);
}

/* Footer minimalista */
.landing-footer {
  background: var(--petrol-dark);
  color: rgba(255,255,255,0.6);
  padding: var(--space-8) 0;
  text-align: center;
  font-size: 13px;
}
.landing-footer p { margin: 0; line-height: 1.7; }
.landing-footer a { color: rgba(255,255,255,0.7); }
.landing-footer a:hover { color: var(--gold-light); }
.le-footer-meta { margin-top: 6px !important; font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; }

/* Responsivo */
@media (max-width: 767px) {
  .le-hero { padding: var(--space-16) 0 var(--space-12); }
  .le-hero .le-lead { font-size: 17px; }
  .le-hero-ctas { flex-direction: column; align-items: stretch; }
  .le-btn { width: 100%; }
  .le-numbers-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .le-number { text-align: left; padding: var(--space-5) 0; border-bottom: 1px solid var(--gray-200); }
  .le-number:last-child { border-bottom: 0; }
  .le-section { padding: var(--space-12) 0; }
  .le-section p,
  .le-checklist li,
  .le-steps p { font-size: 16px; }
  .le-steps > li { flex-direction: column; gap: var(--space-4); }
  .le-step-num { font-size: 38px; min-width: auto; }
  .le-form-wrap { padding: var(--space-6); }
  .le-cta-final { padding: var(--space-12) 0; }
  .landing-header-wa span { display: none; }
  .landing-header-wa { padding: 10px 12px; }
}
