



.ca-card:hover {
    transform: scale(1.02);
}





.ca-card:hover .ca-overlay {
    transform: translateY(0);
}






/***** *****/


.ca-card-grid {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.ca-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    max-width: 600px;
    margin: 0;
    background: #efefef;
    padding: 6px;
    border-radius: 5px;
}

.ca-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
}

.ca-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: #fff;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.ca-card-image:hover .ca-overlay {
    opacity: 1;
}

.ca-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.ca-icon {
    width: 100px;
    height: 100px;
}

.ca-overlay h3 {
    font-size: 28px;
    text-transform: uppercase;
    font-weight: 900;
}

.ca-overlay p {
    margin: 0;
    font-size: 14px;
}

.ca-card-bottom {
    margin-top: 15px;
    text-align: center;
}

.ca-button {
    display: inline-block;
    padding: 12px 60px;
    font-weight: bold;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
}



/* Responsivo */
@media (max-width: 768px) {
    .ca-card-grid {
        grid-template-columns: 1fr !important;
    }
}





