:root {
  --color-primary: #6B7A5A;
  --color-secondary: #8A9B7E;
  --color-accent: #4A5A3A;
  --color-beige: #E8E3D8;
  --color-brown: #A89885;
  --color-white: #FAFAF8;
  --color-dark: #2C2C2C;
  --color-gray: #707070;

  --font-display: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;

  --spacing: 8px;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background-color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(107, 122, 90, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(138, 155, 126, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(74, 90, 58, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(107, 122, 90, 0.01) 2px,
      rgba(107, 122, 90, 0.01) 4px
    );
  pointer-events: none;
  z-index: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 calc(var(--spacing) * 3);
  position: relative;
  z-index: 2;
}

section {
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: calc(var(--spacing) * 8);
  position: relative;
}

.section-header::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 10 L30 30 L40 30 L40 70 L60 70 L60 30 L70 30 Z" fill="%238A9B7E" opacity="0.2"/><circle cx="25" cy="25" r="15" fill="%236B7A5A" opacity="0.15"/><circle cx="75" cy="25" r="15" fill="%236B7A5A" opacity="0.15"/></svg>');
  background-size: contain;
  opacity: 0.6;
  pointer-events: none;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-accent);
  margin-bottom: calc(var(--spacing) * 2);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.title-decoration {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  margin: 0 auto calc(var(--spacing) * 2);
  position: relative;
}

.title-decoration::before,
.title-decoration::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  background: var(--color-secondary);
  border-radius: 50%;
  transform: translateY(-50%);
}

.title-decoration::before {
  left: -20px;
}

.title-decoration::after {
  right: -20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-gray);
  margin-top: calc(var(--spacing) * 2);
}

