/*
Theme Name: Verde Engenharia - Jardinagem e Paisagismo
Theme URI: https://verdeengenharia.com.br
Author: Verde Engenharia
Author URI: https://verdeengenharia.com.br
Description: Tema profissional para empresa de jardinagem e paisagismo de alto padrão. Design Organic Luxury com paleta de cores em verde floresta, creme e bronze.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: verde-engenharia
Tags: custom-menu, featured-images, theme-options, translation-ready, one-column, custom-colors
*/

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

:root {
  /* Organic Luxury Palette */
  --forest: #1A3021;
  --forest-light: #2D4A3A;
  --cream: #F9F7F2;
  --cream-dark: #EDE9E0;
  --sage: #6B8E6B;
  --sage-light: #8FB38F;
  --bronze: #A67C52;
  --bronze-light: #C4A47A;
  --wood: #C4A47A;
  --wood-dark: #8B7355;
  
  --background: #F9F7F2;
  --foreground: #1A3021;
  --muted: #E8E4DC;
  --muted-foreground: #5A6B5A;
  --border: #DDD8CC;
  --card: #FDFCFA;
  
  /* Glass Effect */
  --glass-bg: rgba(249, 247, 242, 0.8);
  --glass-border: rgba(221, 216, 204, 0.5);
  
  /* Shadows */
  --shadow-soft: 0 4px 20px -2px rgba(26, 48, 33, 0.08);
  --shadow-medium: 0 8px 30px -4px rgba(26, 48, 33, 0.12);
  --shadow-glow: 0 0 40px rgba(166, 124, 82, 0.15);
  
  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --radius: 0.5rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--forest);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

a {
  color: var(--forest);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--bronze);
}

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

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

.section-padding {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section-padding { padding: 7rem 0; }
}

@media (min-width: 1024px) {
  .section-padding { padding: 8rem 0; }
}

.text-bronze { color: var(--bronze); }
.text-forest { color: var(--forest); }
.text-cream { color: var(--cream); }
.text-muted { color: var(--muted-foreground); }

.bg-forest { background-color: var(--forest); }
.bg-cream { background-color: var(--cream); }
.bg-background { background-color: var(--background); }
.bg-card { background-color: var(--card); }

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
}

.shadow-soft { box-shadow: var(--shadow-soft); }
.shadow-medium { box-shadow: var(--shadow-medium); }

.uppercase-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bronze);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-hero {
  background-color: var(--cream);
  color: var(--forest);
  box-shadow: 0 4px 15px rgba(249, 247, 242, 0.3);
}

.btn-hero:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(249, 247, 242, 0.4);
  color: var(--forest);
}

.btn-hero-outline {
  background-color: transparent;
  color: var(--cream);
  border: 2px solid rgba(249, 247, 242, 0.3);
}

.btn-hero-outline:hover {
  background-color: rgba(249, 247, 242, 0.1);
  border-color: var(--cream);
  color: var(--cream);
}

.btn-forest {
  background-color: var(--forest);
  color: var(--cream);
}

.btn-forest:hover {
  background-color: var(--forest-light);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-luxury {
  background-color: var(--bronze);
  color: var(--cream);
}

.btn-luxury:hover {
  background-color: var(--bronze-light);
  color: var(--cream);
}

.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: 1rem;
}

/* ===== HEADER / NAVBAR ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.5s ease;
}

.site-header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
  transform: scale(1.1);
}

.logo-icon svg {
  width: 20px;
  height: 20px;
  color: var(--cream);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--forest);
}

.logo-tagline {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
}

.main-nav {
  display: none;
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(26, 48, 33, 0.8);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--bronze);
  transition: width 0.3s ease;
}

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

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

.header-cta {
  display: none;
}

@media (min-width: 1024px) {
  .header-cta {
    display: flex;
  }
}

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--forest);
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background-color: var(--cream);
  padding-top: 80px;
}

.mobile-menu.active {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu-inner {
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--forest);
}

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

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 48, 33, 0.7),
    rgba(26, 48, 33, 0.6) 50%,
    rgba(26, 48, 33, 0.85)
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--cream);
  padding: 0 1rem;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(249, 247, 242, 0.3);
  border-radius: 9999px;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--cream);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-title span {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: #ffffff;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(249, 247, 242, 0.8);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.8s both;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(249, 247, 242, 0.6);
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
}

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(10px); }
  60% { transform: translateX(-50%) translateY(5px); }
}

/* ===== DIFFERENTIALS SECTION ===== */
.differentials-section {
  background-color: var(--cream);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-top: 1rem;
}

.differentials-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .differentials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.differential-card {
  padding: 2rem;
  background-color: var(--background);
  border-radius: 1rem;
  transition: all 0.5s ease;
}

.differential-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-4px);
}

