/**
 * Rocha Services Cards Widget - Rocha Brothers Group
 * Cards con imagen, texto y link - "Select a service"
 */

.rocha-services-wrapper {
    background-color: #2a2a2a;
    padding: 3rem 1rem 2rem;
}

.rocha-services-title {
    text-align: center;
    color: #e85d04;
    font-size: 1.75rem; 
    font-weight: 700;
    margin: 0 0 2rem 0;
}

.rocha-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.rocha-service-card {    
    background-color: #e8e8e800 !important;
    transition: opacity 0.3s ease;
}

.rocha-service-card:hover .rocha-service-card-inner { 
    opacity: 0.9;
}

.rocha-service-card-inner {
    display: block;
    padding: 1rem; 
    text-decoration: none;
    color: inherit;
}
 
a.rocha-service-card-inner {
    cursor: pointer;
}

.rocha-service-card-image {
    margin-bottom: 1rem;
}

.rocha-service-card-image img {
    display: block;
    width: 100%;
    height: auto; 
    max-width: 100%; 
    max-height: max-content;
}

.rocha-service-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #ffffff !important;
}
.elementor-8 .elementor-element.elementor-element-695f844 .rocha-service-card {
    background-color: #e8e8e800 !important;
}
.rocha-service-card-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ffffff !important;
    margin: 0;
    text-align: left;
}

/* Tablet */
@media (min-width: 768px) { 
    .rocha-services-wrapper {
        padding: 4rem 2rem 3rem;
    }

    .rocha-services-title {
        font-size: 2rem;
        margin-bottom: 2.5rem; 
    }

    .rocha-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    } 

    .rocha-service-card-desc {
        font-size: 1rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .rocha-services-wrapper {
        padding: 5rem 2rem 4rem;
    }

    .rocha-services-title {
        font-size: 2.25rem;
    }

    .rocha-services-grid {
        gap: 2.5rem;
    } 

    .rocha-service-card-desc {
        font-size: 1.05rem;
    }
}
