/* landing.css - Estilos específicos para la página principal */

.landing-container {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 2rem;
    text-align: center;
}

.landing-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.btn-resumen {
    display: inline-block;
    background: linear-gradient(135deg, #e94e77, #c53d64);
    color: white;
    padding: 16px 32px;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    margin: 1.5rem 0;
    box-shadow: 0 6px 20px rgba(233, 78, 119, 0.3);
    transition: all 0.3s ease;
}

.btn-resumen:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(233, 78, 119, 0.4);
    background: linear-gradient(135deg, #c53d64, #e94e77);
}

.week-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.tab {
    padding: 12px 20px;
    background: #f1f3f5;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.tab:hover {
    background: #4a90e2;
    color: white;
    transform: scale(1.05);
}

.tab.active {
    background: #4a90e2;
    color: white;
}