/* Reset e base */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #f7fafd;
  color: #222;
  scroll-behavior: smooth;
}

h1, h2, h3, h4 {
  font-weight: 700;
  margin: 0 0 12px 0;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

ul { padding-left: 1.2em; }

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 8vw 0 8vw;
  background: transparent;
  position: relative;
  z-index: 10;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: none;
}
.navbar .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  width: 395px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px 4px #00b89455, 0 0 0 6px #fff, 0 0 24px 4px #1a237e33;
  padding: 0;
  margin: 0 auto 16px auto;
}
.navbar .logo img {
  height: 110px !important;
  width: 395px !important;
  max-width: 395px !important;
  max-height: 110px !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
  object-fit: contain !important;
  display: block;
  z-index: 10;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
  text-shadow: 0 2px 8px rgba(26,35,126,0.18);
  font-size: 1.1rem;
}
.nav-links a:hover, .btn-login:hover {
  color: #00b894;
}
.btn-login {
  background: #1a237e;
  color: #fff;
  padding: 8px 24px;
  border-radius: 24px;
  font-weight: 700;
  transition: background 0.2s;
}

/* Hero */
.hero {
  background: linear-gradient(120deg, #1a237e 60%, #00b894 100%);
  color: #fff;
  padding-bottom: 48px;
  border-radius: 0 0 48px 48px;
  box-shadow: 0 8px 32px rgba(26,35,126,0.08);
  position: relative;
}
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 8vw 0 8vw;
  flex-wrap: wrap;
}
.hero-text {
  max-width: 540px;
}
.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 32px;
}
.cta-main {
  background: linear-gradient(90deg, #00b894, #1a237e);
  color: #fff;
  padding: 16px 40px;
  border-radius: 32px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,184,148,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.cta-main:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 8px 32px rgba(0,184,148,0.25);
}
.hero-image img {
  max-width: 420px;
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(26,35,126,0.10);
  animation: fadeIn 1.2s;
}
.hero-tags {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 32px 8vw 0 8vw;
}
.hero-tags span {
  background: rgba(255,255,255,0.12);
  color: #fff;
  padding: 6px 18px;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(26,35,126,0.08);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 100;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37,211,102,0.18);
  padding: 12px;
  transition: transform 0.2s;
}
.whatsapp-float img {
  width: 40px;
  height: 40px;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(37,211,102,0.28);
}

