/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */

:root {
  /* Color Palette */
  --verde: #243626;
  --verde-secundario: #334D37;
  --dourado: #D89A2A;
  --dourado-claro: #E5B04A;
  --bege: #DCCDBF;
  --bege-claro: #F5EFEA;
  --preto: #202020;
  --branco: #FFFFFF;
  --gray-light: #F9F9F8;
  --gray-medium: #E2E2DF;
  --gray-dark: #6E6E6A;
  
  /* Glassmorphism Styles */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-shadow: rgba(36, 54, 38, 0.04);
  
  /* Fonts */
  --font-title: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
  
  /* Transitions */
  --transition-fast: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-medium: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Shadows */
  --shadow-subtle: 0 4px 30px rgba(0, 0, 0, 0.02);
  --shadow-premium: 0 10px 40px rgba(36, 54, 38, 0.06);
  --shadow-card: 0 15px 35px rgba(36, 54, 38, 0.04);
  --shadow-header: 0 4px 30px rgba(36, 54, 38, 0.05);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--preto);
  background-color: var(--branco);
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--verde);
  font-weight: 700;
  line-height: 1.25;
}

p {
  font-weight: 400;
  color: var(--gray-dark);
}

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

ul {
  list-style: none;
}

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

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

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

.text-white {
  color: var(--branco) !important;
}

.id-anchor {
  scroll-margin-top: 100px;
}

/* ==========================================================================
   DECORATIVE BIOFILIC ELEMENTS
   ========================================================================== */

/* Organic BG Leaves */
.bg-leaf {
  position: absolute;
  pointer-events: none;
  background-color: var(--verde);
  opacity: 0.03;
  z-index: -1;
  border-radius: 50% 0 50% 0; /* Leaf Shape */
}

.bg-leaf-1 {
  width: 250px;
  height: 250px;
  top: 15%;
  right: -50px;
  transform: rotate(25deg);
}

.bg-leaf-2 {
  width: 350px;
  height: 350px;
  top: 45%;
  left: -100px;
  transform: rotate(-35deg);
  background-color: var(--dourado);
  opacity: 0.025;
}

.bg-leaf-3 {
  width: 200px;
  height: 200px;
  bottom: 10%;
  right: 5%;
  transform: rotate(60deg);
}

/* Blur Organic BG Circles */
.decor-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -2;
  opacity: 0.06;
  pointer-events: none;
}

.circle-1 {
  background-color: var(--bege);
  top: 20%;
  left: 10%;
}

.circle-2 {
  background-color: var(--dourado-claro);
  bottom: 25%;
  right: 10%;
}

/* Dividers */
.divider-gold {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--dourado), var(--dourado-claro));
  margin: 16px 0 24px 0;
  border-radius: 2px;
}

.divider-gold.center {
  margin: 16px auto 24px auto;
}

/* Tags */
.section-tag {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--verde-secundario);
  display: inline-block;
  margin-bottom: 8px;
}

.section-tag.tag-gold {
  color: var(--dourado-claro);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 1px;
  padding: 14px 32px;
  border-radius: 30px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-gold {
  background: linear-gradient(135deg, var(--dourado), var(--dourado-claro));
  color: var(--branco);
  box-shadow: 0 4px 15px rgba(216, 154, 42, 0.2);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--dourado-claro), var(--dourado));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(216, 154, 42, 0.3);
}

.btn-green {
  background-color: var(--verde);
  color: var(--branco);
  box-shadow: 0 4px 15px rgba(36, 54, 38, 0.15);
}

.btn-green:hover {
  background-color: var(--verde-secundario);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(36, 54, 38, 0.25);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--branco);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
  background-color: var(--branco);
  color: var(--verde);
  border-color: var(--branco);
  transform: translateY(-2px);
}

.btn-whatsapp-large {
  background-color: #25d366;
  color: var(--branco);
  font-size: 1.1rem;
  padding: 16px 40px;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  border-radius: 50px;
}

