/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  /* mantém estilo das letras */
}

body {
  background: #f8f9fa;
  color: #333;
}

/* HEADER */
header {
  width: 100%;
}


/* TOPO SUPERIOR */
.topo-superior {
  background: #222;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 40px;
  flex-wrap: wrap;
}

.topo-superior .logo img {
  max-height: 90px;
}

.info-contato {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.info-contato i {
  margin-right: 6px;
  color: #FFD700;
}

.info-contato a {
  padding: 3px 6px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.info-contato a:hover {
  background-color: #f1c40f;
  /* amarelo de destaque */
  color: #000;
  /* muda cor da fonte para contraste */
}

.social a {
  margin-left: 15px;
  color: #FFD700;
  font-size: 1.2rem;
  transition: 0.3s;
}

.social a:hover {
  color: #fff;
}

/* MENU INFERIOR */
.menu {
  background: #f5f5f5;
  padding: 12px 0;
  border-top: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #222;
  font-weight: bold;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #003366;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 5px;
}

/* HERO (IMAGEM PRINCIPAL grudada no menu) */
.hero {
  margin: 0;
  padding: 0;
  line-height: 0;
}

.hero img {
  width: 100%;
  height: 90vh;
  /* ocupa quase a tela */
  object-fit: cover;
  /* corta mantendo proporção */
  display: block;
}



/* TEXTO ABAIXO DA IMAGEM */
.hero-texto {
  text-align: center;
  padding: 40px 20px;
  background: #f8f9fa;
  color: #003366;
}

.hero-texto h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero-texto p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #FFD700;
  color: #003366;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #ffc107;
}

/* PRODUTOS */
.produtos {
  padding: 60px 20px;
  text-align: center;
}

.grid-produtos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Sempre 3 por linha */
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  border-radius: 8px;
}

.card h3 {
  margin: 15px 0 5px;
  color: #003366;
}

.card span {
  display: block;
  margin: 10px 0;
  font-weight: bold;
  color: #FFD700;
}

.btn-comprar {
  display: inline-block;
  background: #003366;
  /* azul escuro */
  color: #fff;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  /* importante para links */
  text-align: center;
  transition: background 0.3s, transform 0.2s;
}

.btn-comprar:hover {
  background: #0055aa;
  /* azul mais claro */
  transform: scale(1.05);
  /* efeito de leve zoom */
}

/* Responsividade */
@media (max-width: 900px) {
  .grid-produtos {
    grid-template-columns: repeat(2, 1fr);
    /* Tablet → 2 por linha */
  }
}

@media (max-width: 600px) {
  .grid-produtos {
    grid-template-columns: 1fr;
    /* Celular → 1 por linha */
  }
}

.aviso {
  background: #c8c6c6a8;
  /* amarelo claro */
  border: 1px solid #000000;
  border-radius: 8px;
  padding: 15px;
  margin: 30px auto;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  max-width: 900px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.aviso i {
  color: #f1c40f;
  margin-right: 8px;
  font-size: 1.2rem;
}

/* SOBRE */
.sobre {
  padding: 60px 20px;
  text-align: center;
  background: #e9ecef;
}

/* SLIDER SOBRE NÓS */
.slider {
  position: relative;
  max-width: 600px;
  margin: 30px auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  display: none;
  border-radius: 10px;
}

.slide.active {
  display: block;
}

.slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 2rem;
  border-radius: 50%;
}

.slider .prev {
  left: 10px;
}

.slider .next {
  right: 10px;
}

@media (max-width: 768px) {
  .slider {
    max-width: 90%;
  }

  .slide {
    max-height: 220px;
  }
}

/* CONTATO */
.contato {
  padding: 60px 20px;
  text-align: center;
}

.contato h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #003366;
}

.contato-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.contato-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  background: #25D366;
  /* WhatsApp verde para o WA, pode usar azul escuro para telefone */
  padding: 10px 20px;
  border-radius: 50px;
  /* deixa arredondado */
  transition: 0.3s;
}

.contato-link:first-child {
  background: #003366;
  /* cor diferente para o telefone */
}

.contato-link i {
  font-size: 1.5rem;
}

.contato-link:hover {
  opacity: 0.8;
}

.mapa h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  color: #003366;
}

.mapa iframe {
  width: 100%;
  max-width: 900px;
  height: 350px;
  border: 0;
  border-radius: 10px;
  margin: auto;
  display: block;
}


/* FOOTER */
footer {
  background: #003366;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 30px;
}

/* por padrão (desktop/notebook) a faixa não aparece */
.faixa-infos {
  display: none;
}

/* MOBILE - ajustes topo e hero */
@media (max-width: 768px) {

  /* topo só com logo centralizada */
  .topo-superior {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px;
  }

  /* esconde infos e redes do topo */
  .info-contato,
  .social {
    display: none;
  }

  /* cria faixa preta curta para infos */
  .faixa-infos {
    display: block;
    background: #000;
    color: #fff;
    font-size: 0.75rem;
    /* menor para caber em 1-2 linhas */
    text-align: center;
    padding: 5px 7px;
    line-height: 1.3;
  }

  .faixa-infos span {
    display: inline-block;
    /* lado a lado, quebra se faltar espaço */
    margin: 2px 6px;
  }
}

/* MOBILE - remover espaço fantasma */
@media (max-width: 768px) {
  body, html {
    margin: 0;
    padding: 0;
  }

  header, nav, .topo-superior {
    margin: 0;
    padding: 0;
  }

  .faixa-infos {
    margin: 0;
    padding: 5px 10px;
  }

  .hero {
    margin: 0;
    padding: 0;
  }

  .hero img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
  }
}

/* Botão hamburguer só aparece no mobile */
.menu-btn {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* menu lateral escondido */
.menu-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0,0,0,0.3);
  transition: right 0.3s ease-in-out;
  z-index: 1000;
  padding: 20px;
}

.menu-mobile ul {
  list-style: none;
  padding: 0;
}

.menu-mobile ul li {
  margin: 20px 0;
}

.menu-mobile ul li a {
  text-decoration: none;
  font-size: 1.2rem;
  color: #000;
}

/* botão fechar */
.fechar-menu {
  font-size: 1.5rem;
  background: none;
  border: none;
  float: right;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {
  .menu-btn {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
  }

  /* esconde menu desktop */
  .nav-links {
    display: none;
  }
}

/* quando ativo */
.menu-mobile.ativo {
  right: 0;
}

/* MOBILE */
@media (max-width: 768px) {
  .menu {
  padding: 0;
  border-top: none;
  border-bottom: none;
}

  .faixa-infos {
    margin: 0;
    padding: 5px 10px;
  }

  .hero {
    margin: 0;         /* tira margens */
    padding: 0;        /* tira espaçamento interno */
  }

  .hero img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
  }
}





