/*
=================================
            GENERAL
=================================
*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --fprincipal:'Nunito', sans-serif;
    --ftexto:'Poppins', sans-serif;
    --clr-principal:#7ED957;
    --clr-secundario:#DE3F3F;
    --clr-fondo:#0B4A15;
    --clr-fondo-secundario:rgb(46, 139, 86);
}

:not(.active)>a:focus{
    outline: 2px solid var(--clr-secundario);
    outline-offset: 6px;
}

body{
    font-family: var(--ftexto);
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    overflow-x: hidden;
}

h1,h2,h3,h5{
    font-family: var(--fprincipal);
    font-weight: 800;
    text-align: center;
}

a{
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

p{
    font-size: clamp(0.8rem, 0.4rem + 1vw ,1rem);;
}

/*
==============================
    COMPONENTES GENERALES
==============================
*/
.boton{
    background-color: var(--clr-secundario);
    color: #ffffff;
    font-family: var(--fprincipal);
    font-weight: 800;
    font-size: clamp(1rem , 0.7rem + 1vw  ,1.5rem);
    text-align: center;
    text-decoration: none;
    width: fit-content;
    margin: 10px 0;
    padding: 10px 15px;
    border: none;
    border-radius: 23px;
    cursor: pointer;
    transition: 0.3s background-color;
    z-index: 4;
}
.boton:hover{
    background-color: #fd8a8a;
}

.titulo{
    font-size: clamp(2rem, 1rem + 3vw,3.5rem);
    font-family: var(--fprincipal);
    color:var(--clr-principal);
    line-height: clamp(40px, 20px + 4vw,70px);
    z-index: 2;
}

/*
=============================
          ICONOS
=============================
*/

.iconos{
    display: inline-block;
    width: 76px;
    height: 76px;
    background: url(/portal/imagenes/iconos_sprite.svg);
    background-position: calc((var(--columna) - 1) * -75px) calc((var(--fila) - 1) * -77px);
}
.i-llamar{
    --columna:1;
    --fila:1;
}
.i-instagram{
    --columna:2;
    --fila:1;
}
.i-whatsapp{
    --columna:3;
    --fila:1;
}
.i-detalles{
    --columna:1;
    --fila:2;
}
.i-detalles:hover{
    --columna:2;
    --fila:2;
}
.i-ubicacion{
    --columna:3;
    --fila:2;
}
.i-cerrar{
    --columna:1;
    --fila:3;
}

/*
==============================
      MENU NAVEGACION
==============================
*/
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    min-height: 100px;
    padding: 0 10%;
    display: flex;
    align-items: center;
    background-color: var(--clr-fondo);
    z-index: 25;
    transition: 0.5s background-color;
}
.cambio{
    background-color: #33ff55;

}

.logo{
    color: #fff;
    font-size: 1.5rem;
    transition: 0.5s color;
}
header img{
    height: 70px;
    width: auto;
    cursor: pointer;
}
nav{
    margin-left: auto;
}
nav ul{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}
nav li{
    margin: 0 1rem;
    list-style: none;
}

.nav-link:not(.active):hover{
    border-bottom: 2px solid var(--clr-secundario);
}


/*
===============================
    PRIMERA SECCION PAGINA
===============================
*/

.inicio{
     /* height: 94vh;
   min-height:700px; */
    min-height:94vh;
    background-color: #F5FCE1;
    position: relative;
    top: 100px;
    width: 100vw;
    overflow: hidden;
    position: relative;
}
#fondo_inicio{
    height: 94vh;
    background-color: rgba(103, 255, 209, 0.692);
    opacity: 0;
}

.inicio img{
    position: absolute;
    user-select: none;
}
.inicio:not(.iniciocatalogo) img:not(#pez1, #pez2){
    min-height: 300px;
}

.info-inicio{
    position: absolute;
    top: 0;
    width: 100vw;
    margin: auto;
    padding: 0;
    display:grid;
    align-content: center;
    justify-items: center;
    
}

.inicio .titulo{
    font-size: 3.6rem;
    margin: 1.5em 0 0.5em 0;
    width: 12ch;
}


