﻿/*
Theme Name: Fernanda Diehl - Arquitetura & Interiores
Theme URI: http://fernandadiehlarquitetura.com.br/
Author: Fernanda Diehl
Author URI: http://fernandadiehlarquitetura.com.br/
Description: Tema desenvolvido para o escritório Fernanda Diehl Arquitetura & Interiores.
Version: 1.0.0
Text Domain: fernandadiehl
*/
/* Fernanda Diehl Arquitetura & Interiores — unified stylesheet */

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

:root {
  --gold: #6B9E5A;
  --gold-light: #9DC488;
  --gold-dark: #4A7038;
  --black: #182314;
  --off-white: #F7F5F1;
  --warm-gray: #E8E4DC;
  --text-dark: #1A1915;
  --text-mid: #4A4740;
  --text-light: #8A877F;
  --brown: #c4a983;
  --brown-light: #6E9458;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: #DEDBD2;
  color: var(--text-dark);
  overflow-x: hidden;
  font-size: 14px;
  line-height: 1.8;
}

body.body-dark {
  background: var(--black);
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #182314;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .9s cubic-bezier(.4, 0, .2, 1), visibility .9s;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preloader-logo {
  height: 180px;
  width: auto;
  opacity: 0;
  animation: preloaderFadeIn .9s .15s cubic-bezier(.16, 1, .3, 1) forwards;
}

.preloader-bar {
  width: 240px;
  height: 1px;
  background: rgba(255, 255, 255, .1);
  margin-top: 36px;
  overflow: hidden;
}

.preloader-line {
  height: 100%;
  width: 0;
  background: #6B9E5A;
  animation: preloaderGrow 1.6s .35s cubic-bezier(.4, 0, .2, 1) forwards;
}

@keyframes preloaderFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes preloaderGrow {
  to {
    width: 100%;
  }
}

/* ===== NAVIGATION ===== */
#nav {
  position: relative;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 12px 60px;
  background: transparent;
  transition: background .4s, padding .4s;
}

#nav.home-nav,
#nav.overlay-nav {
  position: absolute;
  width: 100%;
  background: transparent;
  backdrop-filter: none;
}

#nav.home-nav.scrolled {
  background: rgba(147, 147, 97, .95);
  backdrop-filter: blur(10px);
  padding: 16px 60px;
}

#nav.slim {
  padding: 16px 60px;
}

.nav-left {
  display: none;
}

.nav-logo-mono {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-mono img {
  height: 50px;
  width: auto;
  display: block;
}

#nav.home-nav .nav-logo-mono img {
  height: 50px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  transition: color .3s;
}

.nav-links a:hover {
  color: var(--brown);
}

.nav-links a.active {
  color: #fff;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  justify-self: center;
  grid-column: 2;
  grid-row: 1;
}

.nav-logo img {
  height: 50px;
  width: auto;
  display: block;
}

#nav.home-nav .nav-logo img {
  height: 50px;
}

.nav-icons {
  display: none;
}

.nav-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(26, 25, 21, .15);
  border-radius: 50%;
  color: rgba(26, 25, 21, .5);
  text-decoration: none;
  transition: all .3s;
}

#nav.home-nav .nav-icon {
  border-color: rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .7);
}

.nav-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(107, 158, 90, .08);
}

.nav-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.nav-icon.wa-nav svg {
  fill: currentColor;
  stroke: none;
}

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 200;
  justify-self: start;
  grid-column: 1;
  grid-row: 1;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 1px;
  background: #62623F;
  transition: transform .4s cubic-bezier(.77, 0, .175, 1), opacity .3s, width .3s;
  transform-origin: center;
}

#nav.home-nav .nav-hamburger span {
  background: rgba(255, 255, 255, .8);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu close button */
.mobile-menu-close {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: border-color .3s, background .3s;
}

.mobile-menu-close.visible {
  display: flex;
}

.mobile-menu-close:hover {
  border-color: var(--gold);
  background: rgba(107, 158, 90, .08);
}

.mobile-menu-close span {
  display: block;
  position: absolute;
  width: 16px;
  height: 1px;
  background: rgba(255, 255, 255, .75);
}

.mobile-menu-close span:nth-child(1) {
  transform: rotate(45deg);
}

.mobile-menu-close span:nth-child(2) {
  transform: rotate(-45deg);
}

.mobile-menu-close:hover span {
  background: var(--gold);
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(24, 35, 20, .97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 100px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-logo {
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .4s, transform .4s;
}

.mobile-menu.open .mobile-menu-logo {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .05s;
}

.mobile-menu-logo img {
  height: 52px;
  width: auto;
  display: block;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.mobile-menu-nav a {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  padding: 16px 40px;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  opacity: 0;
  transform: translateY(18px);
  transition: color .3s, letter-spacing .3s, opacity .4s, transform .4s;
}

.mobile-menu-nav a:first-child {
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.mobile-menu.open .mobile-menu-nav a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open .mobile-menu-nav a:nth-child(1) {
  transition-delay: .12s;
}

.mobile-menu.open .mobile-menu-nav a:nth-child(2) {
  transition-delay: .2s;
}

.mobile-menu.open .mobile-menu-nav a:nth-child(3) {
  transition-delay: .28s;
}

.mobile-menu.open .mobile-menu-nav a:nth-child(4) {
  transition-delay: .36s;
}

.mobile-menu.open .mobile-menu-nav a:nth-child(5) {
  transition-delay: .44s;
}

.mobile-menu.open .mobile-menu-nav a:nth-child(6) {
  transition-delay: .52s;
}

.mobile-menu-nav a:hover {
  color: var(--gold);
  letter-spacing: .1em;
}

.mobile-menu-socials {
  display: flex;
  gap: 14px;
  margin-top: 44px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s .46s, transform .4s .46s;
}

.mobile-menu.open .mobile-menu-socials {
  opacity: 1;
  transform: translateY(0);
}

.mobile-social {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  transition: all .3s;
}

.mobile-social:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.mobile-social svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.mobile-social.fill-icon svg {
  fill: currentColor;
  stroke: none;
}

/* ===== PAGE HERO (sobre, portfolio, servicos) ===== */
.page-hero {
  padding: 50px 60px 56px;
}

.has-overlay-nav .page-hero {
  padding-top: 140px;
}

.page-hero-bg,
.page-hero-overlay {
  display: none;
}

.page-eyebrow {
  display: none !important;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.page-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold-dark);
}

.page-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.8vw, 56px);
  font-weight: 300;
  line-height: .95;
  color: var(--text-dark);
  letter-spacing: -.02em;
  margin: 0;
}

.page-title em {
  font-style: italic;
  color: var(--brown);
}

.page-hero-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 560px;
  margin-top: 48px;
}

.page-hero--center .page-hero-desc {
  margin-left: auto;
  margin-right: auto;
}