/* Planos */
.planos-section {
  background: #fff;
  padding: 64px 0 32px 0;
}
.planos-section h2 {
  text-align: center;
}
.planos-cards {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0 24px 0;
}
.planos-cards-grid {
  width: 100%;
  max-width: 1200px;
  margin: 40px auto 24px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-content: center;
  justify-items: center;
}
.plano-card {
  background: #f7fafd;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(26,35,126,0.07);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  border: 2px solid transparent;
  min-width: 0;
  max-width: 370px;
  width: 100%;
}
.plano-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(26,35,126,0.13);
  border: 2px solid #00b894;
}
.plano-tipo {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a237e;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.plano-recursos {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  color: #222;
  font-size: 1rem;
  text-align: left;
  width: 100%;
}
.plano-recursos li {
  margin-bottom: 4px;
  padding-left: 18px;
  position: relative;
}
.plano-recursos li:before {
  content: '\2713';
  color: #00b894;
  position: absolute;
  left: 0;
  font-size: 1rem;
}
.plano-periodos {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-top: 10px;
}
.periodo-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(26,35,126,0.07);
  padding: 16px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.periodo-item .plano-preco {
  font-size: 1.2rem;
  color: #1a237e;
  font-weight: 700;
  margin-bottom: 0;
}
.periodo-item .plano-periodo {
  font-size: 1rem;
  color: #222;
  margin-bottom: 0;
}
.periodo-item .plano-badge {
  margin-bottom: 0;
  margin-left: 8px;
  font-size: 0.95rem;
  padding: 4px 14px;
}
.periodo-item .plano-cta {
  margin-left: auto;
  margin-top: 0;
}
.periodo-item:hover {
  box-shadow: 0 4px 16px rgba(0,184,148,0.13);
  transform: scale(1.03);
}
.plano-badge {
  padding: 6px 18px;
  border-radius: 16px;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #fff;
  animation: badgePop 1.2s;
}
.badge-trial { background: linear-gradient(90deg, #00b894, #1a237e); }
.badge-popular { background: linear-gradient(90deg, #ff9800, #ffb74d); color: #fff; }
.badge-best { background: linear-gradient(90deg, #1a237e, #00b894); }
.popular { box-shadow: 0 8px 32px rgba(255,152,0,0.13); border: 2px solid #ff9800; }
.best-value { box-shadow: 0 8px 32px rgba(26,35,126,0.18); border: 2px solid #00b894; }
.plano-cta {
  background: linear-gradient(90deg, #00b894, #1a237e);
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 12px 36px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 12px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,184,148,0.10);
  transition: background 0.2s, transform 0.2s;
}
.plano-cta:hover {
  background: linear-gradient(90deg, #1a237e, #00b894);
  transform: scale(1.05);
}
.planos-inclusos {
  margin-top: 32px;
  text-align: center !important;
}
.planos-inclusos h3, .planos-inclusos > h3 {
  text-align: center !important;
  width: 100% !important;
  margin: 0 auto 18px auto !important;
  display: block !important;
}
.planos-inclusos ul {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0 auto;
}
.planos-inclusos li {
  background: #e3eafc;
  color: #1a237e;
  padding: 8px 20px;
  border-radius: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* Benefícios */
.beneficios-section {
  background: #f7fafd;
  padding: 64px 8vw 32px 8vw;
  text-align: center;
}
.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 40px;
}
.beneficio-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(26,35,126,0.07);
  padding: 32px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: fadeInUp 1.2s;
}
.beneficio-card img, .beneficio-card svg {
  width: 72px !important;
  height: 72px !important;
  display: block;
  margin: 0 auto 18px auto;
  object-fit: contain;
  background: #f7fafd;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(26,35,126,0.10);
  padding: 12px;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}
.beneficio-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,184,148,0.13);
}
.beneficio-card img:hover, .beneficio-card svg:hover {
  transform: scale(1.12) rotate(-3deg);
  box-shadow: 0 8px 32px rgba(0,184,148,0.18);
  filter: brightness(1.15) drop-shadow(0 2px 8px #00b89455);
}
.beneficio-card img:hover {
  transform: scale(1.15) rotate(-4deg);
  filter: drop-shadow(0 4px 12px #00b89455);
}
.beneficio-card span {
  margin-top: 12px;
  font-weight: 700;
  color: #1a237e;
  font-style: normal;
}

/* Diferenciais */
.diferenciais-section {
  background: linear-gradient(120deg, #1a237e 60%, #00b894 100%);
  color: #fff;
  padding: 64px 8vw 32px 8vw;
  text-align: center;
}
.diferenciais-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.diferencial-card {
  background: rgba(255,255,255,0.10);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(26,35,126,0.07);
  padding: 32px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: fadeInUp 1.2s;
}
.diferencial-card img, .diferencial-card svg {
  width: 72px !important;
  height: 72px !important;
  display: block;
  margin: 0 auto 18px auto;
  object-fit: contain;
  background: #f7fafd;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(26,35,126,0.10);
  padding: 12px;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}
.diferencial-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(255,255,255,0.13);
}
.diferencial-card img:hover, .diferencial-card svg:hover {
  transform: scale(1.12) rotate(-3deg);
  box-shadow: 0 8px 32px rgba(0,184,148,0.18);
  filter: brightness(1.15) drop-shadow(0 2px 8px #00b89455);
}
.diferencial-card img:hover {
  transform: scale(1.15) rotate(-4deg);
  filter: drop-shadow(0 4px 12px #00b89455);
}
.diferencial-card span {
  margin-top: 12px;
  font-weight: 700;
  color: #1a237e;
  font-style: normal;
}

/* Depoimentos */
.depoimentos-section {
  background: #fff;
  padding: 64px 8vw 32px 8vw;
  text-align: center;
}
.depoimentos-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.depoimento-card {
  background: #f7fafd;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(26,35,126,0.07);
  padding: 32px 18px;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-style: italic;
  font-size: 1.1rem;
}
.depoimento-card span {
  margin-top: 12px;
  font-weight: 700;
  color: #1a237e;
  font-style: normal;
}
.depoimento-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(26,35,126,0.10);
  border: 2px solid #fff;
  background: #f7fafd;
}

/* FAQ */
.faq-section {
  background: #f7fafd;
  padding: 64px 8vw 32px 8vw;
  text-align: center;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}
.faq-item {
  margin-bottom: 18px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(26,35,126,0.07);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #1a237e;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 18px;
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: background 0.2s;
}
.faq-question:hover {
  background: #e3eafc;
}
.faq-answer {
  display: none;
  padding: 0 18px 18px 18px;
  color: #222;
  font-size: 1rem;
}
.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.6s;
}

/* Contador */
.contador-section {
  background: #fff;
  padding: 32px 8vw;
  text-align: center;
  font-size: 1.5rem;
  color: #1a237e;
  font-weight: 700;
}
#contador {
  color: #00b894;
  font-size: 2.2rem;
  font-weight: 900;
}

/* Footer */
.footer {
  background: #1a237e;
  color: #fff;
  padding: 48px 8vw 24px 8vw;
  border-radius: 48px 48px 0 0;
  box-shadow: 0 -8px 32px rgba(26,35,126,0.08);
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  width: 395px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px 4px #00b89455, 0 0 0 6px #fff, 0 0 24px 4px #1a237e33;
  padding: 0;
  margin: 0 auto 24px auto;
}
.footer-logo img {
  height: 110px !important;
  width: 395px !important;
  max-width: 395px !important;
  max-height: 110px !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
  object-fit: contain !important;
  display: block;
  z-index: 10;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #00b894;
}
.footer-certificacoes {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  justify-content: center;
}
.footer-certificacoes img {
  height: 36px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(26,35,126,0.10);
  padding: 4px 8px;
  margin: 0;
}
.footer-contato p {
  margin: 0 0 6px 0;
  font-size: 0.98rem;
}
.footer-copy {
  text-align: center;
  margin-top: 32px;
  color: #b0bec5;
  font-size: 0.95rem;
}

/* Animações */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes badgePop {
  0% { transform: scale(0.7); opacity: 0; }
  60% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); }
}
@keyframes bounceIn {
  0% { transform: scale(0.7); opacity: 0; }
  60% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); }
}
.beneficio-card img, .beneficio-card svg, .diferencial-card img, .diferencial-card svg {
  width: 72px !important;
  height: 72px !important;
  display: block;
  margin: 0 auto 18px auto;
  object-fit: contain;
  background: #f7fafd;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(26,35,126,0.10);
  padding: 12px;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}
.beneficio-card img:hover, .beneficio-card svg:hover, .diferencial-card img:hover, .diferencial-card svg:hover {
  transform: scale(1.12) rotate(-3deg);
  box-shadow: 0 8px 32px rgba(0,184,148,0.18);
  filter: brightness(1.15) drop-shadow(0 2px 8px #00b89455);
}
.beneficio-card img:hover {
  transform: scale(1.15) rotate(-4deg);
  filter: drop-shadow(0 4px 12px #00b89455);
}

/* Responsividade */
@media (max-width: 900px) {
  .hero-content { flex-direction: column; gap: 32px; }
  .planos-cards, .depoimentos-grid, .diferenciais-grid { flex-direction: column; gap: 24px; }
  .footer-content { flex-direction: column; gap: 24px; }
  .planos-cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .planos-section { padding-left: 4vw; padding-right: 4vw; }
}
@media (max-width: 600px) {
  .navbar { flex-direction: column; gap: 16px; padding: 18px 4vw 0 4vw; }
  .hero-content { padding: 32px 4vw 0 4vw; }
  .planos-section, .beneficios-section, .diferenciais-section, .depoimentos-section, .faq-section, .contador-section, .footer { padding-left: 4vw; padding-right: 4vw; }
  .planos-cards, .depoimentos-grid, .diferenciais-grid { gap: 16px; }
  .footer-logo img { height: 36px; }
  .planos-cards-grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (min-width: 900px) {
  .planos-section { padding-left: 0; padding-right: 0; }
  .planos-cards-grid { grid-template-columns: repeat(3, 1fr); }
} 