/* -------------------------------------------------------------
   DESIGN SYSTEM & CUSTOM PROPERTIES
   ------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* Cores Principais */
  --primary: #608066;            /* Verde Sálvia */
  --primary-light: #7da084;
  --primary-dark: #465f4b;
  --primary-bg: rgba(96, 128, 102, 0.06);
  
  /* Tons de Fundo */
  --bg-warm: #FAF6F0;            /* Creme Acolhedor */
  --bg-warm-dark: #F3EBE0;       /* Creme Mais Escuro para Seções */
  --bg-card: #FFFFFF;
  
  /* Cores de Destaque e Ações */
  --accent: #C87A53;             /* Terracota */
  --accent-light: #d69370;
  --accent-dark: #a95f39;
  --accent-bg: rgba(200, 122, 83, 0.08);
  
  /* Cores de Texto */
  --text-main: #2E302F;          /* Cinza Escuro */
  --text-muted: #626563;        /* Cinza Médio */
  --text-light: #FFFFFF;
  
  /* Fontes */
  --font-title: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Transições e Efeitos */
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
  
  /* Bordas e Sombras */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
  --shadow-sm: 0 4px 20px rgba(96, 128, 102, 0.04);
  --shadow-md: 0 12px 30px rgba(96, 128, 102, 0.08);
  --shadow-lg: 0 20px 50px rgba(96, 128, 102, 0.12);
  
  --glass-bg: rgba(250, 246, 240, 0.85);
  --glass-border: rgba(96, 128, 102, 0.12);
}

/* -------------------------------------------------------------
   RESET & ESTILOS GERAIS
   ------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-warm);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.3;
}

p {
  font-weight: 400;
  color: var(--text-muted);
}

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

button, input, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Scrollbar Personalizada */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-warm);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 5px;
  border: 2px solid var(--bg-warm);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* -------------------------------------------------------------
   UTILITÁRIOS DE LAYOUT
   ------------------------------------------------------------- */
.section {
  padding: 100px 24px;
  position: relative;
}

.section-bg {
  background-color: var(--bg-warm-dark);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-subtitle {
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 20px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--primary-light);
  margin: 15px auto 0 auto;
  border-radius: 1px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(96, 128, 102, 0.25);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(96, 128, 102, 0.35);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary-bg);
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(200, 122, 83, 0.25);
}

.btn-accent:hover {
  background-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 122, 83, 0.35);
}

/* -------------------------------------------------------------
   NAVBAR (MENU SUPERIOR)
   ------------------------------------------------------------- */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: var(--transition-smooth);
  padding: 24px 0;
  border-bottom: 1px solid transparent;
}

.header-nav.scrolled {
  background-color: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.logo {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  display: flex;
  flex-direction: column;
}

.logo-subtitle {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: none;
  margin-top: -2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-light);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--primary);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-cta .btn {
  padding: 10px 18px;
  font-size: 0.82rem;
}

.nav-cta-mobile {
  display: none;
}

/* Hamburger Menu Mobile */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1100;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--primary-dark);
  transition: var(--transition-fast);
  border-radius: 2px;
}

/* -------------------------------------------------------------
   HERO SECTION
   ------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--bg-warm);
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero-bg-leaves {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  opacity: 0.55;
  background-size: contain;
  background-position: top right;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
  filter: blur(2.5px);
  mask-image: linear-gradient(to bottom left, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to bottom left, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
}

/* Animação de Folhas Caindo de Fundo */
.falling-leaves-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.leaf {
  position: absolute;
  top: -60px;
  pointer-events: none;
  will-change: top, transform;
}

.leaf svg {
  display: block;
  width: 100%;
  height: 100%;
}

.leaf-1 {
  left: 10%;
  width: 32px;
  height: 32px;
  animation: fall-and-sway-right 16s linear infinite;
  animation-delay: 0s;
  filter: blur(1.5px);
}

.leaf-2 {
  left: 25%;
  width: 20px;
  height: 20px;
  animation: fall-and-sway-straight 20s linear infinite;
  animation-delay: -4s;
  filter: blur(3px);
}

.leaf-3 {
  left: 45%;
  width: 40px;
  height: 40px;
  animation: fall-and-sway-left 24s linear infinite;
  animation-delay: -9s;
  filter: blur(1px);
}