.page-hero--warm .page-hero-desc {
  color: rgba(24, 35, 20, .6);
}

.page-hero--gray {
  background: #F0EFEC;
}

/* hero centralizado (blog, privacidade) */
.page-hero--center {
  text-align: center;
}

.page-hero--center .page-eyebrow {
  justify-content: center;
}

.page-hero--center .page-eyebrow::before {
  display: none;
}

/* hero com fundo warm-gray (blog) */
.page-hero--warm {
  background: #E8E4DC;
}

.page-hero--warm .page-eyebrow {
  color: var(--gold-dark);
}

.page-hero--warm .page-title {
  color: var(--text-dark);
}

.page-hero--warm .page-title em {
  color: var(--brown);
  font-style: italic;
}

/* ===== SECTION UTILITY ===== */
.section-eyebrow {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--gold-dark);
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(to bottom, #949464, #62623F);
  border-top: none;
  padding: 64px 60px 32px;
}

.footer-main {
  display: flex;
  justify-content: flex-start;
  gap: 80px;
  align-items: flex-start;
  margin-bottom: 48px;
}

.footer-logo-img {
  height: 75px;
  width: auto;
  display: block;
  margin-bottom: 12px;
}

.footer-sub {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
}

.footer-contacts {
  display: flex;
  flex-direction: row;
  gap: 48px;
}

.footer-contacts-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  transition: color 0.3s;
  text-align: left;
}

a.footer-contact-item:hover {
  color: rgba(255, 255, 255, 1);
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  flex-shrink: 0;
}

.footer-contact-item.fill-icon svg {
  fill: currentColor;
  stroke: none;
}

.footer-socials {
  order: 3;
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}

.footer-nav a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  transition: color .3s;
}

.footer-nav a:hover {
  color: rgba(255, 255, 255, 1);
}

.footer-socials {
  order: 2;
  display: flex;
  gap: 8px;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255, 255, 255, .7);
  transition: all .3s;
}

.footer-social-btn:hover {
  border-color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, 1);
  background: rgba(255, 255, 255, .06);
}

.footer-social-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.footer-social-btn.fill-icon svg {
  fill: currentColor;
  stroke: none;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.footer-legal-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.footer-copy {
  font-size: 10px;
  color: rgba(255, 255, 255, .7);
  letter-spacing: .06em;
}

.footer-legal-links a {
  font-size: 10px;
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  letter-spacing: .08em;
  transition: color .3s;
}

.footer-legal-links a:hover {
  color: rgba(255, 255, 255, 1);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  display: none;
}

.whatsapp-label {
  background: rgba(24, 35, 20, .88);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, .85);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .05em;
  padding: 7px 14px;
  border-radius: 2px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-label {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-btn {
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .3);
  position: relative;
  animation: wafloat 3.2s ease-in-out infinite;
  transition: box-shadow .3s;
}

.whatsapp-btn:hover {
  animation: none;
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, .5);
}

.whatsapp-btn svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

.whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waring 2.8s ease-out infinite 1s;
}

@keyframes wafloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes waring {
  0% {
    transform: scale(1);
    opacity: .5;
  }

  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s cubic-bezier(0.16, 1, 0.3, 1), transform .75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HOME — HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: var(--black);
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease;
  animation: slowzoom 18s ease forwards;
}

.hero-slide.active {
  opacity: .82;
}

@keyframes slowzoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .25) 38%, transparent 62%),
    linear-gradient(to right, rgba(0, 0, 0, .62) 0%, rgba(0, 0, 0, .18) 42%, transparent 68%),
    linear-gradient(to bottom, rgba(0, 0, 0, .45) 0%, transparent 28%);
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0 60px 120px;
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeup .8s .3s forwards;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(64px, 8vw, 120px);
  font-weight: 300;
  line-height: .95;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeup .9s .5s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  opacity: 0;
  animation: fadeup .8s .8s forwards;
}

.hero-desc {
  max-width: 360px;
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  letter-spacing: .03em;
  color: rgba(255, 255, 255, .6);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid rgba(107, 158, 90, .4);
  padding: 16px 32px;
  transition: all .35s;
  white-space: nowrap;
}

.hero-cta:hover {
  background: var(--gold);
  color: var(--black);
}

.hero-cta::after {
  content: '→';
  transition: transform .3s;
}

.hero-cta:hover::after {
  transform: translateX(4px);
}

.hero-logo-center {
  position: absolute;
  bottom: 108px;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  opacity: 0;
  animation: fadeup .9s 1s forwards;
}

.hero-logo-center img {
  height: 68px;
  width: auto;
  display: block;
}

.hero-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 0 60px 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  opacity: 0;
  animation: fadeup .8s 1.2s forwards;
}

.hf-copy {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .28);
}

.hf-socials {
  display: flex;
  gap: 8px;
  justify-self: center;
}

.hf-social {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .4);
  text-decoration: none;
  transition: all .3s;
}

.hf-social:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hf-social svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.hf-social.fill-icon svg {
  fill: currentColor;
  stroke: none;
}

@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== SOBRE — ABOUT ===== */
.about-section {
  padding: 0 60px 112px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.about-slides {
  position: absolute;
  inset: 0;
}

.about-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.about-slide.active {
  opacity: 1;
}

.about-slide-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}

.about-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .3s, transform .3s;
}

.about-dot.active {
  background: #fff;
  transform: scale(1.3);
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid var(--gold);
  z-index: -1;
  opacity: .3;
}

.about-content {
  padding: 24px 0;
}

.about-title {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--text-dark);
  margin-bottom: 32px;
}

.about-title em {
  font-style: italic;
  color: var(--brown);
}

.about-text p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 2;
  margin-bottom: 20px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-sig {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(91, 107, 71, .15);
}

.about-sig-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-dark);
}

.about-sig-role {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
}

/* STATS */
.stats-section {
  background: #4E6B3C;
  padding: 96px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.stat-item {
  padding: 48px 32px;
  border: 1px solid rgba(255, 255, 255, .15);
  text-align: center;
}

.stat-number {
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
}

/* AWARDS */
.awards-section {
  background: #fff;
  padding: 96px 60px;
}

.awards-header {
  margin-bottom: 64px;
}

.awards-title {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.1;
}

.awards-title em {
  font-style: italic;
  color: var(--brown);
}

.awards-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.award-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid rgba(91, 107, 71, .12);
}

.award-year {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--gold-dark);
}

.award-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  color: var(--text-dark);
}

.award-event {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: .06em;
}

/* TESTIMONIALS */
.testimonials-section {
  padding: 112px 60px;
  text-align: center;
}

.testimonials-header {
  margin-bottom: 72px;
}

.testimonials-title {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.1;
}

