/* Estilos complementarios a Tailwind CSS */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Simulador de Teléfono Android para previsualización */
.android-device-frame {
    width: 360px;
    height: 720px;
    background: #0f172a;
    border-radius: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4), 0 0 0 12px #1e293b, 0 0 0 14px #334155;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.android-camera-punch {
    width: 12px;
    height: 12px;
    background-color: #020617;
    border-radius: 50%;
    margin: 8px auto;
}

.android-screen-content {
    flex: 1;
    overflow-y: auto;
    background-color: #ffffff;
    color: #0f172a;
    display: flex;
    flex-direction: column;
}

/* Scrollbar estilizada */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #0f172a;
}
::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #475569;
}

/* Animación de pulso para el estado online */
@keyframes pulse-ring {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 0; }
    100% { transform: scale(0.95); opacity: 0; }
}

.pulse-active::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: inherit;
    animation: pulse-ring 2s infinite ease-in-out;
}
