@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}

body{
    width:100%;
    height:100vh;

    background-color: var(--white);
    font-family: 'Montserrat', sans-serif;
}

/*ROOT PALETA*/
:root{
    --dark-red: #600B08;
    --pink-opacity: #ffd9d7;
    --yellow: #CC750D;
    --rich-black: #030303;
    --white: #FCFFFF;
}

/*ALGUMAS CLASSES*/
.pointer{
    cursor:pointer;
}

.hide{
    display:none;
}
.uppercase{
    text-transform: uppercase;
}

.title{
    text-align: center;
    color:var(--yellow);

    font-size: 60px;
    font-weight: 900;
}

.justify{
    text-align: justify;
}
.center{
    text-align: center;
}


/*===============*/
#transparencia{
    padding: 10em 8em 4em 8em;


    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap:2em;
}

#transparencia div{
    display: flex;
    flex-direction: column;
    gap:1em;
}

#transparencia p{
    font-size:30px;
    color:var(--dark-red);
}

/*===== RESPONSIVO ==========*/

@media (max-width:2200px) and (min-width:1801px){
    #transparencia{
        padding: 8em 8em 3em 8em;     
        gap:2em;
    }
    .title{
        font-size: 50px;
    }

    #transparencia p{
        font-size:26px;
    }
}

@media (max-width:1800px) and (min-width:1441px){
    #transparencia{
        padding: 6em 8em 2em 8em;     
        gap:1em;
    }
    .title{
        font-size: 45px;
    }

    #transparencia p{
        font-size:24px;
    }
}

@media (max-width:1440px) and (min-width:1025px){
    #transparencia{
        padding: 4em 6em 2em 4em;     
        gap:1em;
    }
    .title{
        font-size: 40px;
    }

    #transparencia p{
        font-size:20px;
    }
}


@media (max-width:1024px) and (min-width:769px){
    #transparencia{
        padding: 4em 6em 2em 6em;
        gap:1em;
    }
    .title{
        font-size: 35px;
    }

    #transparencia p{
        font-size:16px;
    }
}

@media (max-width:768px) and (min-width:631px){
    #transparencia{
        padding: 4em 2em 2em 2em;
        gap:1em;
    }
    .title{
        font-size: 30px;
    }

    #transparencia p{
        font-size:16px;
    }
}

@media (max-width:630px) and (min-width:376px){
    #transparencia{
        padding: 4em 2em 2em 2em;
        gap:1em;
    }
    .title{
        font-size: 25px;
    }

    #transparencia p{
        font-size:14px;
    }
}

@media (max-width:375px) and (min-width:321px){
    #transparencia{
        padding: 3em 2em 1em 2em;
        gap:0.5em;
    }
    .title{
        font-size: 20px;
    }

    #transparencia p{
        font-size:13px;
    }
}

@media (max-width:320px){
    #transparencia{
        padding: 3em 2em 1em 2em;
        gap:0.5em;
    }
    .title{
        font-size: 18px;
    }

    #transparencia p{
        font-size:12px;
    }
}
