/* Archivo: wp-content/plugins/portalaseo-pedido/assets/css/app.css */
/* Versión: 1.0.0 */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    background:#E9ECEF;
    font-family:Arial,Helvetica,sans-serif;
}
.pap-app{
    max-width:480px;
    margin:0 auto;
    min-height:100vh;
    background:#FFFFFF;
}
.pap-header{
    display:flex;
    align-items:center;
    gap:15px;
    padding:15px;
    background:#F4B400;
    border-bottom:1px solid #D9D9D9;
}
.pap-header-logo{
    width:60px;
    height:60px;
    border-radius:10px;
    background:#FFFFFF;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:bold;
}
.pap-header-info h1{
    font-size:22px;
    color:#212529;
    margin:0;
}
.pap-header-info p{
    font-size:14px;
    color:#495057;
    margin-top:4px;
}

/* HOME v1.0.0 */

.pap-home{
    padding:20px;
}

.pap-card{
    background:#FFFFFF;
    border:1px solid #DEE2E6;
    border-radius:12px;
    padding:20px;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
}

.pap-card h2{
    font-size:24px;
    color:#212529;
    margin-bottom:15px;
}

.pap-card p{
    color:#495057;
    line-height:1.6;
    margin-bottom:12px;
}

.pap-card p:last-child{
    margin-bottom:0;
}

/* HOME v1.2.0 */

.pap-subtitle{
    margin:10px 0 20px;
    color:#666;
}

.pap-card + .pap-card{
    margin-top:20px;
}

/* BOTONES DE SERVICIO v1.1.0 */

.pap-btn-service{
    width:100%;
    margin-top:12px;
    padding:16px;
    border:none;
    border-radius:10px;
    background:#F4B400;
    color:#212529;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.2s;
}

.pap-btn-service:hover{
    background:#E0A800;
}

.pap-btn-service:active{
    transform:scale(.98);
}

/* ==========================================
   Pantallas
========================================== */

.pap-screen{
    display:none;
}

.pap-screen.active{
    display:block;
}