.btn-whatsapp-large:hover {
  background-color: #20ba5a;
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition-medium);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Header States */
.main-header.scrolled {
  padding: 16px 0;
  background-color: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-header);
}

.logo-img {
  height: 50px;
  width: auto;
  transition: var(--transition-medium);
}

.main-header.scrolled .logo-img {
  height: 42px;
}

/* Nav Menu Desktop */
.nav-menu ul {
  display: flex;
  gap: 32px;
}

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

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

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

.main-header.scrolled .nav-link {
  color: var(--verde);
}

.main-header.scrolled .nav-link.active {
  color: var(--dourado);
}

/* Mobile Toggle Hamburger */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--branco);
  position: relative;
  transition: var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--branco);
  position: absolute;
  transition: var(--transition-fast);
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

.main-header.scrolled .hamburger,
.main-header.scrolled .hamburger::before,
.main-header.scrolled .hamburger::after {
  background-color: var(--verde);
}

/* Mobile Toggle Active State */
.mobile-menu-toggle.active .hamburger {
  background-color: transparent !important;
}

.mobile-menu-toggle.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
  background-color: var(--verde);
}

.mobile-menu-toggle.active .hamburger::after {
  transform: rotate(-45deg);
  bottom: 0;
  background-color: var(--verde);
}

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

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--branco);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%; /* Extra height for parallax */
  background-size: cover;
  background-position: center;
  z-index: -2;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(36, 54, 38, 0.45) 0%, rgba(32, 32, 32, 0.6) 100%);
  z-index: -1;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  margin-top: 80px;
}

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

.hero-tagline {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--dourado-claro);
  margin-bottom: 20px;
  display: block;
}

.hero-section h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero-section p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-body);
  font-weight: 400;
  margin-bottom: 40px;
  max-width: 650px;
  line-height: 1.6;
}

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

/* Parallax Wave Bottom Overlay */
.wave-bottom {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 3;
}

.wave-bottom svg {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
}

/* ==========================================================================
   INDICATORS SECTION
   ========================================================================== */

.indicators-section {
  position: relative;
  z-index: 5;
  background-color: var(--branco);
  padding: 0;
  margin-top: -30px; /* Overlap with wave overlay */
}

.indicators-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  background: var(--branco);
  border-radius: 20px;
  padding: 40px 24px;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(220, 205, 191, 0.25);
}

.indicator-card {
  text-align: center;
  padding: 10px;
  position: relative;
  transition: var(--transition-fast);
}

.indicator-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background-color: var(--gray-medium);
}

.indicator-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px auto;
  color: var(--verde);
  display: flex;
  align-items: center;
  justify-content: center;
}

.indicator-icon svg {
  width: 32px;
  height: 32px;
}

.indicator-number {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--verde);
  line-height: 1.1;
  margin-bottom: 8px;
}

.indicator-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
  padding: 0 8px;
}

.indicator-card:hover {
  transform: translateY(-4px);
}

.indicator-card:hover .indicator-icon {
  color: var(--dourado);
  transform: scale(1.1);
  transition: var(--transition-fast);
}

/* ==========================================================================
   SOBRE (ABOUT) SECTION
   ========================================================================== */

.about-section {
  padding: 100px 0;
  background-color: var(--branco);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-img {
  border-radius: 30px 100px 30px 30px; /* Organic round borders */
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: var(--shadow-premium);
  position: relative;
  z-index: 2;
}

.about-image-decor {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--bege);
  border-radius: 30px 100px 30px 30px;
  z-index: 1;
  pointer-events: none;
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background-color: var(--verde);
  color: var(--branco);
  padding: 24px 30px;
  border-radius: 30px 30px 0 30px;
  box-shadow: var(--shadow-premium);
  z-index: 3;
  text-align: center;
  transition: var(--transition-fast);
}

.experience-badge:hover {
  transform: scale(1.05);
}

.badge-title {
  display: block;
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dourado-claro);
  line-height: 1;
}

.badge-subtitle {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.about-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 12px;
}