.btn-primary {
  display: inline-block;
  padding: calc(var(--spacing) * 2) calc(var(--spacing) * 5);
  background: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.floating-leaves {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1000;
  overflow: hidden;
}

.leaf {
  position: absolute;
  width: 40px;
  height: 40px;
  background: var(--color-secondary);
  opacity: 0.4;
  border-radius: 0 100% 0 100%;
  animation: float 15s infinite ease-in-out;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.leaf::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 70%;
  background: rgba(74, 90, 58, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.leaf-1 { left: 10%; animation-delay: 0s; width: 35px; height: 35px; }
.leaf-2 { left: 30%; animation-delay: 3s; width: 45px; height: 45px; }
.leaf-3 { left: 50%; animation-delay: 6s; width: 38px; height: 38px; }
.leaf-4 { left: 70%; animation-delay: 9s; width: 42px; height: 42px; }
.leaf-5 { left: 90%; animation-delay: 12s; width: 36px; height: 36px; }
.leaf-6 { left: 20%; animation-delay: 2s; width: 40px; height: 40px; }
.leaf-7 { left: 60%; animation-delay: 8s; width: 37px; height: 37px; }
.leaf-8 { left: 80%; animation-delay: 11s; width: 43px; height: 43px; }

.nature-overlay {
  position: fixed;
  pointer-events: none;
  z-index: 100;
  opacity: 0.15;
}

.nature-overlay-top {
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 200"><defs><filter id="blur"><feGaussianBlur stdDeviation="1"/></filter></defs><g filter="url(%23blur)"><path d="M0 0 Q50 50 100 0 Q150 50 200 0 Q250 50 300 0 Q350 50 400 0 Q450 50 500 0 Q550 50 600 0 Q650 50 700 0 Q750 50 800 0 Q850 50 900 0 Q950 50 1000 0 Q1050 50 1100 0 Q1150 50 1200 0 L1200 200 L0 200 Z" fill="%236B7A5A" opacity="0.3"/><circle cx="80" cy="40" r="25" fill="%238A9B7E"/><circle cx="220" cy="50" r="30" fill="%238A9B7E"/><circle cx="380" cy="35" r="28" fill="%238A9B7E"/><circle cx="520" cy="45" r="32" fill="%238A9B7E"/><circle cx="680" cy="38" r="27" fill="%238A9B7E"/><circle cx="840" cy="42" r="29" fill="%238A9B7E"/><circle cx="1000" cy="48" r="31" fill="%238A9B7E"/><circle cx="1120" cy="36" r="26" fill="%238A9B7E"/></g></svg>');
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}

.nature-overlay-right {
  top: 30%;
  right: 0;
  width: 150px;
  height: 40%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 400"><g opacity="0.6"><path d="M150 0 L120 0 Q100 50 120 100 L150 100 Z" fill="%236B7A5A"/><path d="M150 120 L125 120 Q105 170 125 220 L150 220 Z" fill="%236B7A5A"/><path d="M150 240 L115 240 Q95 290 115 340 L150 340 Z" fill="%236B7A5A"/><ellipse cx="130" cy="50" rx="20" ry="35" fill="%238A9B7E"/><ellipse cx="125" cy="170" rx="22" ry="38" fill="%238A9B7E"/><ellipse cx="120" cy="290" rx="25" ry="40" fill="%238A9B7E"/></g></svg>');
  background-size: contain;
  background-position: right;
  background-repeat: repeat-y;
}

.gallery-nature-frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: var(--transition);
}

.gallery-nature-frame::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100px;
  height: 100px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><g><path d="M20 80 Q30 60 40 80 Q50 60 60 80 Q70 60 80 80" fill="none" stroke="%236B7A5A" stroke-width="4"/><circle cx="30" cy="75" r="12" fill="%238A9B7E" opacity="0.8"/><circle cx="50" cy="72" r="14" fill="%238A9B7E" opacity="0.8"/><circle cx="70" cy="74" r="13" fill="%238A9B7E" opacity="0.8"/><path d="M30 75 L30 95 M50 72 L50 95 M70 74 L70 95" stroke="%234A5A3A" stroke-width="3"/></g></svg>');
  background-size: contain;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.gallery-nature-frame::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 120px;
  height: 120px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><g><path d="M40 20 Q60 40 80 20" fill="none" stroke="%236B7A5A" stroke-width="3"/><path d="M30 40 Q60 65 90 40" fill="none" stroke="%236B7A5A" stroke-width="3"/><ellipse cx="40" cy="25" rx="15" ry="20" fill="%238A9B7E" opacity="0.7"/><ellipse cx="60" cy="30" rx="18" ry="24" fill="%238A9B7E" opacity="0.7"/><ellipse cx="80" cy="23" rx="16" ry="21" fill="%238A9B7E" opacity="0.7"/><circle cx="50" cy="80" r="25" fill="%236B7A5A" opacity="0.3"/><circle cx="70" cy="90" r="20" fill="%236B7A5A" opacity="0.3"/></g></svg>');
  background-size: contain;
  filter: drop-shadow(-2px -2px 4px rgba(0, 0, 0, 0.2));
}

.gallery-item:hover .gallery-nature-frame {
  opacity: 1;
}

@keyframes float {
  0%, 100% {
    transform: translateY(-100px) rotate(0deg);
    opacity: 0;
  }
  10% { opacity: 0.3; }
  90% { opacity: 0.3; }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: calc(var(--spacing) * 4);
  right: calc(var(--spacing) * 4);
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 50px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-nature-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.nature-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(232, 227, 216, 0.6);
  border-radius: 50%;
  animation: floatParticle 20s infinite ease-in-out;
  box-shadow: 0 0 10px rgba(232, 227, 216, 0.4);
}

.nature-particle:nth-child(1) {
  left: 20%;
  top: 20%;
  animation-delay: 0s;
  animation-duration: 15s;
}

.nature-particle:nth-child(2) {
  left: 50%;
  top: 40%;
  animation-delay: 3s;
  animation-duration: 18s;
  width: 6px;
  height: 6px;
}

.nature-particle:nth-child(3) {
  left: 80%;
  top: 30%;
  animation-delay: 6s;
  animation-duration: 20s;
  width: 10px;
  height: 10px;
}

.nature-particle:nth-child(4) {
  left: 35%;
  top: 60%;
  animation-delay: 9s;
  animation-duration: 16s;
  width: 7px;
  height: 7px;
}

.nature-particle:nth-child(5) {
  left: 70%;
  top: 70%;
  animation-delay: 12s;
  animation-duration: 19s;
  width: 9px;
  height: 9px;
}

@keyframes floatParticle {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translate(30px, -30px) scale(1.2);
    opacity: 0.6;
  }
  50% {
    transform: translate(-20px, -60px) scale(0.8);
    opacity: 0.8;
  }
  75% {
    transform: translate(40px, -40px) scale(1.1);
    opacity: 0.5;
  }
}

