/* =========================
   ESTILO GERAL
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #111111;
  color: #fff;
}



/*↓ Cabeçalho principal ↓*/
/*↓ geral ↓*/
header {
  animation: slideDown 0.6s ease-in-out;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(to right, #111, #1a0f0f);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  z-index: 1000;
  flex-wrap: wrap;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/*↑ geral ↑*/

/*↓ Logo ↓*/
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 40px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  line-height: 1.1;
}

.logo-text span:first-child {
  font-size: 17px;
  color: white;
  letter-spacing: 1px;
}

.logo-text span:last-child {
  font-size: 17px;
  color: #ff6a00;
  letter-spacing: 1px;
}

/*↑ Logo ↑*/

/*↓ Navegação ↓*/
nav {
  display: flex;
  margin-right: 230px;
  gap: 30px;
  align-items: center;
  transition: all 0.3s ease;
}

nav a {
  color: white;
  font-size: 15px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 5px;
  transition: 0.3s;
}

nav a:hover {
  background-color: rgba(255, 106, 0, 0.1);
  color: #ff6a00;
}

nav a.highlight {
  color: #ff6a00;
  background-color: rgba(255, 106, 0, 0.1);
  font-weight: bold;
}

nav .highlight {
  color: white;
  padding: 6px 12px;
  border-radius: 5px;
  
}

nav .highlight:hover {
  background-color: #e55e00;
  background-color: rgba(255, 106, 0, 0.1);
  color: #ff6a00;
}

/*↑ Navegação ↑*/

/*↓ Animação ↓*/
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*↑ Animação ↑*/

/*↓ Menu toggle (mobile) ↓*/
.menu-toggle {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}
/*↑ Menu toggle (mobile) ↑*/

/*↓ Fale Conosco Dropdown ↓*/
.dropdown {
  position: relative;
  background-color: #ff6a00;
  color: black;
  font-weight: bold;
  border-radius: 5px;
}

#menuDropdownBtn {
  background-color: transparent;
  border: none;
  color: black;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 5px;
  transition: 0.3s;
}

#menuDropdownBtn:hover {
  background-color: rgba(255, 106, 0, 0.1);
  color: #ffffff;
}

.dropdown-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  flex-direction: column;
  background-color: #1a1a1a;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  z-index: 1000;
  min-width: 180px;
}

.dropdown-options a {
  color: white;
  padding: 10px;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background-color 0.3s, color 0.3s;
}

.dropdown-options a:hover {
  background-color: rgba(255, 106, 0, 0.1);
  color: #ff6a00;
}
/*↑ Fale Conosco Dropdown ↑*/
/*↑ cabeçario ↑*/

/* =========================
   WHATSAPP BUTTON
========================= */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 50px;
  background-color: #25D366;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
  z-index: 1000;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

.whatsapp-button img {
  width: 35px;
  height: 35px;
}

.whatsapp-options {
  position: fixed;
  bottom: 90px;
  right: 100px;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.whatsapp-options a {
  background-color: #25D366;
  color: white;
  padding: 10px 15px;
  border-radius: 20px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.2s, transform 0.2s;
  font-size: 14px;
}

.whatsapp-options a:hover {
  background-color: #1eb95f;
  transform: scale(1.05);
}

/* =========================
   MAIN + MAPA
========================= */
main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(42, 42, 42, 0.8)),
              url(../img/mapbrasil.jpg) no-repeat center center/cover;
  text-align: center;
  width: 100%;
  min-height: 100vh;
  color: white;
}

.regioes-section {
  padding: 60px 20px;
  width: 100%;
  max-width: 1200px;
}

.regioes-section h2 {
  font-size: 38px;
  color: #ff6a00;
  margin-bottom: 10px;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.9);
}

/* Botões */
.botoes-regioes,
.botoes-estados {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 20px 0;
}

.btn-regiao {
  padding: 14px 24px;
  border: 2px solid #ff6a00;
  border-radius: 30px;
  background-color: #ffffff20;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.btn-regiao:hover,
.btn-regiao.ativo {
  background-color: #ff6a00;
  color: #fff;
  transform: scale(1.05);
}

.btn-estado,
.btn-estado-sp {
  padding: 10px 18px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  color: #333;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-estado:hover,
.btn-estado-sp:hover {
  background-color: #ff6a00;
  color: #fff;
  border-color: #ff6a00;
  transform: scale(1.03);
}

.btn-estado-grande {
  padding: 10px 18px;
  border: 2px solid #ff6a00;
  border-radius: 8px;
  background-color: #ffffff20;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.btn-estado-grande:hover,
.btn-estado-grande.ativo {
  background-color: #ff6a00;
  color: #fff;
  transform: scale(1.05);
}

/* Botão Voltar */
.btn-voltar {
  background-color: #444 !important;
  color: #fff !important;
  border: 2px solid #ff6a00;
  font-weight: bold;
}

.btn-voltar:hover {
  background-color: #ff6a00 !important;
  color: #fff !important;
  transform: scale(1.05);
}

/* Mapa */
.mapa-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.lateral-grande-sp {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.mapa-container {
  margin-top: 30px;
  width: 100%;
  max-width: 800px;
  height: 400px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 30px rgba(255, 106, 0, 0.4);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.mapa-container.mostrar {
  opacity: 1;
}

.mapa-container iframe,
.mapa-container img {
  width: 100%;
  height: 100%;
  border: none;
}

/*↓ footer ↓*/
footer {
  height: auto;
  padding: 10px 150px;
  background-color: #1f1a1a;
  color: white;
}

.top-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}

.top-footer i {
  font-size: 25px;
}

.top-footer a {
  text-decoration: none;
  color: #ff6a00;
}

.top-footer p {
  font-weight: bold;
}

.top-footer span {
  color: #ff6a00;
}

.footer {
  border: 2px solid #ff6a00;
  width: 100%;
}

.bottom-footer {
  text-align: center;
}

/*↑ footer ↑*/
