@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --blanco: #fcfcfc;
    --negro: rgb(63, 63, 62);
    --gris: #757575;
    --grisOscuro: rgb(63, 63, 62);
    --rojo: rgb(199, 19, 49);
    --rojoIconos: rgb(194, 19, 48);
    --rojoIconosClaro: rgb(219, 5, 40);
}

body {
    font-family: 'Montserrat';
    max-width: 140rem;
}


/* IMAGEN PRINCIPAL */

.imagenPrincipal {
    padding: 0 2rem;
    height: 43rem;
    overflow: hidden;
}

.imagenPrincipal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 20% 73%;
    display: block;
}

/* ANIMACIÓN PARA IMAGENES */

/* Estado base - necesario para la transición */
.kenburns-top-left {
    transform-origin: 16% 16%;
    transform: scale(1) translate(0, 0);
    will-change: transform;
    /* Optimización de rendimiento */
}

/* Estado activo - aplica la animación */
.kenburns-top-left-active {
    animation: kenburns-top-left 5s ease-out forwards;
}

@keyframes kenburns-top-left {
    0% {
        transform: scale(1) translate(0, 0);
        transform-origin: 16% 16%;
    }

    100% {
        transform: scale(1.1) translate(-20px, -15px);
        transform-origin: top left;
    }
}


@media (min-width: 961px) {
    .imagenPrincipal img {
        border-radius: 4rem 4rem 0 0;
    }
}

/* PRESENTACION Y CONTACTO */

/* IMAGEN */

.presentacionYContacto {
    display: grid;
    width: 100%;
    padding: 0 2rem;
    margin-top: 3rem;
}

@media (max-width: 980px) {
    .presentacionYContacto__imagen {
        display: none;
    }
}

@media (min-width: 981px) {
    .presentacionYContacto {
        grid-template-columns: repeat(2, 50%);
    }

    .presentacionYContacto__imagen {
        padding: 0 1rem;
        /* height: 62.5rem; */
        overflow: hidden;
        display: block;
    }

    .presentacionYContacto__imagen img {
        width: 100%;
        height: 100%;
        border-radius: .5rem;
        object-fit: cover;
        object-position: 60% 73%;
    }
}

@media (min-width: 1181px) {
    .presentacionYContacto__imagen {
        height: 62.5rem;
    }
}

/* CONTACTO */

@media (min-width: 961px) {
    .contactoTAR {
        margin-left: 5rem;
    }
}

@media (min-width: 511px) {
    .contactoTAR__numeroYCorreo {
        display: grid;
        grid-template-columns: repeat(2, 50%);
    }

    .contactoTAR__footer {
        display: grid;
        grid-template-columns: repeat(2, 50%);
    }

    .contactoTAR__logoPlantaTratamiento {
        justify-content: end;

    }
}

@media (max-width: 510px) {

    .contactoTAR__titulo,
    .contactoTAR__nombre {
        text-align: center;
    }

    .contactoTAR__numeroYCorreo {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 2rem 0;
    }

    .contactoTAR__footer {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 2rem 0;
    }

    .contactoTAR__logoPlantaTratamiento {
        margin: 3rem 0;
        justify-content: center;
        margin-right: 1rem;
        margin-left: 5rem;
    }

    .contactoTAR__ubicacionYHorarios div {
        justify-self: center;
    }
}


.contactoTAR svg:not(.contactoTAR__logoPlantaTratamiento svg) {
    height: 2rem !important;
}

.contactoTAR__titulo {
    font-size: 4rem;
    font-weight: 700;
    color: var(--grisOscuro);
    line-height: 4.5rem;
}

.contactoTAR__nombre {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--grisOscuro);
    margin: 1rem 0 .5rem 0;
}

.contactoTAR__separador {
    border-bottom: .2rem var(--rojoIconos) solid;
}

/* .contactoTAR__numeroYCorreo {
    display: grid;
} */

.contactoTAR__telefono,
.contactoTAR__correo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    margin-left: 3rem;
    color: var(--grisOscuro);
}

.contactoTAR__correo {
    justify-content: end;
}


.contactoTAR__presentacion {
    color: var(--grisOscuro);
    font-size: 1.2em;
    text-align: justify;
    margin: 4rem 3rem;
}

/* .contactoTAR__footer {
    display: grid;
    grid-template-columns: repeat(2, 50%);
} */

