/* ====== Estilos principales para la landing ====== */

:root {
  --brand-blue: #1a4a79; /* color exacto */
  --blue-200: #cfe1ec;
  --radius: 1.25rem;
}

* {
  box-sizing: border-box;
}
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    Cantarell, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  color: #111827;
}

.py-6 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.rounded-4 {
  border-radius: var(--radius) !important;
}

/* Navbar 132px y menú centrado */
.nav-blue {
  background: var(--brand-blue);
  min-height: 132px;
}
.navbar .navbar-nav.main-nav {
  gap: 1.5rem;
  font-weight: 600;
}
.navbar .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.92);
}
.navbar .navbar-nav .nav-link:hover {
  color: #84c1a4;
}

/* Separador blanco bajo el nav (como en tus capturas) */
.divider-white {
  height: 20px;
  background: #fff;
}

/* Hero */
.hero-blue {
  background: var(--brand-blue);
}
.text-blue-200 {
  color: var(--blue-200);
}
.fw-extrabold {
  font-weight: 800;
}
.hero-img {
  width: 100%;
  max-width: 620px;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Secciones con imágenes */
.about-img,
.feature-img {
  object-fit: cover;
  border-radius: var(--radius);
}

/* Tarjeta CTA */
.cta-card {
  max-width: 720px;
  border-radius: var(--radius);
}

/* Palomitas verdes */
.list-check {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.list-check li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
}
.list-check li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: #28a745;
  font-weight: 700;
}

/* Modal */
.modal-blue {
  background: var(--brand-blue);
}

/* Offset de anclas para navbar fijo */
section[id] {
  scroll-margin-top: 160px;
}

.brand-img{
  padding-top: 20px;
}

div .col-lg-6 .mb-3, div .col-lg-6 .mb-0{
  text-align: justify;
} 

#features .container p{
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.792) !important;
}

.social-media{
  text-decoration: none;
}

.social-media:hover{
  color: #28a745;
  cursor: pointer;
  transition: 300ms all;
}

.footer_p p, 
.social-media{
  text-align: center;
  color: white;
}


