/* ============================================================
   FALCONE & PERRUCI ADVOGADOS — style.css
   Design System: Verde Escuro + Dourado + Tipografia Clássica
   ============================================================ */

/* ── Google Fonts import ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --green:        #1E3A2F;
  --green-dark:   #152B22;
  --green-light:  #2A4E40;
  --gold:         #C4962A;
  --gold-light:   #D4A843;
  --gold-pale:    #F0E4C2;
  --cream:        #F8F6F1;
  --white:        #FFFFFF;
  --dark:         #1A1A1A;
  --gray:         #5A5A5A;
  --gray-light:   #9A9A9A;
  --border:       #E0DDD6;

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

  --nav-h: 80px;
  --radius: 3px;
  --transition: 0.3s ease;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.16);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utilities ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 6rem 0; }
.section--cream { background: var(--cream); }
.section--green { background: var(--green); color: var(--white); }

.section-label {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--green);
  margin-bottom: 1.25rem;
}
.section-title--white { color: var(--white); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.8;
}
.section-subtitle--white { color: rgba(255,255,255,0.75); }

.gold-line {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem 0;
}
.gold-line--center { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,150,42,0.35);
}
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196,150,42,0.08);
}
.btn-outline--dark {
  border: 1.5px solid var(--green);
  color: var(--green);
}
.btn-outline--dark:hover {
  background: var(--green);
  color: var(--white);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--green);
  z-index: 1000;
  transition: var(--transition);
}
.navbar.scrolled {
  background: var(--green-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.navbar__logo img {
  height: 58px;
  width: auto;
  filter: brightness(1.15) drop-shadow(0 1px 3px rgba(0,0,0,0.25));
}
.navbar__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.navbar__links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
}
.navbar__links a:hover,
.navbar__links a.active {
  color: var(--white);
}
.navbar__links a:hover::after,
.navbar__links a.active::after {
  width: 100%;
}
.navbar__right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.lang-switcher {
  display: flex;
  align-items: center;
  border: 1px solid rgba(197,160,80,0.4);
  border-radius: 3px;
  overflow: hidden;
}
.lang-btn {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(197,160,80,0.45);
  background: transparent;
  border: none;
  border-right: 1px solid rgba(197,160,80,0.25);
  padding: 0.28rem 0.6rem;
  transition: var(--transition);
  cursor: pointer;
}
.lang-btn:last-child { border-right: none; }
.lang-btn:hover { color: var(--gold); }
.lang-btn.active {
  color: var(--green);
  background: var(--gold);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--green-dark);
  padding: 2rem;
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.85rem 0;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold); padding-left: 0.5rem; }
.mobile-menu .lang-btn { margin-top: 1.5rem; display: inline-block; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--green);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(196,150,42,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(255,255,255,0.03) 0%, transparent 50%);
}
.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero__tagline {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero__tagline::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.75rem;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero__scroll svg { opacity: 0.4; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Decorative vertical text */
.hero__deco {
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  white-space: nowrap;
}

/* ============================================================
   AREAS DE ATUAÇÃO
   ============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin-top: 3.5rem;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.area-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.area-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.area-card:hover { background: var(--cream); }
.area-card:hover::before { transform: scaleX(1); }
.area-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.25rem;
  color: var(--gold);
}
.area-card__title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.area-card__desc {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.75;
}
.area-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  transition: var(--transition);
}
.area-card__link:hover { color: var(--gold); gap: 0.65rem; }

/* ── Area cards — versão verde (página areas.html) ── */
.page-areas .area-card {
  background: var(--green);
  border: 1px solid rgba(197,160,80,0.25);
}
.page-areas .area-card:hover { background: #1a3a2a; }
.page-areas .area-card__icon { color: var(--gold); stroke: var(--gold); }
.page-areas .area-card__title { color: var(--white); }
.page-areas .area-card__desc { color: rgba(255,255,255,0.72); }
.page-areas .area-card__link { color: var(--gold); }
.page-areas .area-card__link:hover { color: var(--white); }

/* ============================================================
   SOBRE O ESCRITÓRIO (home snippet)
   ============================================================ */
.about-snippet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-snippet__text .section-subtitle { max-width: 100%; }
.about-snippet__text p {
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.about-snippet__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.stat-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.stat-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.stat-card__number {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-card__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.stat-card--gold .stat-card__number { color: var(--gold); }
.stat-card--full {
  grid-column: 1 / -1;
  background: var(--green);
}
.stat-card--full .stat-card__number { color: var(--gold); }
.stat-card--full .stat-card__label { color: rgba(255,255,255,0.6); }

/* ============================================================
   NEWSLETTER (home banner)
   ============================================================ */
.newsletter-banner {
  padding: 5rem 0;
  background: var(--green);
  position: relative;
  overflow: hidden;
}
.newsletter-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(196,150,42,0.15);
}
.newsletter-banner::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -5%;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(196,150,42,0.1);
}
.newsletter-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.newsletter-form input {
  flex: 1;
  padding: 1rem 1.25rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  border: none;
  outline: none;
  background: var(--white);
  color: var(--dark);
}
.newsletter-form input::placeholder { color: var(--gray-light); }
.newsletter-form button {
  padding: 1rem 1.75rem;
  background: var(--gold);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: var(--transition);
}
.newsletter-form button:hover { background: var(--gold-light); }
.newsletter-msg {
  display: none;
  color: var(--gold-light);
  font-size: 0.9rem;
  margin-top: 0.75rem;
}
.newsletter-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.75rem;
}