.about-highlight {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--verde-secundario);
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-content p {
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.about-cta-wrapper {
  margin-top: 32px;
}

/* ==========================================================================
   SERVIÇOS (SERVICES) SECTION
   ========================================================================== */

.services-section {
  position: relative;
  background-color: var(--gray-light);
  padding: 100px 0;
  overflow: hidden;
}

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

.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--branco);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(36, 54, 38, 0.05);
  box-shadow: var(--shadow-card);
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
}

/* Glowing decorative accent inside card */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--verde);
  transition: var(--transition-fast);
}

.service-icon {
  width: 56px;
  height: 56px;
  color: var(--verde);
  border-radius: 12px;
  background-color: rgba(36, 54, 38, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition-fast);
}

.service-icon svg {
  width: 30px;
  height: 30px;
}

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

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

/* Hover effects */
.service-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 45px rgba(36, 54, 38, 0.08);
  border-color: rgba(216, 154, 42, 0.2);
}

.service-card:hover::before {
  height: 100%;
  background-color: var(--dourado);
}

.service-card:hover .service-icon {
  background-color: var(--dourado);
  color: var(--branco);
  transform: rotateY(360deg);
}

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

/* ==========================================================================
   ESTRUTURA (STRUCTURE) SECTION
   ========================================================================== */

.structure-section {
  padding: 100px 0;
  background-color: var(--branco);
}

/* Masonry Grid Setup */
.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 20px;
  margin-bottom: 40px;
}

.masonry-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

/* Item size modifications for Masonry effect */
.masonry-item.item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.masonry-item.item-wide {
  grid-column: span 2;
  grid-row: span 1;
}

.gallery-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(36, 54, 38, 0) 40%, rgba(36, 54, 38, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 0.9;
  transition: var(--transition-medium);
}

.gallery-info {
  transform: translateY(10px);
  transition: var(--transition-medium);
}

.gallery-info h3 {
  color: var(--branco);
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.gallery-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Gallery Hover states */
.masonry-item:hover .gallery-inner img {
  transform: scale(1.08);
}

.masonry-item:hover .gallery-overlay {
  background: linear-gradient(180deg, rgba(36, 54, 38, 0.2) 20%, rgba(36, 54, 38, 0.9) 100%);
}

.masonry-item:hover .gallery-info {
  transform: translateY(0);
}

.gallery-cta-btn {
  margin-top: 48px;
}

/* ==========================================================================
   DIFERENCIAIS (DIFFERENTIALS) SECTION
   ========================================================================== */

.differentials-section {
  background-color: var(--verde);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Organic foliage elements in differentials section */
.differentials-section::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50% 0 50% 0;
  background-color: rgba(216, 154, 42, 0.02);
  transform: rotate(45deg);
  pointer-events: none;
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.differential-item {
  display: flex;
  gap: 24px;
  background-color: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-medium);
}

.diff-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  color: var(--dourado-claro);
}

.diff-icon svg {
  width: 40px;
  height: 40px;
}

.diff-content h3 {
  color: var(--branco);
  font-size: 1.25rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.diff-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Hover differentials */
.differential-item:hover {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(216, 154, 42, 0.25);
  transform: translateY(-3px);
}

/* ==========================================================================
   DEPOIMENTOS (TESTIMONIALS) SECTION
   ========================================================================== */

.testimonials-section {
  padding: 100px 0;
  background-color: var(--gray-light);
}

.testimonial-slider-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.testimonial-card {
  min-width: 100%;
  width: 100%;
  padding: 20px 10px;
  text-align: center;
  box-sizing: border-box;
}

.stars {
  color: var(--dourado);
  font-size: 1.2rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--verde);
  margin-bottom: 30px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--bege);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--dourado-claro);
}

.avatar-initials {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--verde);
}

.author-info {
  text-align: left;
}

.author-info h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--preto);
}

.author-info p {
  font-size: 0.75rem;
  color: var(--gray-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* Dots navigation */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--gray-medium);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background-color: var(--dourado);
  width: 20px;
  border-radius: 4px;
}