#boton{
    position: relative;
    top: 0;
}
#suelo{
    position: absolute;
    width: 100vw;
    left: 0px;
    bottom: 0;
    z-index: 3;
}

#plantas1{
    position: absolute;
    width: 100vw;
    max-height: 80%;
    left: 0px;
    bottom: 0;
    z-index: 2;
}

#plantas2{
    position: absolute;
    width: 100vw;
    max-height: 80%;
    left: 0px;
    bottom: 0;
    z-index: 1;
}

#pez1{
    position: absolute;
    top: 180px;
    left: -60%;
    z-index: 1;

}
#pez2{
    position: absolute;
    top: 240px;
    left: -30%;
    z-index: 2;
}
.burbuja{
    position: absolute;
    top: 350px;
    border-radius: 50%;
    border:1px solid rgba(255, 255, 255, 0.555);
    background: radial-gradient(circle, rgba(234, 253, 255, 0.555) 70%, transparent 100%);
    backdrop-filter: blur(3px);
    opacity: 0;
}
.burbuja#pequena{
    width: 80px;
    height: 80px;
    top: 75vh;
    left: 70vw;
    z-index: 3;
}
.burbuja#grande{
    width: 140px;
    height: 140px;
    top: 70vh;
    left: 55vw;
    z-index: 2;
}
.burbuja::before{
    content:'';
    position: absolute;
    top: 15%;
    left: 20%;
    width: 15%;
    height: 15%;
    background-color: rgba(255, 255, 255, 0.426);
    border-radius: 50%;
}




/*
========================
    SEGUNDA SECCION
========================
*/


.contacto::before{
    content:'';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, #064906 0%, #0B5512 100%);
    z-index: 20;
    overflow-x: hidden;
}
.contacto{
    position: relative;
    background-color: #0B5512;
    height: fit-content;
    width: 100vw;
    padding: 10% 0;
    z-index: 20;
    overflow-x: hidden;
}
.caja{
    background-color: var(--clr-fondo-secundario);
    display: flex;
    align-items: center;
    min-height: 200px;
    width: 100vw;
    padding:0 10%;
    margin-bottom: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.425);
    overflow: hidden;
    position: relative;
}
.caja.quienes-somos{
    height: 30vh;
    min-height: 250px;
}

.texto{
    font-size: clamp(0.95rem, 0.5rem + 1.5vw, 1.25rem);
    max-width: 40ch;
    z-index: 20;
    position: relative;
}
.texto::before{
    content:'';
    position: absolute;
    display: inline;
    width: 4px;
    height: 100%;
    background-color: #fff;
    border-radius: 20px;
    margin-left: -5%;
}

.titulo_fondo{
    color:#ffffff15;
    position: absolute;
    right: 5%;
    font-size: 9rem;
    width: 9ch;
    text-align: end;
    transform: translate(-100px);
    line-height: 135%;
    text-transform: uppercase;
    user-select: none;
}



/*
==========================
        CONTACTO
==========================
*/



.informacion{
    display: grid;
    align-content:center;
    justify-items:left;
    grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
    padding:0 10%;
}
.vias_contacto{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    list-style: none;
    padding: 0;
}
.icono_contacto{
    /*font-size: clamp(2rem, 4vw, 3rem);*/
    height: 120px;
    width: 120px;
    border-radius: 50%;
    margin: 15px 0;
    background-color: var(--clr-principal);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s transform;
    position: relative;
}

.icono_contacto:hover{
    transform: scale(110%);
    background-color: #76aa5f;
}
.icono_contacto .iconos{
    transform: scale(.85);
}

.icono_contacto::after{
    position: absolute;
    left:95%;
    background-color: var(--clr-principal);
    margin: auto;
    width: 0;
    font-size: 1rem;
    border-radius: 0  2rem 2rem 0;
    overflow: hidden;
    transition: 0.3s;
}

