 /* ===================================== */
/* AYUDA / FAQ */
/* ===================================== */

body {
    font-family: system-ui, -apple-system, sans-serif;
    background-color: #ffffff;
    color: #111827;
    margin: 0;
}

/* CONTENEDOR */
.ayuda-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* TITULOS */
h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 30px;
}

/* ===================================== */
/* FAQ ACCORDION */
/* ===================================== */

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #ffffff;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #d1d5db;
}

.faq-question {
    padding: 16px 18px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #111827;
}

.faq-question:hover {
    color: #0DAF99;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 18px;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 18px 16px;
}

.icon {
    font-size: 12px;
    color: #9ca3af;
    transition: transform 0.3s ease;
}

.faq-item.active .icon {
    transform: rotate(180deg);
}

/* ===================================== */
/* CONTACTO */
/* ===================================== */

.contact {
    margin-top: 40px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
}

.contact h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

.contact a {
    color: #0DAF99;
    text-decoration: none;
    font-weight: 500;
}

.contact a:hover {
    text-decoration: underline;
}

/* ===================================== */
/* MARCA DE AGUA (igual que cookies/privacidad) */
/* ===================================== */

body::before {
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 500px;
    height: 500px;

    background-image: url("/ShinkaDesign/Imagenes/MarcaDeAguaShinka.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;

    opacity: 0.05;

    pointer-events: none;
    z-index: 0;
}