/* style.css – limpo e atualizado com menu moderno */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', 'Inter', sans-serif;
  background-color: #f9f9f9;
  color: #2c2c2c;
}

/* Header e Menu */
header {
  background-color: #0f172a;
  color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 45px;
  width: auto;
}

.menu {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s;
  padding: 8px 12px;
  border-radius: 6px;
}

.menu a:hover {
  background-color: #1e293b;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.menu-mobile {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

@media (max-width: 768px) {
  .menu {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .menu-mobile {
    display: flex;
    width: 100%;
    background-color: #0f172a;
    padding: 15px 0;
  }

  .menu-mobile a {
    text-align: center;
    padding: 10px;
    border-top: 1px solid #1e293b;
  }
}

/* Banner */
.banner {
  background: linear-gradient(to right, #2563eb, #1d4ed8);
  padding: 10px 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.banner h1 {
  font-size: 2.3rem;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.destaque-marker {
  position: relative;
  display: inline-block;
  z-index: 1;
  line-height: 1.2;
  color: #1e293b;
}

.destaque-marker::before {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  top: 10%;
  bottom: 10%;
  background-color: #facc15;
  z-index: -1;
  border-radius: 4px;
}

/* Info destaque abaixo do banner */
.info-banner {
  background-color: #f8fafc;
  padding: 50px 20px;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.info-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-list li {
  font-size: 1.05rem;
  color: #1e293b;
  display: flex;
  align-items: center;
  line-height: 1.6;
  position: relative;
  padding-bottom: 5px;
}

.info-list li::after {
  content: '';
  position: absolute;
  left: 26px;
  bottom: 0;
  height: 3px;
  width: calc(100% - 26px);
  background-color: #facc15;
  border-radius: 2px;
  z-index: 0;
}

.info-list i {
  color: #10b981;
  font-size: 1.2rem;
  margin-right: 12px;
  z-index: 1;
}

.info-list li span {
  position: relative;
  z-index: 1;
}

/* Planos */
.plan-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  padding: 60px 40px;
}

.plan-box {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  border-top: 4px solid #2563eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.plan-box h2 {
  color: #1e293b;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.plan-box p {
  margin: 8px 0;
  font-size: 0.95rem;
  color: #374151;
  white-space: normal;
}

.plan-box p::before {
  content: '\2713';
  color: #10b981;
  font-weight: bold;
  margin-right: 8px;
}

.preco {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  font-weight: 600;
  color: #1e293b;
}

.preco span {
  white-space: nowrap;
}

/* Modelo */
.modelo-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #f1f5f9;
}

.modelo-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #1e293b;
}

.modelo-section img {
  max-width: 100%;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
}

/* Contato */
#contato {
  background-color: #e5edf5; /* azul clarinho mais visível */
  color: #1e293b;
  padding: 60px 20px;
  border-top: 1px solid #cbd5e1;
  border-bottom: 1px solid #cbd5e1;
}


#contato h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #1e293b;
}


form {
  max-width: 500px;
  margin: 0 auto;
}

form label,
form input,
form textarea,
form button {
  display: block;
  width: 100%;
  margin-bottom: 15px;
}

form input,
form textarea {
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
}

form input,
form textarea {
  padding: 12px;
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 0.95rem;
  color: #1e293b;
}


form button {
  background-color: #facc15;
  color: #000;
  font-weight: 600;
  border: none;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

form button:hover {
  background-color: #eab308;
}

/* WhatsApp flutuante */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  z-index: 1000;
}
.menu-mobile {
  display: none;
  flex-direction: column;
  margin-top: 15px;
  background-color: #0f172a; /* mesmo azul do topo */
  padding: 15px 20px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  animation: slideDown 0.3s ease-out;
}

.menu-mobile.show {
  display: flex;
}

.menu-mobile a {
  color: #f8fafc;
  padding: 12px 10px;
  text-align: left;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background-color 0.3s, padding-left 0.3s;
}

.menu-mobile a:last-child {
  border-bottom: none;
}

.menu-mobile a:hover {
  background-color: #1e293b;
  padding-left: 18px;
  border-radius: 6px;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}


.menu-mobile.active {
  display: flex;
}
.modelo-section {
  background-color: #f1f5f9;
  padding: 60px 20px;
  text-align: center;
}

.modelo-content {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.modelo-content h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #1e293b;
}

.modelo-content p {
  font-size: 1rem;
  color: #374151;
  margin-bottom: 20px;
}

.modelo-botao {
  display: inline-block;
  background-color: #2563eb;
  color: #fff;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.modelo-botao:hover {
  background-color: #1d4ed8;
}

.modelo-botao i {
  margin-left: 8px;
}
.rodape {
  background-color: #0f172a;
  color: #ffffff;
  padding: 30px 20px;
  text-align: center;
}

.rodape-container {
  max-width: 1200px;
  margin: 0 auto;
}

.rodape p {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.rodape-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.rodape-links a {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.rodape-links a:hover {
  color: #ffffff;
}