/* ==========================================================================
   PROCESSO (PROCESS) SECTION
   ========================================================================== */

.process-section {
  padding: 100px 0;
  background-color: var(--branco);
  overflow: hidden;
}

.timeline-wrapper {
  position: relative;
  margin-top: 60px;
  padding: 20px 0;
}

.timeline-line {
  position: absolute;
  top: 30px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, var(--bege) 0%, var(--dourado-claro) 50%, var(--bege) 100%);
  z-index: 1;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.timeline-step {
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--branco);
  border: 2px solid var(--dourado);
  color: var(--dourado);
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-medium);
}

.timeline-step:hover .step-number {
  background-color: var(--dourado);
  color: var(--branco);
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(216, 154, 42, 0.35);
}

.timeline-step h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.timeline-step p {
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.cta-section {
  padding: 80px 0;
  background-color: var(--branco);
}

.cta-card {
  background: linear-gradient(135deg, var(--dourado) 0%, var(--dourado-claro) 100%);
  border-radius: 30px;
  padding: 80px 60px;
  text-align: center;
  color: var(--branco);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(216, 154, 42, 0.25);
}

/* Organic background pattern */
.cta-leaf-decor {
  position: absolute;
  top: -120px;
  left: -120px;
  width: 350px;
  height: 350px;
  border-radius: 50% 0 50% 0;
  background-color: rgba(255, 255, 255, 0.05);
  transform: rotate(-15deg);
  pointer-events: none;
}

.cta-card h2 {
  color: var(--branco);
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 800px;
  margin: 0 auto 20px auto;
  line-height: 1.2;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 650px;
  margin: 0 auto 40px auto;
  font-weight: 500;
}

.cta-buttons-wrapper {
  display: flex;
  justify-content: center;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */

.contact-section {
  padding: 100px 0;
  background-color: var(--gray-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-wrapper {
  background-color: var(--branco);
  padding: 50px;
  border-radius: 20px;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(220, 205, 191, 0.3);
}

.contact-form-wrapper p {
  font-size: 0.9rem;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-form label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--verde-secundario);
}

.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid var(--gray-medium);
  background-color: var(--gray-light);
  color: var(--preto);
  transition: var(--transition-fast);
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a0a09c;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--dourado);
  background-color: var(--branco);
  box-shadow: 0 0 0 3px rgba(216, 154, 42, 0.08);
}

.btn-submit-form {
  border-radius: 8px;
  font-size: 1rem;
  padding: 16px;
  font-weight: 600;
  margin-top: 10px;
}

/* Info and Map Column */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card {
  background-color: var(--branco);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(220, 205, 191, 0.2);
}

.info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-list li {
  display: flex;
  gap: 20px;
}

.info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(36, 54, 38, 0.04);
  color: var(--verde);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon svg {
  width: 20px;
  height: 20px;
}

.info-list h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--verde);
  margin-bottom: 4px;
}

.info-list p {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Maps Mockup Frame */
.map-mockup {
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--gray-medium);
  box-shadow: var(--shadow-premium);
}

/* Mockup Map Styling */
.map-placeholder-grid {
  width: 100%;
  height: 100%;
  background-color: #f4f3f0;
  background-image: 
    radial-gradient(var(--bege) 1px, transparent 0),
    linear-gradient(to right, rgba(220, 205, 191, 0.4) 1px, transparent 0),
    linear-gradient(to bottom, rgba(220, 205, 191, 0.4) 1px, transparent 0);
  background-size: 40px 40px, 80px 80px, 80px 80px;
  z-index: 1;
}

/* Mockup stylized streets overlay */
.map-mockup::before {
  content: '';
  position: absolute;
  top: 30%;
  left: -20%;
  width: 140%;
  height: 15px;
  background-color: var(--branco);
  transform: rotate(-10deg);
  z-index: 2;
}

