﻿.zona {
    display: flex;
    align-items: center;
    padding: 5px;
    font-family: 'Satoshi';
    letter-spacing: -0.16px;
    line-height: 22px;
    font-size: 18px;
    line-height: 1.7em;
}

    .zona:last-child {
        border-bottom: none;
    }

.circulo {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 10px;
}

.valle-occidental {
    background-color: #5ecaa6;
}

.valle-central {
    background-color: #7dccd0;
}

.turrialba {
    background-color: #5f9597;
}

.brunca {
    background-color: #ddf1e8;
}

.los-santos {
    background-color: #ad708a;
}

.tres-rios {
    background-color: #817ed0;
}

.orosi {
    background-color: #f4da70;
}

.tarjeta-cafe {
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .tarjeta-cafe:hover {
        transform: translateY(-5px);
    }

    .tarjeta-cafe .imagen-cafe {
        height: 375px;
        overflow: hidden;
        position: relative;
    }

        .tarjeta-cafe .imagen-cafe img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

    .tarjeta-cafe:hover .imagen-cafe img {
        transform: scale(1.05);
    }

    .tarjeta-cafe .contenido {
        padding: 1.2rem 1.5rem;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .tarjeta-cafe h5 {
        font-weight: bold;
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        color: #004b3a;
    }

    .tarjeta-cafe p {
        font-size: 0.95rem;
        color: #333;
        line-height: 1.5;
    }