/* ========================================
   🎨 VARIÁVEIS CSS EXPANDIDAS E ORGANIZADAS
   ======================================== */
:root {
  /* 🎨 Paleta de Cores Principal */
  --verde: #6aa84f;
  --verde-escuro: #38761d;
  --verde-hover: #5a9742;
  --branco: #ffffff;
  --cinza: #f5f5f5;
  --cinza-claro: #fefae0;
  --preto: #111;
  --cinza-texto: #444;
  --sombra-verde: rgba(106, 168, 79, 0.15);
  
  /* 📏 Sistema de Espaçamento (8pt grid) */
  --space-xs: 0.25rem;   /* 4px */
  --space-sm: 0.5rem;    /* 8px */
  --space-md: 1rem;      /* 16px */
  --space-lg: 1.5rem;    /* 24px */
  --space-xl: 2rem;      /* 32px */
  --space-2xl: 3rem;     /* 48px */
  --space-3xl: 4rem;     /* 64px */
  
  /* 📱 Breakpoints Responsivos */
  --mobile: 480px;
  --tablet: 768px;
  --desktop: 1024px;
  --wide: 1300px;
  
  /* 🎭 Animações e Transições */
  --transition-fast: 0.2s ease-out;
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  
  /* 📝 Tipografia Fluida */
  --font-size-sm: clamp(0.875rem, 2vw, 1rem);
  --font-size-base: clamp(1rem, 2.5vw, 1.125rem);
  --font-size-lg: clamp(1.125rem, 3vw, 1.25rem);
  --font-size-xl: clamp(1.5rem, 4vw, 2rem);
  --font-size-hero: clamp(2rem, 5vw, 2.6rem);
  
  /* 🌊 Efeitos Visuais */
  --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-strong: 0 8px 32px rgba(0, 0, 0, 0.15);
  --blur-subtle: blur(1px);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-pill: 50px;
}

/* ========================================
   🔧 RESET E BASE MELHORADA
   ======================================== */
html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--preto);
  background-color: var(--branco);
}

*, *::before, *::after {
  box-sizing: inherit;
}

/* ========================================
   🏠 HERO SECTION - LAYOUT PRINCIPAL
   ======================================== */
.hero {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  padding: clamp(2rem, 8vw, 4rem) 0;
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(254, 250, 224, 0.9) 100%),
    radial-gradient(circle at 30% 80%, var(--sombra-verde) 0%, transparent 50%);
  isolation: isolate;
}

.background-hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.03;
  filter: var(--blur-subtle);
  transform: scale(1.05);
  pointer-events: none;
  transition: opacity var(--transition-slow);
}

.hero:hover .background-hero {
  opacity: 0.05;
}

/* ========================================
   📦 CONTAINER PRINCIPAL
   ======================================== */
.container-hero {
  max-width: var(--wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: var(--space-2xl);
  padding: 0 var(--space-md);
  position: relative;
  z-index: 1;
}

/* ========================================
   📝 SEÇÃO DE TEXTO HERO
   ======================================== */
.hero-texto {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  animation: slideInLeft 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-texto .slogan {
  font-weight: 600;
  font-size: var(--font-size-sm);
  color: var(--verde);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  width: fit-content;
}

.hero-texto .slogan::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, var(--verde), transparent);
  animation: expandLine 1.2s ease-out 0.5s both;
}

.hero-texto h1 {
  font-size: var(--font-size-hero);
  line-height: 1.2;
  font-weight: 700;
  color: var(--preto);
  margin: 0;
  text-wrap: balance;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.hero-texto h1 span {
  color: var(--verde);
  position: relative;
  display: inline-block;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(106, 168, 79, 0.1);
  transition: all var(--transition-smooth);
  animation: textShine 3s ease-in-out infinite;
}

.hero-texto h1 span::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--verde), var(--verde-escuro));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-smooth);
  border-radius: 2px;
}

.hero-texto h1:hover span {
  color: var(--verde-escuro);
  transform: scale(1.02);
}

.hero-texto .descricao {
  font-size: var(--font-size-lg);
  line-height: 1.7;
  color: var(--cinza-texto);
  margin: 0;
  max-width: 55ch;
  text-wrap: pretty;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* ========================================
   🔘 BOTÃO DE CONTATO MELHORADO
   ======================================== */
.botao-contato {
  background: linear-gradient(135deg, var(--verde) 0%, var(--verde-hover) 100%);
  color: var(--branco);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--border-radius-pill);
  font-weight: 600;
  font-size: var(--font-size-base);
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  width: fit-content;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: all var(--transition-smooth);
  transform-style: preserve-3d;
}

