*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #f9faf7;
  color: #1a2e1a;
  overflow-x: hidden;
}

:root {
  --green-deep:   #1a3a1a;
  --green-mid:    #2d6a2d;
  --green-light:  #4a9e4a;
  --green-pale:   #d6ecd6;
  --green-bg:     #f0f7f0;
  --white:        #ffffff;
  --cream:        #f9faf7;
  --bark:         #8b6914;
  --text-dark:    #1a2e1a;
  --text-mid:     #3a5a3a;
  --text-light:   #6a8a6a;
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  background: rgba(26, 58, 26, 0.0);
  backdrop-filter: blur(0px);
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s;
}
nav.scrolled {
  background: rgba(26, 58, 26, 0.96);
  backdrop-filter: blur(12px);
  padding: 12px 60px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  text-decoration: none;
}
.nav-logo span { color: #7ec87e; }
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a:hover { color: #7ec87e; }
.nav-cta {
  background: var(--green-light);
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 4px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--green-mid) !important; color: #fff !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero-video-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--green-deep);
}
.hero-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero-vid.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,30,15,0.45) 0%, rgba(26,58,26,0.2) 100%
  );
}

.hero-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a3a1a 0%, #2d6a2d 50%, #1a3a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-placeholder svg {
  opacity: 0.12;
  width: 320px;
  height: 320px;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 860px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #7ec87e;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(126,200,126,0.4);
  padding-bottom: 8px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 24px;
  text-shadow: 2px 4px 10px rgba(0,0,0,0.7);
}
.hero-title em {
  font-style: normal;
  color: #7ec87e;
}
.hero-subtitle {
  font-size: clamp(15px, 2vw, 19px);
  color: rgba(255,255,255,0.95);
  font-weight: 400; 
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 2px 6px rgba(0,0,0,0.8);
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--green-light);
  color: #fff;
  padding: 16px 38px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background 0.25s, transform 0.2s;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3); 
}
.btn-primary:hover { background: var(--green-mid); transform: translateY(-2px); }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.8);
  color: #fff;
  padding: 14px 38px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600; 
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
  display: inline-block;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
  background: rgba(0,0,0,0.2); 
}
.btn-outline:hover {
  border-color: #7ec87e;
  background: rgba(126,200,126,0.2);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
.hero-scroll svg { width: 20px; height: 20px; filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.5)); }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

section { padding: 100px 60px; }
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 580px;
}

#sobre { background: #fff; }
.sobre-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.sobre-info { padding-right: 20px; }
.sobre-lista {
  list-style: none;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sobre-lista li {
  font-size: 16px;
  color: var(--green-deep);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sobre-lista li svg {
  width: 24px; height: 24px;
  color: var(--green-light);
  flex-shrink: 0;
}
.video-box {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(26,58,26,0.12);
  background: #000;
}
.video-box video {
  width: 100%;
  display: block;
  max-height: 550px;
  object-fit: cover;
}


#produtos {
  background: var(--cream);
}
.produtos-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 50px;
}
.produto-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(26,58,26,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.produto-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(26,58,26,0.12);
}
.produto-img {
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: #f0f0f0;
}
.produto-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.produto-card:hover .produto-img img {
  transform: scale(1.06);
}
.produto-info {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.produto-titulo {
  font-size: 18px;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.4;
  margin-bottom: 12px;
}
.produto-preco {
  font-size: 26px;
  font-weight: 800;
  color: var(--green-light);
  margin-bottom: 24px;
}
.produto-preco span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
}
.btn-comprar {
  margin-top: auto;
  background: #FFE600; 
  color: #2D3277; 
  border: none;
  padding: 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(255, 230, 0, 0.2);
}
.btn-comprar:hover {
  background: #e5cf00;
  transform: translateY(-2px);
}


#redirect-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 58, 26, 0.95);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
#redirect-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.redirect-content {
  text-align: center;
  color: #fff;
  padding: 40px;
}
.spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: #FFE600; /* Amarelo no loading */
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 24px;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}


#galeria {
  background: var(--green-deep);
  padding: 100px 0;
}
#galeria .section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}
#galeria .section-title { color: #fff; }
#galeria .section-label { color: #7ec87e; }
#galeria .section-desc { color: rgba(255,255,255,0.65); }

.carousel-wrapper {
  position: relative;
  margin-top: 52px;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
}
.carousel-slide {
  min-width: calc(33.333% - 14px);
  margin-right: 20px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.carousel-slide img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.carousel-slide:hover img { transform: scale(1.04); }
.slide-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(26,58,26,0.92));
  color: #fff;
  padding: 28px 20px 18px;
  font-size: 14px;
  font-weight: 500;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