.hero-branches {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.25;
}

.hero-branch-left {
  top: 0;
  left: 0;
  width: 400px;
  height: 600px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 600"><g><path d="M50 0 Q30 100 50 200 Q25 300 50 400 Q30 500 50 600" stroke="%236B7A5A" stroke-width="8" fill="none" opacity="0.6"/><path d="M50 100 Q80 120 100 140" stroke="%238A9B7E" stroke-width="5" fill="none"/><path d="M50 200 Q20 220 10 250" stroke="%238A9B7E" stroke-width="5" fill="none"/><path d="M50 300 Q85 315 110 340" stroke="%238A9B7E" stroke-width="5" fill="none"/><path d="M50 400 Q25 420 15 450" stroke="%238A9B7E" stroke-width="5" fill="none"/><ellipse cx="100" cy="140" rx="25" ry="35" fill="%236B7A5A" opacity="0.7"/><ellipse cx="10" cy="250" rx="20" ry="30" fill="%236B7A5A" opacity="0.7"/><ellipse cx="110" cy="340" rx="28" ry="38" fill="%236B7A5A" opacity="0.7"/><ellipse cx="15" cy="450" rx="22" ry="32" fill="%236B7A5A" opacity="0.7"/></g></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  animation: swayLeft 12s ease-in-out infinite;
}

.hero-branch-right {
  top: 0;
  right: 0;
  width: 350px;
  height: 550px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 350 550"><g><path d="M300 0 Q320 90 300 180 Q325 270 300 360 Q320 450 300 550" stroke="%236B7A5A" stroke-width="8" fill="none" opacity="0.6"/><path d="M300 80 Q270 95 250 115" stroke="%238A9B7E" stroke-width="5" fill="none"/><path d="M300 180 Q330 195 340 220" stroke="%238A9B7E" stroke-width="5" fill="none"/><path d="M300 280 Q265 295 240 320" stroke="%238A9B7E" stroke-width="5" fill="none"/><path d="M300 380 Q325 395 335 425" stroke="%238A9B7E" stroke-width="5" fill="none"/><ellipse cx="250" cy="115" rx="24" ry="34" fill="%236B7A5A" opacity="0.7"/><ellipse cx="340" cy="220" rx="21" ry="31" fill="%236B7A5A" opacity="0.7"/><ellipse cx="240" cy="320" rx="27" ry="37" fill="%236B7A5A" opacity="0.7"/><ellipse cx="335" cy="425" rx="23" ry="33" fill="%236B7A5A" opacity="0.7"/></g></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  animation: swayRight 14s ease-in-out infinite;
}

@keyframes swayLeft {
  0%, 100% {
    transform: translateX(0) rotate(0deg);
  }
  50% {
    transform: translateX(-15px) rotate(-2deg);
  }
}

@keyframes swayRight {
  0%, 100% {
    transform: translateX(0) rotate(0deg);
  }
  50% {
    transform: translateX(15px) rotate(2deg);
  }
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  background-image:
    url('./img/image.png'),
    linear-gradient(135deg, rgba(107, 122, 90, 0.85) 0%, rgba(74, 90, 58, 0.85) 100%);
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  max-width: 900px;
  padding: calc(var(--spacing) * 3);
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  margin-bottom: calc(var(--spacing) * 3);
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  margin-bottom: calc(var(--spacing) * 5);
  font-weight: 300;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
  position: absolute;
  bottom: calc(var(--spacing) * 5);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid var(--color-white);
  border-radius: 20px;
  position: relative;
}