.leaf-4 {
  left: 60%;
  width: 25px;
  height: 25px;
  animation: fall-and-sway-right 18s linear infinite;
  animation-delay: -2s;
  filter: blur(2.5px);
}

.leaf-5 {
  left: 75%;
  width: 36px;
  height: 36px;
  animation: fall-and-sway-straight 22s linear infinite;
  animation-delay: -7s;
  filter: blur(1.5px);
}

.leaf-6 {
  left: 85%;
  width: 22px;
  height: 22px;
  animation: fall-and-sway-left 19s linear infinite;
  animation-delay: -12s;
  filter: blur(4px);
}

.leaf-7 {
  left: 15%;
  width: 28px;
  height: 28px;
  animation: fall-and-sway-straight 23s linear infinite;
  animation-delay: -15s;
  filter: blur(2px);
}

.leaf-8 {
  left: 95%;
  width: 34px;
  height: 34px;
  animation: fall-and-sway-right 26s linear infinite;
  animation-delay: -5s;
  filter: blur(2px);
}

.leaf-9 {
  left: 35%;
  width: 28px;
  height: 28px;
  animation: fall-and-sway-left 21s linear infinite;
  animation-delay: -17s;
  filter: blur(2.5px);
}

.leaf-10 {
  left: 55%;
  width: 32px;
  height: 32px;
  animation: fall-and-sway-right 25s linear infinite;
  animation-delay: -8s;
  filter: blur(1.5px);
}

.leaf-11 {
  left: 70%;
  width: 22px;
  height: 22px;
  animation: fall-and-sway-straight 20s linear infinite;
  animation-delay: -13s;
  filter: blur(3px);
}

.leaf-12 {
  left: 80%;
  width: 36px;
  height: 36px;
  animation: fall-and-sway-left 27s linear infinite;
  animation-delay: -3s;
  filter: blur(1px);
}

@keyframes fall-and-sway-right {
  0% {
    top: -60px;
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  25% {
    top: 25%;
    transform: translate3d(30px, 0, 0) rotate(90deg);
  }
  50% {
    top: 50%;
    transform: translate3d(-15px, 0, 0) rotate(180deg);
  }
  75% {
    top: 75%;
    transform: translate3d(45px, 0, 0) rotate(270deg);
  }
  100% {
    top: calc(100% + 60px);
    transform: translate3d(0, 0, 0) rotate(360deg);
  }
}

@keyframes fall-and-sway-left {
  0% {
    top: -60px;
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  25% {
    top: 25%;
    transform: translate3d(-35px, 0, 0) rotate(-90deg);
  }
  50% {
    top: 50%;
    transform: translate3d(20px, 0, 0) rotate(-180deg);
  }
  75% {
    top: 75%;
    transform: translate3d(-40px, 0, 0) rotate(-270deg);
  }
  100% {
    top: calc(100% + 60px);
    transform: translate3d(-10px, 0, 0) rotate(-360deg);
  }
}

@keyframes fall-and-sway-straight {
  0% {
    top: -60px;
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  33% {
    top: 33%;
    transform: translate3d(15px, 0, 0) rotate(120deg);
  }
  66% {
    top: 66%;
    transform: translate3d(-15px, 0, 0) rotate(240deg);
  }
  100% {
    top: calc(100% + 60px);
    transform: translate3d(5px, 0, 0) rotate(360deg);
  }
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 48px;
  z-index: 2;
  position: relative;
  padding: 0 24px;
}

.hero-content {
  max-width: 650px;
}

.hero-tagline {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
}

.hero-tagline::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background-color: var(--accent);
  vertical-align: middle;
  margin-left: 10px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--text-main);
}

.hero-title span {
  color: var(--primary-dark);
  font-style: italic;
}

.hero-description {
  font-size: 1.15rem;
  margin-bottom: 40px;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center; /* Centraliza a pilha de botões no Hero */
}

/* Alinhamento comum para todos os botões do Hero */
.hero-actions .btn {
  box-sizing: border-box;
  justify-content: center; /* Centraliza o conteúdo interno (ícone + texto) */
  display: inline-flex;
  align-items: center;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.hero-actions-right-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center; /* Centraliza os botões internos do grupo */
  width: 100%;
}

/* Botões Secundários: Atendimento e Jornada (Menores, sutis e idênticos) */
#btn-hero-services,
.btn-jornada-hero {
  width: 330px;
  max-width: 100%;
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 500;
}

.btn-jornada-hero {
  background-color: #335e3c; /* Verde floresta sutil */
  color: #faf6f0;
  box-shadow: 0 4px 12px rgba(51, 94, 60, 0.15);
  border: 1px solid transparent; /* Compensa a borda do botão secundário para alinhar a altura exata */
}

/* Botão do WhatsApp (Principal, maior e mais chamativo) */
.hero-actions .btn-whatsapp-contact {
  width: 520px;
  max-width: 100%;
  padding: 18px 36px;
  font-size: 0.95rem;
  font-weight: 600;
}

.btn-jornada-hero:hover {
  background-color: #25452c;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(51, 94, 60, 0.3);
  border-color: rgba(212, 175, 55, 0.6);
  color: #faf6f0;
}

@media (max-width: 768px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .hero-actions .btn {
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
  }
  /* WhatsApp com max-width maior no mobile */
  .hero-actions .btn-whatsapp-contact {
    max-width: 360px;
    width: 100%;
    padding: 16px 24px;
  }
  /* Atendimento e Jornada com max-width menor no mobile */
  #btn-hero-services,
  .btn-jornada-hero {
    max-width: 320px;
  }
  .hero-actions-right-group {
    width: 100%;
    align-items: center;
  }
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-frame {
  width: 100%;
  max-width: 380px;
  height: 480px;
  border-radius: 150px 150px 20px 20px; /* Abóbada orgânica */
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--bg-card);
  position: relative;
  background-color: var(--bg-warm-dark);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.hero-image-frame:hover img {
  transform: scale(1.05);
}

.hero-floating-card {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--bg-card);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
  border-left: 4px solid var(--primary);
  animation: float 4s ease-in-out infinite;
}

.hero-floating-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.hero-floating-text h4 {
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.hero-floating-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* -------------------------------------------------------------
   ABOUT ME (SOBRE MIM)
   ------------------------------------------------------------- */
.about {
  background-color: var(--bg-card);
}

.about-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: flex-start;
  padding: 0 24px;
}

.about-visual {
  position: sticky;
  top: 100px;
}

.about-image-frame {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--glass-border);
  position: relative;
  aspect-ratio: 4/5;
  background-color: var(--bg-warm-dark);
  animation: soft-glow 4s ease-in-out infinite;
}

