/* ==================== */
/* VARIÁVEIS GLOBAIS */
/* ==================== */
:root {
  /* Cores */
  --verde-primario: #6aa84f;
  --verde-escuro: #5a9745;
  --preto: #1a1a1a;
  --branco: #ffffff;
  --cinza-texto: #444;
  --cinza-claro: #f8f9fa;
  
  /* Espaçamentos */
  --espaco-xs: 8px;
  --espaco-sm: 16px;
  --espaco-md: 24px;
  --espaco-lg: 32px;
  --espaco-xl: 48px;
  
  /* Tipografia */
  --fonte-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --tamanho-base: 1rem;
  --tamanho-pequeno: 0.875rem;
  --tamanho-h2: 1.5rem;
  --tamanho-h1: 2rem;
  
  /* Efeitos */
  --sombra-card: 0 2px 8px rgba(0,0,0,0.1);
  --transicao: all 0.3s ease;
  --borda-arredondada: 8px;
}

/* ==================== */
/* ELEMENTOS GLOBAIS */
/* ==================== */
body {
  font-family: var(--fonte-base);
  font-size: var(--tamanho-base);
  line-height: 1.6;
  color: var(--preto);
  background-color: var(--branco);
  overflow-x: hidden;
}

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

/* ==================== */
/* SEÇÃO SOBRE NÓS */
/* ==================== */
.sobre-nos {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: clamp(250px, 30vh, 400px);
  overflow: hidden;
  isolation: isolate;
}

.imagem-fundo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.4, 1);
	
}

.sobre-nos:hover .imagem-fundo {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
  transition: var(--transicao);
}

.overlay:hover {
  background: rgba(0, 0, 0, 0.6);
}

.overlay h1 {
  color: var(--branco);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  margin-bottom: var(--espaco-md);
  position: relative;
}

.overlay h1::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 2px;
  background: var(--verde-primario);
  transition: width 0.6s ease;
}

.scroll-indicator {
  position: absolute;
  bottom: var(--espaco-xl);
  left: 50%;
  transform: translateX(-50%);
  color: var(--branco);
  cursor: pointer;
  opacity: 0.8;
  transition: var(--transicao);
}

.scroll-indicator:hover {
  opacity: 1;
  transform: translateX(-50%) scale(1.1);
}

/* ===============formu================ */
:root {
  /* Sistema de Cores */
  --color-primary: #5a9745;
  --color-primary-dark: #3e6a30;
  --color-secondary: #1a3e72;
  --color-accent: #e8b015;
  --color-light: #F1F7EE;
  --color-white: #ffffff;
  --color-text: #2c3e50;
  --color-text-light: #6b7280;
  
  /* Espaçamento */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  
  /* Tipografia */
  --text-base: 1rem;
  --text-sm: 0.875rem;
  --text-md: 1.125rem;
  --text-lg: 1.5rem;
  --text-xl: 2rem;
  --text-2xl: 2.5rem;
  
  /* Bordas */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  
  /* Sombras */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  
  /* Transições */
  --transition-base: all 0.2s ease-in-out;
}

/* Estilos específicos para a seção de contato */
main .content-grid {
  padding: var(--space-xl) 0;
  background-color: var(--color-light);
  width: 100%;
}

main .content-grid .container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

main .content-grid .grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

/* Coluna do Formulário */
main .content-grid .form-column {
  background-color: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

main .content-grid .form-column h1 {
  font-size: clamp(var(--text-lg), 3vw, var(--text-xl));
  margin-bottom: var(--space-md);
  text-align: center;
  color: var(--color-primary);
  font-weight: 700;
}

main .content-grid .contact-form {
  display: grid;
  gap: var(--space-sm);
}

main .content-grid .form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
  font-size: var(--text-sm);
}

main .content-grid .form-group input,
main .content-grid .form-group select,
main .content-grid .form-group textarea {
  width: 100%;
  padding: var(--space-sm);
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  font-size: var(--text-base);
  transition: var(--transition-base);
}

main .content-grid .form-group input:focus,
main .content-grid .form-group select:focus,
main .content-grid .form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(90, 151, 69, 0.2);
}

main .content-grid .form-group textarea {
  min-height: 120px;
  resize: vertical;
}

main .content-grid .btn-submit {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-base);
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  margin-top: var(--space-sm);
  transition: var(--transition-base);
}

