.navbar {
    transition: background 0.3s ease-in-out;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.8) !important;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    position: relative;
    margin-top: 10px;
    padding-bottom: 10px;
}

.section-title::after {
    content: "";
    width: 100px;
    height: 4px;
    background-color: #ff5733;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    border-radius: 5px;
}

/* tarjetas de servicios y soluciones */

.circle-img {
    width: 300px; /* Tamaño ajustable */
    height: 300px; /* Mantiene la proporción */
    object-fit: cover; /* Ajusta la imagen dentro del círculo */
    border-radius: 50%; /* Hace la imagen circular */
    border: 3px solid #007bff; /* Borde opcional */
}

/* estilos de cookies */

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 15px;
    z-index: 9999; /* Asegura que esté por encima de otros elementos */
}