@keyframes soft-glow {
  0%, 100% {
    box-shadow: 0 20px 50px rgba(96, 128, 102, 0.12), 0 0 12px rgba(96, 128, 102, 0.1);
    border-color: var(--glass-border);
  }
  50% {
    box-shadow: 0 20px 55px rgba(96, 128, 102, 0.22), 0 0 22px rgba(96, 128, 102, 0.4);
    border-color: var(--primary-light);
  }
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-crp-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
  background-color: var(--primary-bg);
  padding: 6px 14px;
  border-radius: 50px;
}

.about-content h2.about-title {
  font-family: var(--font-title);
  color: var(--primary-dark);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
  margin-top: 10px;
}

.about-title-mobile {
  display: none;
}

.about-epigraph {
  text-align: center;
  margin: 12px 0 28px 0;
  padding: 0 10px;
}

.about-epigraph-mobile {
  display: none;
}

.about-epigraph-desktop {
  display: block;
}

.epigraph-text {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--primary-dark);
  font-weight: 500;
  max-width: 580px;
  margin: 0 auto;
}

.epigraph-divider {
  display: block;
  width: 60px;
  height: 1px;
  background-color: var(--accent);
  margin: 16px auto 0 auto;
  opacity: 0.55;
}

.about-intro-text {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.7;
}

.about-bio-text {
  margin-bottom: 24px;
  text-align: left;
}

.bio-section {
  margin-bottom: 28px;
}

.bio-section h3 {
  font-family: var(--font-title);
  color: var(--primary-dark);
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 600;
  margin-top: 20px;
}

.bio-section:first-child h3 {
  margin-top: 0;
}

.more-content {
  display: none;
  transition: var(--transition-smooth);
}

