/* ============================
   MANUALES — ESTILO GENERAL
   ============================ */

.manuales-title {
    font-size: 24px;
    color: #ffd54f;
    margin-bottom: 10px;
}

.manuales-subtitle {
    font-size: 14px;
    color: #b0bec5;
    margin-bottom: 25px;
}

/* Lista */
.manuales-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Tarjeta de manual */
.manual-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Ícono */
.manual-icon {
    width: 48px;
    height: 48px;
    background: #ffd54f;
    color: #1b1f2f;
    font-weight: 700;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* Texto */
.manual-info {
    flex: 1;
}

.manual-info h3 {
    margin: 0;
    font-size: 18px;
    color: #fff;
}

.manual-info p {
    margin: 4px 0 0;
    font-size: 13px;
    color: #b0bec5;
}

/* Botón */
.manual-download {
    background: #ffd54f;
    color: #1b1f2f;
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

/* ============================
   RESPONSIVE
   ============================ */

@media (max-width: 768px) {
    .manual-card {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .manual-icon {
        margin-bottom: 6px;
    }

    .manual-download {
        width: 100%;
        text-align: center;
    }
}
/* ============================
   MANUALES — ESTILO PRO
   ============================ */

.manuales-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Tarjeta */
.manual-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 18px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover */
.manual-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.45);
}

/* Ícono */
.manual-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, #ffd54f, #ffca28);
    color: #1b1f2f;
    font-weight: 700;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.35);
}

/* Info */
.manual-info h3 {
    margin: 0;
    font-size: 19px;
    color: #fff;
    font-weight: 600;
}

.manual-info p {
    margin: 4px 0 0;
    font-size: 13px;
    color: #b0bec5;
}

/* Botón */
.manual-download {
    background: #ffd54f;
    color: #1b1f2f;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.25s ease;
}

.manual-download:hover {
    background: #ffeb3b;
}

/* ============================
   RESPONSIVE
   ============================ */

@media (max-width: 768px) {
    .manual-card {
        flex-direction: column;
        text-align: center;
        gap: 14px;
        padding: 20px;
    }

    .manual-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .manual-download {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
}