.testimonials-title em {
  font-style: italic;
  color: var(--brown);
}

.testi-stage {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
}

.testi-arrow {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid rgba(91, 107, 71, .2);
  border-radius: 50%;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(26, 25, 21, .35);
  transition: all .3s;
}

.testi-arrow:hover {
  border-color: var(--brown);
  color: var(--brown);
  background: rgba(91, 107, 71, .05);
}

.testi-arrow svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.testi-body {
  flex: 1;
  min-width: 0;
}

.testi-card {
  display: none;
}

.testi-card.active {
  display: block;
  animation: testiFade .5s ease;
}

@keyframes testiFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.testi-quote {
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 300;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.55;
  margin-bottom: 40px;
}

.testi-sep {
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 24px;
}

.testi-client-name {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.testi-client-role {
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: .1em;
  margin-top: 6px;
}

.testi-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 48px;
}

.testi-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(91, 107, 71, .2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .3s, transform .3s;
}

.testi-dot.active {
  background: var(--brown);
  transform: scale(1.4);
}

/* PROCESS */
.process-section {
  background: #61613F;
  padding: 72px 60px;
  position: relative;
}

.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('F.D-Tour_d.argent-38.jpg') center/cover no-repeat;
  opacity: .28;
  pointer-events: none;
}

.process-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.process-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
}

.process-title em {
  font-style: italic;
  color: rgba(255, 255, 255, .85);
}

.process-section .section-eyebrow {
  justify-content: center;
  color: rgba(255, 255, 255, .8);
}

.process-section .section-eyebrow::before {
  background: rgba(255, 255, 255, .6);
}

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

.process-step {
  padding: 32px 28px;
  border: 1px solid rgba(255, 255, 255, .15);
  position: relative;
  z-index: 1;
}

.process-number {
  font-family: var(--serif);
  font-size: clamp(44px, 4vw, 64px);
  font-weight: 300;
  color: rgba(255, 255, 255, .2);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.process-step-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 12px;
}

.process-step-title em {
  font-style: italic;
  color: rgba(255, 255, 255, .9);
}

.process-text {
  font-size: 12px;
  color: rgba(255, 255, 255, .88);
  line-height: 1.85;
}

/* ===== PORTFOLIO — GRID ===== */
.filter-bar {
  background: #DEDBD2;
  border-bottom: 1px solid rgba(91, 107, 71, .12);
  padding: 0 60px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 71px;
  z-index: 50;
  margin-top: -2px;
}

.filter-btn {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(26, 25, 21, .4);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 20px 24px;
  transition: all .3s;
  cursor: pointer;
}

.filter-btn:hover {
  color: rgba(26, 25, 21, .7);
}

.filter-btn.active {
  color: var(--brown);
  border-bottom-color: var(--brown);
}

.filter-count {
  font-size: 8px;
  letter-spacing: .1em;
  color: rgba(107, 158, 90, .5);
  margin-left: 6px;
}

.projects-grid {
  display: grid;
  gap: 3px;
}

.row-2-1 {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 3px;
}

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

.row-1-2 {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 3px;
}

.project-card {
  position: relative;
  overflow: hidden;
  background: #1a1916;
  display: block;
  text-decoration: none;
}

.project-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(91, 107, 71, .45);
  opacity: 0;
  transition: opacity .6s cubic-bezier(.4, 0, .2, 1);
  pointer-events: none;
}

.project-card:hover::before {
  opacity: 1;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .9s cubic-bezier(.25, .46, .45, .94);
  filter: saturate(1);
}

.project-card:hover img {
  transform: scale(1.06);
  filter: saturate(.9);
}

.project-info {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(24, 35, 20, .82) 0%, transparent 50%);
  opacity: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.proj-cat {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.proj-name {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}

.proj-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}

.proj-link::after {
  content: '→';
  transition: transform .3s;
}

.project-card:hover .proj-link::after {
  transform: translateX(4px);
}

.project-card.hidden {
  display: none;
}

.row-2-1 .project-card,
.row-1-2 .project-card {
  height: 540px;
}

.row-3 .project-card {
  height: 360px;
}

.projects-grid.filtered .row-2-1,
.projects-grid.filtered .row-3,
.projects-grid.filtered .row-1-2 {
  display: contents;
}

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

.projects-grid.filtered .project-card {
  height: 400px;
}

.projects-grid {
  padding-bottom: 3px;
}

/* ===== PROJETO SINGLE (tour-dargent) ===== */
.proj-hero {
  position: relative;
  min-height: 82vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 0 60px 56px;
}

.proj-hero-img,
.proj-hero-overlay {
  display: none;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.breadcrumb a,
.breadcrumb span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(26, 25, 21, .4);
  text-decoration: none;
  transition: color .3s;
}

.breadcrumb a:hover {
  color: var(--brown);
}

.breadcrumb-sep {
  color: rgba(26, 25, 21, .2);
  font-size: 12px;
}

.breadcrumb .current {
  color: var(--brown);
}

/* breadcrumb centralizado no hero do blog */
.post-hero .breadcrumb {
  justify-content: center;
}

/* breadcrumb sobre fundo escuro (hero de projeto com imagem) */
.proj-hero .breadcrumb a,
.proj-hero .breadcrumb span {
  color: rgba(255, 255, 255, .55);
}

.proj-hero .breadcrumb a:hover {
  color: rgba(255, 255, 255, .9);
}

.proj-hero .breadcrumb-sep {
  color: rgba(255, 255, 255, .25);
}

.proj-hero .breadcrumb .current {
  color: rgba(255, 255, 255, .75);
}

.proj-hero-title {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 300;
  line-height: .95;
  color: #fff;
  letter-spacing: -.02em;
}

.proj-hero-title em {
  font-style: italic;
  color: #c9b882;
}

.project-page {
  display: flex;
  flex-direction: column;
}

.proj-summary {
  order: 1;
}

.proj-text-section {
  order: 3;
}

.proj-gallery {
  order: 2;
}

.proj-summary {
  background: #F0EFEC;
  padding: 72px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.proj-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.proj-meta-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(91, 107, 71, .08);
}

.proj-meta-item:nth-child(even) {
  padding-left: 24px;
}

.proj-meta-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.proj-meta-label {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
}

.proj-meta-value {
  font-size: 13px;
  color: var(--text-dark);
}

.proj-eyebrow {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.proj-eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--gold-dark);
}

.proj-headline {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.proj-headline em {
  font-style: italic;
  color: var(--brown);
}

.proj-excerpt {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 2;
}

.proj-text-section {
  background: transparent;
  padding: 96px 60px;
}

.proj-text-inner {
  max-width: 760px;
  margin: 0 auto;
}

.proj-text-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--text-dark);
  margin-bottom: 40px;
}

.proj-text-title em {
  font-style: italic;
  color: var(--brown);
}