.icono_contacto:hover::after{
    left:95%;
    background-color: #76aa5f;
    padding: 0.5rem 1rem;
    width: max-content;
}
.icono_contacto:nth-child(1)::after{
    content: '+584149410352';
}
.icono_contacto:nth-child(2)::after{
    content: '@viverodelabuelo';
}
.icono_contacto:nth-child(3)::after{
    content: '¡Escríbenos!';
}

/*
======================
     UBICACION
======================
*/


.ubicacion{
    margin-top: 2rem;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content: center;
}
.ubicacion>div{
    display: flex;
    align-items: center;
}
.ubicacion h5{
    font-size: 2rem;
    position: relative;
}
.ubicacion .iconos{
    transform: scale(.6) translateY(-10px);
}
/*.ubicacion h5::before{
    content:'';
    position: absolute;
    top:0;
    left: -25%;
    bottom: 0;
    width: 20%;
    background: url(/portal/imagenes/ubicacion.svg);
    background-size: contain;
    background-repeat: no-repeat;
    user-select: none;
}*/
.ubicacion iframe{
    border-radius: 23px;
    border: 3px solid #fff;
    width:300px;
    height:250px;
}
.ubicacion a{
    font-size:1rem;
}


/*
=================================
    SECCION NUESTROS PRODUCTOS
=================================
*/


.nuestros-productos{
    margin: 0;
    padding: 50px 10%;
    overflow-x: hidden;
}
.nuestros-productos h3{
    margin: 0 0 40px 0;
    color:var(--clr-principal);
    font-size: 3rem;
}
.nuestros-productos ul{
    display: grid;
    align-content: center;
    justify-items: center;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    padding: 0;
}
.nuestros-productos li{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.icono{
    width: 150px;
    transition: 0.2s transform;
    user-select: none;
}
.icono:hover{
    transform: scale(115%);
}


/*
===========================
      PIE DE PAGINA
===========================
*/


footer{
    background-color: var(--clr-fondo);
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer a{
    color: var(--clr-secundario);
    transition: 0.3s color;
}
footer a:hover{
    color: #fd8a8a;
}


/*
===============================
        PAGINA ERROR 404
===============================
*/

.error{
    height: calc(100vh - 100px);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10%;
}

.mensaje-error{
    max-height: 50%;
}
.tituloerror{
    text-align: left;
    line-height: clamp(2rem,1rem + 4vw,4rem);
    width: 40vw;
    margin:20px 0;
}
.error img{
    max-width:40vw;
    max-height: 350px;
    user-select: none;
}
.tituloerror::after{
    content: 'Error 404: Página no encontrada.';
    display: block;
    font-family: 'Poppins';
    font-size: 1rem;
    color: var(--clr-secundario);
    line-height: 150%;
    margin-top: 15px;
}

.footerfixed{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}





/*
==================================
        PAGINA CATALOGO
==================================
*/


/*
===========================
    SECCION INICIAL
===========================
*/
.inicio.iniciocatalogo{
    height: 40vh;
    min-height: 400px;
}
.iniciocatalogo .titulo{
    width: auto;
    margin: 2em 10%;
}

.iniciocatalogo img{
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100vw;
    max-height: 90%;
    min-height: 100px;
}

/*
===========================
     SECCION CATALOGO
===========================
*/

.catalogo{
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    background-color: rgb(208, 255, 195);
    margin-top: 100px;
    padding:5% 10%;
    z-index: 50;
    overflow-x: hidden;
}
/*
===========================
     TITULO CATALOGO
===========================
*/

.titulo2{
    font-size: clamp(2.5rem, 0.5rem + 4vw, 3.5rem);
    margin: auto;
    max-width: 70vw;
    text-align: center;
    text-shadow: 0 0 8px #000;
    line-height: 1;
}  
 .titulo_fondo.nuestrosproductos{
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
    width: auto;
    font-size: clamp(3.5rem,0.5rem + 6vw, 6.5rem);
    text-align: center;
    margin: auto;
}

/*
===========================
    FILTROS DEL CATALOGO
===========================
*/
.buscar-form{
    display: flex;
    justify-content: center;
    margin: 0 1rem;
}
.buscar{
    font-family: 'Poppins';
    font-size: 1rem;
    background-color: #fff;
    padding: 5px 10px;
    border: 1px solid #000;
}

.filtros{
    display: grid;
    padding: 0;
    margin-top: 50px;
    justify-items: center;
    align-content: center;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    
}
.filtros li{
    list-style: none;
}
#filtro{
    font-family: 'Poppins';
    font-size: 1rem;
    background-color: #fff;
    padding: 5px 10px;
    cursor: pointer;
    border: 1px solid #000;
}
#filtro option:checked{
    background-color: var(--clr-fondo-secundario);
    color: #fff;
}
.filtro{
    font-family: 'Poppins';
    font-size: 1rem;
    margin: 1vh 5px;
    padding: 5px 10px;
    cursor: pointer;
}
.buscar_btn, .filtro_btn{
    font-size: 1rem;
    margin: 0 10px;
}