.contactoTAR__ubicacionYHorarios div {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    margin-left: 3rem;
    color: var(--grisOscuro);
}

.contactoTAR__logoPlantaTratamiento {
    display: flex;
    align-items: end;
    /* justify-content: end; */
    /* margin-right: 1rem; */
    margin-bottom: 2rem;
}

.contactoTAR__logoPlantaTratamiento svg {
    max-height: 6rem;
}



/* VIDEOS */

@media (min-width: 1090px) {
    .videos {
        grid-template-columns: 1fr 350px;
        grid-template-areas: 'funcion produccion'
            'funcion historia';
        margin: 7rem 4rem 8rem 4rem;
    }

    .videoB,
    .videoC {
        margin: 2rem 0;
    }

    .videoA iframe {
        width: 100%;
        height: 100%;
        border-radius: 3rem;
    }

    .videoB iframe,
    .videoC iframe {
        height: 20rem;
        border-radius: 1rem;
    }
}

@media (min-width: 730px) and (max-width: 1089px) {
    .videos {
        grid-template-areas: 'funcion funcion'
            'produccion historia';
        margin: 7rem 4rem 4rem 4rem;
    }

    .videoA {
        height: 50rem;
        margin-bottom: 3rem;
    }

    .videoB,
    .videoC {
        width: 100%;
        height: 30rem;
        margin: 2rem 0;
    }

    .videoA iframe {
        width: 100%;
        height: 100%;
        border-radius: 3rem;
    }

    .videoB iframe,
    .videoC iframe {
        width: 100%;
        height: 100%;
        border-radius: 1rem;
    }
}

@media (max-width: 729px) {
    .videos {
        grid-template-rows: repeat(3, 1fr);
        grid-template-columns: 1fr;
        margin: 4rem 2rem 4rem 2rem;
        grid-template-areas: 'funcion'
            'produccion' 'historia';
    }

    .videoA,
    .videoB {
        margin-bottom: 3rem;
    }

    .videoA,
    .videoB,
    .videoC {
        width: 100%;
    }

    .videoA iframe,
    .videoB iframe,
    .videoC iframe {
        width: 100%;
        min-height: 35rem;
        border-radius: 2rem;
    }

    .videoA {
        display: flex;
        align-self: center;
        justify-self: center;
        flex-direction: column;
    }

    .videoA p {
        margin-top: 1rem;
    }
}

.videos {
    display: grid;
    gap: 1rem;
    color: var(--grisOscuro);
}

.videos__separador {
    border-bottom: .1rem var(--rojoIconosClaro) solid;
}

.oculto {
    opacity: 0;
    pointer-events: none;
}




/* .iniciarVideoA,
.iniciarVideoB,
.iniciarVideoC{
    cursor: pointer;
} */


.videoA {
    grid-area: funcion;
    transition: opacity 1.5s ease-in-out;
}

.videoB,
.videoC {
    display: flex;
    align-self: center;
    justify-self: center;
    flex-direction: column;
}

.videoB {
    grid-area: produccion;
}

.videoC {
    grid-area: historia;
}

.videoB p,
.videoC p {
    margin-top: 1rem;
}


/* PTAR */

@media (min-width: 1140px) {
    .PTARcelular {
        display: none;
    }

    .PTAR {
        display: block;
    }
}

@media (max-width: 1139px) {
    .PTARcelular {
        display: block;
    }

    .PTAR {
        display: none;
    }
}

.PTAR__titulo {
    min-height: 15rem;
    margin-bottom: 6rem;
    background-image: url(../IMAGES/SolicitudAD/plantas.png);
    position: relative;
}

.PTAR__titulo p {
    font-weight: 700;
    font-size: 2em;
    color: var(--grisOscuro);
    position: absolute;
    top: 5rem;
    left: 8rem;
    background-color: white;
    border-radius: 4rem;
    padding: 0 1rem;
}

@media (min-width: 535px) {
    .PTARcelular__titulo {
        margin-bottom: 6rem;
    }
}


@media (max-width: 534px) {
    .PTARcelular__titulo {
        margin-bottom: 12rem;
        text-align: center;
    }
}

.PTARcelular__titulo {
    min-height: 8rem;
    margin-top: -5rem;
    position: relative;
}


.PTARcelular__titulo p {
    font-weight: 700;
    font-size: 2em;
    color: var(--grisOscuro);
    position: absolute;
    top: 5rem;
    background-color: white;
    border-radius: 4rem;
    padding: 0 1rem;
}

