.ree-modern-container {
    display: flex;
    justify-content: center;
    gap: 20px; 
    margin: 40px auto;  
    max-width: 1280px; 
    flex-wrap: wrap; 
}

.ree-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    flex: 1 1 calc(33.333% - 20px); 
    max-width: calc(33.333% - 20px);  
    box-sizing: border-box;  
}

.ree-card.blue {
    background: linear-gradient(135deg, #2e4b90, #1c2e5d);
    color: #ffffff;
}

.ree-card.white {
    background: #ffffff;
    color: #333;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.ree-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: inherit;
}

.ree-price.green {
    color: #28a745;
}

.ree-price.red {
    color: #dc3545;
}

.ree-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    .ree-card {
        flex: 1 1 calc(50% - 20px); 
        max-width: calc(50% - 20px);
    }
}


@media (max-width: 768px) {
    .ree-card {
        flex: 1 1 100%; 
        max-width: 100%;
    }
}

.ree-hora {
    font-size: 30px;
    font-weight: bold;
}

.ree-precio-medio {
    font-size: 30px;
    font-weight: bold;
}

.titulo-white {
    color:#ffffff !important;
}