.btn-read-more {
  background: none;
  border: none;
  color: var(--accent);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 0;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.btn-read-more:hover {
  color: var(--accent-dark);
}

.btn-read-more::after {
  content: '↓';
  font-size: 0.8rem;
  font-weight: 700;
  transition: var(--transition-fast);
}

.btn-read-more.expanded::after {
  content: '↑';
}

.about-practices {
  background: var(--bg-warm);
  padding: 24px;
  border-radius: var(--radius-md);
  margin-bottom: 40px;
  border-left: 4px solid var(--accent);
}

.about-practices h4 {
  margin-bottom: 12px;
  color: var(--accent-dark);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.about-practices p {
  font-size: 0.95rem;
}

.about-practices ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.about-practices li {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
  text-align: left;
}

.about-practices li::before {
  content: '•';
  color: var(--accent);
  font-weight: 700;
}

.about-practices .card-footer {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-top: 16px;
  border-top: 1px solid rgba(96, 128, 102, 0.15);
  padding-top: 12px;
  font-style: italic;
}

.about-cta-card {
  text-align: center;
  background-color: var(--bg-warm);
  padding: 36px 40px;
  border-radius: var(--radius-md);
  margin-top: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(96, 128, 102, 0.08);
}

.about-cta-card h4 {
  font-family: var(--font-title);
  color: var(--primary-dark);
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.about-cta-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-main);
  max-width: 600px;
  margin: 0 auto;
}

/* Abordagem Integrativa Detalhada */
.approach-title {
  font-size: 1.5rem;
  margin: 40px 0 20px 0;
  color: var(--primary-dark);
  scroll-margin-top: 120px;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 20px;
}

.approach-card {
  background: var(--bg-warm);
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(96, 128, 102, 0.08);
  transition: var(--transition-smooth);
}

.approach-card:hover {
  transform: translateY(-4px);
  background: var(--bg-card);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.approach-card-icon {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.approach-card h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.approach-card p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* -------------------------------------------------------------
   BRAND DIVIDER (DIVISÓRIA DA MARCA)
   ------------------------------------------------------------- */
.brand-divider-section {
  padding: 60px 24px;
  background-color: var(--bg-warm);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.brand-divider-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.brand-divider-container::before,
.brand-divider-container::after {
  content: '';
  display: block;
  flex-grow: 1;
  max-width: 250px;
  height: 1px;
  background-color: var(--primary-light);
  opacity: 0.25;
}

.brand-badge-wrapper {
  max-width: 450px;
  width: 100%;
  padding: 0 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.brand-badge-img {
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: contain;
  mix-blend-mode: multiply; /* Mescla perfeitamente o fundo da imagem com o site */
  filter: contrast(1.03) saturate(1.02);
  opacity: 0.95;
  transition: var(--transition-smooth);
  animation: slow-breath 6s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

/* Estrelas Cintilantes e Anel de Brilho Giratório ao redor da Libélula */
.dragonfly-sparkles {
  position: absolute;
  width: 90%;
  max-width: 240px;
  aspect-ratio: 1/1;
  z-index: 3;
  pointer-events: none;
  animation: rotate-sparkles 15s linear infinite;
}

/* Linha de brilho que roda junto com as estrelas */
.dragonfly-sparkles::before {
  content: '';
  position: absolute;
  top: 4%;
  left: 4%;
  right: 4%;
  bottom: 4%;
  border-radius: 50%;
  border: 1.5px dashed rgba(249, 231, 185, 0.35); /* Amarelo sutil */
  box-shadow: 0 0 15px rgba(249, 231, 185, 0.4), inset 0 0 10px rgba(249, 231, 185, 0.25);
  pointer-events: none;
  animation: pulse-ring-glow 3s ease-in-out infinite alternate;
}

.sparkle {
  position: absolute;
  font-size: 1.15rem;
  animation: sparkle-blink 2s ease-in-out infinite alternate;
}

/* Estrelas alternadas (3 amarelas e 3 verdes sálvia) */
.sparkle.s1 { 
  top: 44%; left: 95%; 
  color: #F9E7B9; /* Amarelo sutil */
  text-shadow: 0 0 8px rgba(249, 231, 185, 0.95), 0 0 15px rgba(249, 231, 185, 0.45); 
  animation-delay: 0s; 
}
.sparkle.s2 { 
  top: 86%; left: 71%; 
  color: var(--primary-light); /* Verde sálvia */
  text-shadow: 0 0 8px rgba(125, 160, 132, 0.95), 0 0 15px rgba(125, 160, 132, 0.45); 
  animation-delay: 0.33s; 
}
.sparkle.s3 { 
  top: 86%; left: 19%; 
  color: #F9E7B9; /* Amarelo sutil */
  text-shadow: 0 0 8px rgba(249, 231, 185, 0.95), 0 0 15px rgba(249, 231, 185, 0.45); 
  animation-delay: 0.66s; 
}
.sparkle.s4 { 
  top: 44%; left: -2%; 
  color: var(--primary-light); /* Verde sálvia */
  text-shadow: 0 0 8px rgba(125, 160, 132, 0.95), 0 0 15px rgba(125, 160, 132, 0.45); 
  animation-delay: 1s; 
}
.sparkle.s5 { 
  top: 2%; left: 19%; 
  color: #F9E7B9; /* Amarelo sutil */
  text-shadow: 0 0 8px rgba(249, 231, 185, 0.95), 0 0 15px rgba(249, 231, 185, 0.45); 
  animation-delay: 1.33s; 
}
.sparkle.s6 { 
  top: 2%; left: 71%; 
  color: var(--primary-light); /* Verde sálvia */
  text-shadow: 0 0 8px rgba(125, 160, 132, 0.95), 0 0 15px rgba(125, 160, 132, 0.45); 
  animation-delay: 1.66s; 
}

/* Keyframes das Animações da Libélula */
@keyframes rotate-sparkles {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse-ring-glow {
  0% {
    opacity: 0.55;
    filter: drop-shadow(0 0 2px rgba(249, 231, 185, 0.2));
  }
  100% {
    opacity: 0.95;
    filter: drop-shadow(0 0 8px rgba(249, 231, 185, 0.65));
  }
}

@keyframes sparkle-blink {
  0% {
    opacity: 0.2;
    transform: scale(0.65) rotate(0deg);
  }
  100% {
    opacity: 1;
    transform: scale(1.2) rotate(45deg);
  }
}

.brand-badge-img:hover {
  transform: scale(1.05);
  opacity: 1;
  animation-play-state: paused;
}

@keyframes slow-breath {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.025);
  }
}

@media (max-width: 768px) {
  .brand-divider-section {
    padding: 40px 20px;
  }
  
  .brand-divider-container::before,
  .brand-divider-container::after {
    max-width: 80px;
  }
  
  .brand-badge-wrapper {
    padding: 0 20px;
    max-width: 320px;
  }
  
  .brand-badge-img {
    max-height: 190px;
  }
}

/* -------------------------------------------------------------
   QUOTE DIVIDER (CITAÇÃO DESTAQUE)
   ------------------------------------------------------------- */
.quote-divider-section {
  padding: 80px 24px;
  background-color: var(--primary-bg); /* Fundo sálvia sutil */
  text-align: center;
  position: relative;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.quote-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.quote-text {
  font-family: var(--font-title);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-style: italic;
  font-weight: 500;
  color: var(--primary-dark);
  line-height: 1.6;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.quote-text::before {
  content: '“';
  font-family: var(--font-title);
  font-size: 6rem;
  color: var(--accent);
  opacity: 0.12;
  position: absolute;
  top: -65px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}

/* -------------------------------------------------------------
   SERVICES (SERVIÇOS)
   ------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  padding: 0 24px;
}

.service-card {
  background: var(--bg-card);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(96, 128, 102, 0.05);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.service-card > div {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card .btn {
  margin-top: auto;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.service-card-header {
  margin-bottom: 24px;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-bg);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.service-card p {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.service-details {
  list-style: none;
  margin-bottom: 24px;
}

.service-details li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.service-details li svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* -------------------------------------------------------------
   PRACTICAL PATH (O CAMINHO NA PRÁTICA)
   ------------------------------------------------------------- */
.path-section {
  background-color: var(--bg-card);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  padding: 0 24px;
}

/* Linha conectora horizontal no desktop */
@media (min-width: 1025px) {
  .path-grid::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 48px;
    right: 48px;
    height: 1px;
    background-color: var(--primary-light);
    opacity: 0.25;
    z-index: 1;
  }
}

.path-card {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 2;
  transition: var(--transition-smooth);
}

.path-number {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-light);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 16px;
  display: inline-block;
  transition: color 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: var(--bg-card); /* Cobre a linha conectora */
  width: fit-content;
  padding-right: 12px;
}

.path-card:hover .path-number,
.path-card.active .path-number {
  color: var(--accent);
  opacity: 0.9;
  transform: translateY(-4px);
}

.path-card-content h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.path-card-content p {
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .path-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .path-number {
    font-size: 3rem;
  }
}

@media (max-width: 600px) {
  .path-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* -------------------------------------------------------------
   SPECIALTIES (ESPECIALIDADES)
   ------------------------------------------------------------- */
.specialties {
  background-color: var(--bg-card);
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  padding: 0 24px;
}

.specialty-card {
  background: var(--bg-warm);
  padding: 36px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.specialty-card:hover {
  background: var(--bg-card);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.specialty-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-bg);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.specialty-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.specialty-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.specialty-card .btn-read-more {
  margin-top: auto;
  align-self: flex-start;
}

.specialties-notice,
.tools-notice,
.services-notice {
  text-align: center;
  max-width: 750px;
  margin: 60px auto 0 auto;
  padding: 24px 40px;
  position: relative;
}

.specialties-notice::before,
.tools-notice::before,
.services-notice::before {
  content: '✦';
  display: block;
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.specialties-notice p,
.tools-notice p,
.services-notice p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 0.2px;
}

/* -------------------------------------------------------------
   TOOLS SECTION (FERRAMENTAS EXTRAS)
   ------------------------------------------------------------- */
.tools-section {
  background-color: var(--bg-warm-dark);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  padding: 0 24px;
}

.tool-card {
  background: var(--bg-card);
  padding: 36px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.tool-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-bg);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.tool-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.tool-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.tool-card .btn-read-more {
  margin-top: auto;
  align-self: flex-start;
}

/* -------------------------------------------------------------
   FAQ
   ------------------------------------------------------------- */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(96, 128, 102, 0.04);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(96, 128, 102, 0.15);
}

.faq-question {
  width: 100%;
  padding: 24px 32px;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-main);
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: var(--bg-card);
}

.faq-answer-inner {
  padding: 0 32px 24px 32px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  border-top: 1px solid rgba(96, 128, 102, 0.05);
  padding-top: 16px;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--primary);
  transition: transform 0.4s ease;
}

.faq-item.faq-active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.faq-active {
  border-color: var(--primary-light);
}

.faq-whatsapp-notice {
  text-align: center;
  max-width: 600px;
  margin: 50px auto 0 auto;
  padding: 32px 40px;
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(96, 128, 102, 0.06);
}

.faq-whatsapp-notice p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-main);
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1.5;
}

.btn-faq-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: pulse-attention-green 3s infinite ease-in-out;
  box-shadow: 0 4px 15px rgba(96, 128, 102, 0.25);
  transition: var(--transition-smooth);
}

.btn-faq-whatsapp:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(96, 128, 102, 0.35);
  animation-play-state: paused;
}