@media (min-width: 920px) {
    .PTARcelular__titulo p {
        left: 4rem;
    }
}

/* @media (max-width: 920px) {
    .PTARcelular__titulo p {}
} */


/* TARJETAS */

.PTAR__tarjetas {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    grid-template-rows: repeat(2, 50%);
    margin: 0 4rem;
    column-gap: 1rem;
    row-gap: 2rem;
}

.tarjetas__izquierda,
.tarjetas__derecha {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    height: 38rem;
    overflow: hidden;
    position: relative;
}

.informacion__izquierda {
    /* border: .1rem  solid red; */
    position: absolute;
    width: 45%;
    min-height: 50%;
    background-color: white !important;
    padding: 1.5rem;
    border-radius: 2rem;
    top: 22%;
    left: 35%;
}

.informacion__derecha {
    /* border: .1rem  solid red; */
    position: absolute;
    width: 45%;
    min-height: 50%;
    background-color: white !important;
    padding: 1.5rem;
    border-radius: 2rem;
    top: 22%;
    left: 25%;
}

.informacion__titulo {
    font-size: 1.5em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--grisOscuro);
    text-transform: uppercase;

}

.informacion__texto {
    color: var(--gris);
    font-size: 1em;
    margin-top: 1rem;
}

.tarjetas__izquierda img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

.tarjetas__2 img {
    object-position: 40% 0;
}

