/* BASE */
body {
  font-family: 'Inter', sans-serif;
  background-color: #f5f7f9; /* 60% gris claro */
  color: #0e3b5f;
}

/* NAVBAR */
.custom-navbar {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  transition: all 0.3s ease;
}

/* LOGO */
.logo {
  height: 70px;
}

/* LINKS */
.nav-link {
  color: #005b81 !important; /* 10% azul */
  font-weight: 500;
  margin: 0 10px;
  position: relative;
}

/* HOVER */
.nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #ed7610; /* 30% naranja */
  transition: 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

/* CTA BUTTON */
.btn-cta {
  background-color: #ed7610;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-cta:hover {
  background-color: #cf5f0c;
  color: #fff;
}

/* OUTLINE BUTTON */
.btn-outline-custom {
  border: 2px solid #005b81;
  color: #005b81;
  border-radius: 30px;
  font-weight: 600;
}

.btn-outline-custom:hover {
  background-color: #005b81;
  color: #fff;
}

/* HERO */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  background: linear-gradient(135deg, #f5f7f9 60%, #ffffff 100%);
}

/* TITLES */
.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0e3b5f;
}

/* SUBTITLE */
.hero-subtitle {
  font-size: 1.2rem;
  color: #5f7d95;
}

/* IMAGE */
.hero-img {
  max-width: 100%;
  height: auto;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-section {
    text-align: center;
    padding-top: 140px;
  }

  .navbar-collapse {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    margin-top: 10px;
  }

  .btn-cta {
    width: 100%;
    margin-bottom: 10px;
  }

  .btn-outline-custom {
    width: 100%;
  }
}

/* SECTION FEATURE */
.section-feature {
  padding: 100px 0;
  background-color: #f5f7f9; /* gris claro (60%) */
}

/* REUTILIZAMOS */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0e3b5f;
}

.section-text {
  font-size: 1.1rem;
  color: #5f7d95;
  line-height: 1.7;
}

/* IMAGE */
.section-img {
  max-width: 95%;
}

/* FEATURES (consistente con sección anterior) */
.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.feature-item .icon {
  color: #ed7610;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2rem;
}

.feature-item p {
  margin: 0;
  color: #0e3b5f;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .section-title {
    font-size: 2rem;
    text-align: center;
  }

  .section-text {
    text-align: center;
  }

  .feature-item {
    justify-content: center;
    text-align: left;
  }
}

/* SECTION ALT (fondo blanco para contraste) */
.section-feature-alt {
  padding: 100px 0;
  background-color: #ffffff;
}

/* REUTILIZAMOS estilos existentes */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0e3b5f;
}

.section-text {
  font-size: 1.1rem;
  color: #5f7d95;
  line-height: 1.7;
}

.section-img {
  max-width: 95%;
}

/* FEATURES */
.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.feature-item .icon {
  color: #ed7610;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2rem;
}

.feature-item p {
  margin: 0;
  color: #0e3b5f;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .section-title {
    font-size: 2rem;
    text-align: center;
  }

  .section-text {
    text-align: center;
  }

  .feature-item {
    justify-content: center;
    text-align: left;
  }
}

/* SECTION */
.section-ai-dynamic {
  padding: 120px 0;
  background: linear-gradient(135deg, #f5f7f9 60%, #ffffff 100%);
}

/* HEADER TEXT */
.section-ai-dynamic .section-text {
  max-width: 700px;
}

/* BADGE */
.badge-ai {
  display: inline-block;
  background-color: rgba(237, 118, 16, 0.1);
  color: #ed7610;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* CARDS */
.ai-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 20px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #eef2f5;
}

.ai-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* HIGHLIGHT CARD (IA) */
.ai-card.highlight {
  border: 2px solid #ed7610;
  transform: scale(1.05);
}

/* ICON */
.ai-icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

/* TITLES */
.ai-card h5 {
  font-weight: 600;
  color: #0e3b5f;
  margin-bottom: 10px;
}

/* TEXT */
.ai-card p {
  font-size: 0.95rem;
  color: #5f7d95;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .ai-card.highlight {
    transform: none;
  }

}

