@import url(base.css);
.contpaqi{
    padding: 40px;
}
.contpaqi h1{
    font-weight: bold;
    font-size: 40px;
    color: var(--azulMedio);
    text-align: center;
    margin-bottom: 40px;
}
.contpaqi h2{
    font-size: 20px;
    font-weight: 400;
    color: var(--azulOscuro);
    text-align: center;
    margin-bottom: 40px;
}
.contpaqiCont{
    margin: auto;
    max-width: 1200px;
}
.contpaqiCont input, .products h3{
    display: none;
}
.options{
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: flex-start;
	align-content: stretch;
    gap: 10px;
}
.options label{
    border-radius: 10px 10px 0px 0px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--gris);
}
.options label span{
    color: var(--azulOscuro);
    transition: all 0.3s ease;
}
.options label i{
    margin-right: 10px;
    color: var(--azulOscuro);
    transition: all 0.3s ease;
}
#option1:checked ~ .list .options label:nth-child(1),
#option2:checked ~ .list .options label:nth-child(2),
#option3:checked ~ .list .options label:nth-child(3),
#option4:checked ~ .list .options label:nth-child(4){
    background-color: var(--azulMedio);
    color: var(--blanco);
}
#option1:checked ~ .list .options label:nth-child(1) i,
#option2:checked ~ .list .options label:nth-child(2) i,
#option3:checked ~ .list .options label:nth-child(3) i,
#option4:checked ~ .list .options label:nth-child(4) i{
    color: var(--blanco);
}
#option1:checked ~ .list .options label:nth-child(1) span,
#option2:checked ~ .list .options label:nth-child(2) span,
#option3:checked ~ .list .options label:nth-child(3) span,
#option4:checked ~ .list .options label:nth-child(4) span{
    color: var(--blanco);
}
.products{
    padding: 20px;
    background-color: var(--azulMedio);
    border-radius: 20px;
    display: none;
    transition: all 0.3s ease;
}
#option1:checked ~ .list .products:nth-child(2),
#option2:checked ~ .list .products:nth-child(3),
#option3:checked ~ .list .products:nth-child(4),
#option4:checked ~ .list .products:nth-child(5){
    display: block;
}
.titulo{
    color: var(--blanco);
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}
.nube .titulo{
    margin-top: 20px;
}
.cards{
    display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: baseline;
	align-content: stretch;
    gap: 40px;
}
.card{
    width: 260px;
    height: 210px;
    background-color: var(--blanco);
    border-radius: 10px;
    padding: 10px;
    display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	align-content: stretch;
    box-shadow: 10px 10px 4px rgba(0, 0, 0, 0.15);
}
.card p{
    color: var(--azulOscuro);
    text-align: center;
}
.card .boton{
    font-size: 16px;
}
.card .botones{
    width: 100%;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: flex-start;
	align-content: stretch;
    gap: 20px;
}
.noMarginTop{
    margin-top: 0px !important;
}
@media only screen and (min-width: 0px) and (max-width: 1200px){
    .contpaqi{
        padding: 20px;
    }
    .contpaqi h1{
        font-size: 30px;
        margin-bottom: 20px;
    }
    .contpaqi h2{
        font-size: 16px;
        margin-bottom: 20px;
    }
    .list{
        width: 100%;
    }
    .cards{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
    .options label span{
        display: none;
    }
    .options label i{
        margin-right: 0px;
    }
    .products h3{
        font-size: 20px;
        text-align: center;
        margin-bottom: 20px;
        display: block;
    }
}