.tarjetas__derecha img {
    grid-column: 2/3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

.tarjetas__3 img {
    object-position: 38% 10%;
}

.tarjetas__4 img {
    object-position: 18% 10%;
}


/*       TARJETAS__CELULAR      */

.PTARcelular__tarjetas {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    /* border: red solid .1rem; */
    margin: auto;
}

@media (min-width: 1090px) {
    .PTARcelular__tarjeta {
        height: 60rem;
    }
}

@media (min-width: 980px) and (max-width:1089px) {
    .PTARcelular__tarjeta {
        height: 59rem;
    }
}

@media (min-width: 940px) and (max-width:979px) {
    .PTARcelular__tarjeta {
        height: 55rem;
    }
}

@media (min-width: 850px) and (max-width:939px) {
    .PTARcelular__tarjeta {
        height: 50rem;
    }
}

@media (min-width: 809px) and (max-width:849px) {
    .PTARcelular__tarjeta {
        height: 40rem;
    }
}

@media (min-width: 650px) and (max-width:808px) {
    .PTARcelular__tarjeta {
        height: 38rem;
    }
}

@media (min-width: 600px) and (max-width: 649px) {
    .PTARcelular__tarjeta {
        height: 35rem;
    }
}

@media (min-width: 430px) and (max-width: 599px) {
    .PTARcelular__tarjeta {
        height: 30rem;
    }
}


@media (min-width: 320px) and (max-width: 429px) {
    .PTARcelular__tarjeta {
        height: 34rem;
    }
}

@media (min-width: 360px) {
    .PTARcelular__tarjeta {
        grid-template-columns: 60% 40%;
    }
}

.PTARcelular__tarjeta {
    display: grid;
    grid-template-rows: 1fr;
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: auto;
}

.PTARcelular__tarjeta img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

@media (min-width: 650px) {
    .informacionCelular {
        width: 65%;
        min-height: 50%;
        top: 22%;
        left: 35%;
    }
}

@media (min-width: 550px) and (max-width: 649px) {
    .informacionCelular {
        width: 65%;
        min-height: 30%;
        top: 17%;
        left: 35%;
    }
}

@media (min-width: 500px) and (max-width: 549px) {
    .informacionCelular {
        width: 65%;
        min-height: 30%;
        top: 7%;
        left: 35%;
    }
}

@media (min-width: 400px) and (max-width: 499px) {
    .informacionCelular {
        width: 70%;
        min-height: 30%;
        top: 10%;
        left: 30%;
    }
}

@media (min-width: 360px) and (max-width: 399px) {
    .informacionCelular {
        width: 70%;
        min-height: 30%;
        top: 6%;
        left: 30%;
    }
}

@media (max-width: 359px) {
    .informacionCelular {
        width: 86%;
        min-height: 30%;
        top: 7%;
        left: 7%;
    }
}

.informacionCelular {
    position: absolute;
    background-color: white !important;
    border-radius: 2rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.informacionCelular__titulo {
    text-transform: uppercase;
    font-weight: 700;
    color: var(--grisOscuro);
}


@media (min-width: 320px) and (max-width: 428px) {
    .informacionCelular__titulo {
        font-size: 1.1em;
    }
}

@media (max-width: 429px) {
    .informacionCelular__titulo {
        font-size: 1.2em;
    }
}

@media (min-width: 500px) {
    .informacionCelular__titulo {
        font-size: 1.5em;
    }
}

/* ANIMACIÓN TEXTO */

/* Estado INICIAL (requerido para la animación) */
.focus-in-contract-bck {
    opacity: 1;
    display: inline-block;
    /* Necesario para letter-spacing en elementos inline */
}

/* Estado ACTIVO (aquí va la animación) */
.focus-in-contract-bck-active {
    -webkit-animation: focus-in-contract-bck 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: focus-in-contract-bck 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

/* Keyframes (igual que los tuyos) */
@-webkit-keyframes focus-in-contract-bck {
    0% {
        letter-spacing: 2em;
        -webkit-transform: translateX(100px);
        transform: translateX(100px);
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateZ(12px);
        transform: translateZ(12px);
        -webkit-filter: blur(0);
        filter: blur(0);
        opacity: 1;
    }
}

@keyframes focus-in-contract-bck {
    0% {
        letter-spacing: 2em;
        -webkit-transform: translateX(100px);
        transform: translateX(100px);
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateZ(12px);
        transform: translateZ(12px);
        -webkit-filter: blur(0);
        filter: blur(0);
        opacity: 1;
    }
}


/* ANIMACIÓN TEXTO DESDE ENMEDIO */

.focus-in-expand-fwd {
    opacity: 1;
    display: inline-block;
    will-change: transform, filter, opacity;
}

.focus-in-expand-fwd-active {
    -webkit-animation: focus-in-expand-fwd 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) forwards;
    animation: focus-in-expand-fwd 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) forwards;
}

@-webkit-keyframes focus-in-expand-fwd {
    0% {
        letter-spacing: -0.5em;
        -webkit-transform: translateZ(-800px);
        transform: translateZ(-800px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }
}

@keyframes focus-in-expand-fwd {
    0% {
        letter-spacing: -0.5em;
        transform: translateZ(-800px);
        opacity: 0;
    }

    100% {
        transform: translateZ(0);
        opacity: 1;
    }
}


/* Estado INICIAL - obligatorio */
.focus-in-contract {
    opacity: 1;
    display: inline-block;
    /* Necesario para letter-spacing */
    will-change: opacity, letter-spacing;
    /* Optimización */
}

/* Estado ACTIVO - contiene la animación */
.focus-in-contract-active {
    letter-spacing: 1em;
    animation: focus-in-contract 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) forwards;
}

/* Keyframes (mejorados) */
@keyframes focus-in-contract {
    to {
        letter-spacing: normal;
        opacity: 1;
    }
}



.informacionCelular__texto {
    color: var(--gris);
    margin-top: 1rem;
}

.PTARcelular__boton {
    display: flex;
    align-items: center;
    align-self: center;
    justify-content: center;

}

.PTARcelular__prevBtn,
.PTARcelular__nextBtn {
    display: flex;
    justify-self: center;
    align-self: center;
}

@media (min-width: 809px) {
    .PTARcelular__boton svg {
        min-width: 7rem;
    }

    .informacionCelular__texto {
        font-size: 1.3em;
    }
}

@media (min-width: 750px) and (max-width:808px) {
    .PTARcelular__boton svg {
        min-width: 6rem;
    }

    .informacionCelular__texto {
        font-size: 1.1em;
    }
}

@media (min-width: 320px) and (max-width:749px) {
    .informacionCelular__texto {
        font-size: 1em;
    }
}

@media (min-width: 430px) and (max-width:749px) {
    .PTARcelular__boton svg {
        min-width: 5rem;
    }
}

@media (min-width: 320px) and (max-width: 429px) {
    .PTARcelular__boton svg {
        min-width: 4rem;
    }
}

@media (min-width: 600px) {
    .PTARcelular__prevBtn {
        padding: 10rem 2rem;
    }

    .PTARcelular__nextBtn {
        padding: 8rem 2rem;
    }
}

@media (min-width: 499px) and (max-width: 599px) {
    .PTARcelular__prevBtn {
        padding: 10rem .5rem;
    }

    .PTARcelular__nextBtn {
        padding: 8rem .5rem;
    }
}

@media (min-width: 320px) and (max-width: 429px) {

    .PTARcelular__prevBtn,
    .PTARcelular__nextBtn {
        padding: 10rem .5rem;
    }
}

.PTARcelular__boton:hover {
    cursor: pointer;
}

.PTARcelular__boton:hover .PTARcelular__svg {
    fill: var(--rojoIconosClaro);
}

.PTARcelular__boton svg {
    fill: var(--rojoIconos);
}

/* .tarjetasCelular__1 img {} */

.tarjetasCelular__2 img {
    object-position: 40% 0;
}

.tarjetasCelular__3 img {
    object-position: 38% 10%;
}

.tarjetasCelular__4 img {
    object-position: 18% 10%;
}


/* PRODUCCION DE AGUA DESIONIZADA */

.produccionAguaDesionizada {
    /* margin-top: 9rem; */
    /* margin-bottom: 4rem; */
    /* box-shadow: .4rem .4rem 3rem rgba(0, 0, 0, 0.507); */
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.sombra1 {
    margin-top: 9rem;
    box-shadow: 0rem -.3rem .7rem .1rem rgba(0, 0, 0, 0.507);
    width: 100%;
    height: 0rem;
    background-color: rgb(223, 230, 230);
}

.sombra2 {
    margin-bottom: 4rem;
    box-shadow: 0rem .3rem .7rem .1rem rgba(0, 0, 0, 0.507);
    width: 100%;
    height: 0rem;
    background-color: rgb(223, 230, 230);
}

.produccionAguaDesionizada::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-image: url(../IMAGES/SolicitudAD/plantas.png);
    background-repeat: repeat-y;
    background-position: center;
    opacity: .3;
    z-index: -1;
}

.produccionAguaDesionizada__titulo {
    font-size: 2.4em;
    font-weight: 700;
    margin-top: 2.5rem !important;
    color: var(--grisOscuro);
}

.produccionAguaDesionizada p:not(.produccionAguaDesionizada__titulo p) {
    color: var(--gris);
}

@media (min-width: 920px) {
    .produccionAguaDesionizada__contenido {
        grid-template-columns: 49.5% 1% 49.5%;
        margin: 4rem 0rem 4rem 0rem;
    }

    .produccionAguaDesionizada__titulo {
        text-align: center;
        margin-left: 4rem;
    }
}

@media (min-width: 550px) and (max-width: 919px) {
    .produccionAguaDesionizada__contenido {
        grid-template-columns: 1fr;
        margin: 4rem 0rem 4rem 0rem;
    }

    .produccionAguaDesionizada__titulo {
        text-align: center;
        margin: 0 4rem;
    }
}

@media (max-width: 549px) {
    .produccionAguaDesionizada__titulo {
        text-align: center;
        margin: 0 1rem;
    }
}

.produccionAguaDesionizada__contenido {
    display: grid;
}

@media (min-width: 380px) {
    .contenido__solicitud {
        margin: 0 6rem;
    }
}

@media (max-width: 379px) {
    .contenido__solicitud {
        margin: 0 2rem;
    }

    .contenido__solicitudP {
        text-align: justify;
    }
}

.contenido__solicitud {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contenido__solicitud p:first-child {
    text-align: center;
    font-size: 1.2em;
}

@media (max-width: 919px) {
    .contenido__solicitud p:first-child {
        margin-top: 2rem;
    }
}


@media (min-width: 920px) {
    .contenido__separacionVertical {
        border-left: .2rem black solid;
        margin: 1rem 0;
    }
}

@media (min-width: 380px) {
    .contenido__informacion {
        margin: 0 6rem;
    }
}

.contenido__informacion p {
    text-align: center;
    font-size: 1.2em;
}

@media (min-width: 590px) and (max-width: 920px) {
    .contenido__informacionP {
        margin-top: 4rem;
        margin-left: 22rem;
    }
}

@media (max-width: 589px) {
    .contenido__informacionP {
        margin-top: 4rem;
    }
}

.contenido__informacion span {
    color: black;
    font-weight: 500;
}

@media (min-width: 920px) {
    .contenido__solicitud button {
        margin: auto;
    }
}

@media (max-width: 919px) {
    .contenido__solicitud button {
        display: flex;
        align-self: center;
        justify-self: center;
        margin: 6rem 0;
    }
}

.contenido__solicitud button {
    background-color: rgb(57, 167, 223);
    border: none;
    color: var(--blanco);
    padding: 1rem 2rem;
    width: 25rem;
    border-radius: .5rem;
    box-shadow: 1.4px 1.4px 7px rgba(0, 0, 0, 0.507);
    font-size: 1.2em;
    font-weight: 400;
    cursor: pointer;
    transition: transform 0.1s ease;
}

.contenido__solicitud button:active {
    background-color: rgb(15, 156, 226);
}

.contenido__solicitud a {
    display: flex;
    align-self: center;
    justify-self: center;
}


@media (min-width: 550px) and (max-width: 920px) {
    .informaion__bidon {
        grid-template-columns: repeat(2, 50%);
    }
}

@media (max-width: 549px) {
    .bidon__numeros {
        grid-row: 1/2;
        margin-top: 3rem;
    }

    .bidon__imagen {
        margin-top: 3rem;
    }
}

.informaion__bidon {
    display: grid;
}


.bidon__imagen {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* @media (min-width: 380px) {
    .bidon__imagen img {
        max-width: 25rem;
    }
}

@media (max-width: 379px) {
    .bidon__imagen img {
        max-width: 15rem;
    }
} */

.bidon__imagen img {
    max-width: 25rem;
    margin-top: -4rem;
}

.bidon__imagen p {
    margin-top: 0;
    font-size: .95em;
    color: black !important;
    margin-top: -2.5rem;
}

.bidon__numeros {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

.numeros__contador {
    font-size: 2.5em !important;
    color: var(--negro) !important;
}

.numeros__separador {
    border-bottom: var(--negro) .2rem solid;
    width: 50%;
}

.numeros__bidones {
    font-size: 1.8em !important;
    color: var(--negro) !important;
}


/* duracion */

/* @media (min-width: 600px) {
    .duracion {
        display: grid;
        grid-template-columns: repeat(1, fr);
        margin: 0 4rem 5rem 4rem;
    }
} */

.duracion {
    display: grid;
    grid-template-columns: repeat(1, fr);
    margin: 0 4rem 5rem 4rem;
}

.duracion__titulo {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--grisOscuro);
}


@media (min-width: 850px) {
    .duracion__tarjetas {
        grid-template-columns: repeat(3, 1fr);
        column-gap: 3rem;
        row-gap: 3rem;
    }
}

@media (min-width: 600px) and (max-width: 849px) {
    .duracion__tarjetas {
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas: 'gifTrofeo gifTubo'
            'gifLluvia gifGota'
            'gifPlanta gifPlanta';
        column-gap: 3rem;
        row-gap: 3rem;
    }

    .gifTrofeo {
        grid-area: gifTrofeo;
    }

    .gifTubo {
        grid-area: gifTubo;
    }

    .gifLluvia {
        grid-area: gifLluvia;
    }

    .gifGota {
        grid-area: gifGota;
    }

    .gifPlanta {
        grid-area: gifPlanta;
    }
}

@media (max-width: 599px) {
    .duracion__tarjetas {
        display: grid;
        row-gap: 2rem;
    }

    .tarjetas__logros img {
        max-width: 25rem;
    }

    .gifPlanta {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

}


.duracion__tarjetas {
    display: grid;
}

.gif {
    width: 100%;
    margin: auto;
}


.tarjetas__logros {
    border: white .15rem solid;
    border-radius: 2rem;
    background-image: linear-gradient(to right, rgba(226, 226, 226, 1) 0%, white 70%, white 100%);
    box-shadow: .1rem .1rem 1rem .1rem rgb(199, 198, 198);
    padding: 2rem;
    height: 100%;
}

.tarjetas__logros:not(.gifPlanta) {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (min-width: 600px) and (max-width: 849px) {
    .gifPlanta {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
        align-items: center;
    }
}

@media (min-width: 850px) {
    .gifPlanta {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}



.tarjetas__logrosContenido {
    display: flex;
    justify-content: end;
    flex-direction: column;
}

.logros__titulo {
    display: flex;
}

.logros__titulo p {
    font-size: 2.3em;
    font-weight: 700;
}

.logros__separacion {
    width: 100%;
    height: 0.3rem;
    background: linear-gradient(to right, rgb(75, 182, 222), rgb(33, 33, 116));
    border: none;
    border-radius: 2rem;
}