/* SECTION */
.section-kpi {
  padding: 120px 0;
  background-color: #ffffff;
}

/* TEXT WIDTH */
.section-kpi .section-text {
  max-width: 700px;
}

/* KPI CARDS */
.kpi-card {
  background: #f5f7f9;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  transition: 0.3s;
}

.kpi-card:hover {
  transform: translateY(-5px);
}

/* NUMBER */
.kpi-card h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #005b81;
}

/* TEXT */
.kpi-card p {
  margin-top: 10px;
  color: #5f7d95;
}

/* HIGHLIGHT */
.kpi-card.highlight {
  background-color: #ed7610;
  color: #fff;
}

.kpi-card.highlight h3,
.kpi-card.highlight p {
  color: #fff;
}

/* DASHBOARD */
.kpi-dashboard {
  background: #f9fbfc;
  padding: 40px;
  border-radius: 25px;
}

/* DASHBOARD CARDS */
.dashboard-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 15px;
  height: 100%;
}

.dashboard-card h6 {
  font-weight: 600;
  margin-bottom: 15px;
  color: #0e3b5f;
}

/* BARS */
.bar {
  height: 8px;
  background: #e3e8ec;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}

.bar span {
  display: block;
  height: 100%;
  background: #ed7610;
  border-radius: 10px;
}

/* CIRCLE */
.circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 8px solid #e3e8ec;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  position: relative;
}

.circle span {
  font-weight: 700;
  color: #005b81;
}

/* LIST */
.dashboard-card ul {
  padding-left: 0;
  list-style: none;
}

.dashboard-card li {
  margin-bottom: 8px;
  color: #5f7d95;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .kpi-card h3 {
    font-size: 2rem;
  }

}

/* SECTION */
.section-benefits {
  padding: 120px 0;
  background: linear-gradient(135deg, #f5f7f9 60%, #ffffff 100%);
}

/* TEXT WIDTH */
.section-benefits .section-text {
  max-width: 700px;
}

/* BOXES */
.benefit-box {
  padding: 40px;
  border-radius: 20px;
  height: 100%;
}

/* BEFORE */
.benefit-box.before {
  background: #ffffff;
  border: 1px solid #e3e8ec;
}

/* AFTER */
.benefit-box.after {
  background: #ed7610;
  color: #fff;
}

/* TITLES */
.benefit-box h4 {
  font-weight: 700;
  margin-bottom: 20px;
}

/* LIST */
.benefit-box ul {
  list-style: none;
  padding: 0;
}

.benefit-box li {
  margin-bottom: 12px;
  font-size: 1rem;
}

/* MINI BENEFITS */
.mini-benefit {
  padding: 20px;
}

.mini-benefit h5 {
  font-weight: 600;
  color: #0e3b5f;
  margin-bottom: 10px;
}

.mini-benefit p {
  color: #5f7d95;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .benefit-box {
    text-align: center;
  }

}

/* SECTION CTA */
.section-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, #005b81, #0e3b5f); /* 10% azul fuerte */
  color: #fff;
}

/* BOX */
.cta-box {
  max-width: 800px;
  margin: auto;
}

/* TITLE */
.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
}

/* TEXT */
.cta-text {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
}

/* BUTTON PRIMARY (ya lo tienes, solo reforzamos) */
.section-cta .btn-cta {
  background-color: #ed7610;
  border: none;
}

/* OUTLINE LIGHT */
.btn-outline-light {
  border: 2px solid #ffffff;
  color: #ffffff;
  border-radius: 30px;
  font-weight: 600;
}

.btn-outline-light:hover {
  background-color: #ffffff;
  color: #005b81;
}

/* TRUST TEXT */
.cta-trust {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .cta-title {
    font-size: 2rem;
  }

  .btn-lg {
    width: 100%;
    margin-bottom: 10px;
  }

}