/* -------------------------------------------------------------
   BLOG
   ------------------------------------------------------------- */
.blog {
  background-color: var(--bg-card);
}

.blog-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--bg-warm);
  border: 1px solid rgba(96, 128, 102, 0.08);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--text-muted);
}

.filter-btn:hover {
  background: var(--primary-bg);
  color: var(--primary);
}

.filter-btn.active {
  background: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
}

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

.blog-card {
  background: var(--bg-warm);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
  background: var(--bg-card);
}

.blog-card-image {
  width: 100%;
  height: 140px;
  overflow: hidden;
  background-color: var(--bg-warm-dark);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.blog-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.75rem;
  font-weight: 500;
}

.blog-card-category {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card-date {
  color: var(--text-muted);
}

.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-main);
  line-height: 1.4;
}

.blog-card-summary {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.blog-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-card-link svg {
  transition: transform 0.2s ease;
}

.blog-card:hover .blog-card-link svg {
  transform: translateX(4px);
}

/* Modal Detalhado de Posts */
.blog-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(46, 48, 47, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 24px;
}

.blog-modal.active {
  opacity: 1;
  pointer-events: all;
}

.blog-modal-content {
  background: var(--bg-warm);
  width: 100%;
  max-width: 800px;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--glass-border);
}

.blog-modal.active .blog-modal-content {
  transform: translateY(0);
}

