/* Extraído de tips-modal.php (2026-09-25) para que se cachee (assets/web.config, 30d).
   Editar ACÁ; el ?v=filemtime del include invalida la caché del navegador. */
.tips-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.tips-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalAbrir 0.3s ease;
}
@keyframes modalAbrir {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.tips-modal-header {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.tips-modal-header h3 {
    margin: 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.tips-modal-header h3 i {
    font-size: 22px;
}
.tips-modal-close {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tips-modal-close:hover {
    background: rgba(255,255,255,0.3);
}
.tips-modal-body {
    padding: 25px;
    max-height: 400px;
    overflow-y: auto;
}
.tips-titulo {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
}
.tips-descripcion {
    color: #333;
    font-size: 15px;
    line-height: 1.6;
    text-align: justify;
}
.tips-modal-footer {
    padding: 20px;
    background: #f5f5f5;
    border-top: 1px solid #ddd;
    text-align: center;
}
.tips-modal-btn {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}
.tips-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76,175,80,0.4);
}
