/* ========== RESET ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

/* ========== VARIÁVEIS ========== */
:root {
  --primary-color: #00374e;
  --secondary-color: #ffd700;
  --text-color: #333;
  --white: #fff;
  --max-width: 1100px;
}

/* ========== CONTAINER GLOBAL ========== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

/* ========== HEADER / NAVBAR ========== */
.header {
  background: var(--primary-color);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  padding: 1rem 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
}

.logo-img {
  display: block;
  height: 100px;
  width: auto;
}

@media (max-width: 480px) {
  .logo-img {
    height: 65px;
  }
}

/* Menu padrão */
.menu-nav {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.menu-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.menu-link:hover,
.menu-link.active {
  color: var(--secondary-color);
  font-weight: 600;
}

/* Botão do menu mobile */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
}

/* Menu Mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .menu-nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: var(--primary-color);
    flex-direction: column;
    width: 200px;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0 0 10px 10px;
    display: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.3s ease forwards;
  }

  .menu-nav.active {
    display: flex;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* ========== HERO ========== */
.hero {
  background: url("imgs/BG\ 3.jpg") center/cover no-repeat var(--primary-color);
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 1rem;
}

.hero-title {
  font-size: 2rem;
  font-weight: 600;
}

.hero-subtitle {
  font-size: 1rem;
  margin-top: 0.5rem;
  font-weight: 400;
}

.hero-small {
  height: 150px;
}

/* Responsividade Hero */
@media (max-width: 768px) {
  .hero {
    height: 180px;
    padding: 0.5rem;
  }
  .hero-title {
    font-size: 1.5rem;
  }
}

/* ========== MAIN CONTENT ========== */
.main-content {
  padding: 2rem 0;
}

.section-title {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: center;
}

.content-section {
  margin-bottom: 2rem;
}

.content-section p {
  text-align: justify;
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }
  .content-section p {
    font-size: 0.95rem;
  }
}

/* ========== HORÁRIOS ========== */
.schedule {
  margin-top: 2rem;
  text-align: center;
}

.schedule-list {
  list-style: none;
  max-width: 600px;
  margin: 2rem auto 0;
  padding: 0;
}

.schedule-list li {
  background: #f4f4f4;
  margin-bottom: 0.8rem;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
  color: var(--text-color);
  text-align: left;
  transition: background 0.3s ease;
}

.schedule-list li strong {
  color: var(--primary-color);
}

.schedule-list li:hover {
  background: #e9f5f8;
}

/* ========== REDES SOCIAIS ========== */
.social-section {
  margin-top: 2rem;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-card img {
  width: 70px;
  height: 70px;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
}

.social-card span {
  font-size: 1rem;
  font-weight: 500;
}

.social-card:hover img {
  transform: scale(1.1);
}

.social-card:hover {
  color: var(--secondary-color);
}

/* Responsividade Social */
@media (max-width: 480px) {
  .social-card img {
    width: 60px;
    height: 60px;
  }
  .social-card span {
    font-size: 0.9rem;
  }
}

/* ========== LOCALIZAÇÃO ========== */
.location-section {
  margin-top: 2rem;
  text-align: center;
}

.location-description {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1rem;
  color: var(--text-color);
}

.map-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border: 2px solid var(--primary-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
}

@media (max-width: 768px) {
  .map-container iframe {
    height: 300px;
  }
}

/* ========== FOOTER ========== */
.footer {
  background: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}