.carousel-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.carousel-btn:hover { background: var(--green-light); border-color: var(--green-light); }
.carousel-dots {
  display: flex;
  gap: 8px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active { background: #7ec87e; transform: scale(1.3); }

#curiosidades {
  background: var(--green-bg);
}
.curiosidades-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.curiosidades-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 70px;
  align-items: end;
}
.curiosidades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.curio-card {
  background: #fff;
  border-radius: 16px; 
  padding: 40px 32px;
  border: 1px solid rgba(74,158,74,0.15); 
  border-top: 5px solid var(--green-light);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(26,58,26,0.04); 
}
.curio-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--green-pale), rgba(255,255,255,0));
  border-radius: 0 0 0 80px;
  opacity: 0.7;
  transition: transform 0.4s ease;
}
.curio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(26,58,26,0.12); 
  border-color: rgba(74,158,74,0.3);
}
.curio-card:hover::before {
  transform: scale(1.5);
}
.curio-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--green-pale), #e2f2e2);
  border-radius: 50%; 
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(74,158,74,0.15);
  transition: transform 0.3s ease;
}
.curio-card:hover .curio-icon {
  transform: scale(1.1) rotate(5deg);
}
.curio-icon svg { width: 28px; height: 28px; color: var(--green-mid); }
.curio-number {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  font-weight: 700;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 8px;
}
.curio-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 12px;
}
.curio-text {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.7;
}

#contato {
  background: #fff;
}
.contato-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contato-info h2 { margin-bottom: 20px; }
.contato-info .section-desc { margin-bottom: 40px; }
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.info-icon {
  width: 44px; height: 44px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 22px; height: 22px; color: var(--green-mid); }
.info-text strong { display: block; font-size: 14px; color: var(--green-deep); margin-bottom: 3px; }
.info-text span { font-size: 14px; color: var(--text-light); }

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid #d6e8d6;
  border-radius: 6px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(74,158,74,0.12);
}
.form-group textarea { height: 120px; }
.btn-form {
  background: var(--green-mid);
  color: #fff;
  border: none;
  padding: 16px 36px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.25s, transform 0.2s;
  align-self: flex-start;
  width: 100%;
}
.btn-form:hover { background: var(--green-deep); transform: translateY(-2px); }
.form-success {
  display: none;
  background: var(--green-pale);
  border: 1.5px solid var(--green-light);
  border-radius: 8px;
  padding: 20px 24px;
  color: var(--green-deep);
  font-size: 15px;
  text-align: center;
}

#localizacao {
  padding: 0;
  background: var(--green-bg);
}
.localizacao-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  min-height: 520px;
}
.localizacao-info {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.localizacao-info .section-title { margin-bottom: 16px; }
.localizacao-info .section-desc { margin-bottom: 36px; }
.address-block {
  background: #fff;
  border-radius: 10px;
  padding: 24px 28px;
  border-left: 4px solid var(--green-light);
}
.address-block p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
}
.address-block strong { color: var(--green-deep); display: block; margin-bottom: 4px; }
#map-frame {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: none;
  display: block;
  filter: saturate(0.85);
}

footer {
  background: var(--green-deep);
  color: rgba(255,255,255,0.7);
  padding: 52px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.footer-logo span { color: #7ec87e; }
footer p { font-size: 13px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-links a:hover { color: #7ec87e; }

.whatsapp-float {
  position: fixed;
  bottom: 36px;
  left: 28px;
  z-index: 999;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(0,0,0,0.4); }
.whatsapp-float svg { width: 36px; height: 36px; fill: #fff; }
.wa-tooltip {
  position: absolute;
  left: 72px;
  bottom: 50%;
  transform: translateY(50%);
  background: #333333;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

@media (max-width: 1024px) {
  section { padding: 80px 40px; }
  nav { padding: 16px 40px; }
  nav.scrolled { padding: 10px 40px; }
  .sobre-inner { grid-template-columns: 1fr; gap: 40px; }
  .curiosidades-header { grid-template-columns: 1fr; gap: 24px; }
  .curiosidades-grid { grid-template-columns: 1fr 1fr; }
  .contato-inner { grid-template-columns: 1fr; gap: 50px; }
  .localizacao-inner { grid-template-columns: 1fr; }
  .localizacao-info { padding: 60px 40px; }
  #map-frame { min-height: 380px; }
  footer { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  section { padding: 70px 24px; }
  nav { padding: 14px 24px; }
  nav.scrolled { padding: 10px 24px; }
  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26,58,26,0.98);
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }
  .nav-links.open a { font-size: 22px; }
  .nav-toggle { display: flex; z-index: 1001; }
  .hero-title { font-size: 42px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .carousel-slide { min-width: calc(80% - 10px); }
  .curiosidades-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .localizacao-info { padding: 50px 24px; }
  footer { padding: 40px 24px; }
  footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
  .video-box video { max-height: 350px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-scroll { animation: none; }
}