.filtro:disabled{
    color: #fff;
    background-color: var(--clr-fondo-secundario);
}

/*
===========================
        PRODUCTOS
===========================
*/

.productos{
    margin: 5% 0;
    width: 80vw;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    column-gap: 20px;
}

.producto{
    margin: 15px 0;
    max-width: 500px;
}

.producto .imagen_producto{
    position: relative;
    height: 300px;
    overflow: hidden;
}
.imagen_producto img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease-in-out transform;
    user-select: none;
}
.imagen_producto:hover img{
    transform: scale(1.25);
}
.detalles{
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--clr-secundario);
    padding: 0;
    border-radius: 50%;
}
.detalles li{
    position: relative;
    list-style: none;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    user-select: none;
    text-decoration: none;
}
.detalles li:hover{
    background-color: #fff;
    border-radius: 50%;
    color: #000;
}
.detalles li:hover .iconos{
    --columna: 2;
    --fila:2;
}
.detalles a{
    transform: scale(.25);
}
.detalles .iconos{
    text-decoration: none;
}
.detalles li span{
    font-weight: 700;
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%) translateX(-20px);
    white-space: nowrap;
    padding: 4px 10px;
    background-color: #fff;
    color: #000;
    border-radius: 20px;
    pointer-events: none;
    opacity: 0;
    transition: 0.2s;
    user-select: none;
}
.detalles li:hover span{
    opacity: 1;
    transform: translateY(-50%) translateX(0px);;
}
.detalles li span::before{
    content: '';
    position: absolute;
    top:50%;
    right: -3px;
    width: 10px;
    height: 10px;
    background-color: #fff;
    transform: translateY(-50%) rotate(45deg);
    user-select: none;
}
.producto .contenido{
    padding: 10px;
    background-color: var(--clr-fondo-secundario);
    border-radius: 0 0 20px 20px;
}

.nombre_producto h3{
    font-family: var(--ftexto);
    font-weight: 700;
    text-align: left;
    padding: 10px;
    margin: 5px 0;
}

/*NO HAY MAS PRODUCTOS*/
#sin_p{
    font-size: 1.5rem;
    font-weight: bold;
    font-style: italic;
    text-align: center;
    color: rgb(83, 83, 83);
}


/*
========================================
        PAGINA DE PRODUCTOS
========================================
*/


.info-producto{
    margin: 100px 0;
    overflow: hidden;
    position: relative;
    display: grid;
    grid-template-columns: 10% 1fr 1fr 10%;
    row-gap: 10px;
    grid-template-areas:
    '. nombre nombre .'
    'caracteristicas caracteristicas imagen .'
    'caracteristicas caracteristicas imagen .';
    align-items: center;
}

.tituloproducto{
    margin: 40px 0;
    grid-area: nombre;
} 
.caracteristicas{
    background-color: var(--clr-fondo-secundario);
    max-height: 100%;
    border-radius: 0 50px 50px 0;
    display: grid;
    grid-template-columns: 20% 80%;
    grid-template-areas: 'categoria carac';
    align-items: center;
    justify-content: center;
    padding: 10px;
    grid-area: caracteristicas;
    z-index: 5;
}