.proj-text-body h2,
.proj-text-body h3,
.proj-text-body .wp-block-heading {
  font-family: var(--serif) !important;
  font-size: clamp(32px, 4vw, 52px) !important;
  font-weight: 300 !important;
  line-height: 1.08 !important;
  color: var(--text-dark) !important;
  letter-spacing: -.02em !important;
  margin-top: 56px !important;
  margin-bottom: 24px !important;
}

.proj-text-body h2 em,
.proj-text-body h3 em,
.proj-text-body .wp-block-heading em {
  font-style: italic !important;
  color: var(--brown) !important;
}

/* ===== TAG ARCHIVE ===== */
.tag-archive-page {
  padding: 60px 60px 100px;
  background: #E8E4DC;
}

.tag-section {
  margin-bottom: 80px;
}

.tag-section-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--brown);
  display: inline-block;
}

.tag-empty {
  color: var(--text-light);
  padding: 40px 0;
}

.tag-posts-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tag-post-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid rgba(26,25,21,.08);
  text-decoration: none;
  transition: opacity .2s;
}

.tag-post-item:first-child {
  border-top: 1px solid rgba(26,25,21,.08);
}

.tag-post-item:hover {
  opacity: .75;
}

.tag-post-thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.tag-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tag-post-cat {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 10px;
}

.tag-post-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.tag-post-excerpt {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}

.tag-post-date {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: .05em;
}

.tag-post-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brown);
}

/* ===== 404 ===== */
.not-found-page {
  background: #E8E4DC;
  padding: 140px 60px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 80vh;
}

.not-found-code {
  font-family: var(--serif);
  font-size: clamp(96px, 16vw, 200px);
  font-weight: 200;
  line-height: 1;
  color: var(--brown);
  opacity: .25;
  margin-bottom: 32px;
  letter-spacing: -.02em;
}

.not-found-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
}

.proj-text-body p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 2;
  margin-bottom: 24px;
}

.proj-text-body p:last-child {
  margin-bottom: 0;
}

.proj-gallery {
  background: transparent;
  padding: 0;
  margin-top: 3px;
}

.gallery-row {
  display: grid;
  gap: 3px;
  margin-top: 3px;
}

.gallery-row:first-child {
  margin-top: 0;
}

.gallery-row.cols-2 {
  grid-template-columns: 1fr 1fr;
}

.gallery-row.cols-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.gallery-row.cols-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.gallery-item {
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* legado — manter compatibilidade */
.gallery-hero {
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: zoom-in;
}

.gallery-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-hero:hover img {
  transform: scale(1.03);
}

.gallery-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-top: 3px;
}

.gallery-3col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3px;
  margin-top: 3px;
}

/* Release / bio da arquiteta no projeto */
.proj-release {
  background: transparent;
  padding: 64px 60px;
}

.proj-release-inner {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 48px;
  align-items: start;
}

.proj-release-photo img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  filter: grayscale(15%);
  display: block;
}

.proj-release-label {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
}

.proj-release-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.proj-release-role {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 18px;
}

.proj-release-text {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 2;
  margin-bottom: 20px;
}

.proj-release-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brown);
  text-decoration: none;
  transition: gap .25s;
}

.proj-release-link:hover {
  gap: 14px;
}

.proj-release-link::after {
  content: '→';
}

.next-projects {
  background: #fff;
  border-top: none;
  padding: 80px 60px;
}

.next-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(26, 25, 21, .45);
  margin-bottom: 48px;
}

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

.next-card {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.next-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(0.16, 1, 0.3, 1);
}

.next-card:hover img {
  transform: scale(1.06);
}

/* gradiente permanente no rodapé para legibilidade do nome */
.next-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(24, 35, 20, .78) 0%, rgba(24, 35, 20, .1) 45%, transparent 70%);
  opacity: 1;
  transition: opacity .4s;
  z-index: 1;
  pointer-events: none;
}

/* overlay verde no hover */
.next-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(78, 107, 60, .5);
  opacity: 0;
  transition: opacity .4s;
  z-index: 2;
  pointer-events: none;
}

.next-card:hover::after {
  opacity: 1;
}

.next-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 32px;
  z-index: 3;
}

.next-card-cat {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.next-card-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(24, 35, 20, .97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 60px 24px 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lb-img {
  max-width: 92vw;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  transition: opacity .22s;
  user-select: none;
}

.lb-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, .45);
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
  transition: color .2s;
  padding: 4px 8px;
}

.lb-close:hover {
  color: #fff;
}

.lb-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.lb-arrow {
  background: none;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .55);
  cursor: pointer;
  transition: all .3s;
  flex-shrink: 0;
}

.lb-arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.lb-arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.lb-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: .18em;
  color: rgba(255, 255, 255, .35);
}

/* ===== SERVIÇOS ===== */
.section-header {
  margin-bottom: 64px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 300;
  color: #fff;
  line-height: 1.08;
}

.section-title em {
  font-style: italic;
  color: var(--gold-light);
}

.especialidades-section {
  padding: 16px 60px 48px;
}

.especialidades-section .section-eyebrow {
  color: var(--gold-dark);
}

.especialidades-section .section-eyebrow::before {
  background: var(--gold-dark);
}

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

.flip-card {
  height: 600px;
  position: relative;
  overflow: hidden;
}

.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  transition: opacity .45s, transform .45s;
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.flip-back {
  opacity: 0;
  transform: translateY(12px);
}

.flip-card:hover .flip-front {
  opacity: 0;
  transform: translateY(-8px);
}

.flip-card:hover .flip-back {
  opacity: 1;
  transform: translateY(0);
}

.esp-card .flip-front {
  background: #F0EFEC;
  background-size: cover;
  background-position: center;
  border: none;
}

/* Hover: mantém front visível (imagem), só esconde o texto */
.esp-card:hover .flip-front {
  opacity: 1;
  transform: none;
}

.esp-card:hover .flip-front .esp-number,
.esp-card:hover .flip-front .esp-title {
  opacity: 0;
  transition: opacity .35s;
}

/* Back: overlay verde transparente, sem transform inicial */
.esp-card .flip-back {
  background: rgba(78, 107, 60, .78);
  border: none;
  justify-content: center;
  align-items: center;
  text-align: center;
  transform: none;
  transition: opacity .45s;
}

.esp-card:hover .flip-back {
  transform: none;
}

.esp-number {
  font-family: var(--serif);
  font-size: clamp(52px, 5vw, 80px);
  font-weight: 300;
  color: rgba(91, 107, 71, .12);
  line-height: 1;
  margin-bottom: 12px;
}

/* Número e título no front com imagem */
.esp-card .flip-front .esp-number {
  color: #c4a983;
  transition: opacity .35s;
}