.blog-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.blog-modal-close:hover {
  background: var(--accent);
  color: var(--text-light);
  transform: rotate(90deg);
}

.blog-modal-header {
  height: 350px;
  position: relative;
}

.blog-modal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(46, 48, 47, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 40px;
}

.blog-modal-meta-title {
  color: var(--text-light);
  width: 100%;
}

.blog-modal-category {
  display: inline-block;
  background: var(--accent);
  color: var(--text-light);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.blog-modal-meta-title h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--text-light);
  margin-bottom: 8px;
}

.blog-modal-date {
  font-size: 0.85rem;
  opacity: 0.8;
}

.blog-modal-body {
  padding: 40px;
  background: var(--bg-card);
}

.blog-modal-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-main);
}

.blog-modal-text p {
  margin-bottom: 24px;
  text-align: justify;
}

.blog-modal-text h3 {
  margin: 36px 0 16px 0;
  font-size: 1.4rem;
  color: var(--primary-dark);
}

/* -------------------------------------------------------------
   CONTACT (CONTATO)
   ------------------------------------------------------------- */
.contact-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  padding: 0 24px;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-info-title {
  font-size: 1.75rem;
  margin-bottom: 20px;
  color: var(--primary-dark);
}

.contact-info-desc {
  margin-bottom: 24px;
}

