/* ===== RESET BÁSICO ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #333;
}

/* ===== HEADER / MENU ===== */
header {
  background: #003366;
  position: sticky;
  top: 0;
  z-index: 9999;
}

.menu-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo a {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  text-decoration: none;
}

/* BOTÃO HAMBÚRGUER */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* MENU DESKTOP */
.menu {
  display: flex;
  gap: 25px;
  align-items: center;
}

.menu a,
.menu span {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}

/* DROPDOWN DESKTOP */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #00284d;
  min-width: 200px;
  border-radius: 6px;
  overflow: hidden;
}

.dropdown-content a {
  display: block;
  padding: 12px 15px;
  color: #fff;
}

.dropdown-content a:hover {
  background: #004c99;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .menu {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background: #003366;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    display: none;
  }

  .menu.menu-open {
    display: flex;
  }

  .menu a,
  .menu span {
    font-size: 18px;
    padding: 12px 0;
  }

  /* DROPDOWN MOBILE */
  .dropdown-content {
    position: static;
    background: #00284d;
    width: 100%;
    display: none;
    margin-top: 10px;
  }

  .dropdown-content a {
    text-align: center;
  }
}

/* ===== CONTEÚDO GERAL ===== */
main {
  padding: 40px 20px;
}

h1, h2, h3 {
  color: #003366;
}

p {
  line-height: 1.6;
  margin-bottom: 15px;
}

/* ===== FOOTER ===== */
footer {
  background: #003366;
  color: #fff;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}

/* ===== BOTÕES FLUTUANTES ===== */
.btn-whatsapp,
.btn-atendimento {
  position: fixed;
  right: 20px;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  z-index: 99999;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.btn-whatsapp {
  bottom: 20px;
  background: #25d366;
}

.btn-atendimento {
  bottom: 90px;
  background: #003366;
}
/* ===== BOTÃO CENTRAL DO ASSINANTE NO MENU ===== */
.btn-central {
  background: #ff6600;
  color: #fff !important;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: bold;
}

.btn-central:hover {
  background: #e65c00;
}
/* BOTÕES FLUTUANTES */
.botoes-flutuantes{
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.bot-neto{
  background:#003366;
  color:#fff;
  padding:12px 18px;
  border-radius:30px;
  font-weight:bold;
  cursor:pointer;
}

.bot-whats{
  background:#25d366;
  color:#fff;
  padding:14px 20px;
  border-radius:30px;
  text-decoration:none;
  font-weight:bold;
}

/* EVITA SOBREPOR O RODAPÉ */
footer{
  padding-bottom:120px;
}

