﻿.cli_dashboard {
    width: 90%;
    margin: auto;
    font-family: Arial;
}

.cli_header {
    text-align: center;
    margin-bottom: 30px;
}

.cli_bienvenida h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.cli_bienvenida p {
    color: #666;
}

.cli_contenido {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}
.cli_tarjetas {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* PRODUCTOS */

.cli_productos h3 {
    margin-bottom: 20px;
}

.cli_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cli_card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
}

    .cli_card i {
        font-size: 35px;
        color: #1d5bd1;
        margin-bottom: 10px;
    }

    .cli_card h4 {
        margin-bottom: 10px;
    }

    .cli_card p {
        font-size: 14px;
        color: #666;
        margin-bottom: 15px;
    }

.cli_btn {
    background: #1d5bd1;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
}

/* PLANES */

/* CONTENEDOR GENERAL */
.cli_planes_wrap {
    text-align: center;
    padding: 40px 20px;
}

/* TITULO */
.cli_titulo {
    font-size: 32px;
    margin-bottom: 30px;
}

/* CENTRAR BLOQUE */
.cli_planes {
    display: flex;
    justify-content: center;
}

/* GRID */
.cli_planes_grid {
    display: grid;
    grid-template-columns: repeat(2, 320px); /* tamaño fijo bonito */
    gap: 40px;
    justify-content: center;
}
/* TARJETAS */
.cli_plan {
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    color: white;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

    .cli_plan:hover {
        transform: translateY(-10px);
    }
    .cli_plan h4 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 10px;
        color: white;
    }
.cli_basico {
    background: linear-gradient(135deg, #2c7be5, #1a5edb);
}
.cli_precio {
    font-size: 42px;
    font-weight: 800;
    margin: 15px 0;
}
.cli_plan span,
.cli_plan li {
    color: rgba(255,255,255,0.95);
    font-weight: 600;
}

/* LISTA */
.cli_plan ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

/* ICONOS TIPO CHECK */
.cli_plan li::before {
    content: "• ";
    font-weight: bold;
}

/* BOTÓN */
.cli_btn_plan {
    background: #fff;
    color: #1f1f1f;
    border: none;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 700;
    margin-top: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .cli_btn_plan:hover {
        background: #f2f2f2;
        transform: scale(1.05);
    }
/* RESPONSIVE → 1 COLUMNA */
@media (max-width: 900px) {
    .cli_planes_grid {
        grid-template-columns: 1fr;
    }
}