.contact-cta-wrapper {
  margin-bottom: 36px;
}

.btn-whatsapp-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 16px 32px;
  box-shadow: 0 4px 15px rgba(200, 122, 83, 0.25);
  transition: var(--transition-smooth);
  animation: pulse-attention 3s infinite ease-in-out;
}

.btn-whatsapp-contact:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(200, 122, 83, 0.35);
  animation-play-state: paused; /* Pausa o pulso automático quando o mouse está sobre o botão */
}

@keyframes pulse-attention {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(200, 122, 83, 0.25);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(200, 122, 83, 0.45), 0 0 0 10px rgba(200, 122, 83, 0.15);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(200, 122, 83, 0.25);
  }
}

.btn-whatsapp-contact-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 16px 32px;
  box-shadow: 0 4px 15px rgba(96, 128, 102, 0.25);
  transition: var(--transition-smooth);
  animation: pulse-attention-green 3s infinite ease-in-out;
}

.btn-whatsapp-contact-green:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(96, 128, 102, 0.35);
  animation-play-state: paused; /* Pausa o pulso automático quando o mouse está sobre o botão */
}

@keyframes pulse-attention-green {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(96, 128, 102, 0.25);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(96, 128, 102, 0.45), 0 0 0 10px rgba(96, 128, 102, 0.15);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(96, 128, 102, 0.25);
  }
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-bg);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-details-text h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-details-text p,
.contact-details-text a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-details-text a:hover {
  color: var(--primary);
}

