* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
}


/* Links */
a {
  text-decoration: none;
  color: inherit;
}


img {
  max-width: 100%;
  height: auto;
  display: block;
}

header {
  background-color: #000;
  padding: 30px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
    position: relative;
      top: 0;
      z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}


header .logo {
  height: 100px;
  width: auto;
}


/* Menu de Navegação */
nav {
  display: flex;
  gap: 30px;
}


nav a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 15px;
  transition: all 0.3s ease;
  border-radius: 5px;
}


nav a:hover {
  background-color: #c41e1e;
  transform: translateY(-2px);
}


/* ========== SEÇÃO SOBRE ========== */
.sobre {
  padding: 80px 50px;
  background-color: #f5f5f5;
}


.sobre-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}


/* Imagens laterais */
.sobre-imagem {
  flex: 1;
  max-width: 300px;
}


.sobre-imagem img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}


/* Texto central */
.sobre-texto {
  flex: 2;
  text-align: center;
  padding: 0 30px;
}


.sobre-texto h2 {
  font-size: 32px;
  color: #c41e1e;
  margin-bottom: 20px;
}


.sobre-texto p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #333;
}


.sobre-texto strong {
  color: #c41e1e;
  font-size: 24px;
}


/* Responsivo */
@media (max-width: 768px) {
  .sobre-container {
    flex-direction: column;
  }
  
  .sobre-imagem {
    max-width: 100%;
  }
}


/* ========== SEÇÃO HERO ========== */
.hero {
  height: 100vh;
  background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('11.jpg');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-content {
  max-width: 800px;
  padding: 40px;
  background-color: rgba(0,0,0,0.6);
  border-radius: 15px;
  backdrop-filter: blur(5px);
}


.hero h1 {
  font-size: 72px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
}


.hero p {
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 300;
}


.btn-cta {
  display: inline-block;
  padding: 18px 40px;
  background-color: #c41e1e;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(196,30,30,0.4);
}


.btn-cta:hover {
  background-color: #a01818;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(196,30,30,0.6);
}


.galeria {
  padding: 80px 50px;
  background-color: #fff;
  text-align: center;
}


.galeria h2 {
  font-size: 36px;
  color: #c41e1e;
  margin-bottom: 10px;
}


.galeria > p {
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
}


.galeria-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}


.galeria-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}


.galeria-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}


/* Responsivo */
@media (max-width: 768px) {
  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 480px) {
  .galeria-grid {
    grid-template-columns: 1fr;
  }
}


/* ========== SEÇÃO HORÁRIOS ========== */
.horarios {
  padding: 80px 50px;
  background-color: #f5f5f5;
  text-align: center;
}


.horarios h2 {
  font-size: 36px;
  color: #c41e1e;
  margin-bottom: 10px;
}


.horarios > p {
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
}


.horarios-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}


.horario-card {
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}


.horario-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(196,30,30,0.3);
}


.horario-card h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}


.horario-card p {
  font-size: 16px;
  color: #666;
  margin: 10px 0;
}


.horarios-cta {
  margin-top: 40px;
}


.horarios-cta p {
  font-size: 20px;
  margin-bottom: 20px;
  color: #333;
}


/* Responsivo */
@media (max-width: 992px) {
  .horarios-container {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 576px) {
  .horarios-container {
    grid-template-columns: 1fr;
  }
}


/* ========== FOOTER ========== */
footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 60px 50px 30px;
}

/* ADICIONADO: Seção de Redes Sociais */
.footer-redes {
  text-align: center;
  margin-bottom: 50px;
}

.footer-redes h2 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 30px;
}

.redes-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}


.rede-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: #2a2a2a;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-size: 14px;
  min-width: 140px;
  justify-content: center;
}


.rede-icon span {
  font-size: 18px;
}


.rede-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}


.rede-icon.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}


.rede-icon.whatsapp:hover {
  background-color: #25D366;
}

/* ADICIONADO: Container das colunas */
.footer-colunas {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-coluna {
  text-align: center;
}


.footer-coluna h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #c41e1e;
}


.footer-coluna p {
  font-size: 14px;
  line-height: 1.8;
  color: #ccc;
  margin: 8px 0;
}

/* ADICIONADO: Estilo para address */
.footer-coluna address {
  font-style: normal;
}

.footer-coluna a {
  color: #ccc;
  transition: color 0.3s ease;
}


.footer-coluna a:hover {
  color: #c41e1e;
}


.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
  text-align: center;
}


.footer-bottom p {
  font-size: 14px;
  color: #999;
}


/* Responsivo Footer */
@media (max-width: 992px) {
  .footer-colunas {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 576px) {
  .footer-colunas {
    grid-template-columns: 1fr;
  }
  
  .redes-icons {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-redes h2 {
    font-size: 22px;
  }
}