/* ============================================================
   BLOG PREVIEW
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.blog-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--gold); }
.blog-card__category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.blog-card__body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.blog-card__title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.blog-card__excerpt {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.25rem;
}
.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--gray-light);
}
.blog-card__read-more {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition);
}
.blog-card__read-more:hover { color: var(--gold); gap: 0.55rem; }
.blog-section-cta { text-align: center; margin-top: 3rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__logo img {
  height: 34px;
  margin-bottom: 1rem;
  filter: brightness(1.15) drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}
.footer__desc {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.25rem;
}
.footer__oab {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.footer__col-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer__links li { margin-bottom: 0.6rem; }
.footer__links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer__links a:hover { color: var(--white); padding-left: 4px; }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
}
.footer__contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer__bottom {
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}
.footer__bottom a { color: rgba(255,255,255,0.45); transition: var(--transition); }
.footer__bottom a:hover { color: var(--gold); }

/* ============================================================
   PAGE HERO (páginas internas)
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  background: var(--green);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(196,150,42,0.07) 0%, transparent 60%);
}
.page-hero__content { position: relative; z-index: 2; }
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
}
.page-hero__breadcrumb a { color: rgba(255,255,255,0.45); transition: var(--transition); }
.page-hero__breadcrumb a:hover { color: var(--gold); }
.page-hero__breadcrumb span { color: var(--gold); }
.page-hero__title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.page-hero__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.8;
}

/* ============================================================
   SOBRE PAGE
   ============================================================ */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.value-card {
  padding: 2.5rem 2rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.value-card:hover { border-color: var(--gold); }
.value-card__icon { color: var(--gold); margin-bottom: 1rem; }
.value-card__title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 0.75rem;
}
.value-card__text { font-size: 0.88rem; color: var(--gray); line-height: 1.75; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.team-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.team-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.team-card__avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--gold);
}
.team-card__name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 0.25rem;
}
.team-card__role {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.team-card__bio { font-size: 0.85rem; color: var(--gray); line-height: 1.75; }

/* ============================================================
   AREAS PAGE
   ============================================================ */
.area-detail {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.area-detail:last-child { border-bottom: none; }
.area-detail__icon-wrap {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
  text-align: center;
  padding: 3rem 2rem;
  background: var(--green);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  color: var(--gold);
}
.area-detail__icon-wrap svg { margin: 0 auto 1rem; }
.area-detail__icon-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
}
.area-detail__title {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 1rem;
}
.area-detail__text {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.area-detail__list { margin: 1.25rem 0; }
.area-detail__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--gray);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.area-detail__list li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 600;
}

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  color: var(--gray);
  background: var(--white);
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--green);
  color: var(--green);
  background: var(--cream);
}
.blog-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ============================================================
   CONTATO PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(30,58,47,0.08);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-lgpd {
  font-size: 0.78rem;
  color: var(--gray-light);
  line-height: 1.6;
}
.contact-info {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.contact-info-card {
  background: var(--green);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.contact-info-card__title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}
.contact-info-item svg { color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.contact-info-item strong { color: var(--white); display: block; margin-bottom: 0.2rem; }
.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem;
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: var(--transition);
}
.whatsapp-btn:hover { background: #20bc5a; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.3); }

/* Floating WhatsApp */
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 998;
  transition: var(--transition);
  animation: wa-pulse 2.2s ease-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); animation: none; }
.whatsapp-float svg { width: 28px; height: 28px; }

/* ============================================================
   RESPONSIVIDADE
   ============================================================ */
@media (max-width: 1024px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .about-snippet { grid-template-columns: 1fr; gap: 3rem; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info { position: static; }
  .area-detail { grid-template-columns: 1fr; }
  .area-detail__icon-wrap { position: static; }
  .blog-page-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 74px; }
  .navbar__logo img { height: 48px; }
  .section { padding: 4r