/* ============================================================
   1. RESET & DEFINIÇÕES GERAIS
   ============================================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f7f7f7;
  color: #222;
}

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

/* ============================================================
   2. CONTAINERS E UTILITÁRIOS
   ============================================================ */

.container,
.sobre-container,
.container-contato {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

section {
  padding: 60px 0;
}

section h2 {
  font-weight: 800;
  padding-top: 30px;
}

.section-mini {
  text-align: center;
  padding: 20px 0;
  background: #f4b400;
  font-weight: 600;
  width: 100%;
}

.section-desc {
  background: #f4b400;
  color: black;
  padding: 15px 0;
  text-align: center;
  width: 100%;
}

/* ============================================================
   3. HEADER & NAVEGAÇÃO
   ============================================================ */

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #f4b400;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  z-index: 999;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  color: white;
}

.nome {
  color: black;
}

.logo img {
  width: 35px;
}

nav ul {
  display: flex;
  gap: 35px;
  list-style: none;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: 0.3s;
}

nav a:hover {
  color: black;
}

/* ============================================================
   4. HERO (BANNER INICIAL)
   ============================================================ */

.hero {
  height: 100vh;
  background: url("img/banner.png") center/cover no-repeat fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  max-width: 700px;
  z-index: 2;
}

.tag {
  color: #f4b400;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 70px;
  font-weight: 800;
}

.hero span {
  color: #f4b400;
}

.desc {
  margin-top: 20px;
  opacity: 0.9;
}

/* ============================================================
   5. BOTÕES
   ============================================================ */

.hero-buttons {
  margin-top: 30px;
}

.btn {
  padding: 15px 35px;
  border-radius: 40px;
  margin: 10px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: 0.3s;
}

.yellow {
  background: #f4b400;
  color: black;
}

.outline {
  border: 2px solid white;
  color: white;
}

.btn:hover {
  transform: translateY(-3px);
}

/* ============================================================
   6. SOBRE
   ============================================================ */

.sobre-container {
  display: flex;
  align-items: center;
  gap: 80px;
}

.sobre-img {
  flex: 1;
}

.sobre-img img {
  max-width: 500px;
  border-radius: 30px;
  box-shadow: -20px 20px 0 #f4b400;
}

.sobre-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sobre-text p {
  max-width: 500px;
  line-height: 1.6;
  margin: 20px auto;
}

/* ============================================================
   7. PARCERIAS
   ============================================================ */

.parcerias {
  text-align: center;
  background: #ffffc5;
  padding: 60px 0;
}

.parcerias .section-desc {
  background: transparent;
}

.roleta {
  overflow: hidden;
  margin-top: 50px;
  background: white;
}

.roleta-track {
  display: flex;
  gap: 80px;
  align-items: center;
}

.roleta-track img {
  width: 190px;
  height: 90px;
  object-fit: contain;
  background: white;
  padding: 10px;
  border-radius: 10px;
  transition: 0.3s;
}

.roleta-track img:hover {
  transform: scale(1.15);
}

/* ============================================================
   8. GALERIA
   ============================================================ */

.galeria {
  text-align: center;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.galeria-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 350px;
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.galeria-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.8));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
}

.galeria-overlay span {
  background: #f4b400;
  color: black;
  font-weight: 800;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 5px;
  margin-bottom: 8px;
  width: fit-content;
}

.galeria-overlay p {
  color: white;
  font-weight: 600;
  font-size: 18px;
}

.galeria-item:hover img {
  transform: scale(1.1);
}

/* Card Social Consultar Preços */

.galeria-card-social {
  background: #f4b400;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.social-content {
  max-width: 250px;
}

.social-content h4 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.social-content .btn {
  background: black;
  color: white;
  border-radius: 30px;
  padding: 12px 25px;
  margin-top: 20px;
}

/* ============================================================
   9. CONTATO & LOCALIZAÇÃO
   ============================================================ */

.contato {
  text-align: center;
}

.contato h4 {
  font-weight: 500;
  margin-bottom: 40px;
  color: #555;
}

.container-contato {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
  align-items: start;
}

.container-contato iframe {
  width: 100%;
  height: 350px;
  border-radius: 10px;
  border: none;
}

.info-contato {
  display: flex;
  flex-direction: column;
  gap: 25px;
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  align-items: flex-start;
  text-align: left;
}

.item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  text-align: left;
}

.item img {
  width: 35px;
  height: 35px;
  min-width: 35px;
  object-fit: contain;
}

.item a {
  text-decoration: none;
  color: #222;
}

.hora {
  background: #f4b400;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ============================================================
   10. RODAPÉ & VOLTAR AO TOPO
   ============================================================ */

footer {
  background: black;
  color: white;
  text-align: center;
  padding: 25px;
  margin-top: 60px;
}

.suba {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #f4b400;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
  z-index: 999;
}

.suba:hover {
  transform: scale(1.1);
}

.suba img {
  width: 25px;
}

/* ============================================================
   11. RESPONSIVIDADE (MEDIA QUERIES)
   ============================================================ */

/* ============================================================
   RESPONSIVIDADE
   ============================================================ */

/* TABLET */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
  }

  nav ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .hero {
    padding: 20px;
    text-align: center;
  }

  .hero h1 {
    font-size: 40px;
  }

  .sobre-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .galeria-grid {
    grid-template-columns: 1fr 1fr;
  }

  .container-contato {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* CELULAR */
@media (max-width: 480px) {
  header {
    padding: 15px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .hero {
    height: auto;
    padding: 80px 20px;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .hero-content {
    max-width: 100%;
  }

  .sobre-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .sobre-img img {
    max-width: 100%;
    box-shadow: 0 10px 0 #f4b400;
  }

  .galeria-grid {
    grid-template-columns: 1fr;
  }

  .container-contato {
    grid-template-columns: 1fr;
  }

  .info-contato {
    align-items: center;
    text-align: center;
  }

  .item {
    justify-content: center;
  }
}