.contact-socials {
  display: flex;
  gap: 16px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.social-btn:hover {
  background: var(--primary);
  color: var(--text-light);
  transform: translateY(-2px);
  border-color: var(--primary);
}

/* Formulário de Contato */
.contact-card {
  background: var(--bg-card);
  padding: 36px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(96, 128, 102, 0.05);
  max-width: 520px;
  width: 100%;
  margin-left: auto;
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(96, 128, 102, 0.2);
  background: var(--bg-warm);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  background: var(--bg-card);
  box-shadow: 0 0 0 4px rgba(96, 128, 102, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Estado de Sucesso no Formulário */
.form-success-message {
  display: none;
  background: var(--primary-bg);
  border: 1px solid var(--primary-light);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  animation: fadeIn 0.4s ease;
}

.form-success-message h4 {
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.form-success-message p {
  font-size: 0.9rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* -------------------------------------------------------------
   FOOTER (RODAPÉ)
   ------------------------------------------------------------- */
.footer {
  background-color: var(--text-main);
  color: var(--bg-warm);
  padding: 80px 24px 30px 24px;
  border-top: 1px solid rgba(250, 246, 240, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-col h3,
.footer-col h4 {
  color: var(--bg-warm);
  margin-bottom: 24px;
}

.footer-col h3 {
  font-size: 1.5rem;
}

.footer-about p {
  color: #a8aba9;
  font-size: 0.9rem;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #a8aba9;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--primary-light);
  padding-left: 4px;
}

.footer-ethics {
  background: rgba(250, 246, 240, 0.04);
  padding: 20px;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--primary-light);
}

.footer-ethics h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-ethics p {
  font-size: 0.8rem;
  color: #a8aba9;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(250, 246, 240, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-crp {
  font-size: 0.85rem;
  color: var(--primary-light);
  font-weight: 600;
}

.footer-copy {
  font-size: 0.85rem;
  color: #a8aba9;
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-journey-call {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 24px;
  font-style: italic;
  letter-spacing: 0.2px;
}

/* -------------------------------------------------------------
   REVEAL ICONS ON SCROLL (ANIMAÇÃO DE ÍCONES NO SCROLL) & GENERAL SCROLL REVEAL
   ------------------------------------------------------------- */
.reveal-icon {
  opacity: 0;
  transform: translateY(20px) scale(0.85);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-icon.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Scroll Reveal Geral (Cards, Textos, Cabeçalhos) */
.scroll-reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Variação Zoom/Escala */
.scroll-reveal.scale-up {
  transform: translateY(25px) scale(0.96);
}

.scroll-reveal.scale-up.active {
  transform: translateY(0) scale(1);
}

/* Atrasos em cascata (Staggered) - Ativos apenas em telas maiores que mobile */
@media (min-width: 769px) {
  .scroll-reveal.delay-1 { transition-delay: 0.1s; }
  .scroll-reveal.delay-2 { transition-delay: 0.25s; }
  .scroll-reveal.delay-3 { transition-delay: 0.4s; }
  .scroll-reveal.delay-4 { transition-delay: 0.55s; }
  .scroll-reveal.delay-5 { transition-delay: 0.7s; }
}

/* Otimização de acessibilidade para usuários que preferem movimentos reduzidos */
@media (prefers-reduced-motion: reduce) {
  .scroll-reveal,
  .reveal-icon {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

#btn-service-grupo-cta {
  animation: pulse-attention-green 3s infinite ease-in-out;
  box-shadow: 0 4px 15px rgba(96, 128, 102, 0.25);
}

#btn-service-grupo-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(96, 128, 102, 0.35);
  animation-play-state: paused;
}

/* -------------------------------------------------------------
   RESPONSIVIDADE (MEDIA QUERIES)
   ------------------------------------------------------------- */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mobile-line {
    display: block;
  }

  .hero-bg-leaves {
    width: 100%;
    height: 100%;
    top: 0;
    left: auto;
    transform: none;
    mask-image: linear-gradient(to bottom left, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom left, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }
  
  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-image-wrapper {
    order: -1;
  }
  
  .hero-image-frame {
    height: 400px;
    max-width: 320px;
  }
  
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-visual {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .about-image-frame {
    max-width: 400px;
  }
  

  
  .about-crp-tag {
    margin-top: 4px;
  }
  
  .about-epigraph-mobile {
    display: block;
    margin-top: 24px;
    margin-bottom: 8px;
    width: 100%;
  }

  .about-epigraph-desktop {
    display: none;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-col-ethics {
    grid-column: span 2;
  }
}

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

  .section {
    padding: 60px 20px;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background-color: var(--bg-warm);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    z-index: 1050;
    border-left: 1px solid var(--glass-border);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-cta {
    display: none;
  }
  
  .nav-menu .nav-cta-mobile {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 0;
  }
  
  .nav-menu .nav-cta-mobile .btn {
    width: 220px;
    padding: 10px 18px;
    font-size: 0.85rem;
  }
  
  /* Animação do Hamburger */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    padding: 24px;
  }
  
  .blog-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 0 24px 12px 24px;
    scrollbar-width: none;
  }

  .blog-grid::-webkit-scrollbar {
    display: none;
  }

  .blog-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
  }

  .blog-card-image {
    height: 110px;
  }

  .blog-card-content {
    padding: 16px;
  }

  .blog-card h3 {
    font-size: 1.0rem;
    margin-bottom: 6px;
  }

  .blog-card-summary {
    font-size: 0.8rem;
    margin-bottom: 12px;
  }

  .blog-card-meta {
    margin-bottom: 6px;
  }
  
  .approach-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-col-ethics {
    grid-column: span 1;
  }
  
  .blog-modal {
    padding: 12px;
  }
  
  .blog-modal-header {
    height: 200px;
  }
  
  .blog-modal-overlay {
    padding: 20px;
  }
  
  .blog-modal-body {
    padding: 24px;
  }
  
  .contact-card {
    padding: 24px;
    margin: 0 auto;
  }
  
  /* Blog Filters horizontal scroll on mobile */
  .blog-filters {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 8px;
    padding: 4px 20px 12px 20px;
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: 24px;
    scrollbar-width: none; /* Firefox */
  }
  
  .blog-filters::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
  }
  
  .filter-btn {
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}