.botao-contato::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left var(--transition-slow);
}

.botao-contato:hover {
  background: linear-gradient(135deg, var(--verde-hover) 0%, var(--verde-escuro) 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(106, 168, 79, 0.3);
}

.botao-contato:hover::before {
  left: 100%;
}

.botao-contato:active {
  transform: translateY(0) scale(0.98);
}

/* ========================================
   🖼️ SEÇÃO DE IMAGEM HERO
   ======================================== */
.hero-imagem {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideInRight 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-imagem img {
  width: 100%;
  max-width: min(380px, 90vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(var(--shadow-soft));
  transition: transform var(--transition-smooth);
}

.hero-imagem:hover img {
  transform: scale(1.02) rotate(1deg);
}

/* ========================================
   📊 BLOCOS DE INFORMAÇÃO FLUTUANTES
   ======================================== */
.info-bloco {
  position: absolute;
  background: linear-gradient(135deg, var(--verde) 0%, var(--verde-escuro) 100%);
  color: var(--branco);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--border-radius-md);
  text-align: center;
  box-shadow: var(--shadow-strong);
  width: clamp(140px, 15vw, 180px);
  z-index: 2;
  font-weight: 700;
  font-size: var(--font-size-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: float 4s ease-in-out infinite;
  transition: all var(--transition-smooth);
}

.info-bloco::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.info-bloco:hover::before {
  opacity: 1;
}

.info-bloco:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 40px rgba(106, 168, 79, 0.25);
}

.info-bloco span {
  font-size: var(--font-size-sm);
  font-weight: 400;
  display: block;
  margin-top: var(--space-xs);
  opacity: 0.9;
}

.projetos {
  top: 15%;
  left: -10px;
  animation-delay: 0s;
}

.experiencia {
  bottom: 5%;
  right: -10px;
  animation-delay: 2s;
}

/* ========================================
   🎭 ANIMAÇÕES MELHORADAS
   ======================================== */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-8px) rotate(1deg);
  }
  50% {
    transform: translateY(-4px) rotate(0deg);
  }
  75% {
    transform: translateY(-12px) rotate(-1deg);
  }
}

@keyframes textShine {
  0%, 100% { 
    color: var(--verde);
    text-shadow: 0 2px 4px rgba(106, 168, 79, 0.1);
  }
  50% { 
    color: var(--verde-escuro);
    text-shadow: 0 2px 8px rgba(106, 168, 79, 0.2);
  }
}

@keyframes expandLine {
  from {
    width: 0%;
  }
  to {
    width: 60%;
  }
}

/* ========================================
   📱 RESPONSIVIDADE MODERNA (MOBILE-FIRST)
   ======================================== */