.scroll-indicator span::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--color-white);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0%, 100% { opacity: 0; top: 8px; }
  50% { opacity: 1; top: 16px; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sobre {
  position: relative;
  padding: calc(var(--spacing) * 12) 0;
  background: var(--color-white);
  overflow: hidden;
}

.nature-bg {
  position: absolute;
  pointer-events: none;
}

.nature-bg-1 {
  top: 5%;
  right: -50px;
  width: 400px;
  height: 400px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><g opacity="0.08"><path d="M100 20 Q80 50 100 80 Q120 50 100 20" fill="%236B7A5A"/><path d="M100 80 Q80 110 100 140 Q120 110 100 80" fill="%236B7A5A"/><circle cx="60" cy="60" r="25" fill="%238A9B7E"/><circle cx="140" cy="100" r="30" fill="%238A9B7E"/><path d="M50 150 Q40 160 50 170 L50 200" stroke="%234A5A3A" stroke-width="3" fill="none"/><path d="M150 120 Q140 130 150 140 L150 170" stroke="%234A5A3A" stroke-width="3" fill="none"/></g></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  animation: sway 8s ease-in-out infinite;
}

.nature-bg-2 {
  bottom: 5%;
  left: -80px;
  width: 450px;
  height: 450px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><g opacity="0.08"><circle cx="100" cy="100" r="50" fill="%236B7A5A"/><path d="M50 120 L50 180 M70 100 L70 180 M130 110 L130 180 M150 125 L150 180" stroke="%238A9B7E" stroke-width="4" fill="none"/><ellipse cx="50" cy="115" rx="20" ry="30" fill="%234A5A3A"/><ellipse cx="70" cy="95" rx="25" ry="35" fill="%234A5A3A"/><ellipse cx="130" cy="105" rx="22" ry="32" fill="%234A5A3A"/><ellipse cx="150" cy="120" rx="18" ry="28" fill="%234A5A3A"/></g></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  animation: sway 10s ease-in-out infinite reverse;
}

@keyframes sway {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  50% { transform: translateX(20px) rotate(2deg); }
}

.sobre-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--spacing) * 8);
  align-items: center;
}

.sobre-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: calc(var(--spacing) * 3);
  color: var(--color-gray);
}

.sobre-text strong {
  color: var(--color-accent);
  font-weight: 600;
}

.sobre-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(var(--spacing) * 2);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 3px solid transparent;
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: -5px;
  right: -5px;
  width: 60px;
  height: 60px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M25 5 Q15 15 25 25 Q35 15 25 5" fill="%238A9B7E" opacity="0.6"/><circle cx="10" cy="15" r="5" fill="%236B7A5A" opacity="0.5"/><circle cx="40" cy="20" r="6" fill="%236B7A5A" opacity="0.5"/></svg>');
  background-size: contain;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(107, 122, 90, 0.6), rgba(74, 90, 58, 0.6));
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-secondary);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.diferenciais {
  padding: calc(var(--spacing) * 12) 0;
  background: var(--color-beige);
  position: relative;
  overflow: hidden;
}

.diferenciais::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 10%;
  width: 300px;
  height: 300px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300"><g opacity="0.06"><circle cx="150" cy="150" r="120" fill="%236B7A5A"/><path d="M80 150 Q100 100 120 150 Q140 100 160 150 Q180 100 200 150 Q220 100 240 150" fill="none" stroke="%238A9B7E" stroke-width="6"/><ellipse cx="100" cy="130" rx="30" ry="45" fill="%234A5A3A"/><ellipse cx="150" cy="120" rx="35" ry="50" fill="%234A5A3A"/><ellipse cx="200" cy="125" rx="32" ry="48" fill="%234A5A3A"/></g></svg>');
  background-size: contain;
  pointer-events: none;
  animation: rotate 60s linear infinite;
}

.diferenciais::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: 5%;
  width: 400px;
  height: 400px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><g opacity="0.06"><path d="M200 50 Q150 100 200 150 Q250 100 200 50" fill="%236B7A5A"/><path d="M200 150 Q150 200 200 250 Q250 200 200 150" fill="%236B7A5A"/><path d="M200 250 Q150 300 200 350 Q250 300 200 250" fill="%236B7A5A"/><circle cx="120" cy="180" r="60" fill="%238A9B7E"/><circle cx="280" cy="220" r="70" fill="%238A9B7E"/></g></svg>');
  background-size: contain;
  pointer-events: none;
  animation: rotate 80s linear infinite reverse;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: calc(var(--spacing) * 4);
}

