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

body {
  background-color: #111;
  font-family: sans-serif;
  color: #eee;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 100;
}

.navbar {
  background-color: rgba(145, 145, 145, 0.2);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 1 rem;
}

.nav-links a {
  color: #eee;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ff9800;
  text-decoration: underline;
}

/* Adicionamos padding-top ao hero para compensar a navbar fixa */
.hero {
  background: url('hero-bg.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 12rem 2rem 5rem; /* Aumentamos o padding-top para 12rem */
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

/* Restante do CSS permanece igual */
.hero-content {
  max-width: 800px;
}

.logo-hero {
  margin-bottom: 1rem;
}

.logo-hero span {
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  color: #ddd;
  display: block;
}

.logo-hero img {
  height: 150px;
  margin-top: 0.5rem;
}

.hero h1 {
  font-size: 2.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
  font-weight: bold;
}

.hero p {
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: bold;
  color: #ddd;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background-color: #ff9800;
  color: #292f32;
  text-decoration: none;
  border-radius: 56px;
  font-weight: bold;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #fa5007;
  color: white;
}

/* Estilos melhorados da galeria */
.gallery {
  padding: 4rem 2rem;
  width: 100%;
  display: flex;
  justify-content: center;
  background: rgba(20, 20, 20, 1);
}

.gallery ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  width: 100%;
  max-width: 1200px;
}

.gallery img {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 1000ms;
}

.gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.gallery figure::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: rgba(0, 0, 0, 0.5);
  transform-origin: center;
  opacity: 0;
  transform: scale(2);
  transition: opacity 300ms;
}

.gallery figcaption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
  color: white;
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  z-index: 1;
  opacity: 0;
  transition: opacity 600ms, transform 600ms;
}

.gallery a:is(:hover, :focus) figure::after {
  opacity: 1;
}

.gallery a:is(:hover, :focus) figcaption {
  opacity: 1;
  transition: opacity 600ms;
}

/* Footer Styles */
.site-footer {
  background-color: #292f32;
  color: #eee;
  padding: 3rem 0 0;
  width: 100%;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-links {
  padding-bottom: 2rem;
}

.footer-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 5rem;
}

.footer-column {
  padding: 0 1rem;
}

.footer-title {
  color: #ff9800;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.footer-column p {
  margin-bottom: 0.8rem;
  line-height: 1.6;
  font-size: 0.9rem;
  color: #ccc;
}

.footer-link {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ff9800;
  text-decoration: underline;
}

.footer-column i {
  margin-right: 0.5rem;
  color: #ff9800;
}

.footer-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 1.5rem 0;
}

.footer-copyright {
  padding: 1rem 0 2rem;
}

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

.copyright-text {
  font-size: 0.85rem;
  color: #999;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  color: #ccc;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #ff9800;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-row {
      grid-template-columns: 1fr 1fr;
  }
  
  .copyright-row {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-row {
      grid-template-columns: 1fr;
  }
  
  .footer-column {
      padding: 0;
      margin-bottom: 1.5rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .gallery figcaption {
    transform: translate3d(0, 2rem, 0);
  }
  
  .gallery figure::after {
    border-radius: 50%;
    opacity: 1;
    transform: scale(0);
    transition: transform 900ms;
  }
  
  .gallery a:is(:hover, :focus) figure::after {
    transform: scale(2.5);
  }

  .gallery a:is(:hover, :focus) figcaption {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: opacity 600ms 400ms, transform 600ms 400ms;
  }

  .gallery a:is(:hover, :focus) img {
    transform: scale(1.2);
  }
}

@media (max-width: 1024px) {
  .gallery ul {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .gallery ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery ul {
    grid-template-columns: 1fr;
  }
  
  .hero {
    padding: 10rem 1.5rem 4rem; /* Ajuste para mobile */
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .navbar {
    padding: 1rem;
  }
  
  .nav-links {
    gap: 0.75rem;
  }
}