.carousel-item img {
  height: 450px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 768px) {
  .carousel-item img {
    height: 250px;
  }
}
body {
    font-family: "Poppins", sans-serif;
    background-color: #f5f7fa;
    color: #161618;
    line-height: 1.7;
}
.navbar {
    background-color: #051e3f !important; /* azul gris corporativo */
    padding-top: 12px;
    padding-bottom: 12px;
}
p.lead {
    font-style: italic;
    color: #121115f2;
}
.container .row {
    margin-top: 40px;
    margin-bottom: 40px;
}

img.img-fluid {
    box-shadow: 0px 4px 18px rgba(0,0,0,0.15);
    border-radius: 12px;
}


/* estilos de el footer*/
.footer {
    background-color: #062B3C; 
    color: white;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-weight: bold;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links {
    text-align: center;
    margin-bottom: 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 20px;
    }
}