.diferencial-card {
  background: var(--color-white);
  padding: calc(var(--spacing) * 4);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.diferencial-card::before {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 80px;
  height: 80px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><g opacity="0.08"><circle cx="50" cy="50" r="35" fill="%238A9B7E"/><path d="M30 50 Q50 30 70 50" fill="none" stroke="%236B7A5A" stroke-width="2"/><path d="M30 60 Q50 40 70 60" fill="none" stroke="%236B7A5A" stroke-width="2"/><path d="M30 70 Q50 50 70 70" fill="none" stroke="%236B7A5A" stroke-width="2"/></g></svg>');
  background-size: contain;
  pointer-events: none;
  transition: var(--transition);
}

.diferencial-card:hover::before {
  transform: scale(1.2) rotate(10deg);
  opacity: 0.6;
}

.diferencial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.diferencial-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto calc(var(--spacing) * 3);
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-white);
  transition: var(--transition);
}

.diferencial-card:hover .diferencial-icon {
  transform: scale(1.1) rotate(5deg);
}

.diferencial-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-accent);
  margin-bottom: calc(var(--spacing) * 2);
}

.diferencial-card p {
  color: var(--color-gray);
  font-size: 0.95rem;
}



.localizacao {
  position: relative;
  padding: calc(var(--spacing) * 12) 0;
  background: var(--color-beige);
  overflow: hidden;
}

.parallax-trees {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 30,40 70,40" fill="%238A9B7E" opacity="0.1"/><rect x="45" y="40" width="10" height="20" fill="%236B7A5A" opacity="0.1"/></svg>');
  background-size: 150px;
  opacity: 0.3;
  pointer-events: none;
}

.localizacao-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--spacing) * 8);
  align-items: start;
  position: relative;
  z-index: 1;
}

.localizacao-text h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: calc(var(--spacing) * 4);
}

.localizacao-list {
  list-style: none;
}

.localizacao-list li {
  display: flex;
  align-items: center;
  gap: calc(var(--spacing) * 2);
  padding: calc(var(--spacing) * 2) 0;
  font-size: 1.1rem;
  color: var(--color-dark);
  border-bottom: 1px solid rgba(107, 122, 90, 0.2);
}

.localizacao-list li:last-child {
  border-bottom: none;
}

.localizacao-list i {
  color: var(--color-primary);
  font-size: 1.3rem;
}

.localizacao-map {
  width: 100%;
  height: 450px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--color-white);
  position: relative;
}

.localizacao-map::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100px;
  height: 100px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><g><path d="M20 60 Q30 40 40 60 Q50 40 60 60 Q70 40 80 60" fill="none" stroke="%236B7A5A" stroke-width="4"/><circle cx="30" cy="55" r="15" fill="%238A9B7E" opacity="0.8"/><circle cx="50" cy="52" r="17" fill="%238A9B7E" opacity="0.8"/><circle cx="70" cy="54" r="16" fill="%238A9B7E" opacity="0.8"/><path d="M30 55 L30 85 M50 52 L50 85 M70 54 L70 85" stroke="%234A5A3A" stroke-width="3"/></g></svg>');
  background-size: contain;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.2));
}

.localizacao-map::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><g><ellipse cx="40" cy="40" rx="25" ry="35" fill="%236B7A5A" opacity="0.7"/><ellipse cx="70" cy="50" rx="28" ry="38" fill="%236B7A5A" opacity="0.7"/><ellipse cx="90" cy="35" rx="22" ry="32" fill="%236B7A5A" opacity="0.7"/><circle cx="60" cy="90" r="30" fill="%238A9B7E" opacity="0.4"/></g></svg>');
  background-size: contain;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(-2px -2px 6px rgba(0, 0, 0, 0.2));
}

.contato {
  padding: calc(var(--spacing) * 12) 0;
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-beige) 100%);
}

