@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #f4f6fa;
  color: #222;
  margin: 0;
  min-height: 100vh;
}

header.topo {
  background: #1a2332;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo img {
  height: 160px;
  transition: transform 0.2s;
}
.logo img:hover {
  transform: scale(1.05);
}

nav {
  display: flex;
  align-items: center;
}

nav a {
  color: #fff;
  background: #24304e;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 500;
  font-size: 1.08em;
  padding: 10px 28px;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(36,48,78,0.10);
  border: 1px solid #2d3a5a;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  display: inline-block;
}

nav a.btn-login {
  background: #007aff;
  color: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(0,122,255,0.15);
}

nav a:hover, nav a:focus {
  background: #007aff;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 16px rgba(0,122,255,0.15);
  border-color: #007aff;
}

.hero {
  background: linear-gradient(90deg, #1a2332 60%, #007aff 100%);
  color: #fff;
  padding: 80px 0 60px 0;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.hero h1 {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.hero p {
  font-size: 1.25em;
  font-weight: 400;
  margin-bottom: 32px;
}

.btn-cta {
  background: #007aff;
  color: #fff;
  padding: 16px 40px;
  border-radius: 32px;
  font-size: 1.2em;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0,122,255,0.12);
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}

.btn-cta:hover {
  background: #005bb5;
  transform: translateY(-2px) scale(1.04);
}

.planos {
  background: #fff;
  padding: 56px 0 32px 0;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.planos h2 {
  font-size: 2em;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}

.tabela-planos {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  margin-bottom: 16px;
}

.tabela-planos img {
  width: 80%;
  max-width: 700px;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  border: 1px solid #eaf3ff;
  transition: box-shadow 0.2s, transform 0.2s;
}

.tabela-planos img:hover {
  box-shadow: 0 8px 32px rgba(0,122,255,0.15);
  transform: scale(1.02);
}

.info-extra {
  margin-top: 28px;
  color: #555;
  font-size: 1.05em;
  background: #eaf3ff;
  display: inline-block;
  padding: 8px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,122,255,0.07);
}

footer {
  background: #1a2332;
  color: #fff;
  text-align: center;
  padding: 28px 0;
  margin-top: 56px;
  font-size: 1.08em;
  letter-spacing: 0.5px;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.07);
}

/* Botões do menu */
.menu a.btn-menu {
  background-color: #007aff;
  color: #fff;
  padding: 10px 24px;
  border-radius: 20px;
  margin: 0 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 122, 255, 0.15);
}

.menu a.btn-menu:hover {
  background-color: #005bb5;
  transform: scale(1.05);
}

/* Botão Login com destaque */
.menu a.btn-login {
  background-color: #ffffff;
  color: #007aff;
  font-weight: bold;
  border: 2px solid #007aff;
}

.menu a.btn-login:hover {
  background-color: #007aff;
  color: #fff;
  border-color: #005bb5;
}

.recursos {
  background: #f4f6fa;
  padding: 60px 20px;
  text-align: center;
}

.recursos h2 {
  font-size: 2em;
  margin-bottom: 40px;
  color: #1a2332;
}

.cards-modulos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.cards-modulos .modulo {
  background: white;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  width: 280px;
  text-align: left;
  transition: transform 0.2s;
}

.cards-modulos .modulo:hover {
  transform: translateY(-6px);
}

.cards-modulos .modulo h3 {
  margin-bottom: 10px;
  font-size: 1.2em;
  color: #007aff;
}

.cards-modulos .modulo p {
  font-size: 0.95em;
  color: #333;
}

.contratar {
  background: linear-gradient(90deg, #1a2332 60%, #007aff 100%);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.contratar h2 {
  font-size: 2.2em;
  margin-bottom: 20px;
}

.contratar p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.contratar .btn-cta {
  background: #ffffff;
  color: #007aff;
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.2em;
  box-shadow: 0 2px 8px rgba(255,255,255,0.15);
  transition: all 0.3s;
}

.contratar .btn-cta:hover {
  background: #eaf3ff;
  transform: scale(1.04);
}

.contratar-centralizada {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
  background: linear-gradient(135deg, #1a2332, #007aff);
  color: white;
  text-align: center;
  padding: 20px;
}

.conteudo-centralizado {
  max-width: 700px;
}

.conteudo-centralizado h2 {
  font-size: 2.4em;
  margin-bottom: 20px;
}

.conteudo-centralizado p {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 30px;
}

.btn-whatsapp {
  background-color: #25D366;
  color: #fff;
  font-weight: bold;
  padding: 14px 32px;
  border-radius: 32px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s, background 0.2s;
}

.btn-whatsapp:hover {
  background-color: #1ebe57;
  transform: scale(1.05);
}

.btn-whatsapp img {
  height: 24px;
  width: 24px;
}

/* Responsividade */
@media (max-width: 900px) {
  header.topo {
    flex-direction: column;
    padding: 16px 10px;
    text-align: center;
  }
  nav {
    margin-top: 10px;
  }
  .tabela-planos img {
    width: 95%;
    max-width: 95vw;
  }
  .hero {
    padding: 48px 0 32px 0;
  }
  .planos {
    padding: 32px 0 16px 0;
  }
}