/*-----------SECCION TÉRMINOS--------------*/

.terms-section{
    max-width: 1000px;
    margin: 50px auto;
    padding: 30px;
    background-color: var(--color-tarjetas-fondo);
    color: var(--color-tarjetas);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.terms-section h1{
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: bold;
}

.title-terms{
    font-size: 1.8rem;
    font-weight: bold;
    display: block;
    text-align: center;
    margin-bottom: 20px;
}

.subtitle{
    display: inline-block;
    border-bottom: 1px solid var(--color-tarjetas);
    padding-bottom: 0.3rem;
}

.image-terms{
    display: flex;
    justify-content: center;
    margin: 20px 0 40px 0;
}

.image-terms img{
    max-width: 200px;
}

.terms-content{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
}

.terms{
    min-width: 200px;
    flex: 1;
}

.image-terms{
    display: block;
    font-size: 1.8rem;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 20px;
}

.lists{
    display: flex;
    gap: 80px;
    justify-content: center;
    align-items: flex-start;
}

.can-draw, .cannot-draw{
    display: flex;
    flex-direction: column;
    font-size: 1.2rem;
}

.can-draw > span, .cannot-draw > span{
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
    text-align: left;
}

.can-draw ul, .cannot-draw ul{
    list-style: disc;
    padding-inline-start: 20px;
    margin: 0;
}

.can-draw li, .cannot-draw li{
    margin-bottom: 6px;
}


/*-----------CONDICIONES--------------*/

.terms-conditions{
    margin-top: 40px;
}

.conditions{
    max-width: 800px;
    margin: 0 auto;
}


.title-conditions{
    font-size: 2rem;
    font-weight: bold;
    display: block;
    text-align: center;
    margin-bottom: 20px;
}

.conditions p{
    max-width: 700px;
    margin: 0 auto 15px;
    color: var(--terms-text);
    text-align: left;
    padding-left: 4rem;
    font-size: 18px;
}

/*----------COLORES EMOJIS------------*/

.fa-coins{
    color: rgb(223, 211, 108);
}

.fa-money-check-dollar{
    color: rgb(200, 252, 123);
}

.fa-ban{
    color: rgb(221, 133, 133);
}

.fa-palette{
    color: rgb(240, 159, 122);
}

.fa-ruler-vertical{
    color: rgb(160, 160, 160);
}

.fa-thumbtack{
    color: rgb(98, 172, 206);
}

.fa-repeat{
    color: rgb(177, 119, 231)
}

.fa-pencil{
    color: rgb(106, 216, 179);
}

.fa-check{
    color: rgb(115, 187, 115);
}


/*RESPONSIVE*/

@media (max-width: 768px){
    .terms .lists{
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .terms-section h1{
        font-size: 1.8rem;
    }

    .terms-conditions p{
        font-size: 1.1rem;
    }
}


@media (max-width: 576px){

    .terms-section h1{
        font-size: 1.6rem;
    }

    .terms .title-terms{
        font-size: 1.4rem;
    }

    .terms-conditions p{
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .terms-content .lists{
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .image-terms img{
        max-width: 150px;
    }
}

@media (max-width: 461px){
.title-conditions{
    font-size: 1.6rem;
}

.terms-conditions p{
        font-size: 0.95rem;
    padding-right: 2.7rem;
    }
      .terms-content .lists{
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;

    }
}