/* 📱 Extra Small Mobile (até 375px) */
@media (max-width: 375px) {
  .hero {
    padding: var(--space-lg) 0;
  }
  
  .container-hero {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    text-align: center;
    padding: 0 var(--space-sm);
    max-width: 100%;
  }
  
  .hero-texto {
    order: 2;
    align-items: center;
    gap: var(--space-sm);
  }
  
  .hero-texto .slogan {
    letter-spacing: 1px;
  }
  
  .hero-texto h1 {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
    line-height: 1.1;
  }
  
  .hero-texto .descricao {
    font-size: clamp(1rem, 4vw, 1.125rem);
    max-width: 95%;
  }
  
  .botao-contato {
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--font-size-sm);
    min-height: 48px; /* Melhor área de toque */
  }
  
  .hero-imagem {
    order: 1;
    margin-bottom: var(--space-sm);
    position: relative;
    overflow: visible;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-imagem img {
    max-width: min(280px, 90vw);
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  /* Container para os blocos info em mobile */
  .hero-imagem::after {
    content: '';
    display: block;
    width: 100%;
    height: var(--space-md);
  }
  
  .info-bloco {
    position: relative !important;
    display: inline-block;
    margin: var(--space-xs) var(--space-xs);
    width: clamp(120px, 40vw, 160px);
    font-size: var(--font-size-sm);
    padding: var(--space-sm) var(--space-md);
    animation: none;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
  }
  
  .info-bloco span {
    font-size: clamp(0.75rem, 3vw, 0.875rem);
    margin-top: var(--space-xs);
  }
  
  /* Reorganiza os blocos abaixo da imagem */
  .projetos,
  .experiencia {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin: var(--space-xs);
    display: inline-block;
  }
}

/* 📱 Mobile Portrait (376px - 480px) */
@media (min-width: 376px) and (max-width: 480px) {
  .hero {
    padding: var(--space-xl) 0;
  }
  
  .container-hero {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
    padding: 0 var(--space-sm);
    max-width: 100%;
  }
  
  .hero-texto {
    order: 2;
    align-items: center;
  }
  
  .hero-imagem {
    order: 1;
    margin-bottom: var(--space-md);
    position: relative;
    overflow: visible;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-imagem img {
    max-width: min(320px, 85vw);
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  .botao-contato {
    min-height: 48px; /* Área de toque adequada */
  }
  
  .info-bloco {
    position: relative !important;
    display: inline-block;
    margin: var(--space-sm) var(--space-xs);
    width: clamp(140px, 42vw, 180px);
    font-size: var(--font-size-base);
    padding: var(--space-sm) var(--space-md);
    animation: none;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
  }
  
  .info-bloco span {
    font-size: var(--font-size-sm);
  }
  
  /* Reorganiza os blocos abaixo da imagem */
  .projetos,
  .experiencia {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin: var(--space-sm) var(--space-xs);
    display: inline-block;
  }
}

/* 📱 Mobile Landscape & Small Tablets (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .hero {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }
  
  .container-hero {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    text-align: center;
    padding: 0 var(--space-md);
    max-width: 100%;
  }
  
  .hero-texto {
    order: 2;
    align-items: center;
  }
  
  .hero-texto .descricao {
    max-width: 70ch;
  }
  
  .hero-imagem {
    order: 1;
    position: relative;
    overflow: visible;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-imagem img {
    max-width: min(380px, 80vw);
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  .info-bloco {
    position: relative !important;
    display: inline-block;
    margin: var(--space-md) var(--space-sm);
    width: clamp(160px, 35vw, 220px);
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    animation: none;
    transform: none !important;
  }
  
  /* Reorganiza os blocos abaixo da imagem */
  .projetos,
  .experiencia {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin: var(--space-md) var(--space-sm);
    display: inline-block;
  }
}

/* 💻 Tablets Portrait (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero {
    padding: clamp(2.5rem, 6vw, 3.5rem) 0;
  }
  
  .container-hero {
    gap: var(--space-xl);
    padding: 0 var(--space-lg);
  }
  
  .hero-imagem img {
    max-width: min(320px, 45vw);
  }
  
  .projetos {
    left: -5px;
  }
  
  .experiencia {
    right: -5px;
  }
}

/* 💻 Tablets Landscape & Small Desktop (1025px - 1200px) */
@media (min-width: 1025px) and (max-width: 1200px) {
  .container-hero {
    max-width: 1100px;
    gap: var(--space-2xl);
  }
  
  .hero-texto {
    max-width: 95%;
  }
  
  .hero-imagem img {
    max-width: min(360px, 40vw);
  }
}

/* 🖥️ Desktop Large (1201px+) */
@media (min-width: 1201px) {
  .hero-texto {
    max-width: 90%;
  }
  
  .hero-imagem img {
    max-width: min(380px, 35vw);
  }
}

/* ========================================
   🔄 ORIENTAÇÃO DE TELA
   ======================================== */

/* Landscape em dispositivos móveis */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    padding: var(--space-lg) 0;
  }
  
  .container-hero {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    text-align: left;
    align-items: center;
  }
  
  .hero-texto {
    order: 1;
    align-items: flex-start;
  }
  
  .hero-imagem {
    order: 2;
    margin-bottom: 0;
  }
  
  .hero-imagem img {
    max-width: min(300px, 40vw);
  }
  
  .info-bloco {
    position: absolute;
    animation: float 4s ease-in-out infinite;
    transform: initial;
  }
  
  .projetos {
    top: 20%;
    left: 2%;
  }
  
  .experiencia {
    bottom: 20%;
    right: 2%;
  }
}

/* ========================================
   ♿ ACESSIBILIDADE E ESTADOS DE FOCO
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero-texto {
    animation: none;
  }
  
  .hero-imagem {
    animation: none;
  }
  
  .info-bloco {
    animation: none;
  }
}

.botao-contato:focus-visible,
.info-bloco:focus-visible {
  outline: 3px solid var(--verde);
  outline-offset: 2px;
}

/* Melhor interação em dispositivos touch */
@media (hover: none) and (pointer: coarse) {
  .botao-contato {
    min-height: 48px;
    min-width: 48px;
    padding: var(--space-md) var(--space-lg);
  }
  
  .info-bloco:hover {
    transform: none;
    box-shadow: var(--shadow-strong);
  }
  
  .hero-imagem:hover img {
    transform: none;
  }
  
  .hero-texto h1:hover span {
    transform: none;
  }
}