.map-mockup::after {
  content: '';
  position: absolute;
  top: -10%;
  left: 60%;
  width: 20px;
  height: 120%;
  background-color: var(--branco);
  z-index: 2;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-pin-icon {
  color: var(--dourado);
  filter: drop-shadow(0 4px 10px rgba(216, 154, 42, 0.4));
  transform: translateY(-10px);
  animation: floatPin 3s ease-in-out infinite;
}

.map-popover {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--branco);
  padding: 16px;
  border-radius: 12px;
  box-shadow: var(--shadow-premium);
  max-width: 220px;
}

.map-popover h5 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.map-popover p {
  font-size: 0.7rem;
  color: var(--gray-dark);
  margin-bottom: 8px;
}

.map-popover a {
  font-size: 0.75rem;
  color: var(--dourado);
  font-weight: 600;
}

.map-popover a:hover {
  text-decoration: underline;
}

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

/* ==========================================================================
   FOOTER
   ========================================================================== */

.main-footer {
  background-color: var(--verde);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-logo {
  height: 48px;
  margin-bottom: 24px;
  filter: brightness(0) invert(1); /* Render it white in the green footer */
}

.footer-about p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 320px;
}

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

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-fast);
}

.footer-socials a:hover {
  background-color: var(--dourado);
  color: var(--branco);
  transform: translateY(-3px);
}

.footer-col h3 {
  color: var(--branco);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 24px;
  font-family: var(--font-body);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--dourado-claro);
  padding-left: 5px;
}

