article {
    flex-direction: column;
}

article h1 {
    margin: 100px 0;
    width: 75%;
    font-size: 40px;
    text-align: left;
}

.section__1 {
    max-width: 1440px;
    padding: 0 15px;
}

form {
    width: 80%;
    margin: auto;
}

.cc-selector {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    margin-bottom: 100px;
}

.cc-selector input {
    margin: 0;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.label__txt {
    width: 100%;
    text-align: center;
    font-size: 20px;
}

.seleccion {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.seleccion__label {
    cursor: pointer;
    font-family: avenir_nb;
    font-size: 20px;
}

.centrar {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    margin-top: 20px;
    margin-bottom: 100px;
}

.seleccion__2 {
    margin: 20px 0 10px 10px;
}

.seleccion__2 label {
    display: inline-block;
    cursor: pointer;
    color: var(--morado);
    position: relative;
    padding: 5px 15px 5px 51px;
    font-size: 20px;
    border-radius: 10px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.seleccion__2 label:hover {
    background: rgba(255, 65, 54, 0.1);
}

.seleccion__2 label::before {
    content: "";
    display: inline-block;
    width: 17px;
    height: 17px;
    position: absolute;
    left: 15px;
    border-radius: 50%;
    background: none;
    border: 3px solid var(--morado);
}

.seleccion__2 input[type="radio"] {
    display: none;
}

.seleccion__2 input[type="radio"]:checked+label:before {
    display: none;
}

.seleccion__2 input[type="radio"]:checked+label {
    padding: 5px 15px;
    background: var(--morado);
    border-radius: 10px;
    color: #fff;
}

.drinkcard-cc {
    cursor: pointer;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    width: 200px;
    height: 200px;
    -webkit-transition: all 100ms ease-in;
    -moz-transition: all 100ms ease-in;
    transition: all 100ms ease-in;
    -webkit-filter: brightness(1) grayscale(1) opacity(.7);
    -moz-filter: brightness(1) grayscale(1) opacity(.7);
    filter: brightness(1) grayscale(1) opacity(.7);
}

.cc-selector input:active+.drinkcard-cc {
    opacity: 1;
}

.cc-selector input:checked+.drinkcard-cc {
    -webkit-filter: none;
    -moz-filter: none;
    filter: none;
}

.drinkcard-cc:hover {
    -webkit-filter: brightness(1) grayscale(.5) opacity(.9);
    -moz-filter: brightness(1) grayscale(.5) opacity(.9);
    filter: brightness(1) grayscale(.7) opacity(.9);
}

.pareja {
    background-image: url(imagenes/pareja.jpg);
}

.mascota {
    background-image: url(imagenes/yo-mascota.jpg);
}

.yo {
    background-image: url(imagenes/yo.jpg);
}

.nino {
    background-image: url(imagenes/niño.png);
}

.joven {
    background-image: url(imagenes/joven.png);
}

.adulto {
    background-image: url(imagenes/adulto.png);
}

.viejo {
    background-image: url(imagenes/viejo.png);
}

.conejo {
    background-image: url(imagenes/conejo.jpg);
}

.perezoso {
    background-image: url(imagenes/perezoso.jpg);
}

.koala {
    background-image: url(imagenes/koala.jpg);
}

.perro {
    background-image: url(imagenes/perro.jpg);
}

.suave {
    background-image: url(imagenes/suave.jpg);
}

.medio {
    background-image: url(imagenes/medio.jpg);
}

.firme {
    background-image: url(imagenes/firme.jpg);
}

@media screen and (max-width: 1250px) {
    .seleccion {
        width: 80%;
    }
    .drinkcard-cc {
        width: 200px;
        height: 200px;
    }
}

@media screen and (max-width: 900px) {
    article {
        margin-top: 130px;
    }
    .cc-selector {
        width: 300px;
        display: flex;
        flex-direction: column;
        margin-bottom: 50px;
    }
    .seleccion {
        width: 50%;
    }
    .media {
        width: 100%;
        height: auto;
    }
    .drinkcard-cc {
        width: 300px;
        height: 200px;
    }
    .section__1 h3 {
        font-weight: 900;
        color: var(--azulclaro);
    }
    .label__txt,
    .seleccion__2 label {
        font-size: 20px;
    }
}