.esp-card .flip-front .esp-title {
  color: #fff;
  transition: opacity .35s;
}

.esp-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--text-dark);
}

.esp-title em {
  font-style: italic;
  color: var(--brown);
}

.esp-card .flip-back .esp-title {
  color: #fff;
  font-size: 22px;
  margin-bottom: 12px;
}

.esp-card .flip-back .esp-title em {
  color: rgba(255, 255, 255, .8);
}

.esp-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .85);
  line-height: 1.85;
}

.servicos-section {
  padding: 96px 60px;
}

.servicos-section .section-eyebrow {
  color: var(--gold-dark);
}

.servicos-section .section-eyebrow::before {
  background: var(--gold-dark);
}

.servicos-section .section-title {
  color: var(--text-dark);
}

.servicos-section .section-title em {
  color: var(--brown);
}

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

.serv-card {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.serv-front,
.serv-back {
  position: absolute;
  inset: 0;
  transition: opacity .45s, transform .45s;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.serv-back {
  opacity: 0;
  transform: translateY(12px);
}

.serv-card:hover .serv-front {
  opacity: 0;
  transform: translateY(-8px);
}

.serv-card:hover .serv-back {
  opacity: 1;
  transform: translateY(0);
}

.serv-front {
  background: var(--warm-gray);
  border: 1px solid rgba(91, 107, 71, .08);
}

.serv-back {
  background: rgba(78, 107, 60, .92);
}

.serv-icon {
  display: none;
}

.serv-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--text-dark);
}

.serv-back .serv-name {
  color: #fff;
  font-size: 28px;
}

.serv-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .85);
  line-height: 1.85;
  margin-top: 12px;
}

.cta-band {
  background: var(--brown);
  padding: 64px 60px 64px 0;
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  overflow: visible;
}

.cta-band-photo {
  flex-shrink: 0;
  width: 280px;
  align-self: flex-end;
  margin-top: -120px;
  margin-bottom: -64px;
}

.cta-band-photo img {
  width: 100%;
  display: block;
  object-fit: contain;
  object-position: bottom;
}

.cta-band-text {
  padding-left: 32px;
  flex: 1;
}

.cta-band-btn {
  flex-shrink: 0;
  margin-left: auto;
}

.cta-band-spacer {
  background: #fff;
  height: 130px;
}

.cta-band-eyebrow {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 14px;
}

.cta-band-title {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
}

.cta-band-title em {
  font-style: italic;
  color: var(--gold-light);
}

.cta-band-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 40px;
  border: 1px solid rgba(255, 255, 255, .5);
  color: #fff;
  text-decoration: none;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: all .3s;
  white-space: nowrap;
}

.cta-band-btn:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
}

.cta-band-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: transform .3s;
}

.cta-band-btn:hover svg {
  transform: translateX(4px);
}

/* ===== CONTATO ===== */
.contact-section {
  background: #62623E;
  padding: 0;
  display: grid;
  grid-template-columns: 38% 1fr;
  min-height: 100vh;
}

.contact-image {
  position: relative;
  overflow: hidden;
}

.contact-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.contact-content {
  background: #61613F;
  padding: 100px 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-section .section-eyebrow {
  color: rgba(255, 255, 255, .6);
}

.contact-section .section-eyebrow::before {
  background: rgba(255, 255, 255, .4);
}

.contact-title {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 300;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 12px;
}

.contact-title em {
  font-style: italic;
  color: rgba(255, 255, 255, .75);
}

.contact-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 48px;
}

.cta-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  text-decoration: none;
  transition: all .35s;
  background: rgba(255, 255, 255, .06);
}

.cta-btn:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .5);
}

.cta-btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-btn-icon svg {
  width: 18px;
  height: 18px;
}

.cta-btn.wa .cta-btn-icon,
.cta-btn.email .cta-btn-icon,
.cta-btn.ig .cta-btn-icon,
.cta-btn.pinterest .cta-btn-icon {
  background: rgba(255, 255, 255, .1);
}

.cta-btn.wa .cta-btn-icon svg,
.cta-btn.pinterest .cta-btn-icon svg {
  fill: rgba(255, 255, 255, .75);
}

.cta-btn.email .cta-btn-icon svg,
.cta-btn.ig .cta-btn-icon svg {
  fill: none;
  stroke: rgba(255, 255, 255, .75);
  stroke-width: 1.5;
}

.cta-btn.agendar .cta-btn-icon {
  background: rgba(107, 158, 90, .12);
}

.cta-btn.agendar .cta-btn-icon svg {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
}

.cta-btn-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 3px;
}

.cta-btn-value {
  font-size: 13px;
  color: #fff;
}

.cta-btn-arrow {
  margin-left: auto;
  color: rgba(255, 255, 255, .4);
  transition: transform .3s, color .3s;
}

.cta-btn-arrow svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.cta-btn:hover .cta-btn-arrow {
  transform: translateX(4px);
  color: #fff;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(24, 35, 20, .72);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: #fff;
  border: none;
  width: 100%;
  max-width: 520px;
  position: relative;
  transform: translateY(28px);
  transition: transform .5s cubic-bezier(.16, 1, .3, 1), opacity .45s;
  box-shadow: 0 32px 80px rgba(24, 35, 20, .18);
}

.modal-overlay.open .modal {
  transform: translateY(0);
}

.modal-header {
  background: #4E6B3C;
  padding: 36px 44px 32px;
}

.modal-header-eyebrow {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 10px;
}

.modal-header-title {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
}

.modal-header-title em {
  font-style: italic;
  color: rgba(255, 255, 255, .8);
}

.modal-body {
  padding: 36px 44px 44px;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, .15);
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}

.modal-close:hover {
  background: rgba(255, 255, 255, .28);
}

.modal-close svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

/* legado — manter compatibilidade */
.modal-eyebrow {
  display: none;
}

.modal-title {
  display: none;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-bottom: 7px;
}

.form-input,
.form-textarea {
  width: 100%;
  background: #fff;
  border: none;
  border-bottom: 1px solid rgba(24, 35, 20, .15);
  color: var(--text-dark);
  font-family: var(--sans);
  font-size: 14px;
  padding: 10px 0;
  outline: none;
  transition: border-color .3s;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(24, 35, 20, .28);
}

.form-input:focus,
.form-textarea:focus {
  border-bottom-color: #4E6B3C;
}

.form-textarea {
  min-height: 90px;
  resize: none;
}

.form-submit {
  width: 100%;
  margin-top: 24px;
  padding: 18px;
  background: #4E6B3C;
  border: none;
  color: #fff;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s;
}

.form-submit:hover {
  background: var(--brown);
}

/* ===== BLOG — LISTAGEM ===== */
.blog-section {
  background: #E8E4DC;
  padding: 48px 60px 96px;
}

.blog-section .section-title {
  color: var(--text-dark);
}

