body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5f5f5;
  color: #1a2a4f;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 40px;
  background-color: #ffffff;
  border-bottom: 1px solid #ddd;
  flex-wrap: wrap; /* permite ajuste em telas menores */
}

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

.brand-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1a2a4f;
}

.logo img {
  height: 80px;
}

nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 10px;
}

nav a {
  text-decoration: none;
  color: #1a2a4f;
  font-weight: 600;
  font-size: 1rem;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #aee2ff;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1;
  max-width: 500px;
}

.hero-logo {
  height: 60px;
}

.hero-content h1 {
  font-size: 2.0rem;
  margin: 10px 0 20px 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  margin-left: 20px;
}

.btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 12px 24px;
  background-color: #1a2a4f;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
}


.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
}

.trust {
  padding: 10px 40px 30px 40px; /* menos espaço no topo */
  background-color: #ffffff;
  text-align: center;
}


.trust h2 {
  margin-top: 0;
  margin-bottom: 5px;
}


.trust p {
  font-size: 1rem;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.learn-more {
  text-decoration: underline;
  color: #1a2a4f;
  font-weight: bold;
}

.get-started-box {
  max-width: 400px;
  margin: 80px auto;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.get-started-box h1 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #1a2a4f;
  text-align: center;
}

.get-started-box p {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #555;
  text-align: center;
}

.auth-options {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.auth-btn {
  width: 100%;
  max-width: 300px;
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
}

.auth-btn.primary {
  width: 100%;
  max-width: 300px;
}


.auth-btn.google {
  background-color: #4285F4;
  color: white;
}

.auth-btn.apple {
  background-color: #000;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  padding: 12px;
  font-size: 1rem;
  cursor: not-allowed;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.auth-btn.apple.coming-soon:hover {
  opacity: 0.65;
}


.auth-btn.primary {
  background-color: #1a2a4f;
  color: white;
}

input[type="email"],
input[type="password"] {
  width: 100%;
  max-width: 300px;
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  text-align: center;
}


.divider {
  text-align: center;
  color: #999;
  font-size: 0.9rem;
}


.features {
  padding: 40px 40px;
  background-color: #f5f5f5;
  text-align: center;
}

.features h2 {
  font-size: 1.8rem;
  margin-bottom: 40px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.feature {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.feature h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #1a2a4f;
}

.feature p {
  font-size: 0.95rem;
  color: #333;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #e8ebf2;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .hero-content {
    margin: 0 auto;
    max-width: 100%;
    text-align: center;
  }

  .hero-content h1,
  .hero-content p,
  .btn {
  display: block;
  margin:  30px auto 0 auto; /* 20px de espaço acima, centralizado */
}


  .hero-image img {
    height: 250px;
    margin-top: 20px;
    margin-right: 0;
  }

  .logo {
    flex-direction: column;
    align-items: center;
  }

  .logo img {
    height: 40px;
  }

  .brand-name {
    font-size: 1.2rem;
    margin-top: 5px;
    text-align: center;
  }

  nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
  }

  nav a {
    font-size: 0.9rem;
    text-decoration: none;
    color: #1a2a4f;
    font-weight: 600;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}