.differential-icon {
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  background-color: rgba(26, 48, 33, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.differential-card:hover .differential-icon {
  background-color: var(--forest);
  transform: scale(1.1);
}

.differential-icon svg {
  width: 28px;
  height: 28px;
  color: var(--forest);
  transition: color 0.3s ease;
}

.differential-card:hover .differential-icon svg {
  color: var(--cream);
}

.differential-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.differential-card p {
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background-color: var(--background);
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.category-tab {
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: var(--muted);
  color: var(--muted-foreground);
  border: none;
}

.category-tab.active,
.category-tab:hover {
  background-color: var(--forest);
  color: var(--cream);
  box-shadow: var(--shadow-medium);
}

.services-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  padding: 1.5rem;
  background-color: var(--card);
  border-radius: 1rem;
  border: 1px solid var(--border);
  transition: all 0.5s ease;
  text-decoration: none;
  display: block;
}

.service-card:hover {
  border-color: rgba(166, 124, 82, 0.3);
  box-shadow: var(--shadow-medium);
  transform: translateY(-4px);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background-color: rgba(26, 48, 33, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background-color: var(--forest);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  color: var(--forest);
  transition: color 0.3s ease;
}

.service-card:hover .service-icon svg {
  color: var(--cream);
}

.service-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--bronze);
}

.service-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bronze);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.service-link svg {
  width: 16px;
  height: 16px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background-color: var(--cream);
}

.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(26, 48, 33, 0.9), transparent);
}

.about-years {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--bronze);
  line-height: 1;
}

.about-years span {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  color: var(--cream);
  margin-top: 0.5rem;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  background-color: rgba(26, 48, 33, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-icon svg {
  width: 20px;
  height: 20px;
  color: var(--forest);
}

.about-feature-text h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.about-feature-text p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
}

/* ===== AUTHORITY SECTION ===== */
.authority-section {
  background-color: var(--forest);
  color: var(--cream);
}

.authority-grid {
  display: grid;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .authority-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.authority-content .uppercase-label {
  color: var(--bronze);
}

.authority-content h2 {
  color: var(--cream);
  margin: 1rem 0 1.5rem;
}

.authority-content p {
  color: rgba(249, 247, 242, 0.8);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.authority-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.stat-card {
  padding: 2rem;
  background-color: rgba(249, 247, 242, 0.05);
  border-radius: 1rem;
  border: 1px solid rgba(249, 247, 242, 0.1);
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--bronze);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(249, 247, 242, 0.7);
  margin-top: 0.5rem;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  background-color: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.7s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: saturate(0.5);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(26, 48, 33, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.5s ease;
}

.gallery-item:hover .gallery-item-overlay {
  background-color: rgba(26, 48, 33, 0.4);
}

.gallery-item-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--cream);
  opacity: 0;
  transform: translateY(1rem);
  transition: all 0.5s ease;
  text-align: center;
  padding: 1rem;
}

.gallery-item:hover .gallery-item-title {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PROCESS SECTION ===== */
.process-section {
  background-color: var(--background);
}

.process-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-card {
  position: relative;
  padding: 2rem;
  background-color: var(--card);
  border-radius: 1rem;
  border: 1px solid var(--border);
  transition: all 0.5s ease;
}

.process-card:hover {
  border-color: rgba(166, 124, 82, 0.3);
  box-shadow: var(--shadow-medium);
}

.process-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(26, 48, 33, 0.1);
  transition: color 0.3s ease;
}

.process-card:hover .process-number {
  color: rgba(166, 124, 82, 0.2);
}

.process-icon {
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  background-color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.process-card:hover .process-icon {
  transform: scale(1.1);
}

.process-icon svg {
  width: 28px;
  height: 28px;
  color: var(--cream);
}

.process-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.process-card:hover h3 {
  color: var(--bronze);
}

.process-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
  background-color: var(--cream);
}

.benefits-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--background);
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  box-shadow: var(--shadow-soft);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  color: var(--cream);
}

.benefit-content h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.benefit-content p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  background-color: var(--cream);
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  position: relative;
  padding: 2rem;
  background-color: var(--background);
  border-radius: 1rem;
}

.testimonial-quote {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  color: rgba(166, 124, 82, 0.2);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  fill: var(--bronze);
  color: var(--bronze);
}

.testimonial-content {
  color: rgba(26, 48, 33, 0.8);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--forest);
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
  background-color: var(--background);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.partner-card {
  aspect-ratio: 16/9;
  background-color: var(--card);
  border: 2px dashed var(--border);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.partner-card:hover {
  border-color: var(--bronze);
  background-color: rgba(166, 124, 82, 0.05);
}

.partner-card span {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background-color: var(--background);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--forest);
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--bronze);
}

.faq-question svg {
  width: 24px;
  height: 24px;
  color: var(--bronze);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  color: var(--muted-foreground);
  line-height: 1.8;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background-color: var(--forest);
  color: var(--cream);
}