.blog-section .section-title em {
  color: var(--brown);
}

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

.blog-card {
  background: #fff;
  overflow: hidden;
  text-decoration: none;
  display: block;
}

.blog-card-img-wrap {
  overflow: hidden;
}

.blog-card-img-wrap figure {
  margin: 0;
  padding: 0;
  display: block;
  overflow: hidden;
}

.blog-card-img-wrap figure img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.blog-card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .6s cubic-bezier(.25, .46, .45, .94);
  filter: saturate(.9);
}

.blog-card:hover .blog-card-img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: 28px 32px 36px;
}

.blog-cat {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}

.blog-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 16px;
  transition: color .3s;
}

.blog-card:hover .blog-title {
  color: var(--brown);
}

.blog-excerpt {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.95;
  color: var(--text-mid);
  margin-bottom: 24px;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-date {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .1em;
  color: var(--text-light);
}

.blog-read {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brown);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap .3s;
}

.blog-card:hover .blog-read {
  gap: 14px;
}

.blog-read::after {
  content: '→';
}

/* ===== BLOG — POST SINGLE ===== */
.post-hero {
  padding: 56px 60px 0;
  background: var(--warm-gray);
}

.has-overlay-nav .post-hero {
  padding-top: 140px;
}

.post-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.post-hero-cat {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border: 1px solid rgba(91, 107, 71, .3);
  padding: 6px 14px;
  margin-bottom: 28px;
}

.post-hero-title {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 300;
  line-height: .95;
  color: var(--text-dark);
  letter-spacing: -.02em;
  margin-bottom: 28px;
}

.post-hero-title em {
  font-style: italic;
  color: var(--brown);
}

.post-hero-excerpt {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-mid);
  max-width: 640px;
  margin: 0 auto 36px;
}

.post-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 28px 0;
  border-top: 1px solid rgba(91, 107, 71, .12);
  border-bottom: 1px solid rgba(91, 107, 71, .12);
}

.post-meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.post-meta-label {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.post-meta-value {
  font-size: 12px;
  color: var(--text-mid);
  letter-spacing: .04em;
}

.post-featured-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin-top: 64px;
}

.post-body {
  background: var(--warm-gray);
  padding: 80px 60px;
}

.post-body-inner {
  max-width: 760px;
  margin: 0 auto;
}

.post-body-inner h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.15;
  margin: 56px 0 24px;
}

.post-body-inner h2 em {
  font-style: italic;
  color: var(--brown);
}

.post-body-inner p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 2.05;
  margin-bottom: 28px;
}

.post-body-inner blockquote {
  border-left: 3px solid var(--gold);
  margin: 48px 0;
  padding: 8px 0 8px 36px;
}

.post-body-inner blockquote p {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
  font-weight: 300;
}

.post-body-inner figure {
  margin: 48px 0;
}

.post-body-inner figure img {
  width: 100%;
  display: block;
}

.post-body-inner figure figcaption,
.post-body-inner .wp-caption-text,
.post-body-inner figcaption {
  font-size: 11px;
  color: var(--text-light);
  font-style: italic;
  border-top: 1px solid rgba(0,0,0,.08);
  margin-top: 10px;
  padding-top: 10px;
  letter-spacing: .04em;
  line-height: 1.6;
}

/* Alinhamentos de imagem — clássico e Gutenberg */
.post-body-inner .alignleft,
.post-body-inner .wp-block-image.alignleft {
  float: left;
  width: 46%;
  margin: 8px 36px 24px 0;
}

.post-body-inner .alignright,
.post-body-inner .wp-block-image.alignright {
  float: right;
  width: 46%;
  margin: 8px 0 24px 36px;
}

.post-body-inner .aligncenter,
.post-body-inner .wp-block-image.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.post-body-inner .alignleft img,
.post-body-inner .alignright img,
.post-body-inner .wp-block-image.alignleft img,
.post-body-inner .wp-block-image.alignright img {
  width: 100%;
  height: auto;
}

/* Clearfix após floats */
.post-body-inner::after {
  content: '';
  display: table;
  clear: both;
}

/* wp-caption (editor clássico com legenda) */
.post-body-inner .wp-caption {
  max-width: 100%;
}

.post-body-inner .wp-caption img {
  width: 100%;
  height: auto;
  display: block;
}

/* Galeria do WordPress — clássica e Gutenberg */
.post-body-inner .gallery,
.post-body-inner .wp-block-gallery {
  display: grid !important;
  gap: 8px;
  margin: 48px 0;
}

.post-body-inner .gallery-columns-3,
.post-body-inner .wp-block-gallery.columns-3,
.post-body-inner .wp-block-gallery.has-nested-images.columns-3 {
  grid-template-columns: repeat(3, 1fr) !important;
}

.post-body-inner .gallery-item,
.post-body-inner .wp-block-gallery .wp-block-image,
.post-body-inner .wp-block-gallery .blocks-gallery-item {
  margin: 0 !important;
  width: auto !important;
}

.post-body-inner .gallery-item img,
.post-body-inner .wp-block-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.post-related {
  background: #4E6B3C;
  padding: 80px 60px;
}

.post-related-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 48px;
}

.post-related-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
}

.post-related-card {
  background: rgba(24, 35, 20, .35);
  text-decoration: none;
  display: block;
  overflow: hidden;
  transition: background .3s;
}

.post-related-card:hover {
  background: rgba(24, 35, 20, .55);
}

.post-related-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .6s cubic-bezier(.25, .46, .45, .94);
}

.post-related-card:hover .post-related-img {
  transform: scale(1.04);
}

.post-related-img-wrap {
  overflow: hidden;
}

.post-related-body {
  padding: 20px 22px 26px;
}

.post-related-cat {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 8px;
}

.post-related-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 300;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 10px;
  transition: color .3s;
}

.post-related-card:hover .post-related-title {
  color: rgba(255, 255, 255, .75);
}

.post-related-date {
  font-size: 9px;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .1em;
}

/* ===== AUTOR ===== */
.author-profile {
  background: #fff;
  padding: 80px 60px 96px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}

.author-photo-wrap {
  position: relative;
  margin-bottom: 32px;
}

.author-photo-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(10%);
}

.author-photo-wrap::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid var(--gold);
  opacity: .3;
  pointer-events: none;
}

.author-socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.author-social {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: var(--text-mid);
  text-decoration: none;
  transition: color .25s;
}

.author-social:hover {
  color: var(--brown);
}

.author-social svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  color: var(--gold-dark);
}

.author-social.fill-icon svg {
  fill: currentColor;
  stroke: none;
}

.author-cred {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.author-name {
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 300;
  color: var(--text-dark);
  line-height: .95;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}

.author-name em {
  font-style: italic;
  color: var(--brown);
}

.author-role {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(91, 107, 71, .12);
}

.author-bio p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 2;
  margin-bottom: 22px;
}