main .content-grid .btn-submit:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
}

/* Coluna de Conteúdo */
main .content-grid .content-column {
  padding: var(--space-sm) var(--space-md);
}

main .content-grid .hero-subtitle {
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  font-size: var(--text-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

main .content-grid .hero-title {
  color: var(--color-text);
  font-size: clamp(var(--text-xl), 4vw, var(--text-2xl));
  margin-bottom: var(--space-md);
  font-weight: 700;
  line-height: 1.2;
}

main .content-grid .hero-description {
  margin-bottom: var(--space-md);
  line-height: 1.6;
  color: var(--color-text-light);
  font-size: var(--text-base);
}

main .content-grid .features-list {
  margin: var(--space-md) 0;
  list-style: none;
  padding-left: 0;
}

main .content-grid .feature-item {
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  line-height: 1.5;
  position: relative;
  padding-left: var(--space-md);
}

main .content-grid .feature-item::before {
  content: "•";
  color: var(--color-primary);
  font-size: var(--text-lg);
  position: absolute;
  left: 0;
  top: 0;
}

main .content-grid .btn-contact {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-base);
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  text-decoration: none;
}

main .content-grid .btn-contact:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
}

/* Responsividade */
@media (max-width: 992px) {
  main .content-grid .grid-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  main .content-grid .content-column {
    padding: 0 var(--space-md);
  }
}

@media (max-width: 576px) {
  main .content-grid {
    padding: var(--space-lg) 0;
  }
  
  main .content-grid .form-column {
    padding: var(--space-md);
  }
  
  main .content-grid .hero-title {
    font-size: var(--text-xl);
  }
}



















/* ==============seviços manutençao================ */


/* ==================== */
/* VARIÁVEIS GLOBAIS OTIMIZADAS */
/* ==================== */
:root {
  /* Cores - Sistema expandido com semantic tokens */
  --color-primary: #5a9745;
  --color-primary-light: #7fb061;
  --color-primary-dark: #3e6a30;
  --color-primary-alpha: rgba(90, 151, 69, 0.1);
  --color-secondary: #1a3e72;
  --color-secondary-alpha: rgba(26, 62, 114, 0.1);
  --color-accent: #e8b015;
  --color-accent-alpha: rgba(232, 176, 21, 0.15);
  
  /* Neutros com maior granularidade */
  --color-white: #ffffff;
  --color-light: #f8f9fa;
  --color-light-2: #f1f3f4;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-400: #9ca3af;
  --color-gray-600: #6b7280;
  --color-gray-900: #1a1a1a;
  --color-dark-text: #2c3e50;
  
  /* Sistema de espaçamento 8pt */
  --space-2xs: 0.25rem; /* 4px */
  --space-xs: 0.5rem;   /* 8px */
  --space-sm: 1rem;     /* 16px */
  --space-md: 1.5rem;   /* 24px */
  --space-lg: 2rem;     /* 32px */
  --space-xl: 3rem;     /* 48px */
  --space-2xl: 4rem;    /* 64px */
  --space-3xl: 6rem;    /* 96px */
  
  /* Tipografia fluída e responsiva */
  --font-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Inter Display", var(--font-base);
  
  /* Escala tipográfica fluída */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-md: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
  --text-lg: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --text-2xl: clamp(2rem, 1.7rem + 1.5vw, 2.5rem);
  --text-3xl: clamp(2.5rem, 2rem + 2.5vw, 3.5rem);
  
  /* Line heights semânticos */
  --leading-tight: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.75;
  
  /* Raios modernos */
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
  
  /* Sombras em camadas */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 8px 10px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);
  
  /* Transições padronizadas */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* Z-index system */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

/* ==================== */
/* RESET MODERNO E BASE */
/* ==================== */
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "kern" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-base);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-dark-text);
  background-color: var(--color-white);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Tipografia moderna */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: var(--leading-tight);
  color: var(--color-primary-dark);
  text-wrap: balance; /* Melhora quebra de linha em títulos */
}

