/* Home Page V2 Styles - Mentu Labs */

.home-v2-container {
  font-family: 'Work Sans', sans-serif;
  background-color: var(--ml-bg-beige);
  color: var(--ml-primary-dark);
}

/* Hero Section */
.hero-section {
  background-color: var(--ml-bg-beige-dark);
  padding: 80px 0;
  border-radius: 0 0 40px 40px;
}

.hero-content h1 {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 32px;
}

.hero-content h1 span.blue {
  color: var(--ml-primary-blue);
}

.hero-content p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 40px;
}

/* Trust Bar */
.trust-bar {
  padding: 40px 0;
  text-align: center;
}

.trust-bar h2 {
  font-size: 31px;
  font-weight: 700;
  margin-bottom: 32px;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
}

.trust-divider {
  width: 4px;
  height: 80px;
  background-color: var(--ml-primary-orange);
}

/* Ejes Section */
.ejes-section {
  padding: 64px 0;
  background-color: var(--ml-bg-beige-dark);
  border-radius: 40px;
}

.ejes-header {
  text-align: center;
  margin-bottom: 48px;
}

.ejes-card {
  display: flex;
  background-color: #e0e3e0; /* Default for strategy */
  border-radius: 0 32px 32px 0; /* Remove top-left and bottom-left rounding */
  overflow: hidden;
  margin-bottom: 24px;
}

.ejes-card.academia { background-color: #e5d8d5; }
.ejes-card.soluciones { background-color: #e2e1e3; }

.ejes-card-img {
  width: 448px;
  min-height: 444px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ejes-card-content {
  flex: 1;
  padding: 64px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ejes-card-content .ml-btn-dark {
  width: 300px;
  justify-content: center;
}

.ejes-card-content h3 {
  font-weight: 700;
  font-size: 24px;
  margin-top: 16px;
}

/* Mobile Header Bar (Hidden on desktop) */
.ejes-card-mobile-header {
  display: none;
  padding: 20px;
  align-items: center;
  justify-content: center;
}

.white-logo {
  filter: brightness(0) invert(1);
  height: 40px;
}

/* Cerrando Brechas */
.brechas-section {
  background-color: var(--ml-primary-dark);
  color: #f9f7f1;
  padding: 64px 0;
  border-radius: 40px 40px 0 0;
}

/* Results Section */
.results-section {
  padding: 64px 0;
  text-align: center;
}

.results-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  margin-top: 32px;
}

.result-item h3 {
  font-size: 45px;
  font-weight: 700;
}

/* Final CTA */
.final-cta {
  background-color: var(--ml-primary-blue);
  color: #f9f7f1;
  padding: 64px 0;
  text-align: center;
  border-radius: 40px 40px 0 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-section {
    padding: 40px 0;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 36px;
  }
  .hero-content {
    margin-bottom: 32px;
  }
  .hero-section img {
    max-width: 280px !important;
  }
  .trust-bar h2 {
    font-size: 24px;
  }
  .trust-logos {
    flex-wrap: wrap;
    gap: 24px;
  }
  .trust-divider {
    display: none;
  }
  .ejes-card {
    flex-direction: column;
    border-radius: 24px; /* Restore rounding for mobile for a better look */
    background-color: #f9f7f1; /* Light background for the content part */
    border: 1px solid rgba(0,42,40,0.1);
  }
  .ejes-card.academia, .ejes-card.soluciones {
    background-color: #f9f7f1;
  }
  .ejes-card-mobile-header {
    display: flex;
  }
  .ejes-card-img {
    display: none; /* Hide photo on mobile */
  }
  .ejes-card-content {
    padding: 32px 24px;
    text-align: left;
  }
  .ejes-card-content .ml-btn-dark {
    width: 100%;
    justify-content: center;
  }
  .brechas-section {
    padding: 48px 24px;
  }
  .results-grid {
    flex-direction: column;
    gap: 32px;
  }
  .results-section .trust-divider {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 28px;
  }
  .final-cta h2 {
    font-size: 24px;
  }
}

.final-cta h2 {
  font-size: 37px;
  font-weight: 700;
  margin-bottom: 16px;
}