.categoria{
    color: rgba(255, 255, 255, 0.27);
    font-size: clamp(1.2rem,0.4rem + 2.5vw,2.65rem);
    line-height: clamp(1.2rem,0.4rem + 2.5vw,2.65rem);
    margin: 30px 20px;
    text-transform: uppercase;
    user-select: none;
    grid-area: categoria;
    /* writing-mode: vertical-lr; */
}

.caracteristicas ul{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-area: carac;
}
.caracteristicas li{
    font-size:clamp(0.8rem, 0.1rem + 2vw, 1rem);
    list-style: none;
    padding: 0 15px;
    margin-bottom: 10%;
    max-width: 80%;
}
.titulo-caracteristica{
    font-weight: 400;
    background-color:var(--clr-secundario);
    margin: 1vh 0;
    padding: 5px 10px;
    border-radius: 20px;
    text-align: center;
}
.caracteristica:before{
    content: '';
    display: inline-block;
    width: 1ch;
    height: 1ch;
    border-radius: 50%;
    margin-right: 5px;
    background-color: #fff;
}
.imagen{
    grid-area: imagen;

}
#categoria{
    position: absolute;
    top: -5%;
    right: -5%;
    width: 300px;
    opacity: 0.2;
    z-index: -1;
    user-select: none;
}

#categoria[src*="peces"]{
    transform: scaleX(-1);
}

.foto{
    position: relative;
    width: 100%;
    height: 50vw;
    border-radius: 20px;
    overflow: hidden;
    border: 5px solid #fff;
}

@supports (aspect-ratio: 1){
    .foto{
        height:auto;
        aspect-ratio:1;
    }
}

.otras-fotos{
    position: relative;
    top: 85%;
    height: 15%;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}
.cambiarfoto{
    font-size: clamp(1.4rem, 0.5rem + 3vw,3rem);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    background-color: #fff;
    width: 5vw;
    height: 5vw;
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    user-select: none;
    transition: 0.3s transform;
}
.cambiarfoto:hover{
    transform: scale(1.2);
}

/*
================================
    DESCRIPCION PRODUCTO
================================
*/


.acerca-de{
    padding: 0 10% 10% 10%;
    background-color: var(--clr-fondo);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.desc-producto{
    max-width: 70vw;
    font-size: clamp(2rem, 1rem + 4vw,3rem);
    background-color:var(--clr-secundario);
    margin-bottom: 1vh;
    padding: 1rem;
    border-radius: 50px;
    text-align: center;
    transform: translateY(-4vh);
}

.desc{
    color: #fff;
    max-width: 80ch;
    position: relative;
}
.desc::before{
    content: '';
    position: absolute;
    top: -5%;
    left: -20px;
    width: clamp(2.5px, 0.5px + 0.5vw,5px);;
    height: 110%;
    background-color: #fff;
    border-radius: 50px;
}
.desc p{
    line-height: 1.5;
}
.desc p + p{
    margin-top: 1.5em;
}
.desc a{
    color: var(--clr-secundario);
}
.desc a:hover{
    color: #fd8a8a;
}


/*
===========================
  PRODUCTOS RELACIONADOS
===========================
*/

.otros{
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.relacionado{
    margin: 30px 0;
}

.productos-relacionados{
    margin: 2% 10%;
    width: 80vw;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    column-gap: 20px;
}

.otros .boton{
    align-self:center;
}




/*
============================
    AJUSTES SEGUN PANTALLA
        MEDIA QUERIES
============================
*/


@media(max-width:768px){
    /*
    =======================
        PAGINA PRINCIPAL
    =======================
    */

    header h1{
        display: none;
    }

    .inicio>div:not(.burbuja){
        margin-top: 10%;
        margin-bottom:-15%;
    }
    .inicio .titulo{
        font-size: 3rem;
        line-height: 50px;
        margin-bottom: 1.2em;
    }
    .inicio .boton{
        font-size: 1.2rem;
        margin-top: -25px;
    }
    .burbuja#pequena{
        width: 70px;
        height: 70px;
        top: 75vh;
        left: 80vw;
        z-index: 3;
    }
    .burbuja#grande{
        width: 100px;
        height: 100px;
        top: 70vh;
        left: 55vw;
        z-index: 2;
    }
    .contacto:before{
        height: 70px;
    }

    .titulo_fondo{
        font-size: 5rem;
    }
    .informacion{
        align-content: center;
        justify-items: center;
        margin-top: 60px;
        grid-template-columns:100%;
    }
    .vias_contacto{
        flex-direction: row;
        max-width: calc(100vw - 2rem);
    }
    .icono_contacto{
        transform: scale(.6);
        margin: 0;
    }
    .icono_contacto:hover{
        transform: scale(.7);
    }
    .icono_contacto::after{
        display: none;
    }
    .nuestros-productos input{
        font-size: 1.2rem;
    }
    
    /*
    =============================
          PAGINA ERROR 404
    =============================
    */

    .tituloerror::after{
        font-size: 0.8rem;
    }

    /*
    =============================
          PAGINA CATALOGO
    =============================
    */
    .iniciocatalogo .titulo{
        font-size: 3rem;
        line-height: 50px;
    }
    .titulo_fondo.nuestrosproductos{
        width: 80%;
    }


    /*
    =============================
        PAGINA DE PRODUCTOS
    =============================
    */

    .info-producto{
        grid-template-areas:
        '. nombre . .'
        'caracteristicas caracteristicas caracteristicas .'
        '. imagen imagen .';
    }
    #categoria{
        top: 0;
        width: 200px;
    }
}