p {
  text-wrap: pretty; /* Melhora quebra de linha em parágrafos */
  max-width: 65ch; /* Linha de leitura ideal */
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

img {
  border-radius: inherit;
  font-style: italic; /* Para alt text */
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}

/* Links acessíveis */
a {
  color: var(--color-primary);
  text-decoration-skip-ink: auto;
  transition: var(--transition-fast);
}

a:hover, a:focus {
  color: var(--color-primary-dark);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

/* ==================== */
/* LAYOUT SYSTEM */
/* ==================== */
main {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow-x: hidden;
  contain: layout; /* Performance boost */
}

.content-grid {
  padding: var(--space-xl) 0;
  background-color: var(--color-light);
  position: relative;
}

/* Container fluído e responsivo */
.container {
  --container-padding: clamp(1rem, 5vw, 2rem);
  max-width: min(1400px, 100vw - var(--container-padding) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding);
  width: 100%;
}

/* Grid moderno com container queries support */
.grid-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(var(--space-lg), 4vw, var(--space-xl));
  align-items: start;
}

/* ==================== */
/* COMPONENTES OTIMIZADOS */
/* ==================== */
.form-column,
.content-column {
  padding: var(--space-md);
  width: 100%;
  container-type: inline-size; /* Container queries */
}

.form-column {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-100);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.form-column::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.form-column:hover::before {
  transform: scaleX(1);
}

.form-column:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ==================== */
/* SEÇÃO SERVIÇOS - MODERNIZADA */
/* ==================== */
#servicos {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: clamp(var(--space-xl), 8vw, var(--space-3xl)) 0;
  background: 
    linear-gradient(135deg, var(--color-light) 0%, var(--color-gray-50) 100%);
  text-align: center;
  overflow: hidden;
  isolation: isolate; /* Cria novo stacking context */
}

/* Headers com melhor hierarquia */
#servicos header h1 {
  font-size: var(--text-xl);
  color: var(--color-primary-dark);
  margin-bottom: var(--space-xs);
  font-weight: 600;
  letter-spacing: -0.025em;
}

#servicos header h2 {
  font-size: var(--text-2xl);
  color: var(--color-dark-text);
  font-weight: 800;
  margin-bottom: var(--space-xl);
  letter-spacing: -0.035em;
  position: relative;
}

#servicos header h2::after {
  content: '';
  position: absolute;
  bottom: -var(--space-sm);
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: var(--radius-full);
}

/* Grid de serviços aprimorado */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(var(--space-lg), 4vw, var(--space-xl));
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Cards com microinterações avançadas */
.service-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: 
    transform var(--transition-base),
    box-shadow var(--transition-base),
    filter var(--transition-base);
  will-change: transform;
  border: 1px solid var(--color-gray-100);
  position: relative;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg, 
    var(--color-primary-alpha) 0%, 
    transparent 50%
  );
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 1;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

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

.service-card:focus-within {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

/* Imagens com lazy loading e performance */
.service-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform var(--transition-slow) cubic-bezier(0.16, 1, 0.3, 1);
  loading: lazy;
  decoding: async;
}

.service-card:hover img {
  transform: scale(1.1);
  filter: brightness(1.1) saturate(1.2);
}

/* Labels com estado aprimorado */
.service-label {
  padding: var(--space-md);
  font-size: var(--text-md);
  font-weight: 600;
  background: var(--color-gray-50);
  color: var(--color-dark-text);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  z-index: 2;
}

.service-card:hover .service-label {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: var(--color-white);
  transform: translateY(-2px);
}

.service-label a {
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
}

.service-label a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 30px;
  height: 2px;
  background: currentColor;
  transition: transform var(--transition-base);
}

.service-card:hover .service-label a::after {
  transform: translateX(-50%) scaleX(1);
}

/* Background com parallax sutil */
.background-services {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
  z-index: -1;
  pointer-events: none;
  transition: transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

#servicos:hover .background-services {
  transform: scale(1.05) rotate(0.5deg);
}

/* ==================== */
/* HEADER MODERNIZADO */
/* ==================== */
.page-header-maintenance {
  background: 
    linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
  padding: clamp(var(--space-lg), 6vw, var(--space-2xl)) var(--space-sm);
  text-align: center;
  margin-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-primary-alpha);
  width: 100%;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.page-header-maintenance::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(
      ellipse at center top, 
      var(--color-primary-alpha) 0%, 
      transparent 70%
    );
  z-index: -1;
}

.page-header-maintenance::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg, 
    transparent, 
    var(--color-primary), 
    transparent
  );
}

