:root {
  --cor-clara: #fefdeb;
  --cor-1: #c2c7aa;
  --cor-2: #867606;
  --cor-3: #747c47;
  --cor-escura: #3a4a14;
  --sombra: 0 4px 12px rgba(58, 74, 20, 0.15);
  --transicao: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--cor-clara);
  color: var(--cor-escura);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Scroll Animation */
.hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.show {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Header/Nav sem posição fixa */
header {
  background-color: var(--cor-clara);
  color: var(--cor-escura);
  padding: 1.5rem 2rem;
  box-shadow: var(--sombra);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo i {
  color: var(--cor-2);
}

/* Navegação */
nav {
  display: flex;
  gap: 2rem;
}

nav a {
  color: var(--cor-escura);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transicao);
}

nav a:hover {
  color: var(--cor-2);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--cor-2);
  transition: var(--transicao);
}

nav a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(58, 74, 20, 0.7), rgba(58, 74, 20, 0.7)),
              url('{% static "img/hero.jpg" %}') no-repeat center center/cover;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--cor-clara);
  padding: 0 2rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  background-color: var(--cor-2);
  color: var(--cor-clara);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transicao);
  border: 2px solid var(--cor-2);
}

.btn:hover {
  background-color: transparent;
  color: var(--cor-2);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Seções */
section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--cor-2);
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 0px;
  height: 4px;
  background-color: var(--cor-3);
  margin: 1rem auto;
}

/* Sobre os Parques */
#sobre {
  background-color: white;
  border-radius: 10px;
  box-shadow: var(--sombra);
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.sobre-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.sobre-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--sombra);
}

.sobre-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transicao);
}

.sobre-img:hover img {
  transform: scale(1.05);
}

/* Parques */
#parques {
  background-color: var(--cor-clara);
}

.parques-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.parque-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--sombra);
  transition: var(--transicao);
}

.parque-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(58, 74, 20, 0.2);
}

.card-img {
  height: 250px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transicao);
}

.parque-card:hover .card-img img {
  transform: scale(1.1);
}

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  color: var(--cor-escura);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.card-content .localizacao {
  color: var(--cor-3);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-content .detalhes {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
}

.detalhe-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.detalhe-item i {
  color: var(--cor-2);
}

.card-link {
  color: var(--cor-2);
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transicao);
  margin-top: 1rem;
}

.card-link:hover {
  color: var(--cor-escura);
  gap: 1rem;
}

/* Contato */
#contato {
  background-color: var(--cor-1);
  color: var(--cor-escura);
}

.contato-info h3 {
  color: var(--cor-escura);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.contato-info p {
  margin-bottom: 1rem;
}

.contato-info ul {
  list-style: none;
  margin-top: 2rem;
}

.contato-info li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contato-info i {
  color: var(--cor-2);
  font-size: 1.2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--cor-3);
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.8);
  transition: var(--transicao);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cor-2);
  box-shadow: 0 0 0 3px rgba(134, 118, 6, 0.2);
}

.form-btn {
  background-color: var(--cor-2);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transicao);
}

.form-btn:hover {
  background-color: var(--cor-escura);
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--cor-escura) 0%, var(--cor-3) 100%);
  color: var(--cor-clara);
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.video-wrapper {
  padding: 56.25% 0 0 0;
  position: relative;
  height: 100%;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.top-logo {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 2;
  text-align: center;
}

.top-logo h2 {
  color: white;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  font-size: 2.5rem;
  margin: 0;
}

.hero-content {
  position: absolute;
  bottom: 10%;
  left: 0;
  width: 100%;
  z-index: 1;
  text-align: center;
  padding: 0 20px;
}

.hero-content h1 {
  color: white;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  font-size: 2.5rem;
  margin: 0;
  text-transform: uppercase;
}

/* Responsivo */
@media (max-width: 768px) {
  .hero {
    height: 60vh;
  }

  .top-logo h2,
  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content {
    bottom: 5%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .top-logo h2,
  .hero-content h1 {
    font-size: 2rem;
  }
}

/* Media Queries para layout responsivo */
@media (min-width: 768px) {
  .sobre-content {
      flex-direction: row !important;
      align-items: center;
      gap: 50px !important;
  }
  
  .text-content {
      flex: 1;
      order: 1 !important;
  }
  
  .sobre-img {
      flex: 1;
      order: 2 !important;
      max-width: none !important;
  }
}

/* Animações para os elementos hidden */
.hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hidden.delay-1 {
    transition-delay: 0.2s;
}

.hidden.delay-2 {
    transition-delay: 0.4s;
}

.hidden.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fundo branco e texto escuro para leitura */
footer {
    background-color: #fff !important;
    color: hsla(0, 56%, 98%, 0.944) !important;
}

.footer-title {
    color: hsla(0, 22%, 96%, 0.9);
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-link, .social-icon {
    color: hsla(142, 31%, 95%, 0.996);
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover, .social-icon:hover {
    color: hsl(168, 38%, 97%) !important;
}

/* Responsividade */
@media (max-width: 768px) {
  .footer-content {
      flex-direction: column;
      gap: 30px !important;
  }
  
  .footer-col {
      min-width: 100% !important;
  }
}

/* Animações */
.hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hidden.delay-1 {
    transition-delay: 0.2s;
}

.hidden.delay-2 {
    transition-delay: 0.4s;
}

.hidden.visible {
    opacity: 1;
    transform: translateY(0);
}

.hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.hidden.show {
  opacity: 1;
  transform: translateY(0);
}

.zoom-hidden {
  transform: scale(0.95);
  opacity: 0;
  transition: all 0.5s ease;
}

.zoom-on-scroll {
  transform: scale(1);
  opacity: 1;
}

/* Responsividade por tamanho de tela */
@media (max-width: 768px) {
  .gallery-img {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .gallery-img {
    height: 200px;
  }
}

.card-content {
  padding: 20px;
  font-family: 'Arial', sans-serif;
}

.card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.card-content p.localizacao {
  display: flex;
  align-items: center;
  font-weight: bold;
  margin-bottom: 10px;
  color: #555;
}

.card-content p.localizacao i {
  margin-right: 6px;
  color: #867606;
}

.card-content p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

.detalhes {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
}

.detalhe-item {
  display: flex;
  align-items: center;
  font-size: 0.93rem;
  color: #333;
}

.detalhe-item i {
  margin-right: 8px;
  color: #867606;
  min-width: 20px;
}
 .social-links {
      display: flex;
      gap: 15px;
    }

    .social-links a {
      font-size: 24px;
      color: hsl(0, 33%, 96%);
    }

    @media (max-width: 768px) {
      .social-links {
        flex-direction: column;
        align-items: center;
        justify-content: center;
      }
    }
    .detalhes {
  display: flex;
  flex-direction: column;
  gap: 8px; /* espaçamento entre os itens */
}

.detalhe-item {
  display: flex;
  align-items: center;
  gap: 8px; /* espaçamento entre o ícone e o texto */
}