.author-awards {
  margin: 40px 0;
  padding: 32px;
  background: var(--warm-gray);
}

.author-awards-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 18px;
}

.author-awards-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.author-awards-list li {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}

.author-awards-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
}

.author-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brown);
  text-decoration: none;
  border: 1px solid rgba(91, 107, 71, .35);
  padding: 14px 28px;
  transition: all .3s;
}

.author-cta:hover {
  background: var(--brown);
  color: #fff;
  border-color: var(--brown);
}

.author-cta svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: transform .3s;
}

.author-cta:hover svg {
  transform: translateX(4px);
}

.author-posts {
  background: #fff;
  padding: 80px 60px 0;
  border-top: 1px solid rgba(91, 107, 71, .1);
}

.author-posts-header {
  margin-bottom: 48px;
}

/* ===== PRIVACIDADE ===== */
.privacy-section {
  background: #fff;
  padding: 80px 60px 120px;
}

.privacy-inner {
  max-width: 760px;
  margin: 0 auto;
}

.privacy-updated {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: .06em;
  margin-bottom: 48px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(91, 107, 71, .12);
}

.privacy-inner h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--text-dark);
  margin: 44px 0 16px;
}

.privacy-inner p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 2;
  margin-bottom: 18px;
}

.privacy-inner ul {
  padding-left: 20px;
  margin-bottom: 18px;
}

.privacy-inner ul li {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 2;
}

.privacy-inner a {
  color: var(--brown);
  text-decoration: none;
  transition: color .2s;
}

.privacy-inner a:hover {
  color: var(--gold-dark);
}

/* ===== AUTOR — POST SINGLE ===== */
.post-author {
  background: #E8E4DC;
  padding: 64px 60px;
}

.post-author-inner {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 52px;
  align-items: start;
}

.post-author-photo {
  position: relative;
}

.post-author-photo img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 50%;
  filter: grayscale(20%);
}

.post-author-photo::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(91, 107, 71, .3);
}

.post-author-label {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
}

.post-author-name {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 4px;
}

.post-author-role {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
}

.post-author-bio {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.95;
  margin-bottom: 28px;
}

.post-author-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.post-author-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brown);
  text-decoration: none;
  transition: gap .25s, color .25s;
}

.post-author-link:hover {
  gap: 14px;
  color: var(--gold-dark);
}

.post-author-link::after {
  content: '→';
}

.post-author-socials {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.post-author-social {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(91, 107, 71, .25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-decoration: none;
  transition: all .3s;
}

.post-author-social:hover {
  border-color: var(--brown);
  color: var(--brown);
  background: rgba(91, 107, 71, .06);
}

.post-author-social svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.post-author-social.fill-icon svg {
  fill: currentColor;
  stroke: none;
}

/* ===== PAGINAÇÃO ===== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 32px 60px 72px;
  background: #E8E4DC;
}

.pagination-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(91, 107, 71, .18);
  background: transparent;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--text-light);
  text-decoration: none;
  cursor: pointer;
  transition: all .25s;
}

.pagination-btn:hover {
  border-color: var(--brown);
  color: var(--brown);
  background: rgba(91, 107, 71, .05);
}

.pagination-btn.active {
  border-color: var(--brown);
  background: var(--brown);
  color: #fff;
}

.pagination-btn.arrow {
  border: 1px solid rgba(91, 107, 71, .18);
}

.pagination-btn.arrow svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.pagination-btn.disabled {
  opacity: .3;
  pointer-events: none;
}

.pagination-sep {
  font-size: 11px;
  color: var(--text-light);
  padding: 0 4px;
}

/* ===== PALAVRAS-CHAVE SEO ===== */
.content-tags {
  background: #F0EFEC;
  padding: 40px 60px 64px;
}

.content-tags.warm {
  background: #E8E4DC;
}

.content-tags-label {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}

.content-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.content-tag {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--text-light);
  background: transparent;
  border: none;
  padding: 5px 0;
  text-decoration: none;
  transition: color .25s;
}

.content-tag:hover {
  color: var(--brown);
}

/* Dark variant — used inside dark-bg sections */
.content-tags.dark {
  background: var(--black);
  border-top: 1px solid rgba(107, 158, 90, .08);
}

.content-tags.dark .content-tags-label {
  color: rgba(255, 255, 255, .25);
}

.content-tags.dark .content-tag {
  color: rgba(255, 255, 255, .35);
  border-color: rgba(107, 158, 90, .15);
}

.content-tags.dark .content-tag:hover {
  color: var(--gold-light);
  border-color: rgba(107, 158, 90, .5);
}

/* ===== RESPONSIVE ===== */
/* Sem scroll horizontal em nenhuma página */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

@media (min-width: 769px) {
  .nav-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    grid-column: 3;
    justify-self: end;
  }
}