/* Mantém interações hover apenas para dispositivos que suportam */
@media (hover: hover) and (pointer: fine) {
  .hero-imagem img {
    transition: transform var(--transition-smooth);
  }
}

/* ========================================
   🌙 DARK MODE SUPPORT & WORDPRESS COMPATIBILITY
   ======================================== */
   
/* Força contraste para WordPress/Astra */
.hero-texto h1,
.hero-texto .descricao,
.hero-texto .slogan {
  position: relative;
  z-index: 10;
}

/* Overlay adicional para garantir legibilidade */
.hero-texto::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(5px);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

/* Ativa overlay em telas menores para melhor legibilidade */
@media (max-width: 768px) {
  .hero-texto::before {
    opacity: 0.8;
  }
}

/* Ajustes específicos para WordPress */
.hero-texto h1,
.hero-texto .descricao {
  color: var(--preto) !important;
}

.hero-texto .slogan {
  color: var(--verde) !important;
}

/* ========================================
   🔧 CORREÇÕES PARA CONTAINERS WORDPRESS
   ======================================== */

/* Garante que o hero ocupe toda a largura em temas WordPress */
.hero {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
}

/* Fallback para temas que podem interferir */
@supports not (width: 100vw) {
  .hero {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
  }
}
/* @media (prefers-color-scheme: dark) {
  :root {
    --branco: #0f0f0f;
    --preto: #ffffff;
    --cinza-texto: #e0e0e0;
    --cinza: #1a1a1a;
    --cinza-claro: #2a2a2a;
  }
  
  .hero {
    background: 
      linear-gradient(135deg, rgba(15, 15, 15, 0.9) 0%, rgba(42, 42, 42, 0.6) 100%),
      radial-gradient(circle at 30% 80%, var(--sombra-verde) 0%, transparent 50%);
  }
  
  .hero-texto::before {
    background: rgba(15, 15, 15, 0.7);
  }
} */

/* SOBRE NÓS */
.servicos {
  padding: 5rem 1.5rem;
  background-color: var(--branco);
}

.container-servicos {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.servicos-imagem {
  flex: 1 1 48%;
}

.servicos-imagem img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.servicos-texto {
  flex: 1 1 48%;
  text-align: left;
}





.servicos-texto .subtitulo {
  /* Typography */
  color: var(--verde);
  font-weight: 700;
  font-size: clamp(0.875rem, 1.25vw, 1.1rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  
  /* Spacing & Layout */
  margin-bottom: 1rem;
  display: inline-block;
  position: relative;
  padding-bottom: 0.5rem;
  
  /* Visual Enhancement */
  background: linear-gradient(90deg, rgba(106,168,79,0.1), transparent);
  padding: 0.5rem 1rem 0.5rem 0;
  
  /* Animation */
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.servicos-texto .subtitulo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, var(--verde), rgba(106,168,79,0));
  transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.servicos-texto:hover .subtitulo {
  letter-spacing: 0.12em;
}

.servicos-texto:hover .subtitulo::after {
  width: 5rem;
}

@media (prefers-reduced-motion: reduce) {
  .servicos-texto .subtitulo,
  .servicos-texto .subtitulo::after {
    transition: none;
  }
}
/* .servicos-texto .subtitulo {
  color: var(--verde);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
} */

.servicos-texto h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--preto);
  margin-bottom: 1rem;
}

.servicos-texto .descricao {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 1rem;
}

.botao-leia {
  display: inline-block;
  background-color: var(--verde);
  color: var(--branco);
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.botao-leia:hover {
  background-color: var(--verde-escuro);
  color: var(--branco);
  transform: translateY(-3px);
}

/* RESPONSIVO SERVIÇOS */
@media (max-width: 900px) {
  .container-servicos {
    flex-direction: column;
    text-align: center;
  }

  .servicos-texto {
    text-align: center;
  }
}




.cta-link {
  /* Typography */
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: clamp(0.95rem, 1.05vw, 1.1rem);
  color: var(--verde-escuro);
  text-decoration: none;
  
  /* Visual Design */
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  background-color: rgba(106, 168, 79, 0.1);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Micro-interactions */
  will-change: transform, background-color;
}

.cta-link:hover {
  color: white;
  background-color: var(--verde);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(106, 168, 79, 0.2);
}

.cta-link::after {
/*   content: '→'; */
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.cta-link:hover::after {
  transform: translateX(3px);
}

/* Focus states for accessibility */
.cta-link:focus {
  outline: 2px solid var(--verde);
  outline-offset: 2px;
}

/* Reduced motion alternative */
@media (prefers-reduced-motion: reduce) {
  .cta-link {
    transition: none;
  }
  
  .cta-link:hover::after {
    transform: none;
  }
}

/* ===========SERVIÇOS======== */
/* SERVIÇOS */
#servicos {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 60px 0;
  background: #f8f9fa;
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

#servicos header h1 {
  font-size: 1.8rem;
  color: var(--verde-escuro);
  margin-bottom: 10px;
}

#servicos header h2 {
  font-size: 2.2rem;
  color: #000;
  font-weight: 1000;
  margin-bottom: 40px;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, border 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border: 2px solid var(--verde-escuro);
}