.contact-grid {
  display: grid;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-content .uppercase-label {
  color: var(--bronze);
}

.contact-content h2 {
  color: var(--cream);
  margin: 1rem 0 1.5rem;
}

.contact-content > p {
  color: rgba(249, 247, 242, 0.7);
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

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

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background-color: rgba(249, 247, 242, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
  color: var(--bronze);
}

.contact-info-text p:first-child {
  font-weight: 500;
  color: var(--cream);
}

.contact-info-text p:last-child,
.contact-info-text a {
  color: rgba(249, 247, 242, 0.7);
}

.contact-info-text a:hover {
  color: var(--bronze);
}

.contact-cta {
  display: flex;
  align-items: center;
}

.contact-cta-card {
  width: 100%;
  padding: 2.5rem;
  background-color: rgba(249, 247, 242, 0.05);
  border-radius: 1.5rem;
  border: 1px solid rgba(249, 247, 242, 0.1);
}

.contact-cta-card h3 {
  font-size: 1.75rem;
  color: var(--cream);
  margin-bottom: 1rem;
}

.contact-cta-card > p {
  color: rgba(249, 247, 242, 0.7);
  margin-bottom: 2rem;
}

.contact-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-cta-buttons .btn {
  width: 100%;
}

.contact-cta-note {
  text-align: center;
  font-size: 0.875rem;
  color: rgba(249, 247, 242, 0.5);
  margin-top: 1.5rem;
}

/* ===== WHERE WE SERVE SECTION ===== */
.where-section {
  background-color: var(--cream);
}

.where-content {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .where-content {
    grid-template-columns: 1fr 1fr;
  }
}

.where-map {
  border-radius: 1rem;
  overflow: hidden;
  height: 400px;
}

.where-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.where-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.where-tab {
  padding: 0.75rem 1.5rem;
  background-color: var(--muted);
  border: none;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: all 0.3s ease;
}

.where-tab.active,
.where-tab:hover {
  background-color: var(--forest);
  color: var(--cream);
}

.where-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.where-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background-color: var(--background);
  border-radius: 0.5rem;
}

.where-list-item svg {
  width: 20px;
  height: 20px;
  color: var(--forest);
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: var(--forest);
  color: var(--cream);
}

.footer-main {
  padding: 4rem 0 5rem;
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer-brand .logo {
  margin-bottom: 1.5rem;
}

.footer-brand .logo-icon {
  background-color: rgba(249, 247, 242, 0.1);
}

.footer-brand .logo-name {
  color: var(--cream);
}

.footer-brand .logo-tagline {
  color: rgba(249, 247, 242, 0.6);
}

.footer-brand > p {
  color: rgba(249, 247, 242, 0.7);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(249, 247, 242, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.footer-social a:hover {
  background-color: rgba(249, 247, 242, 0.2);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  color: var(--cream);
}

.footer-column h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column a {
  font-size: 0.875rem;
  color: rgba(249, 247, 242, 0.7);
}

.footer-column a:hover {
  color: var(--bronze);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--bronze);
  margin-top: 0.125rem;
}

.footer-contact-item p {
  font-size: 0.875rem;
}

.footer-contact-item p:first-of-type {
  color: var(--cream);
  font-weight: 500;
}

.footer-contact-item p:last-of-type {
  color: rgba(249, 247, 242, 0.6);
  font-size: 0.75rem;
}

.footer-contact-item a {
  font-size: 0.875rem;
  color: rgba(249, 247, 242, 0.7);
}

.footer-bottom {
  border-top: 1px solid rgba(249, 247, 242, 0.1);
  padding: 2rem 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(249, 247, 242, 0.5);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.875rem;
  color: rgba(249, 247, 242, 0.5);
}

.footer-bottom-links a:hover {
  color: var(--cream);
}

/* ===== MOBILE ACTION BAR ===== */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--forest);
  border-top: 1px solid rgba(249, 247, 242, 0.1);
  padding: 0.75rem;
}

@media (max-width: 1023px) {
  .mobile-action-bar {
    display: flex;
    gap: 0.75rem;
  }
}

.mobile-action-bar .btn {
  flex: 1;
}

/* ===== PHOTO GALLERY SECTION ===== */
.photo-gallery-section {
  background-color: var(--background);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background-color: rgba(26, 48, 33, 0.95);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--cream);
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: var(--bronze);
}

.lightbox-close svg {
  width: 32px;
  height: 32px;
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 0.5rem;
}

/* ===== WORDPRESS SINGLE POST (SEM FORMATAÇÃO) ===== */
.single-post .entry-content {
  /* Remove toda formatação padrão */
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.single-post .entry-content * {
  all: revert;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 1023px) {
  body {
    padding-bottom: 80px; /* Space for mobile action bar */
  }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  animation: fadeInUp 0.6s ease forwards;
}

.fade-in-delay-1 { animation-delay: 0.1s; }
.fade-in-delay-2 { animation-delay: 0.2s; }
.fade-in-delay-3 { animation-delay: 0.3s; }
.fade-in-delay-4 { animation-delay: 0.4s; }

/* ===== ACCESSIBILITY ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 2px;
}


/* Category Tabs */
.category-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.category-tab {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid var(--forest);
    color: var(--forest);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-tab:hover {
    background: var(--forest);
    color: var(--cream);
}

.category-tab.active {
    background: var(--forest);
    color: var(--cream);
}

/* Services Grid */
.services-grid {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.services-grid.active {
    display: grid;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 48, 33, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(26, 48, 33, 0.15);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--forest);
    margin-bottom: 0.5rem;
}

.service-card p {
    color: #666;
    font-size: 0.875rem;
}
