/* Add here all your CSS customizations */
#header .header-logo img {
    transition: all 0.3s ease;
    border-radius: 0;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 992px) {
    #header .header-logo img {
        background-color: transparent;
        padding: 0;
        width: auto;
        height: 100px;
        box-shadow: none;
    }
}

a.whatsapp {
    border-radius: 25%;
    background: url(/img/whatsapp-icon.png) round;
    z-index: 1000;
    bottom: 20px;
    left: 20px;
    border: 1px solid white;
    position: fixed;
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
}


.whatsapp:hover {
    background-color: black;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}


.bg-color-grey-scale-1 {
    background-color: #ededed;
}

.scroll-to-top {
    bottom: 80px !important;
}

/* Estilos para la sección de clientes */
.clientes-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.cliente-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cliente-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.cliente-logo img {
    max-width: 200px;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(0%);
    transition: transform 0.3s ease;
}

.cliente-logo:hover img {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .clientes-logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        padding: 15px;
    }

    .cliente-logo {
        min-height: 100px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .clientes-logos-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 10px;
    }

    .cliente-logo {
        min-height: 80px;
        padding: 10px;
    }
}

/* Moved from index.html */
.main .section img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.banner-cta {
    position: absolute;
    bottom: 10%;
    left: 5%;
    z-index: 10;
    text-align: left;
}

.banner-cta .btn {
    background-color: #FF5722;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    white-space: nowrap;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.7);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 87, 34, 0);
    }
}

.banner-cta .btn:hover {
    background-color: #E64A19;
    color: white;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.4);
    transform: translateY(-2px) scale(1.05);
    animation: none;
}

@media (max-width: 991px) {
    .banner-cta {
        bottom: 8%;
        left: 4%;
    }

    .banner-cta .btn {
        padding: 14px 28px;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .banner-cta {
        bottom: 6%;
        left: 3%;
    }

    .banner-cta .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .banner-cta {
        bottom: 4%;
        left: 3%;
        width: auto;
    }

    .banner-cta .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: auto;
    }
}

@media (max-width: 400px) {
    .banner-cta {
        bottom: 3%;
        left: 2%;
    }

    .banner-cta .btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 330px) {
    .banner-cta {
        left: 2%;
        bottom: 2%;
    }

    .banner-cta .btn {
        padding: 7px 14px;
        font-size: 0.75rem;
    }
}

p {
    font-size: 1rem;
}

h1 {
    font-size: 3vw;
    /* Ajusta el tamaño del texto según el ancho de la ventana */
}

.titulo {
    font-size: 48px;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    line-height: 1.2;
    color: #333;
    /* Gris oscuro */
}

.subtitulo {
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #666;
    /* Gris claro */
}

@media (max-width: 768px) {
    h1 {
        font-size: 8vw;
        /* Ajusta el tamaño del texto para pantallas más pequeñas */
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 10vw;
        /* Ajusta el tamaño del texto para pantallas aún más pequeñas */
    }

    .titulo {
        font-size: 32px;
    }
}

/* Enhanced hover effects for service cards */
.featured-box {
    transition: all 0.3s ease;
    cursor: pointer;
}

.featured-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.featured-box:hover .icons {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}