/* ================= PAGINA 11 ================= */
.pagina11 {
    padding: 100px 0;
    background: #f6f6f6;
}

/* GRID */
.p11-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* ================= IZQUIERDA ================= */
.p11-sub {
    color: var(--secondary-color);
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
}

.pagina11 h2 span {
    color: var(--secondary-color);
}

.p11-left p {
    color: var(--text-light);
    margin: 15px 0;
}

/* ================= DERECHA ================= */
.p11-item {
    background: #fff;
    margin-bottom: 15px;
    overflow: hidden;
    transition: 0.3s;
}

/* PREGUNTA */
.p11-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 20px;
    border-bottom: 2px solid var(--secondary-color);
}

/* ICONO */
.p11-question .icon {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

/* TITULO */
.p11-question h4 {
    flex: 1;
    margin: 0;
    text-align: left;
}

/* RESPUESTA */
.p11-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    padding: 0 20px;
}

/* ACTIVO */
.p11-item.active .p11-answer {
    max-height: 200px;
    padding: 20px;
}

/* ROTAR ICONO */
.p11-item.active i {
    transform: rotate(180deg);
    transition: 0.3s;
}

/* TABLET */
@media (max-width: 992px) {
    .p11-grid {
        grid-template-columns: 1fr;
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .pagina11 {
        padding: 60px 0;
    }

    .p11-question {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}