@media(max-width:500px){

    .inicio:not(.iniciocatalogo){
        align-items: flex-start;
        justify-content: left;
    }

    .info-inicio{
        justify-items: left;
        align-content: flex-start;
        margin-left: 10%;
        margin-top: 10%;
    }
    .inicio:not(.iniciocatalogo) .titulo{
        font-size: 2.5rem;
        line-height: 40px;
        text-align: left;
        width: 300px;
    }
    .inicio .boton{
        font-size: 1rem;
        margin-top: -40px;
    }
    .burbuja#pequena{
        width: 40px;
        height: 40px;
        top: 75vh;
        left: 80vw;
        z-index: 3;
    }
    .burbuja#grande{
        width: 80px;
        height:80px;
        top: 70vh;
        left: 55vw;
        z-index: 2;
    }

    .contacto:before{
        height: 50px;
    }

    .titulo_fondo{
        font-size: 4rem;
    }
    .nuestros-productos h3{
        font-size: 2rem;
    }

    /*  CATALOGO INPUT BUSCAR */
    .buscar{
        font-size: 0.8rem;
        max-width: 60%;
    }

}

/*NOTIFICACION*/

.notificacion{
    font-family: 'Poppins';
    color:#252E15;
    position: fixed;
    inset: 0;
    width: min(40vmax, 100% - 2rem);
    height: max-content;
    margin: auto;
    border-radius: 1rem;
    background-color: #DEFDC4;
    display: grid;
    place-items: center;
    box-shadow: 0 0 0 100vh rgba(0,0,0, 0.6);
    z-index: 80;
}
.notificacion h3{
    font-size: clamp(2rem, 2.5vw, 3.5rem);
    margin: 0;
    padding-block: 1.5rem;
    padding-inline: 2rem;
    text-align: center;
}
.notificacion p{
    margin: 0;
    padding-inline: 2rem;
    text-align: center;
    padding-bottom: 1rem;
}
.notificacion video{
    width: 100%;
    align-self: end;
    border-radius: 1rem;
}
.notificacion-btn{
    font-family: inherit;
    font-size: 5vmin;
    border: 1px solid #000;
    border-radius: 50%;
    width: clamp(2.5rem, 4vmax, 3.5rem);
    height: clamp(2.5rem, 4vmax, 3.5rem);
    position: absolute;
    top: -2.5%;
    right: -2.5%;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: grid;
    place-content: center;
}
.notificacion-btn:hover, .notificacion-btn:focus{
    transform: scale(1.2);
}
.notificacion-btn .iconos{
    transform: scale(.25);
}

/*NOTIFICACION*/