.page-header-maintenance h1 {
  font-size: var(--text-2xl);
  color: var(--color-primary-dark);
  font-weight: 700;
  margin: 0 auto var(--space-sm);
  max-width: 800px;
  position: relative;
  letter-spacing: -0.025em;
}

.page-header-maintenance h2 {
  font-size: var(--text-lg);
  color: var(--color-gray-600);
  font-weight: 400;
  line-height: var(--leading-relaxed);
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.page-header-maintenance .header-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
  margin: var(--space-md) auto;
  border-radius: var(--radius-full);
  position: relative;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ==================== */
/* RESPONSIVIDADE AVANÇADA */
/* ==================== */

/* Container queries quando suportadas */
@container (max-width: 600px) {
  .grid-wrapper {
    gap: var(--space-lg);
  }
}

/* Tablet breakpoint */
@media (max-width: 992px) {
  .grid-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .services {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

/* Mobile optimizations */
@media (max-width: 768px) {
  .service-card:hover {
    transform: translateY(-4px) scale(1.01);
  }
  
  .service-card img {
    height: 200px;
  }
  
  .services {
    gap: var(--space-md);
    padding: 0 var(--space-sm);
  }
}

/* Small mobile */
@media (max-width: 480px) {
  :root {
    --space-xl: 2rem;
    --space-2xl: 2.5rem;
  }
  
  .service-card {
    border-radius: var(--radius-lg);
  }
  
  .service-card img {
    height: 180px;
  }
}

/* ==================== */
/* ACESSIBILIDADE AVANÇADA */
/* ==================== */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}

/* High contrast mode */
@media (prefers-contrast: high) {
  :root {
    --color-primary: #2d5016;
    --color-primary-dark: #1a3009;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.3);
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .service-card:hover {
    transform: none;
  }
  
  .background-services,
  .service-card img {
    transform: none !important;
  }
}

/* Dark mode preference */
@media (prefers-color-scheme: dark) {
  :root {
    --color-white: #0f172a;
    --color-light: #1e293b;
    --color-light-2: #334155;
    --color-gray-50: #1e293b;
    --color-gray-100: #334155;
    --color-dark-text: #e2e8f0;
    --color-gray-600: #94a3b8;
  }
  
  .service-card {
    background: var(--color-light-2);
    border-color: var(--color-gray-100);
  }
  
  .service-label {
    background: var(--color-light);
    color: var(--color-gray-100);
  }
}

/* Print styles */
@media print {
  .service-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ccc;
  }
  
  .background-services {
    display: none;
  }
}

/* ==================== */
/* PERFORMANCE & MODERN FEATURES */
/* ==================== */

/* CSS containment para performance */
.service-card {
  contain: layout style paint;
}

.services {
  contain: layout;
}

/* Scroll snap para mobile */
@media (max-width: 768px) {
  .services {
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    display: flex;
    gap: var(--space-md);
    padding-bottom: var(--space-sm);
  }
  
  .service-card {
    scroll-snap-align: center;
    flex-shrink: 0;
    width: min(280px, 85vw);
  }
}

/* Progressive enhancement */
@supports (backdrop-filter: blur(10px)) {
  .form-column {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
  }
}

@supports (text-wrap: balance) {
  .page-header-maintenance h1,
  .page-header-maintenance h2 {
    text-wrap: balance;
  }
}

/* Modern scroll behavior */
@supports (scroll-behavior: smooth) {
  html {
    scroll-behavior: smooth;
  }
}

/* ==================== */
/* ESTADOS DE LOADING E ESQUELETO */
/* ==================== */
.service-card.loading {
  pointer-events: none;
}

.service-card.loading img {
  background: linear-gradient(
    90deg,
    var(--color-gray-100) 25%,
    var(--color-gray-50) 50%,
    var(--color-gray-100) 75%
  );
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}




.service-description {
  display: none;
  transition: all 0.3s ease;
}
.service-card.active .service-description {
  display: block;
}






/* ===setinha=========== */
/* ==================== */
/* INDICADOR DE EXPANSÃO PARA CARDS */
/* ==================== */

/* Setinha indicadora - solução única e limpa */
.service-card {
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  background: var(--color-primary);
  border-radius: 50%;
  z-index: 3;
  transition: all var(--transition-base);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  
  /* Ícone da seta para baixo */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

/* Estados da setinha */
.service-card:hover::after {
  background-color: var(--color-accent);
  transform: translateX(-50%) translateY(-2px) scale(1.05);
  box-shadow: var(--shadow-md);
}

.service-card.active::after {
  transform: translateX(-50%) rotate(180deg);
  background-color: var(--color-accent);
}

.service-card.active:hover::after {
  transform: translateX(-50%) rotate(180deg) translateY(2px) scale(1.05);
}

/* Animação sutil para chamar atenção */
@keyframes pulse-arrow {
  0%, 100% { 
    opacity: 1; 
    transform: translateX(-50%) scale(1);
  }
  50% { 
    opacity: 0.8; 
    transform: translateX(-50%) scale(0.95);
  }
}

.service-card::after {
  animation: pulse-arrow 3s ease-in-out infinite;
}

/* Para a animação durante interação */
.service-card:hover::after,
.service-card.active::after {
  animation: none;
}

/* ==================== */
/* RESPONSIVIDADE */
/* ==================== */

@media (max-width: 768px) {
  .service-card::after {
    width: 20px;
    height: 20px;
    bottom: 1px;
    background-size: 10px;
  }
}

@media (max-width: 480px) {
  .service-card::after {
    width: 18px;
    height: 18px;
    bottom: 0px;
    background-size: 9px;
  }
}

/* ==================== */
/* JAVASCRIPT PARA FUNCIONALIDADE */
/* ==================== */

/* Estilos para descrição expandida */
.service-description {
  display: none;
  padding: var(--space-md);
  background: var(--color-gray-50);
  color: var(--color-dark-text);
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  border-top: 1px solid var(--color-gray-100);
  animation: slideDown var(--transition-base) ease-out;
}

.service-card.active .service-description {
  display: block;
}

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

/* 	=================================== MANUTENÇAO E CUIDADOS =========================== */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
        }

        .paisagismo-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 80px 0;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .text-content {
            padding-right: 20px;
        }

        .badge {
            display: inline-block;
            background-color: #28a745;
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .main-title {
            font-size: 3.2rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .description {
            font-size: 1.1rem;
            color: #6c757d;
            margin-bottom: 25px;
            line-height: 1.7;
        }

        .detailed-text {
            font-size: 1rem;
            color: #495057;
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .cta-button {
            display: inline-block;
            background-color: #28a745;
            color: white;
            padding: 15px 35px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
        }

        .cta-button:hover {
            background-color: #218838;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
        }

        .image-content {
            position: relative;
        }

        .main-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease;
        }

        .main-image:hover {
            transform: scale(1.02);
        }

        /* Decorative elements */
        .decorative-dots {
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100px;
            height: 100px;
            background-image: radial-gradient(circle, #28a745 2px, transparent 2px);
            background-size: 20px 20px;
            opacity: 0.3;
            z-index: -1;
        }

        .decorative-shape {
            position: absolute;
            bottom: -30px;
            left: -30px;
            width: 150px;
            height: 150px;
            background: linear-gradient(45deg, #28a745, #20c997);
            border-radius: 50%;
            opacity: 0.1;
            z-index: -1;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .content-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .text-content {
                padding-right: 0;
                text-align: center;
            }

            .main-title {
                font-size: 2.5rem;
            }

            .paisagismo-section {
                padding: 60px 0;
            }

            .main-image {
                height: 350px;
            }
        }

        @media (max-width: 480px) {
            .main-title {
                font-size: 2rem;
            }

            .container {
                padding: 0 15px;
            }

            .description {
                font-size: 1rem;
            }
        }

        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .text-content > * {
            animation: fadeInUp 0.6s ease forwards;
        }

        .text-content > :nth-child(1) { animation-delay: 0.1s; }
        .text-content > :nth-child(2) { animation-delay: 0.2s; }
        .text-content > :nth-child(3) { animation-delay: 0.3s; }
        .text-content > :nth-child(4) { animation-delay: 0.4s; }
        .text-content > :nth-child(5) { animation-delay: 0.5s; }

        .image-content {
            animation: fadeInUp 0.6s ease 0.3s both;
        }
   
/* =======================porqueos 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;
    }
}



/* ====================contatos foote========================== */
: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;
}

















