/* ===================== BASE ===================== */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5f5f5;
  color: #1a2a4f;
  transition: all 0.3s ease;
}

.go-back-wrapper {
  width: 100%;
  padding: 20px 40px 0 40px; /* topo e laterais */
}

.go-back {
  text-decoration: underline;
  color: #000;
  font-weight: 500;
  font-size: 0.95rem;
  display: inline-block;
}

.plan-form {
  max-width: 500px;
  margin: 40px auto;
  padding: 20px;
}




/* ===================== HEADER ===================== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #f8f8f8;
  border-bottom: 1px solid #ddd;
}

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

.logo img {
  height: 40px;
  margin-right: 10px;
}

.brand-name {
  font-size: 1.2rem;
  color: #1a2a4f;
  font-weight: bold;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #1a2a4f;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

nav a:hover {
  text-decoration: underline;
  background-color: #e0e0e0;
  border-radius: 6px;
  transform: scale(1.05);
}

nav a[href="sign-up.html"] {
  background-color: #0061ff;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: bold;
}

nav a[href="sign-up.html"]:hover {
  background-color: #0049c6;
}


/* ===================== HERO ===================== */
.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;
  margin-left: 20px;
}

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

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

.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;
}

.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;
}


/* ===================== TRUST ===================== */
.trust {
  padding: 10px 40px 30px;
  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 {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #1a73e8;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  text-align: center;
}

.learn-more:hover {
  background-color: #0049c6;
}



/* ===================== FEATURES ===================== */
.features {
  padding: 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;
}


/* ===================== PLANS ===================== */
.plans-container {
  padding: 40px 20px;
  text-align: center;
}

.plans-header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #1a2a4f;
}

.plans-header p {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #555;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px;
  justify-items: center;
}

.plan-card {
  background-color: #fff;
  border: 2px solid #ccc;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 300px;
  box-sizing: border-box;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.plan-card h2 {
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.plan-card h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  color: #555;
}

.plan-card p {
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: #333;
}

.plan-button {
  background-color: #1a73e8;
  color: #fff;
  font-weight: bold;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95rem;
  margin-top: 12px;
  display: inline-block;
  max-width: 180px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.plan-button:hover {
  background-color: #0049c6;
}

.get-started-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

#signup-form {
  max-width: 500px;
  width: 100%;
}


.contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 20px;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
  gap: 20px;
  margin-top: 20px;
}

.contact-input {
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
}

.contact-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-button {
  padding: 14px;
  font-size: 16px;
  background-color: #1a73e8; /* azul MonkyBite */
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-button:hover {
  background-color: #0049c6; /* azul mais escuro no hover */
}


.contact-feedback {
  font-size: 14px;
  margin-top: 10px;
}

/* ===================== FOOTER ===================== */
footer {
  display: block;
  width: 100%;
  text-align: center;
  padding: 20px;
  background-color: #e8ebf2;
  font-size: 0.9rem;
  color: #1a2a4f;
}

footer p {
  margin: 0;
}

.learn-more-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #ffffff;
  max-width: 800px;
  margin: 0 auto;
}

.learn-more-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #1a2a4f;
}

.learn-more-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #555;
  max-width: 600px;
}

.learn-more-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.learn-more-section li {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #333;
}

.social-signup {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-signup a {
  display: block;
  width: 100%;
  max-width: 300px;
  padding: 12px;
  margin: 10px 0;
  border-radius: 6px;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
}

.social-login {
  background-color: #4285F4;
  color: white;
}

.apple-login {
  background-color: #000;
  color: white;
}


.signup-button {
  background-color: #1a73e8;
  color: #fff;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  transition: background-color 0.3s ease;
}

.signup-button:hover {
  background-color: #0049c6;
}

.signup-wrapper {
  max-width: 480px;
  margin: 60px auto;
  padding: 40px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  font-family: 'Segoe UI', sans-serif;
}

.signup-title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 10px;
  color: #1a2a4f;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
  font-weight: bold;
  color: #666;
  font-size: 16px;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ccc;
  margin: 0 10px;
}



#selected-plan {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 30px;
  color: #555;
}

.signup-form label:not([for="agree"]) {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #333;
}


.signup-form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.name-row {
  display: flex;
  gap: 20px;
}


.terms-row {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.terms-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.4;
  max-width: 500px;
  text-align: left;
  margin-bottom: 0;
}

.terms-label input[type="checkbox"] {
  accent-color: #1a73e8;
  margin: 0;
  flex-shrink: 0;
  vertical-align: middle;
}

.terms-label span {
  display: inline;
}

.terms-label a {
  white-space: nowrap;
}




.primary-button {
  background-color: #1a73e8;
  color: #fff;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  transition: background-color 0.3s ease;
}

.primary-button:hover {
  background-color: #0049c6;
  }

/* ===================== MOBILE NAVIGATION ===================== */

/* Esconde por padrão */
.nav-mobile {
  display: none;
}

/* Botão ☰ escondido por padrão */
.hamburger {
  display: none;
}

/* Menu fullscreen */
.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #f8f8f8;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 40px 20px;
}

.nav-mobile a {
  font-size: 1.4rem;
  margin: 20px 0;
  color: #1a2a4f;
  text-decoration: none;
}

.hidden {
  display: none !important;
}

/* Só aplica em telas pequenas */
@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .hamburger {
    display: block;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #1a2a4f;
    z-index: 1100;
    position: relative;
  }

  .nav-mobile {
    display: flex;
  }


  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .contact-form,
  .signup-form,
  #signup-form {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .contact-input,
  .signup-form input,
  .contact-textarea {
    width: 100%;
    box-sizing: border-box;
  }

  .name-row {
    flex-direction: column;
    gap: 10px;
  }

  .login-container {
    padding: 20px;
    margin: 40px 20px;
    box-sizing: border-box;
  }

  .login-container input,
  .login-container button {
    width: 100%;
    box-sizing: border-box;
  }

  .hero-content {
    margin-left: 0 auto;
    margin-right: 0 auto;
    padding: 0 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .hero {
    flex-direction: column !important;
    align-items: center;
    text-align: center;
  }

  .hero-content {
    order: 1;
    margin: 0 auto;
    padding: 0 20px;
  }

  .hero-image {
    order: 2;
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }

  .hero-image img {
    width: 100px;
    height: auto;
  }

  social-signup a {
    width: 100%;
    box-sizing: border-box;
  }

}

















