/* ===================================
   Base & Body
=================================== */
body {
  background-color: #f5f0eb;
  padding-top: 130px; /* Ajuste conforme a altura da navbar */
}

/* ===================================
   Spinner
=================================== */
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}
#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/* ===================================
   Botões
=================================== */
.btn {
  font-weight: 600;
  transition: .5s;
}
.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}
.btn-square  { width: 32px; height: 32px; }
.btn-sm-square { width: 34px; height: 34px; }
.btn-md-square { width: 44px; height: 44px; }
.btn-lg-square { width: 56px; height: 56px; }
.btn-xl-square { width: 66px; height: 66px; }

/* Botões personalizados */
.btn.btn-primary { color: var(--bs-white); border: none; }
.btn.btn-primary:hover { background: var(--bs-dark); color: var(--bs-white); }

.btn.btn-light { color: var(--bs-primary); border: none; }
.btn.btn-light:hover { color: var(--bs-white); background: var(--bs-dark); }

.btn.btn-dark { color: var(--bs-white); border: none; }
.btn.btn-dark:hover { color: var(--bs-primary); background: var(--bs-light); }

/* ===================================
   Topbar
=================================== */
.topbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
  margin-left: 8px;
  color: var(--bs-primary);
}
.topbar .dropdown .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  background: var(--bs-light);
  padding-top: 10px;
  border: 0;
  transition: .5s;
  opacity: 1;
}
.topbar .dropdown .dropdown-menu a:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}

/* ===================================
   Navbar
=================================== */
.nav-bar {
  background: var(--bs-white);
  transition: 1s;
}
.navbar {
  min-height: 120px;
  background-color: #f5f0eb;
  z-index: 1030;
}
.navbar-brand img {
  max-height: 100px;
  width: auto;
  transition: .5s;
}
.navbar .navbar-nav .nav-item {
  display: flex;
  align-items: center;
  padding: 15px;
}
.navbar .navbar-nav .nav-link {
  padding: 0;
}
.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
  color: var(--bs-primary);
}
.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
  margin-left: 8px;
}
.dropdown .dropdown-menu .dropdown-item:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}

/* Responsivo Navbar */
@media (max-width: 991px) {
  .navbar { padding: 20px 0; }
  .navbar .navbar-nav {
    width: 100%;
    margin-top: 20px;
    padding-bottom: 20px;
    background: var(--bs-light);
    border-radius: 10px;
    display: flex;
  }
  .navbar .navbar-nav .nav-item {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 20px;
  }
  .navbar .navbar-nav .nav-btn {
    display: flex;
    justify-content: start;
  }
  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 8px 15px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary);
  }
}
@media (min-width: 992px) {
  .navbar { padding: 20px 0; }
  .navbar .navbar-nav {
    width: 100%;
    justify-content: center;
    align-items: center;
    background: var(--bs-light);
    border-radius: 10px;
    display: flex;
  }
  .navbar .navbar-nav .nav-btn {
    width: 100%;
    margin-left: auto;
    display: flex;
    justify-content: end;
  }
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    transition: .5s;
    opacity: 0;
  }
  .navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    margin-top: 20px;
    background: var(--bs-light);
    opacity: 1;
  }
}

/* ===================================
   Planos
=================================== */
.planos-container { margin-top: 160px; }
.plan-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0px 6px 18px rgba(0,0,0,0.1);
  position: relative;
  transition: transform 0.3s;
}
.plan-card:hover { transform: translateY(-5px); }
.plan-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: bold;
  color: #333;
}
.plan-features {
  text-align: left;
  list-style: none;
  margin-bottom: 15px;
  padding-left: 0;
}
.plan-features li::before {
  content: "✔️";
  margin-right: 8px;
  color: #28a745;
}
.plan-price {
  font-weight: bold;
  margin-top: 10px;
  color: #007bff;
}
.btn-contact {
  margin-top: 15px;
  border-radius: 8px;
  padding: 10px 20px;
  width: 100%;
}
.highlight-plus { border: 3px solid #007bff; }
.highlight-premium { border: 3px solid gold; }
.plan-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: #007bff;
  color: #fff;
  font-size: 0.9rem;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 8px;
}

/* ===================================
   WhatsApp Float
=================================== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  font-size: 28px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
  z-index: 999;
}
.whatsapp-float:hover {
  background-color: #1ebc59;
  text-decoration: none;
}

/* ===================================
   Footer & Copyright
=================================== */
.footer {
  background: var(--bs-dark);
}
.footer .footer-item {
  display: flex;
  flex-direction: column;
}
.footer .footer-item a {
  line-height: 35px;
  color: var(--bs-body);
  transition: 0.5s;
}
.footer .footer-item a:hover {
  color: var(--bs-primary);
}
.footer .footer-item .footer-btn a {
  background: var(--bs-light);
  color: var(--bs-primary);
  transition: 0.5s;
}
.footer .footer-item .footer-btn a:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}
.copyright {
  background: var(--bs-dark);
  border-top: 1px solid rgba(255, 255, 255, .08);
}
/* ===============================
   Planos - Cards
================================ */
.planos-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 50px auto;
  max-width: 1200px;
  flex-wrap: wrap;
}

.plan-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.1);
  position: relative;
  width: 350px;
  transition: transform 0.3s;
}

.plan-card:hover {
  transform: translateY(-5px);
}

.plan-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.plan-features {
  text-align: left;
  list-style: none;
  padding-left: 0;
  margin-bottom: 15px;
}
.plan-features li {
  margin-bottom: 8px;
}
.plan-features li::before {
  content: "✔️";
  margin-right: 8px;
  color: #28a745;
}

.plan-price {
  margin-top: 15px;
  font-weight: bold;
  color: #007bff;
}

.btn-contact {
  margin-top: 15px;
  border-radius: 8px;
  padding: 10px 20px;
  width: 100%;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  display: inline-block;
}
.btn-contact:hover {
  background-color: #0056b3;
}

/* Destaques */
.highlight-plus {
  border: 3px solid #007bff;
}
.highlight-premium {
  border: 3px solid gold;
}
.plan-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: #007bff;
  color: #fff;
  font-size: 0.9rem;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 8px;
}