@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@400;500;600;700&display=swap');
/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Cabin", sans-serif;
}

body {
  background: linear-gradient(135deg, #0a0a1a, #1c1c3c);
  color: #f4f4f9;
  text-align: center;
  min-height: 100vh;
  padding-top: 95px; /* espaço pro header fixo */
  font-family: "Cabin", sans-serif;
}
section {
  scroll-margin-top: 115px;
}

/* Cabeçalho */
header {
  background: linear-gradient(90deg, #0059ffc0, #5f95c198);
  color: white;
  padding: 10px 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  position: fixed;   /* Fixa no topo */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  text-align: center;
}

header img {
  height: 80px;   /* Logo pequena */
  margin-right: 10px;
  vertical-align: middle;
}

header a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}
#Inicio {
  scroll-margin-top: 110px; /* altura do header */
}
/* Slideshow */
.slideshow-container {
  
  width: 99%;
  height: calc(100vh - 95px);
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 12px;     /* opcional, arredondar bordas */
  box-shadow: 0 6px 20px rgba(0,0,0,0.4); /* opcional */

}

.slide img {
  width: 100%;
  height: 100%;
  text-align: center;
  align-items: center;
  object-fit: cover; /* cobre toda a tela sem distorcer */
  border-radius: 0;  /* remove arredondamento para ocupar toda tela */
}

.fade {
  animation: fadeEffect 1.5s;
}

@keyframes fadeEffect {
  from {opacity: 0.4;}
  to {opacity: 1;}
}

/* Tópicos */
.topics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 30px; /* espaçamento até a borda */
  justify-items: center;
}

.topic {
  background: linear-gradient(135deg, #8A2BE2, #00AEEF);
  color: white;
  text-align: center;
  padding: 20px;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.3);
  font-size: 1rem;
  transition: transform 0.2s ease-in-out, background 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.navbar {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #00AEEF;
}

/* Botão hambúrguer */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Imagens dos tópicos tamanho fixo */
.topic img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}
.social-icon {
  font-size: 2rem;       /* tamanho do ícone */
  color: #E1306C;        /* cor oficial do Instagram */
  margin: 10px;
  transition: transform 0.3s, color 0.3s;
}

.social-icon:hover {
  color: #c13584;
  transform: scale(1.2);
}

.topic:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #FF00FF, #004080);
}
.intro-video {
  width: 100%;
  height: calc(100vh - 95px); /* ocupa a tela menos o cabeçalho */
  display: flex;
  justify-content: center;
  align-items: center;
  background: black;
  border-radius: 15px;
}

.intro-video video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* preenche a tela */
  border-radius: 15px;
}

/* Footer */
footer {
  background: linear-gradient(90deg, #004080, #8A2BE2);
  color: white;
  padding: 30px 20px;
  margin-top: 40px;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.4);
}

.footer-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  width: 110px;
  height: 110px;
}

.footer-logo h2 {
  font-size: 1.3rem;
  letter-spacing: 1px;
}

.footer-links {

  
  display: flex;
  justify-content: space-evenly;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-texto {
  padding-top: 20px;
}
/* Fundo escuro transparente */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: none; /* escondido por padrão */
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

/* Caixinha central */
.popup-content {
  background: #fff;
  color: #333;
  padding: 25px;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  animation: popIn 0.3s ease;
}

@keyframes popIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Botão fechar (X) */
.popup-close {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 2.2rem;
  font-weight: bold;
  color: #ff3333;            /* vermelho forte */
  cursor: pointer;
  background: #fff;
  border: 2px solid #ff3333;
  border-radius: 50%;        /* deixa circular */
  width: 40px;
  height: 40px;
  line-height: 36px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0,0,0,0.3);
}

/* Links dentro do popup */
.popup-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
}

.popup-links a {
  background: #00AEEF;
  color: white;
  text-decoration: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s, transform 0.2s;
}

.popup-links a:hover {
  background: #0077aa;
  transform: scale(1.05);
}

.footer-links a 
{
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #00AEEF;
}

.footer-copy {
  font-size: 0.9rem;
  opacity: 0.8;
}
.sobre {
  padding: 115px 20% 50px 20%; /* espaço só em cima e embaixo */
  font-family: cab;
  color: whitesmoke;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0.8;
}

.sobre h1,
.sobre h3,
.sobre p {
  margin: 10px 0; /* espaçamento controlado só entre os itens */
}
.sobre img{
  width: 90%;
  border-radius: 10px;
}
.contato {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 20px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
  background: #fff;
  color: #333;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.contato-info {
  text-align: left;
  padding: 20px;
}

.contato-info h2 {
  color: #004080;
  margin-bottom: 10px;
}

.contato-info hr {
  border: 1px solid #00AEEF;
  margin: 10px 0 20px 0;
}
.sobreProdutos{
  padding: 50px;
}

.contato-info p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.contato-info h3 {
  margin-top: 20px;
  color: #004080;
}

/* Botão WhatsApp */
.btn-whatsapp {
  display: inline-block;
  background: #25d366;
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  margin: 15px 0;
  transition: background 0.3s ease;
}

.btn-whatsapp:hover {
  background: #1ebe5c;
}

/* Mapa */
.contato-mapa {
  width: 100%;
  height: 400px;
}

.contato-mapa iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
#Sobre {
  scroll-margin-top: 0;
}

/* Responsivo */
@media (max-width: 768px) {
  .contato {
    grid-template-columns: 1fr;
  }
  section {
  scroll-margin-top: 125px;
}
  .contato-mapa {
    height: 300px;
  }
  .slideshow-container {
    height: 99%; /* força usar a tela inteira no mobile */
    margin: auto;
  }
   .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;   /* logo abaixo do header */
    right: 20px;
    background: rgba(0, 0, 0, 0.9);
    padding: 15px;
    border-radius: 8px;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
  .slide img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* cobre toda a tela sem distorcer */
  border-radius: 0;  /* remove arredondamento para ocupar toda tela */
}

}

/* RESPONSIVIDADE EXTRA */
@media (max-width: 992px) {
  header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    
    padding: 15px;
  }
  section {
  scroll-margin-top: 125px;
}
  .slideshow-container {
    height: 99%; /* ocupa 80% da tela */
    margin: auto;
  }  .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* cobre toda a tela sem distorcer */}


  body {
    padding-top: 125px; /* aumenta espaço quando header cresce */
  }

  header img {
    margin-bottom: 10px;
  }

  #manuHeader {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .topics {
    grid-template-columns: 1fr 1fr; /* 2 colunas em tablets */
  }
}

@media (max-width: 600px) {
  .topics {
    grid-template-columns: 1fr; /* 1 coluna em celulares */
  }
  section {
  scroll-margin-top: 125px;
}
  .slideshow-container {
    height: 99%; /* ainda grande, mas proporcional */
    margin: auto;
  }

  .slide img {
    object-fit: cover; /* evita cortar muito em telas pequenas */
  }
  body {
    padding-top: 120px; /* ainda mais espaço em celulares */
  }

  .contato {
    grid-template-columns: 1fr; /* já estava, mas reforço */
  }

  .contato-mapa {
    height: 250px;
  }

  .sobre {
    padding-left: 10%;
    padding-right: 10%;
  }
}