.contato-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: calc(var(--spacing) * 8);
}

.contato-form {
  background: var(--color-white);
  padding: calc(var(--spacing) * 5);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.contato-form::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 150px;
  height: 150px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150"><g opacity="0.05"><path d="M75 20 Q55 40 75 60 Q95 40 75 20" fill="%236B7A5A"/><path d="M75 60 Q55 80 75 100 Q95 80 75 60" fill="%236B7A5A"/><circle cx="40" cy="50" r="20" fill="%238A9B7E"/><circle cx="110" cy="70" r="25" fill="%238A9B7E"/></g></svg>');
  background-size: contain;
  pointer-events: none;
}

.contato-form::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 180px;
  height: 180px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150"><g opacity="0.05"><ellipse cx="75" cy="100" rx="40" ry="50" fill="%236B7A5A"/><path d="M50 100 L50 140" stroke="%238A9B7E" stroke-width="4"/><path d="M75 90 L75 140" stroke="%238A9B7E" stroke-width="4"/><path d="M100 95 L100 140" stroke="%238A9B7E" stroke-width="4"/></g></svg>');
  background-size: contain;
  pointer-events: none;
}

.form-group {
  margin-bottom: calc(var(--spacing) * 3);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--spacing) * 3);
}

.form-group label {
  display: block;
  margin-bottom: calc(var(--spacing) * 1);
  color: var(--color-accent);
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: calc(var(--spacing) * 2);
  border: 2px solid var(--color-beige);
  border-radius: calc(var(--radius) / 2);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(107, 122, 90, 0.1);
}

.contato-info {
  display: flex;
  flex-direction: column;
  gap: calc(var(--spacing) * 4);
}

.info-item {
  display: flex;
  gap: calc(var(--spacing) * 3);
  align-items: start;
}

.info-item i {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-item h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-accent);
  margin-bottom: calc(var(--spacing) * 0.5);
}

.info-item p {
  color: var(--color-gray);
  font-size: 1rem;
}

.footer {
  background: var(--color-accent);
  color: var(--color-white);
  padding: calc(var(--spacing) * 6) 0 calc(var(--spacing) * 3);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: calc(var(--spacing) * 4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: calc(var(--spacing) * 3);
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: calc(var(--spacing) * 1);
}

.footer-brand p {
  opacity: 0.8;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: calc(var(--spacing) * 2);
}

.footer-social a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--color-primary);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  opacity: 0.7;
  font-size: 0.9rem;
}

