/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100vw;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #c2c7aa;
}

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

/* Containers e Layouts */
.container, 
.park-description, 
.park-features, 
.gallery-grid, 
.activities-grid, 
.visit-info, 
.footer-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  text-decoration: none;
  color: #5a6e32;
  transition: all 0.3s ease;
}

a:hover {
  color: #4a5a29;
}

/* Títulos */
.section-title {
  font-size: 2.5rem;
  color: #5a6e32;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: transparent;
}

/* Header */
.header {
  background-color: #5a6e32;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  color: #4a5a29;
}

.logo-img {
  height: 40px;
  margin-right: 10px;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.nav-item {
  margin-left: 1.5rem;
}

.nav-link {
  color: #4a5a29;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #4a5a29;
  transition: all 0.3s ease;
}

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

/* Hero Section */
.hero {
  height: 60vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: #4a5a29;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 3rem;
  width: 100%;
  text-align: center;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Park Info */
.park-info {
  padding: 4rem 0;
}

.park-description {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.description-text p {
  font-size: 1.1rem;
}

.description-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.park-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-card {
  background-color: #4a5a29;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: #5a6e32;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a5a29;
  font-size: 1.5rem;
}

.feature-info {
  display: flex;
  flex-direction: column;
}

.feature-value {
  font-weight: 700;
  font-size: 1.1rem;
}

.feature-label {
  font-size: 0.9rem;
  color: #666;
}

/* Gallery Section */
.park-gallery {
  padding: 4rem 0;
  background-color: #4a5a29;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  height: 250px;
}

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

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

/* Carrossel Galeria */
#carouselGaleria {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

#carouselGaleria .gallery-img {
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

#carouselGaleria:hover .gallery-img {
  transform: scale(1.02);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
}

/* Activities Section */
.park-activities {
  padding: 4rem 0;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.activity-card {
  background-color: #4a5a29;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.activity-card:hover {
  transform: translateY(-5px);
}

.activity-title {
  color: #5a6e32;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.activity-description {
  font-size: 1rem;
  margin-bottom: 0;
}

/* Visit Info Section */
.park-visit {
  padding: 4rem 0;
  background-color: #4a5a29;
}

.visit-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.visit-card {
  background-color: #c2c7aa;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.visit-title {
  color: #5a6e32;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.visit-text {
  margin-bottom: 0;
}

/* Map Section */
.park-map {
  padding: 4rem 0;
}

.map-container {
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background-color: #e9e9e9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #666;
}

/* Footer */
.footer {
  background-color: #5a6e32;
  color: #4a5a29;
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-info p {
  margin-bottom: 0.5rem;
}

.footer-nav-list {
  list-style: none;
}

.footer-nav-item {
  margin-bottom: 0.5rem;
}

.footer-nav-link {
  color: #4a5a29;
}

/* Responsividade */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  #carouselGaleria .gallery-img {
    max-height: 500px;
  }
}

@media (max-width: 768px) {
  .park-description {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  #carouselGaleria {
    max-width: 95%;
  }

  #carouselGaleria .gallery-img {
    max-height: 400px;
  }
}

@media (max-width: 576px) {
  #carouselGaleria .gallery-img {
    max-height: 300px;
  }
}
