/* static/app/ayuda.css */

/* =========================
   HEADER
========================= */

.perfil-header{
    margin-bottom:26px;
}

.perfil-header h1{
    margin:0 0 10px 0;

    font-family:"Raleway", sans-serif;

    font-size:30px;

    font-weight:700;

    line-height:1.1;

    letter-spacing:0;

    color:#375e65;

    text-align:center;
}

.perfil-header p{
    margin:0;

    font-family:"Inter", sans-serif;

    font-size:15px;

    line-height:1.5;

    color:#8a8375;

    text-align:center;
}

/* =========================
   LAYOUT GENERAL
========================= */

.ayuda-page{
    max-width:980px;
    margin:0 auto;
    padding:20px 0 40px 0;
}



/* =========================
   ESTRUCTURA
========================= */

.ayuda-body{
    display:flex;
    flex-direction:column;
    gap:26px;
}

/* =========================
   BLOQUES (estilo principal)
========================= */

.bloque{
    display:flex;
    flex-direction:column;
    gap:14px;

    padding:20px 22px;

    border:1px solid #e3ddd2;
    border-radius:18px;

    background:#faf8f3;

    box-shadow:0 2px 6px rgba(0,0,0,0.04);
}

/* título bloque */
.bloque-header h2{
    margin:0;

    font-family:"Raleway", sans-serif;
    font-size:15px;
    font-weight:500;
    letter-spacing:0.5px;

    color:#375e65;
}

/* texto */
.bloque-body p{
    margin:0;

    font-family:"Inter", sans-serif;
    font-size:13.5px;
    line-height:1.6;

    color:#6f6a5f;
}

/* =========================
   GRID
========================= */

.ayuda-grid-dos{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.ayuda-grid-tres{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:18px;
}

/* =========================
   CARDS (tipo principal)
========================= */

.ayuda-card{
    background:#ffffff;
    border:1px solid #e3ddd2;
    border-radius:14px;
    padding:16px;

    display:flex;
    flex-direction:column;
    gap:10px;

    transition:all 0.15s ease;
}

.ayuda-card:hover{
    transform:translateY(-2px);
    box-shadow:0 4px 10px rgba(0,0,0,0.06);
}

.ayuda-card h3{
    margin:0;

    font-size:14px;
    color:#375e65;
    font-weight:500;
}

.ayuda-card p{
    margin:0;

    font-size:13px;
    color:#6f6a5f;
}

.ayuda-ejemplo{
    font-size:12px;
    color:#8a8375;
    font-style:italic;
}

/* =========================
   SUBSECCIONES (nuevo bloque limpio)
========================= */

.subsecciones-ayuda{
    display:flex;
    gap:40px;
    margin-top:10px;
}

.subsecciones-ayuda strong{
    font-size:13px;
    color:#375e65;
}

.subsecciones-ayuda p{
    margin:2px 0 0 0;
    font-size:12.5px;
    color:#6f6a5f;
}

/* =========================
   PASOS (arreglado)
========================= */

.ayuda-pasos{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.ayuda-paso{
    display:flex;
    align-items:flex-start;
    gap:12px;
}

.paso-numero{
    min-width:26px;
    height:26px;

    border-radius:50%;
    background:#c48a38;
    color:white;

    font-size:12px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:500;
}

.ayuda-paso strong{
    font-size:13px;
    color:#375e65;
}

.ayuda-paso p{
    margin:2px 0 0 0;
    font-size:12.5px;
    color:#6f6a5f;
}

/* =========================
   TAGS
========================= */

.ayuda-tags{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:6px;
}

.ayuda-tag{
    background:#e7e3da;
    color:#6f6a5f;
    font-size:12px;

    padding:6px 10px;
    border-radius:8px;

    cursor:pointer;
}

.ayuda-tag:hover{
    background:#dcd6ca;
}

/* =========================
   BOTONES (coherente con app)
========================= */

.btn-secundario{
    margin-top:6px;

    background:#c48a38;
    color:white;

    border:none;
    padding:9px 12px;

    border-radius:10px;
    font-size:13px;

    cursor:pointer;
    transition:all 0.15s ease;
}

.btn-secundario:hover{
    background:#b5792f;
}

/* =========================
   SOPORTE
========================= */

.bloque-soporte ul{
    margin:0;
    padding-left:18px;

    display:flex;
    flex-direction:column;
    gap:6px;
}

.bloque-soporte li{
    font-family:"Inter", sans-serif;
    font-size:13.5px;
    line-height:1.55;
    color:#375e65; /* 👈 mismo tono que títulos suaves */
}

.bloque-soporte{
    background:#f4efe6;
}

/* =========================
   CTA FINAL
========================= */

.bloque-cta-ayuda{
    border:1px solid #c48a38;
    background:#f3e2c7;
    box-shadow:0 2px 6px rgba(0,0,0,0.05);
}

/* =========================
   UNIFICACIÓN BOTONES PQ
========================= */

.btn-ayuda-fijo{
    width:160px;
    text-align:center;
}


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

@media (max-width:780px){

    .ayuda-grid-dos,
    .ayuda-grid-tres{
        grid-template-columns:1fr;
    }

}