/* =========================================================
   SECCIÓN DE TÉRMINOS Y CONDICIONES
========================================================= */

.tyc-section {
    width: 100%;
    background: url('../../img/externalConfintia/back-degree.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 130px 185px;
    position: relative;
}


.tyc-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Título */
.tyc-title {
    font-family: 'Roboto', sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0.25px;
    color: #535353;
    text-align: left;
    margin: 0 0 48px 0;
}

/* Lista de Términos y Condiciones */
.tyc-list {
    display: flex;
    flex-direction: column;
    gap: 104px;
}

/* Cada item de Términos y Condiciones */
.tyc-item {
    display: flex;
    flex-direction: row;
    gap: 264px;
    align-items: flex-start;
}

/* Pregunta */
.tyc-question {
    width: 280px;
    flex-shrink: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.25px;
    color: #535353;
}

/* Respuesta */
.tyc-answer {
    flex: 1;
    max-width: 520px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: 0.25px;
    color: #535353;
    text-align: justify;
}

/* =========================================================
   RESPONSIVE TÉRMINOS Y CONDICIONES
========================================================= */

/* Tablet */
@media (max-width: 1100px) {
    .tyc-section {
        padding: 80px 60px;
        background-attachment: scroll;
    }

    .tyc-item {
        gap: 60px;
    }

    .tyc-question {
        width: 250px;
    }
}

@media (max-width: 900px) {
    .tyc-section {
        padding: 60px 40px;
    }

    .tyc-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .tyc-list {
        gap: 60px;
    }

    .tyc-item {
        flex-direction: column;
        gap: 16px;
    }

    .tyc-question {
        width: 100%;
    }

    .tyc-answer {
        max-width: 100%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .tyc-section {
        padding: 48px 20px;
    }

    .tyc-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 32px;
    }

    .tyc-list {
        gap: 40px;
    }

    .tyc-item {
        gap: 12px;
    }

    .tyc-question {
        font-size: 16px;
        line-height: 24px;
    }

    .tyc-answer {
        font-size: 14px;
        line-height: 22px;
    }
}