.services-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.service-card {
    margin-bottom: 30px;
}

.service-box {
    background: #000000;
    border-radius: 6px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 25px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.service-box img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-box h4 {
    margin: 20px 15px 15px;
    color: #ffffff;
    /* verde */
    font-size: 20px;
    font-weight: 600;
}

.btn-service {
    display: inline-block;
    padding: 10px 22px;
    background-color: #f4c430;
    /* amarillo */
    color: #1b7f3b;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: #1b7f3b;
    color: #ffffff;
    text-decoration: none;
}

.service-item {
    text-align: center;
    margin-bottom: 40px;
}

.service-circle img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f4c430;
    /* amarillo */
    transition: all 0.3s ease;
}

.service-circle img:hover {
    transform: scale(1.05);
    border-color: #1b7f3b;
    /* verde */
}

.service-circle p {
    margin-top: 15px;
    font-weight: 600;
    color: #1b7f3b;
    font-size: 15px;
    line-height: 1;
    text-align: center;
}

.logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.logos-grid img {
    width: 12.5%;
    /* 8 logos por fila en desktop */
    padding: 16px;
    opacity: 0.75;
    transition: all 0.3s ease;
}

.logos-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}


/* Tablet */

@media (max-width: 991px) {
    .logos-grid img {
        width: 20%;
        /* 5 por fila */
    }
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 140px;
}

.footer-title {
    color: #ffffff;
    font-size: 13px;
    letter-spacing: 1px;
    margin-right: 15px;
}


/* Base icon */

.social-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 20px;
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}


/* Colores */

.social-icon.linkedin {
    background-color: #0077b5;
}

.social-icon.facebook {
    background-color: #3b5998;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}


/* Hover */

.social-icon:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}


/* Mobile */

@media (max-width: 767px) {
    .logos-grid img {
        width: 20;
        /* 12 logos por fila */
        padding: 8px;
    }
    .footer-social {
        display: flex;
        align-items: center;
        gap: 12px;
        padding-top: 40px !important;
    }
}