/* ==== LANDING PAGE STYLES ==== */
.landing-body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background-color: #f8f9ff;
  color: #222;
}

/* ==== HEADER ==== */
.landing-header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-img {
  height: 36px;
}

.logo-text {
  font-size: 22px;
  font-weight: 500;
  color: #567984;
  margin-top: 13px;
  margin-left: 30px;
}

/* NAVIGATION */
.landing-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.landing-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.landing-nav a:hover {
  color: #0057ff;
}

/* AUTH BUTTONS */
.auth-buttons {
  display: flex;
  gap: 10px;
}

.btn-outline, .btn-primary {
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 400;
  text-decoration: none;
  transition: all .2s ease-in-out;
}

.btn-outline {
  border: 2px solid #567984;
  color: #567984;
}

.btn-outline:hover {
  background: #00305c;;
  color: #fff;
}

.btn-primary {
  /*background: #0057ff;*/
  background: #567984;
  color: #fff;
}

.btn-primary:hover {
  background: #5c85b7;
}

/* MENU MOBILE TOGGLE */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* ==== HERO ==== */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10% 5%;
  background: linear-gradient(135deg, #e6f0ff 0%, #ffffff 100%);
}

.hero-content {
  flex: 1 1 50%;
  max-width: 550px;
}

.hero-content h1 {
  font-size: 40px;
  color: #0a0a23;
  margin-bottom: 15px;
}

.hero-content h1 span {
  color: #0057ff;
}

.hero-content p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 25px;
  padding: 10px;
}

.search-bar {
  display: flex;
  border: 1px solid #ccc;
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 30px;
}

.search-bar input {
  flex: 1;
  border: none;
  padding: 12px 20px;
  outline: none;
}

.search-bar button {
  background: #0057ff;
  color: #fff;
  border: none;
  padding: 0 20px;
  cursor: pointer;
  font-size: 1.3rem;
}

/* HERO STATS */
.hero-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-stats div {
  background: #0057ff;
  color: white;
  border-radius: 12px;
  padding: 20px;
  flex: 1 1 150px;
  text-align: center;
  transition: transform 0.2s ease;
}

.hero-stats div:hover {
  transform: translateY(-5px);
}

.hero-image {
  flex: 1 1 40%;
  text-align: right;
}

.hero-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
}

/* ==== FOOTER ==== */
.landing-footer {
  text-align: center;
  padding: 20px;
  background: #333333;
  color: #fff;
  margin-top: 0px;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 900px) {
  .landing-nav {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    text-align: center;
    border-top: 1px solid #ddd;
    padding: 20px 0;
  }

  .landing-nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .desktop-only {
    display: none;
  }

  .hero-section {
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    text-align: center;
    margin-top: 30px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-stats {
    flex-direction: column;
  }
}

.mobile-auth {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Banner Central */
.benefits-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #567984;
  color: white;
  padding: 10px 20px;
  flex-wrap: wrap;
}

.benefit-box {
  display: flex;
  align-items: center;
  text-align: left;
  max-width: 350px;
  gap: 20px;
  margin: 15px;
}

.benefit-icon {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 100px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.benefit-text h3 {
  font-weight: 400;
  margin-bottom: 8px;
  font-size: 18px;
}

.benefit-text p {
  font-size: 14px;
  color: #e0e0e0;
  margin: 0;
  line-height: 1.4em;
}

/* Responsivo */
@media (max-width: 900px) {
  .benefits-section {
    flex-direction: column;
    text-align: center;
  }

  .benefit-box {
    flex-direction: column;
    text-align: center;
  }
}

/* Banner Central */