main{
    width: 100%;
    height: auto;
    background: var(--color3);
    padding: 2em 0 4em 0;
}
.contTitulo{
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(1,1fr);
}
.titulo{
    width: 90%;
    height: auto;
    margin: auto;
    text-align: center;
}
.titulo h1{
    width: 100%;
    height: auto;
    font-family: col;
    font-size: 2rem;
    color: var(--color1);
    text-align: center;
    letter-spacing: .05em;
}
.space{
    width: 100%;
    height: 2em;
}
.contInfo{
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 2em;
}
.contInfo picture{
    width: 90%;
    height: 10em;
    background: var(--color1);
    border-radius: 1em;
    margin: auto;
    position: relative;
}
.contInfo picture img{
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 2em;
}
.info{
    width: 90%;
    height: auto;
    margin: auto;
    background: var(--color1);
    padding: 1em 0;
    border-radius: 1em;
}
.descrip{
    width: 90%;
    height: auto;
    margin: auto;
    font-family: cor;
    font-size: 1rem;
    color: var(--color2);
    text-align: justify;
}
.moreInfo{
    width: 90%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1em;
    margin: 1em auto;
}
.infoAdi1,
.infoAdi2{
    width: 90%;
    height: auto;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: .5em;
}
.infoAdi1 h3,
.infoAdi2 h3{
    width: 100%;
    height: auto;
    margin: 0 auto 1em auto;
    font-family: col;
    font-size: 1rem;
    font-weight: 800;
    line-height: .9em;
    letter-spacing: .08em;
}
.infoAdi1 ul,
.infoAdi2 ul{
    width: 100%;
    height: auto;
}
.infoAdi1 li,
.infoAdi2 li{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    gap: .5em;
    font-family: cor;
    font-size: 1rem;
    font-weight: 400;
}
.infoAdi1 li span,
.infoAdi2 li span{
    font-weight: 800;
}
.btnCont{
    width: 8em;
    height: 2.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color3);
    border-style: dashed solid;
    border-radius: 1em;
    margin: 1em auto;
}
.btnCont a{
    width: 100%;
    height: 100%;
    font-family: cor;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    color: var(--color1);
    display: flex;
    justify-content: center;
    align-items: center;
}
.info > span{
    width: 90%;
    height: auto;
    margin: auto;
    font-family: cor;
    font-size: .8rem;
    color: var(--color5);
    display: block;
    text-align: center;
}
@media only screen and (min-width:481px) and (max-width:768px){
    .contInfo {
        width: 90%;
        margin: auto;
        grid-template-columns: repeat(2,1fr);
    }
    .contInfo picture {
        width: 100%;
        height: 13em;
        margin: 0;
    }
    .info {
        width: 100%;
    }
}
@media only screen and (min-width:769px) and (max-width:1279px){
    .contTitulo {
        width: 90%;
        display: flex;
        grid-template-columns: none;
        flex-direction: row-reverse;
        gap: 2em;
        margin: auto;
    }
    .titulo {
        width: 100%;
        margin: 1em 0;
    }
    .contInfo {
        width: 90%;
        margin: auto;
        grid-template-columns: repeat(2,1fr);
    }
    .contInfo picture {
        width: 100%;
        height: 13em;
        margin: 0;
    }
    .info {
        width: 100%;
    }
}
@media only screen and (min-width:1280px){
    main {
        padding: 10em 0;
    }
    .contTitulo {
        width: 90%;
        display: flex;
        grid-template-columns: none;
        flex-direction: row-reverse;
        gap: 2em;
        margin: auto;
    }
    .titulo {
        width: 100%;
        margin: 1em 0;
    }
    .contInfo {
        width: 90%;
        margin: auto;
        grid-template-columns: repeat(2,1fr);
    }
    .contInfo picture {
        width: 100%;
        height: 100%;
        margin: 0;
    }
    .contInfo picture img {
        max-width: 38em;
        margin: auto calc(50% - 17em);
    }
    .info {
        width: 100%;
    }
}