.service-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.service-label {
  padding: 20px;
  font-size: 1.15rem;
  font-weight: 600;
  background: #fafafa;
  color: #222;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-label {
  background-color: var(--verde-escuro);
  color: #fff;
}

.service-label a {
  text-decoration: none;
  color: inherit;
  font-size: 1.15rem;
  font-weight: 600;
  display: inline-block;
}

.background-services {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}

#servicos > *:not(.background-services) {
  position: relative;
  z-index: 1;
}






/* ========================================
   🎯 BOTÃO "SABER MAIS" OTIMIZADO
   ======================================== */
/* ========================================
   🎯 BOTÃO SABER MAIS - DISCRETO E MODERNO
   ======================================== */
.service-label {
  padding: 1.5rem;
  position: relative;
}

.service-btn {
  display: inline-block;
  margin-top: 1rem; /* 🔹 Afastamento do título */
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--verde-escuro);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(2px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

/* Hover discreto */
.service-btn:hover {
  background: #f9f9f9;
  color: #000000; /* 🔹 Letra preta no hover */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Pressionado */
.service-btn:active {
  transform: translateY(1px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

/* Foco acessível */
.service-btn:focus-visible {
  outline: 2px solid var(--verde-escuro);
  outline-offset: 3px;
}

/* Responsividade */
@media (max-width: 768px) {
  .service-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}








/* ====== FORÇA DIAGONAL DENTRO DA IMAGEM (MOBILE) ====== */
@media (max-width: 480px) {
  /* garante referência para posicionamento absoluto */
  .hero .hero-imagem {
    position: relative !important;
    overflow: visible !important;
    display: block !important;
  }

  .hero .hero-imagem img {
    display: block;
    width: min(340px, 92vw);
    max-width: 92%;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
  }

  /* regras gerais para os blocos (anula qualquer regra previa) */
  .hero .hero-imagem .info-bloco {
    position: absolute !important;
    margin: 0 !important;
    animation: none !important;
    width: clamp(110px, 42vw, 160px) !important;
    padding: var(--space-sm) var(--space-md) !important;
    z-index: 12 !important;
    left: auto !important;    /* limpa valores anteriores */
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important; /* remove translateX(−50%) se existir */
    box-shadow: var(--shadow-strong) !important;
  }

  /* Topo - Esquerdo (Projetos) */
  .hero .hero-imagem .info-bloco.projetos {
    top: 6% !important;
    left: 6% !important;
    right: auto !important;
    bottom: auto !important;
    border-radius: 12px !important;
  }

  /* Inferior - Direito (Experiência) */
  .hero .hero-imagem .info-bloco.experiencia {
    bottom: 6% !important;
    right: 6% !important;
    left: auto !important;
    top: auto !important;
    border-radius: 12px !important;
  }

  /* Ajustes finos de tipografia para caber melhor */
  .hero .hero-imagem .info-bloco > div {
    font-size: 1.05rem !important;
    line-height: 1 !important;
  }
  .hero .hero-imagem .info-bloco > span {
    font-size: 0.82rem !important;
    font-weight: 500 !important;
  }
}

/* Mantém diagonal em telas um pouco maiores */
@media (min-width: 481px) and (max-width: 768px) {
  .hero .hero-imagem { position: relative !important; }
  .hero .hero-imagem .info-bloco {
    position: absolute !important;
    width: clamp(130px, 36vw, 200px) !important;
  }
  .hero .hero-imagem .info-bloco.projetos { top: 8% !important; left: 7% !important; }
  .hero .hero-imagem .info-bloco.experiencia { bottom: 8% !important; right: 7% !important; }
}











/* ====== SECTION "Por que nos escolher" ====== */
.destaque {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 0;
  background-color: #fff;
  min-height: 550px;
  flex-wrap: wrap;
  width: 100%;
}


.destaque .texto {
  flex: 1 1 min(500px, 100%);
  min-width: min(300px, 100%);
  padding: 2rem;
  position: relative;
  isolation: isolate;
}

.destaque .texto::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.98));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 24px;
  z-index: -1;
  box-shadow: 0 8px 32px rgba(0,0,0,0.05);
}

.destaque .subtitulo {
  --gradient-verde: linear-gradient(135deg, #6aa84f, #8bc34a);
  font-size: clamp(0.9rem, 1.25vw, 1.1rem);
  background: var(--gradient-verde);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  padding: 0.5rem 1rem;
  position: relative;
}

.destaque .subtitulo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  width: 40%;
  height: 2px;
  background: var(--gradient-verde);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.destaque:hover .subtitulo::after {
  transform: scaleX(1);
  transform-origin: left;
}

.destaque .titulo {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #1a1a1a;
  font-weight: 800;
  margin-bottom: 2rem;
  max-width: 100%;
  line-height: 1.2;
  letter-spacing: -0.5px;
  background: linear-gradient(to right, #1a1a1a, #333);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  padding-bottom: 1.5rem;
}

.destaque .titulo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #6aa84f, #8bc34a);
  border-radius: 2px;
}

/* Efeitos de Interação Futuristas */
/* .destaque .texto {
  view-timeline-name: --destaque;
  animation: fadeIn linear both;
  animation-timeline: --destaque;
  animation-range: entry 20% cover 30%;
} */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px) perspective(1000px) rotateX(5deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) perspective(1000px) rotateX(0);
  }
}