/* ===== TABLET (769px – 1024px) ===== */
@media (max-width: 1024px) {

  /* A Empresa: imagem em cima, texto abaixo */
  .about-section {
    grid-template-columns: 1fr;
  }

  /* Como trabalhamos: 2 por linha */
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Blog: 2 por linha */
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Blog single — continue lendo: 2 por linha */
  .post-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Single projeto — outros projetos: 2 por linha */
  .next-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .next-card-name {
    font-size: 20px;
    line-height: 1.2;
    white-space: normal;
    word-break: break-word;
  }

  /* Contato: imagem em cima, conteúdo embaixo */
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-image {
    height: 55vw;
  }

  /* Rodapé */
  .footer-main {
    flex-wrap: wrap;
    gap: 28px;
  }

  .footer-contacts {
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (max-width: 768px) {

  /* Preloader */
  .preloader-logo {
    height: auto;
    width: 200px;
    max-width: 80vw;
  }

  /* Nav */
  #nav {
    padding: 18px 24px;
  }

  .nav-hamburger {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .mobile-menu-logo {
    display: none;
  }

  /* Page hero */
  .page-hero {
    padding: 16px 24px 20px;
  }

  /* Home hero */
  .hero-content {
    padding: 0 24px 68px;
  }

  .hero-title {
    font-size: clamp(44px, 11vw, 72px);
    margin-bottom: 22px;
  }

  .hero-eyebrow {
    margin-bottom: 14px;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .hero-desc {
    font-size: 12.5px;
    line-height: 1.75;
    max-width: 100%;
    padding-right: 40px;
  }

  .hero-cta {
    margin: 8px 0;
  }

  .hero-footer {
    padding: 0 24px 14px;
  }

  .hf-socials {
    display: none;
  }

  /* Páginas internas — padding top para não ficar sob o nav fixo */
  .page-hero {
    padding: 72px 24px 20px;
  }

  .page-title {
    font-size: clamp(28px, 8vw, 48px);
  }

  /* A Empresa */
  .about-section {
    grid-template-columns: 1fr;
    padding: 24px 24px 64px;
    gap: 24px;
  }

  .stats-section {
    grid-template-columns: 1fr 1fr;
    padding: 48px 24px;
  }

  .awards-section {
    padding: 48px 24px;
  }

  .award-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .testimonials-section {
    padding: 48px 24px;
  }

  .testi-stage {
    gap: 16px;
  }

  .testi-quote {
    font-size: 20px;
  }

  .process-section {
    padding: 48px 24px;
  }

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

  /* Projetos */
  .filter-bar {
    padding: 0 24px;
    overflow-x: auto;
  }

  .projects-grid {
    padding: 0 24px 24px;
    gap: 16px;
  }

  .row-2-1,
  .row-1-2,
  .row-3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .row-2-1 .project-card,
  .row-1-2 .project-card,
  .row-3 .project-card {
    height: 260px;
  }

  .projects-grid.filtered {
    grid-template-columns: 1fr;
    padding: 0 24px 24px;
    gap: 16px;
  }

  .projects-grid.filtered .project-card {
    height: 260px;
  }

  /* Projeto single */
  .proj-hero {
    padding: 96px 24px 32px;
  }

  .proj-summary {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 32px;
    overflow: hidden;
  }

  .proj-meta-grid {
    grid-template-columns: 1fr 1fr;
  }

  .proj-meta-item:nth-child(n) {
    border-right: none;
  }

  .proj-text-section {
    padding: 48px 24px;
    overflow: hidden;
  }

  .gallery-row.cols-2,
  .gallery-row.cols-3,
  .gallery-row.cols-4 {
    grid-template-columns: 1fr 1fr;
    gap: 3px;
  }

  .gallery-row.cols-3 .gallery-item:nth-child(3) {
    grid-column: 1 / -1;
  }

  .gallery-row {
    margin-top: 3px;
  }

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

  .next-card-name {
    font-size: 18px;
    white-space: normal;
    word-break: break-word;
    line-height: 1.2;
  }

  .next-projects {
    padding: 40px 24px;
  }

  .proj-release {
    padding: 40px 24px;
    overflow: hidden;
  }

  .proj-release-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .proj-release-photo {
    display: flex;
    justify-content: center;
  }

  .proj-release-text {
    text-align: left;
  }

  .proj-release-link {
    justify-content: center;
  }

  .content-tags {
    padding: 28px 24px 40px;
    overflow: hidden;
  }

  /* Serviços */
  .especialidades-section {
    padding: 40px 24px;
    overflow: hidden;
  }

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

  .servicos-section {
    padding: 40px 24px;
    overflow: hidden;
  }

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

  /* Próximo passo */
  .cta-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 24px 40px;
    overflow: hidden;
  }

  .cta-band-photo {
    width: 220px;
    margin-top: -60px;
    margin-bottom: 0;
    align-self: flex-start;
  }

  .cta-band-text {
    padding-left: 0;
    padding-top: 24px;
  }

  .cta-band-title {
    font-size: clamp(24px, 6vw, 36px);
  }

  .cta-band-btn {
    margin-left: 0;
    margin-top: 24px;
  }

  /* Contato */
  .contact-section {
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .contact-image {
    height: 240px;
  }

  .contact-content {
    padding: 40px 24px;
    overflow: hidden;
  }

  .modal-overlay {
    align-items: flex-end;
  }

  .modal {
    margin: 0;
    max-width: 100%;
    width: 100%;
    border-radius: 0;
  }

  .modal-header {
    padding: 28px 24px 24px;
  }

  .modal-body {
    padding: 24px 24px 36px;
  }

  /* Rodapé */
  footer {
    padding: 40px 24px 28px;
  }

  .footer-main {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
  }

  .footer-contacts {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  .footer-nav {
    display: none;
  }

  .footer-socials {
    justify-content: center;
    margin-left: 0;
  }

  .footer-legal {
    flex-direction: column-reverse;
    align-items: center;
    gap: 10px;
    text-align: center;
  }

  /* Blog listagem */
  .blog-section {
    padding: 32px 24px 48px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .page-hero-desc {
    margin-top: 20px;
  }

  .pagination {
    padding: 20px 24px 48px;
  }

  /* Blog single */
  .post-hero {
    padding: 32px 24px 0;
    overflow: hidden;
  }

  .has-overlay-nav .page-hero {
    padding-top: 96px;
  }

  .has-overlay-nav .post-hero {
    padding-top: 96px;
  }

  .post-hero-title {
    font-size: clamp(26px, 7.5vw, 42px);
  }

  .post-hero-excerpt {
    font-size: 13px;
  }

  .post-hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .post-featured-img {
    aspect-ratio: 4/3;
    margin-top: 32px;
  }

  .post-body {
    padding: 40px 24px;
    overflow: hidden;
  }

  .post-author {
    padding: 40px 24px;
    overflow: hidden;
  }

  .post-author-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .post-author-photo {
    text-align: center;
  }

  .post-author-photo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: inline-block;
  }

  .post-author-photo::after {
    display: none;
  }

  .post-author-socials {
    margin-left: 0;
  }

  .post-related {
    padding: 40px 24px;
    overflow: hidden;
  }

  .post-related-grid {
    grid-template-columns: 1fr;
  }

  /* Autor */
  .author-profile {
    grid-template-columns: 1fr;
    padding: 48px 24px 64px;
    gap: 40px;
    overflow: hidden;
  }

  .author-photo-wrap img {
    aspect-ratio: 1/1;
  }

  .author-posts {
    padding: 48px 24px 0;
  }

  .privacy-section {
    padding: 48px 24px 72px;
  }

  /* Contato */
  .contact-image {
    height: 70vw;
  }

  .contact-content {
    padding: 48px 24px 60px;
  }

  /* Rodapé */
  .footer-contacts {
    align-items: center;
    text-align: center;
  }

  .footer-contact-item {
    justify-content: center;
  }

  /* 404 */
  .not-found-page {
    padding: 100px 24px 60px;
    min-height: 70vh;
  }

  .not-found-code {
    font-size: clamp(72px, 22vw, 120px);
    margin-bottom: 20px;
  }

  .not-found-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    margin-top: 32px;
  }

  .not-found-actions .author-cta {
    justify-content: center;
  }
}

.none {
  display: none !important;
}
/* ===== BLOG CUSTOM STYLE OVERRIDES ===== */
body.is-blog-style {
  background-color: var(--warm-gray) !important;
}

body.is-blog-style .blog-section {
  background-color: var(--warm-gray) !important;
}

body.is-blog-style .post-body,
body.is-blog-style .post-related {
  background-color: var(--warm-gray) !important;
}