/* Hero Section */
.hero-section {
    background: rgba(0, 0, 0, 0.5);
}
.hero-section h1 {
    font-size: 3rem;
}
.hero-section p {
    font-size: 1.25rem;
}
/* Estilos para la sección de Objetivo */
#objetivo .col-md-4 img {
    border: 3px solid #6c757d;
    transition: transform 0.3s ease;
}
#objetivo .col-md-4 img:hover {
    transform: scale(1.1);
}
#objetivo h4 {
    color: #007bff;
    margin-top: 1rem;
}
/* Contenedor cuadrado para las imágenes */
.image-container {
    width: 150px;
    height: 150px;
    overflow: hidden;
    display: inline-block;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que la imagen cubra el contenedor sin distorsionarse */
}