/* Efeito de Destaque no Hover */
@media (hover: hover) {
  .destaque .texto:hover {
    transform: translateY(-5px) perspective(1000px) translateZ(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .destaque .texto:hover::before {
    box-shadow: 0 12px 40px rgba(106, 168, 79, 0.15);
  }
}

/* .destaque .texto {
  flex: 1 1 500px;
  min-width: 300px;
}

.destaque .subtitulo {
  font-size: 1.1rem;
  color: #6aa84f;
  margin-bottom: 10px;
}

.destaque .titulo {
  font-size: 2.2rem;
  color: #1a1a1a;
  font-weight: bold;
  margin-bottom: 30px;
  max-width: 600px;
  line-height: 1.3;
} */

.beneficios {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.bloco {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 16px;
  width: calc(50% - 10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 12px;
}

.icone {
  font-size: 1.6rem;
  color: #6aa84f;
}

.bloco .conteudo h4 {
  font-size: 1.1rem;
  margin: 0;
  color: #333;
}

.bloco .conteudo p {
  font-size: 0.95rem;
  color: #666;
  margin-top: 4px;
  word-wrap: break-word;
}

.destaque .imagem {
  flex: 1 1 350px;
  min-width: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.destaque .imagem img {
  max-height: 620px;
  min-height: 420px;
  max-width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 1s ease;
}

/* Animação ao rolar (fade-in UX) */
.destaque .box {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.destaque .box.fade-in {
  opacity: 1;
  transform: translateY(0);
}







.botao-animado {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 28px;
  background-color: #6aa84f;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.botao-animado:hover {
  background-color: #5a943f; /* Cor mais escura para o hover */
  color: #fff !important; /* Garante que o texto permaneça branco */
  transform: translateY(-3px);
  text-decoration: none;
}

/* Adicional: para remover completamente o estilo de link */
.botao-animado, 
.botao-animado:visited, 
.botao-animado:active, 
.botao-animado:focus {
  color: #fff;
  text-decoration: none;
}
/* Botão com animação UX */
/* .botao-animado {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 28px;
  background-color: #6aa84f;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
} */

.botao-animado:hover {
  background-color: #558c3f;
  transform: scale(1.05);
}

/* Responsivo */
@media (max-width: 900px) {
  .destaque {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 0;
  }

  .beneficios {
    flex-direction: column;
  }

  .bloco {
    width: 100%;
  }

  .destaque .imagem {
    margin-top: 30px;
  }
}


.icone-container {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icone-svg {
    width: 100%;
    height: 100%;
    fill: #2e7d32; /* Cor verde profissional */
    transition: all 0.3s ease;
}

/* Efeito hover moderno */
.bloco:hover .icone-svg {
    transform: scale(1.1);
    fill: #1b5e20; /* Verde mais escuro */
}

/* Responsividade */
@media (max-width: 768px) {
    .icone-container {
        width: 50px;
        height: 50px;
    }
}






/* ======PERGUNTAS=======
 */

/* Base Styles - Mobile First */
.faq-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.faq-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.faq-content {
    width: 100%;
    max-width: 600px;
}

/* Typography */
.faq-subtitle {
    color: #2e7d32;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.faq-title {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    color: #333;
    margin-bottom: 1.5rem;
    position: relative;
}

.faq-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #4CAF50;
    margin-top: 0.8rem;
}

/* FAQ Items */
.faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.faq-question {
    background-color: #4CAF50;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    width: 100%;
    text-align: left;
    padding: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #3e8e41;
}

.faq-question.active {
    background-color: #2d632f;
}

.arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-question.active .arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #f8f9fa;
    color: #333;
}

.faq-answer.active {
    max-height: 500px;
    padding: 1.2rem;
}

.faq-answer p, 
.faq-answer ul, 
.faq-answer ol, 
.faq-answer table {
    margin-bottom: 1rem;
}

.faq-answer ul, 
.faq-answer ol {
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

th, td {
    padding: 0.5rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #f2f2f2;
}


.whatsapp-float img {
    width: 60%;
    height: auto;
}

/* Responsive Breakpoints */
@media (min-width: 768px) {
    .faq-container {
        flex-direction: row;
        align-items: flex-start;
        padding: 3rem 2rem;
        gap: 3rem;
    }
    
    .faq-title {
        font-size: 2.2rem;
    }
    
    .faq-question {
        font-size: 1.2rem;
        padding: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .faq-container {
        padding: 4rem;
    }
    
    .faq-title {
        font-size: 2.5rem;
    }
    
    .whatsapp-float {
        width: 70px;
        height: 70px;
    }
}

/* Accessibility Focus Styles */
.faq-question:focus {
    outline: 3px solid #2e7d32;
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .faq-question,
    .faq-answer,
    .whatsapp-float {
        transition: none !important;
    }
}


/* ===========Depoimentos========== */

:root {
  --primary: #38761d;
  --primary-hover: #2d6318;
  --secondary: #4CAF50;
  --text: #222;
  --text-light: #666;
  --bg: rgba(249, 249, 249, 0.85);
  --card-bg: #fff;
  --transition: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 12px 32px rgba(0,0,0,0.12);
}

/* TIPOGRAFIA */
.subtitulo {
  text-align: center;
  margin-bottom: 0.75rem;
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.titulo {
  text-align: center;
  margin-bottom: 3rem;
  width: 100%;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
  font-weight: 700;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
	padding:15px;
}

/* SEÇÃO */
.depoimentos-section {
  padding: 5rem 0;
  background: var(--bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.container-depoimentos {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}

/* CARROSSEL */
.carrossel-depoimentos {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.cards-wrapper {
  display: flex;
  transition: transform 0.5s var(--transition);
  gap: 1.5rem; /* Reduzido de 2rem */
  padding-bottom: 0.5rem; /* Reduzido de 1rem */
}

/* CARD - ALTURA REDUZIDA */
.card {
  min-width: 100%;
  padding: 1.5rem 2rem; /* Reduzido (era 2.5rem) */
  background: var(--card-bg);
  border-radius: 16px;
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(0,0,0,0.02);
  transition: all 0.4s var(--transition);
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(0,0,0,0.04);
}

/* CONTEÚDO AJUSTADO */
.estrelas {
  color: #FFC107;
  font-size: 1.25rem; /* Reduzido de 1.5rem */
  margin-bottom: 1rem; /* Reduzido de 1.5rem */
}

blockquote.texto {
  font-style: italic;
  line-height: 1.6; /* Reduzido de 1.7 */
  position: relative;
  padding-left: 1.5rem; /* Reduzido de 2rem */
  color: var(--text);
  font-size: 0.95rem; /* Adicionado para reduzir texto */
  margin: 0.5rem 0; /* Adicionado para espaçamento */
}

blockquote.texto::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.5rem;
  font-size: 2rem; /* Reduzido de 2.5rem */
  color: var(--secondary);
  opacity: 0.8;
}

.cliente-info {
  margin-top: 1.25rem; /* Reduzido de 2rem */
}

.nome {
  font-weight: 700;
  color: var(--text);
  font-size: 1rem; /* Reduzido de 1.1rem */
}

.tipo-servico {
  color: var(--text-light);
  font-size: 0.85rem; /* Reduzido de 0.9rem */
}

/* CONTROLES */
.carrossel-controles {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem; /* Reduzido de 3rem */
}

.controle {
  background: var(--secondary);
  color: white;
  border: none;
  width: 42px; /* Reduzido de 48px */
  height: 42px; /* Reduzido de 48px */
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem; /* Reduzido de 1.2rem */
  transition: all 0.4s var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.controle::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.controle:hover {
  background: var(--primary-hover);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 16px rgba(56, 118, 29, 0.4);
}

.controle:hover::after {
  opacity: 1;
}

/* RESPONSIVO */
@media (min-width: 768px) {
  .container-depoimentos {
    padding: 0 3rem;
  }
  .card {
    min-width: calc(50% - 1rem);
  }
}

@media (min-width: 1024px) {
  .container-depoimentos {
    padding: 0 4rem;
  }
  .card {
    min-width: calc(33.333% - 1.33rem);
  }
  
  @supports (animation-timeline: view()) {
    .card {
      animation: fade-in linear;
      animation-timeline: view();
      animation-range: entry 20% cover 30%;
    }
    
    @keyframes fade-in {
      from { opacity: 0.5; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
  }
}


:root {
  /* Cores */
  --footer-bg: #fffde8;
  --footer-border: #7ec957;
  --footer-title: #3c8031;
  --footer-text: #333;
  --footer-hover: #3c8031;
  
  /* Espaçamentos */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
}

/* SOLUÇÃO DEFINITIVA PARA LARGURA TOTAL */
body .footer-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: var(--footer-bg) !important;
  color: var(--footer-text);
  padding: var(--space-xl) 0;
  border-top: 3px solid var(--footer-border);
  overflow: hidden;
}

/* CONTAINER CENTRALIZADO */
.footer-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  position: relative;
}

/* ESTILOS DAS COLUNAS */
.footer-col {
  padding: var(--space-sm);
}

/* TÍTULOS */
.footer-title {
  color: var(--footer-title);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  position: relative;
  padding-bottom: var(--space-xs);
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--footer-border);
  transition: width 0.3s ease;
}

.footer-title:hover::after {
  width: 60px;
}

/* TEXTOS E LINKS */
.footer-col p, 
.footer-col ul li {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--footer-text);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-xs);
}

.footer-col ul li {
  margin-bottom: var(--space-xs);
}

.footer-col ul li a {
  color: var(--footer-text);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-col ul li a:hover {
  color: var(--footer-hover);
  padding-left: 5px;
}

.footer-col ul li a::before {
/*   content: '➤'; */
  margin-right: var(--space-xs);
  font-size: 0.8rem;
  color: var(--footer-title);
}

/* INFORMAÇÕES DE CONTATO */
.contato-info li {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-xs);
}

.contato-info .icon {
  margin-right: var(--space-xs);
  color: var(--footer-title);
  font-size: 1rem;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    padding: 0 var(--space-sm);
  }
  
  .footer-col {
    padding: var(--space-sm) 0;
  }
}

/* GARANTIR QUE NÃO HAJA BARRA DE ROLAGEM HORIZONTAL */
html {
  overflow-x: hidden;
}



/* ======= CORREÇÃO PARA DESKTOP ======= */
.container-hero,
.container-sobre {
  width: 100% !important;
  margin: 0 auto !important;
  clear: both !important;
}

.ast-container,
.ast-row,
.ast-columns,
.wp-block-columns {
  display: block !important;
  width: 100% !important;
  flex-direction: column !important;
}

.wp-block-columns > *,
.ast-column,
.wp-block-column {
  width: 100% !important;
  max-width: 100% !important;
}

.container-sobre {
  margin-top: 2rem !important;
}



/* =================================== */
/* BOTÃO 'SABER MAIS' PARA OS CARDS  */
/* =================================== */

.service-btn {
  display: inline-block; /* Permite aplicar padding e margin corretamente */
  margin-top: 12px;      /* Espaço entre o título e o botão */
  padding: 10px 20px;    /* Espaçamento interno para criar o corpo do botão */
  background-color: var(--color-primary); /* Usa sua variável de cor verde */
  color: var(--color-white);              /* Usa sua variável de cor branca para o texto */
  font-weight: 600;
  text-decoration: none; /* Remove o sublinhado padrão do link */
  border-radius: var(--radius-md); /* Bordas arredondadas, usando sua variável */
  text-align: center;
  transition: var(--transition-base); /* Animação suave, usando sua variável */
  cursor: pointer;
  border: 1px solid transparent; /* Borda transparente para não mover no hover */
}

/* Efeito ao passar o mouse por cima */
.service-btn:hover {
  background-color: var(--color-primary-dark); /* Verde mais escuro */
  color: var(--color-white); /* Garante que o texto continue branco */
  transform: translateY(-3px); /* Efeito sutil de levantar */
  box-shadow: var(--shadow-md); /* Sombra para dar profundidade */
}