:root {
  --azul-escuro: #0A2540;
  --azul: #1E90FF;
  --cinza-bg: #F5F7FA;
  --texto: #4A4A4A;
  --whats: #25D366;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html, body {
  width: 100%;
  overflow-x: hidden;
}


body {
  font-family: 'Poppins', sans-serif;
  background: var(--cinza-bg);
  color: var(--texto);
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;

  background: rgba(245, 246, 247, 0.952);
  backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(0,0,0,0.06);
}




.container {
  max-width: 1200px;
  margin: auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--azul-escuro);
  border-radius: 10px;
}

.menu a {
  margin: 0 14px;
  text-decoration: none;
  font-weight: 500;
  color: var(--azul-escuro);
  position: relative;
}

.menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -6px;
  background: var(--azul);
  transition: .3s;
}

.menu a:hover::after {
  width: 100%;
}

.btn-whats {
  position: relative;
  background: linear-gradient(135deg, #25D366, #1EBE5D);
  color: #fff;

  padding: 14px 26px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    0 8px 25px rgba(37, 211, 102, 0.6),
    0 0 0 rgba(37, 211, 102, 0.9);

  animation: pulseWhatsStrong 1.6s infinite;
}

/* PULSO FORTE + CRESCIMENTO */
@keyframes pulseWhatsStrong {
  0% {
    transform: scale(1);
    box-shadow:
      0 8px 25px rgba(37, 211, 102, 0.7),
      0 0 0 0 rgba(37, 211, 102, 0.9);
  }

  50% {
    transform: scale(1.08);
    box-shadow:
      0 12px 35px rgba(37, 211, 102, 0.9),
      0 0 0 22px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(1);
    box-shadow:
      0 8px 25px rgba(37, 211, 102, 0.7),
      0 0 0 0 rgba(37, 211, 102, 0);
  }
}


/* HERO */
.hero {
  min-height: 100vh;

  background:
    linear-gradient(
      120deg,
      rgba(10,37,64,0.85),
      rgba(10,37,64,0.65)
    ),
    url('../img/header.jpg') center / cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 160px 20px 0;      /* evita overflow no mobile */


}

.hero-content {
  max-width: 650px;
  width: 100%;
  color: #fff;
  text-align: center;

  animation: fadeUp 1s ease;
}


/* Desktop: alinhado à esquerda (visual premium) */
@media (min-width: 992px) {
  .hero {
    justify-content: flex-start;
    
    padding-top: 220px; /* 👈 desce bastante no desktop */
  }

  .hero-content {
    margin-left: 8%;
  }
}


.hero-content h1 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: clamp(16px, 2vw, 18px);
  opacity: 0.9;
  margin-bottom: 30px;
}



.btn-primary {
  background: var(--azul);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(30,144,255,.4);
}

/* PLANOS */
.planos {
  padding: 120px 20px;
  text-align: center;
}

.planos h2 {
  font-size: 36px;
  color: var(--azul-escuro);
}

.planos-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 30px;
}

.plano {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
  transition: transform .4s, box-shadow .4s;
}

.plano:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0,0,0,.12);
}

.plano h3 {
  font-size: 24px;
  color: var(--azul-escuro);
}

.plano span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  margin: 20px 0;
  color: var(--azul);
}

.btn-plano {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  background: var(--azul);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

/* FAQ */
.faq {
  max-width: 900px;
  margin: 100px auto;
  padding: 0 20px;
}

.faq h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #0A2540;
}

.faq-item {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  overflow: hidden;
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;

  font-weight: 600;
  color: #0A2540;
}

.faq-question strong {
  font-size: 26px;
  transition: transform .3s ease;
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #4A4A4A;
}

/* QUANDO ATIVO */
.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question strong {
  transform: rotate(45deg);
}


/* CONTATO */
.contato {
  background: var(--azul-escuro);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.footer {
  background: #081c30;
  color: #ccc;
  text-align: center;
  padding: 15px;
}

/* ANIMAÇÃO */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-content {
    margin: auto;
    text-align: center;
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .menu {
    display: none;
  }
}


.logo img {
  height: 148px;          /* desktop */
  width: auto;
  transition: .3s;
  border-radius: 10px;
}

/* Tablet */
@media (max-width: 992px) {
  .logo img {
    height: 100px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .logo img {
    height: 100px;
  }
}

.logo img:hover {
  transform: scale(1.05);
}




.vantagens {
  padding: 120px 20px;
  background: #F5F7FA;
  text-align: center;
}

.vantagens h2 {
  font-size: 36px;
  color: #0A2540;
  margin-bottom: 60px;
}

.vantagens-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.vantagem {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
}

.vantagem:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.vantagem span {
  font-size: 42px;
  display: block;
  margin-bottom: 20px;
}

.vantagem h3 {
  font-size: 20px;
  color: #0A2540;
  margin-bottom: 10px;
}

.vantagem p {
  font-size: 15px;
  color: #4A4A4A;
  line-height: 1.6;
}



.contato {
  padding: 120px 20px;
  background: linear-gradient(135deg, #0A2540, #081C30);
  color: #fff;
  text-align: center;
}

.contato h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.contato p {
  font-size: 16px;
  opacity: .9;
  margin-bottom: 50px;
}

.contato-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* INFO */
.contato-info {
  text-align: left;
}

.contato-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
}

.btn-contato {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  border-radius: 50px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(37,211,102,.6);
}

/* FORM */
.contato {
  padding: 120px 20px;
  background: linear-gradient(135deg, #0A2540, #081C30);
}

.contato-form {
  max-width: 420px;
  margin: auto;

  background: rgba(255,255,255,0.12);
  padding: 32px;
  border-radius: 22px;

  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.contato-form input,
.contato-form textarea {
  width: 100%;
  margin-bottom: 14px;
  padding: 14px 16px;

  border-radius: 12px;
  border: none;
  outline: none;

  font-family: inherit;
  font-size: 14px;
}

.contato-form textarea {
  resize: none;
}

.contato-form button {
  width: 100%;
  padding: 14px;

  border-radius: 50px;
  border: none;

  background: linear-gradient(135deg, #1E90FF, #0A6EDB);
  color: #fff;

  font-weight: 700;
  font-size: 15px;
  cursor: pointer;

  box-shadow: 0 10px 30px rgba(30,144,255,.6);
  transition: transform .2s ease, box-shadow .2s ease;
}

.contato-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(30,144,255,.8);
}