.footer-contact-info p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.footer-contact-info strong {
  color: var(--branco);
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
  font-size: 0.8rem;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ==========================================================================
   SCROLL REVEAL & ANIMATIONS (PURE JS TRIGGERS)
   ========================================================================== */

/* Base animation classes */
.reveal-fade,
.reveal-slide-up,
.reveal-slide-right,
.reveal-scale {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-fade {
  transform: translateY(0);
}

.reveal-slide-up {
  transform: translateY(40px);
}

.reveal-slide-right {
  transform: translateX(-40px);
}

.reveal-scale {
  transform: scale(0.95);
}

/* Active states (triggered by intersection observer in js) */
.reveal-fade.active,
.reveal-slide-up.active,
.reveal-slide-right.active,
.reveal-scale.active {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* ==========================================================================
   RESPONSIVENESS (MEDIA QUERIES)
   ========================================================================== */

/* Notebooks & Large Screens */
@media (max-width: 1199px) {
  .indicators-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Tablets (landscape/portrait) */
@media (max-width: 991px) {
  /* Layout changes */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .about-image-wrapper {
    max-width: 550px;
    margin: 0 auto;
  }
  
  .indicators-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .indicator-card:not(:last-child)::after {
    display: none;
  }
  
  .masonry-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  
  .differentials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 40px;
  }
}

/* Tablets & Mobile Menu Trigger */
@media (max-width: 768px) {
  /* Navigation mobile menu styles */
  .mobile-menu-toggle {
    display: block;
  }

  .header-container {
    padding: 0 16px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    transform: translateX(100%);
    background-color: var(--branco);
    box-shadow: -10px 0 30px rgba(36, 54, 38, 0.08);
    display: flex;
    flex-direction: column;
    padding: 100px 40px 40px 40px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
  }
  
  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 24px;
  }

  .nav-link {
    color: var(--verde) !important;
    font-size: 1.1rem;
    font-weight: 600;
  }

  .header-cta {
    display: none;
  }

  .mobile-nav-cta {
    display: block;
    margin-top: 40px;
  }
  
  .btn-header-mobile {
    width: 100%;
  }

  /* Other sections */
  .indicators-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .timeline-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .timeline-line {
    top: 5%;
    left: 30px;
    width: 2px;
    height: 90%;
  }
  
  .timeline-step {
    display: flex;
    text-align: left;
    align-items: start;
    gap: 20px;
  }
  
  .step-number {
    margin: 0;
    flex-shrink: 0;
  }
  
  .timeline-step p {
    margin: 0;
    max-width: 100%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-about p {
    max-width: 100%;
  }
}

/* Small Mobiles (Optimized for 360px - 430px) */
@media (max-width: 575px) {
  .container {
    padding: 0 16px;
  }

  .about-section,
  .services-section,
  .structure-section,
  .differentials-section,
  .testimonials-section,
  .process-section,
  .contact-section {
    padding: 60px 0;
  }

  /* Header adjustments */
  .logo-img {
    height: 36px;
  }
  
  .main-header {
    padding: 16px 0;
  }

  /* Hero Section */
  .hero-section {
    min-height: 520px;
  }
  
  .hero-content-wrapper {
    margin-top: 60px;
  }

  .hero-section h1 {
    font-size: 2.1rem;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .hero-section p {
    font-size: 0.95rem;
    margin-bottom: 28px;
    line-height: 1.5;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn {
    width: 100%;
    padding: 12px 24px;
    font-size: 0.85rem;
  }

  /* Indicators */
  .indicators-section {
    margin-top: -15px;
  }
  
  .indicators-grid {
    grid-template-columns: 1fr;
    padding: 24px 16px;
    gap: 16px;
  }
  
  .indicator-card {
    padding: 8px;
  }
  
  .indicator-number {
    font-size: 1.8rem;
    margin-bottom: 4px;
  }
  
  .indicator-label {
    font-size: 0.75rem;
  }

  /* About section */
  .about-image-wrapper {
    position: relative;
    width: 100%;
  }

  .about-img {
    border-radius: 20px 60px 20px 20px;
  }

  .about-image-decor {
    border-radius: 20px 60px 20px 20px;
    bottom: -10px;
    left: -10px;
  }

  .experience-badge {
    position: relative;
    right: 0;
    bottom: 0;
    margin: -15px auto 0 auto;
    width: calc(100% - 24px);
    max-width: 260px;
    border-radius: 20px;
    padding: 16px;
    box-shadow: var(--shadow-card);
    display: block;
    box-sizing: border-box;
  }

  .badge-title {
    font-size: 1.5rem;
  }

  .about-content h2 {
    font-size: 1.8rem;
  }

  .about-highlight {
    font-size: 1rem;
  }

  /* Services Grid */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 24px;
  }

  .service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

  /* Masonry Gallery */
  .masonry-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 180px;
    gap: 16px;
  }
  
  .masonry-item.item-large,
  .masonry-item.item-wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-overlay {
    padding: 20px;
  }

  .gallery-info h3 {
    font-size: 1.25rem;
  }

  /* Differentials */
  .differential-item {
    padding: 20px;
    gap: 16px;
  }

  .diff-content h3 {
    font-size: 1.15rem;
  }

  /* Testimonials */
  .testimonial-text {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 24px;
  }

  /* Timeline */
  .timeline-grid {
    gap: 28px;
  }

  .timeline-step {
    display: flex;
    text-align: left;
    align-items: start;
    gap: 16px;
  }

  .step-number {
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
    margin: 0;
    flex-shrink: 0;
  }

  .timeline-line {
    top: 5%;
    left: 23px;
    width: 2px;
    height: 90%;
  }

  .timeline-step p {
    margin: 0;
    max-width: 100%;
    font-size: 0.8rem;
  }

  /* CTA Section */
  .cta-card {
    padding: 40px 16px;
    border-radius: 20px;
  }

  .cta-card h2 {
    font-size: 1.6rem;
  }

  .cta-card p {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }

  .btn-whatsapp-large {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.9rem;
    box-sizing: border-box;
  }

  /* Contact Section */
  .contact-form-wrapper {
    padding: 24px 16px;
    border-radius: 16px;
  }

  .contact-form-wrapper h2 {
    font-size: 1.7rem;
  }

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

  .info-card {
    padding: 24px 16px;
  }

  .map-mockup {
    height: 200px;
  }

  .map-popover {
    top: 10px;
    left: 10px;
    padding: 10px;
    max-width: 170px;
  }

  .map-popover h5 {
    font-size: 0.75rem;
  }

  .map-popover p {
    font-size: 0.6rem;
    margin-bottom: 4px;
  }

  .map-popover a {
    font-size: 0.65rem;
  }
}