@media (max-width: 968px) {
  .sobre-content,
  .localizacao-content,
  .contato-content {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .diferenciais-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .plantas-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: calc(var(--spacing) * 4);
    text-align: center;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 calc(var(--spacing) * 2);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: calc(var(--spacing) * 2);
    right: calc(var(--spacing) * 2);
  }

  .sobre-gallery {
    grid-template-columns: 1fr;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.contato-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.plantas-grid-custom {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.planta-mosaico {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.planta-item {
  position: relative;
}

.planta-item img {
  width: 250px;
  border-radius: 8px;
  cursor: pointer;
  transition: .3s;
}

.planta-item img:hover {
  transform: scale(1.05);
}

.zoom-icon {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.6);
  padding: 6px;
  color: #fff;
  font-size: 16px;
  border-radius: 50%;
  cursor: pointer;
}

/* MODAL - começa escondido */
.modal-planta {
  display: none; /* <-- evita abrir sozinho! */
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-planta img {
  max-width: 85%;
  max-height: 85%;
  border-radius: 8px;
}

.close-modal {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 32px;
  color: white;
  cursor: pointer;
}
.planta-view {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

.planta-image img {
  width: 420px;
  border-radius: 8px;
  transition: .3s;
}

.planta-texto {
  max-width: 400px;
}

.planta-texto ul {
  margin: 15px 0;
  padding-left: 18px;
  line-height: 1.6;
}

.planta-botoes {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.btn-planta {
  padding: 8px 16px;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  background: #e5e5e5;
  transition: .3s;
}

.btn-planta.ativo {
  background: #2f6f45;
  color: #fff;
}

/* ✅ Responsivo */
@media (max-width: 768px) {
  .planta-view {
    flex-direction: column;
    text-align: center;
  }

  .planta-image img {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }

  .planta-texto {
    margin-top: 20px;
  }
}
.hero-logo {
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: 10;
}

.hero-logo img {
  width: 200px;
  height: auto;
}

/* ✅ Logo menor no celular */
@media (max-width: 768px) {
  .hero-logo img {
    width: 200px;
  }
}
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: #fff;
  font-size: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;     /* ✅ remove sublinhado */
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  transition: .3s;
  z-index: 999;
}

.whatsapp-btn:hover {
  transform: scale(1.08);
}

.modal {
  display: none; 
  position: fixed; 
  z-index: 1000; 
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
  padding-top: 60px;
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  position: relative;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #000;
}

/* Política de Privacidade Link */
.privacy-text {
  margin-top: 15px;
  font-size: 0.9rem;
  text-align: center;
}

#privacyLink {
  color: #007BFF;
  text-decoration: underline;
  cursor: pointer;
}

/* Responsividade do Formulário */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }
}.planta-texto ul {
  padding-left: 18px; /* garante o alinhamento com marcador */
  margin: 0;
}

.planta-texto li {
  list-style-position: outside;
  line-height: 1.4;
}

.hero-logo-center {
  position: absolute;
  top: 45%;         /* sobe o logo para perto do topo */
  left: 60%;        /* move um pouco para a direita */
  transform: translate(-50%, -50%);
  z-index: 8;
}

.hero-logo-center img {
  width: 400px;
  max-width: 70%;
}

/* Ícone da lupa sobre a imagem */
.planta-image {
  position: relative; /* permite o ícone ficar por cima */
}

.zoom-icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 24px;
  background: #ffffffd9;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.2s ease;
  user-select: none;
}

.zoom-icon:hover {
  background: #fff;
  transform: scale(1.1);
}

/* ===== Modal do zoom ===== */
.modalZoom {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(3px);
  justify-content: center;
  align-items: center;
}

/* Imagem ampliada */
.modalZoom-content {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 10px;
  display: block;
}

/* Botão fechar (X) */
.fecharZoom {
  position: absolute;
  top: 25px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.2s;
}

.fecharZoom:hover {
  color: #ff5b5b;
}

@media (max-width: 768px) {
  .hero-logo-center img {
    max-width: 200px;
    margin-left: 10px; /* distância leve da borda */
  }
}

@media (max-width: 480px) {
  .hero-logo-center img {
    max-width: 300px;
    margin-left: -50px;
  }
}

.hero-top-text {
  position: absolute;
  top: 70px;                    /* controla o quanto desce */
  left: 50%;                    /* centraliza com o logo central */
  transform: translateX(-50%);  /* corrige alinhamento */
  text-align: center;
  z-index: 30;
}

.hero-top-text h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(0,0,0,0.35);
  padding: 6px 16px;
  border-radius: 6px;
  backdrop-filter: blur(3px);
}

/* ✅ RESPONSIVO — evita sobrepor o logo do canto */
@media (max-width: 768px) {
  .hero-top-text {
    top: 85px;        /* desce um pouco mais */
    left: 50%;        /* mantém centralizado visualmente */
  }
  .hero-top-text h2 {
    font-size: 1.3rem;
   

  }
}

/* ✅ Se o logo no canto for muito próximo, empurramos ainda mais no mobile */
@media (max-width: 480px) {
  .hero-top-text {
    top: 100px;
  }
}
.hero-top-text {
  display: none; /* esconde no desktop */
}


/* ✅ SOMENTE MOBILE */
@media (max-width: 768px) {
  .hero-top-text {
    display: block;
    position: absolute;
    top: 85px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 30;
  }

  .hero-top-text h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.35);
        margin-left: 15px;
    margin-top: 20px;
    border-radius: 6px;
    backdrop-filter: blur(3px);
  }
}

/* Extra ajuste para telas muito pequenas */
@media (max-width: 480px) {
  .hero-top-text {
    top: 100px;
  }
}