@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap');

/*--------------------------------------------------------------
# Genéricos
--------------------------------------------------------------*/

:root {
  --blanco: #fff;
  --negro: #1d2124;  
  --gris: #454d55;
  --grisClaro: #f3f3f3;
  --crema: #fbb93b;
  --azul: #005cbd;
  --verde: #0f8d08;
  --rojo: #c5001a;
  --hueso: #e4e3db;
  --morado: #6E18DD;
}

html{
    margin: 0;
    padding: 0;
}

.grupo-redes{
    display: flex;
    column-gap: 10px;
    align-items: center;
}

.grupo-icon-facebook{
    position: relative;
    width: 79px;
    height: 24px;
    margin-right: 26px;
}

.grupo-icon-facebook .icon-facebook{
    background: #3b579d;
    padding: 2px 13px;
    border-radius: 50px;
    color: #fff;
    font-size: 13px;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.grupo-icon-facebook:hover .icon-facebook{
    background: #092875;
}

.fb-share-button{
    width: 100%;
    top: -5px;
    position: absolute !important;
    left: 16px;
    opacity: 0;
    transform: scale(1.1);
}

.fb-share-button span iframe{
    height: 20px !important;
    transform: scale(1.3);
}

.contenedor-anuncio .grupo-compartir .grupo-redes a.twitter{
    background: #1DA1F2;
    color: var(--blanco);
    font-size: 14px;
    padding: 2px 10px;
    border-radius: 50px;
    margin: 0;
}

.contenedor-anuncio .grupo-compartir .grupo-redes a.twitter:hover{
    background: #0076bf;
}

.contenedor-anuncio .grupo-compartir .grupo-redes a.twitter i{
    font-size: 15px;
}

#grupo-enlace-a-copiar{
    background: var(--morado);
    color: var(--blanco);
    padding: 2px 13px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
}

#grupo-enlace-a-copiar:hover{
    background: #4700a3;
}

#enlace-a-copiar{
    display: none;
}

#mensaje-enlace-copiado{
    color: var(--gris);
    opacity: 0;
}

#mensaje-enlace-copiado.active{
  animation-name: aparecer-mensaje;
  animation-duration: 4s;
}

.grupo-solo-logos img{
    height: 60px;
    margin: 10px;
}

@keyframes aparecer-mensaje{
  0%   {opacity: 0;}
  50%  {opacity: 1;}
  100% {opacity: 0;}
}

#page.active{
    filter: blur(20px);
    pointer-events: none;
    user-select: none;
    transition: all 0.5s;
}

#popup{
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-width: 800px;
    padding: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,.30);
    z-index: 9999999999999;
    background-color: #fff;
    visibility: hidden;
    border-radius: 5px;
    max-height: 90vh;
    opacity: 0;
    transition: all 0.5s;
}

#popup.active{
    top: 50%;
    visibility: visible;
    opacity: 1;
    transition: all 0.5s;
}

#popup .cerrar{
display: flex;
    flex-direction: row-reverse;
}

#popup a img{
    max-height: 85vh;
}


#countdown{
border: 3px solid var(--amarillo);
    margin: 0px auto 15px;
    padding: 34px;
    border-radius: 100%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: var(--azul);
    font-weight: 600;
}

#confirmacionEnvio a{
background: var(--amarillo);
    padding: 12px 27px;
    margin-bottom: 60px;
    display: inline-block;
    border-radius: 9px;
    color: var(--negro);
    box-shadow: 2px 2px 3px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

#confirmacionEnvio a:hover{
background: var(--azul);
    color: var(--blanco);
}

#chatwhatsapp{
    width: 160px;
    border-radius: 11px 0px 0px 11px;
    position: fixed;
    top: 201px;
    background: #0f8d08;
    z-index: 500;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 45%);
    right: -20px;
    transition: all 0.3s;
}

#chatwhatsapp a{
    text-decoration: none;
}

#chatwhatsapp:hover{
    right: -8px;
}

#chatwhatsapp a .grupo{
    padding: 13px;
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
    row-gap: 5px;
}

#chatwhatsapp a .grupo img{
    width: 43px;
    position: relative;
    top: 0px;
}

#chatwhatsapp a .grupo h3{
    margin: 0px 4px 0px 0px;
    color: #fff;
    font-size: 18px;
    position: relative;
}


#chatwhatsapp a .grupo p{
    color: #fff;
    font-size: 15px;
    line-height: 17px;
    font-weight: 400;
    margin: 0px;
    text-decoration: none;
    width: 82px;
    text-align: center;
    margin-left: 1px;
    position: relative;
    top: 1px;
}

#chatwhatsapp a:hover{
    text-decoration: none;
}

#chatwhatsapp a:hover .grupo p{
    text-decoration: none;
}


/*--------------------------------------------------------------
# Animaciones
--------------------------------------------------------------*/

@keyframes btn_saltarin{

0%{
    top: 0px;
}

50%{
    top: -10px;
}

80%{
    top: 0px;
}

100%{
    top: 0px;
}

}

/*--------------------------------------------------------------
# Específicos
--------------------------------------------------------------*/

body{
    margin: 0;
    padding: 0;
    position: relative;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

form, input, textarea{
    font-family: 'Poppins', serif;
}

ul, li, a{
    list-style: none;
    text-decoration: none;
    color: inherit;
}

header{
    background: var(--blanco);
    position: relative;
    width: 100%;
}

.container{
    max-width: 1200px;
    margin: 0px auto;
    position: relative;
}

.flex-between{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a img{
    width: 250px;
    padding: 10px 10px 5px;
}

.menu ul{
    list-style: none;
    display: flex;
    column-gap: 20px;
    align-items: center;
}

.menu ul li a{
    text-decoration: none;
    color: var(--gris);
    font-weight: 500;
    transition: all 0.3s ease;
}

.menu ul li.acceder a{
    border: 1px solid var(--blanco);
    border-radius: 5px;
    padding: 5px 14px;
    background: radial-gradient(at top right, #533DFD 0%, #730FD5 100%);
    color: var(--blanco);
}

.menu ul li.active a{
    color: var(--morado);
}

.menu ul li a:hover{
    color: var(--morado);
}

.menu ul li.acceder a:hover{
    color: var(--blanco);
    box-shadow: 3px 3px 0px rgba(0,0,0, 0.2);    
}

header .buscador{
    margin: 0px auto;
    text-align: center;
    padding: 20px;
    background: var(--crema);
}

.buscador label{
    font-weight: 600;
    font-size: 27px;
    padding: 0px 7px;
    position: relative;
    top: 4px;
    color: var(--negro);
    line-height: 31px;
}

.buscador input[type='text']{
    font-size: 16px;
    padding: 9px 13px;
    width: 333px;
    outline: none;
    border-radius: 5px;
    border: 1px solid var(--azul);
}

.buscador input[type='submit']{
    font-size: 17px;
    outline: none;
    border: none;
    background: var(--azul);
    color: var(--blanco);
    padding: 11px 31px;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 3px 3px 0px rgba(0,0,0, 0.2);
    display: inline-block;    
    transition: all 0.3s ease;
    position: relative;
    animation: 2s infinite btn_saltarin;
}

.buscador input[type='submit']:hover{
    box-shadow: 4px 4px 3px rgba(0,0,0, 0.2);
    animation: none;
}

.owl-theme .owl-nav {
    position: absolute;
    z-index: 9999999;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.owl-theme .owl-nav button{
    font-size: 60px !important;
}

.owl-theme .owl-nav [class*=owl-]{
    transition: all 0.3s ease;
}

.owl-theme .owl-nav [class*=owl-]:hover{
    background: #ebad00 !important;
    color: #FFF;
    text-decoration: none;
    padding: 0px 20px !important;
}

.owl-theme .owl-dots{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.banner{
    background: url(../img/fondo-banner.png);
    background-position-y: bottom;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.slide{
    display: flex;
    position: relative;
    height: calc(100vh - 209px);
    align-items: center;
    padding: 0px 100px;
    column-gap: 50px;
}

.slide .textos{
    width: 50%;
    transform: translateY(-53px);
}

.slide .imagen{
    width: 50%;
    transform: translateY(-31px);
}

.slide .textos h1{
    font-size: 63px;
    line-height: 69px;
    color: var(--blanco);
}

.slide .textos h5{
    font-size: 26px;
    line-height: 37px;
    font-weight: 600;
    color: var(--blanco);    
}

.owl-carousel .owl-item img {
    max-height: 550px;
    object-fit: cover;
    border-radius: 10px 65px;
    box-shadow: 5px 7px 10px #00000036;
}

.btn-1 a{
    text-decoration: none;
    background: var(--crema);
    color: var(--negro);
    font-weight: 600;
    font-size: 19px;
    padding: 16px 28px;
    border-radius: 5px;
    box-shadow: 4px 4px 0px rgba(255,255,255, 1);
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-1 a:hover{
    box-shadow: 8px 8px 5px rgba(255,255,255, 1);
    transform: translate(-5px, -5px);
}

#destacados h2{
    text-align: center;
    font-size: 60px;
    margin: 67px 20px 38px;
    line-height: 72px;
}

#destacados .btn-1{
    text-align: center;
    margin-bottom: 85px;
}

.grupo-destacados{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    padding: 0px 0px 46px;
    margin-top: 30px;
}

.grupo-destacados .destacado{
    width: 23%;
    margin: 6px;
    padding: 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 6px rgb(0 0 0 / 10%);
}

.grupo-destacados .destacado:hover img{
    transform: scale(1.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 1, 1) 0.0s;
}

.grupo-destacados .destacado img{
    width: 100%;
    transition: all 1s cubic-bezier(0.4, 0, 1, 1) 0.1s;
}

.grupo-destacados .destacado .textos{
    padding: 12px 20px 25px;
    position: relative;
}

.grupo-destacados .destacado .ciudad{
    background: var(--crema);
    display: inline-block;
    position: absolute;
    top: -25px;
    right: 0;
    padding: 5px 18px;
    font-weight: 600;
    border-radius: 5px 0px 0px 5px;
}

.destacado h3{
    line-height: 21px;
    margin: 7px 0px;
    font-size: 18px;
    text-align: center;
    font-weight: 700;
}

.destacado h3 a{
    color: var(--negro);
    text-decoration: none;
}

.destacado h3 a:hover{
    text-decoration: underline;
}

.destacado .categorias{
    font-size: 13px;
    color: var(--crema);
    text-decoration: underline;
}

.destacado .categorias:hover{
    text-decoration: none;
}

.destacado .resumen{
    font-size: 16px;
    line-height: 19px;
    max-height: 130px;
    overflow: hidden;
    margin-bottom: 16px;
}

.destacado .ver-mas{
    text-decoration: none;
    background: var(--azul);
    padding: 5px 16px;
    color: var(--blanco);
    border-radius: 22px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
}

.destacado .ver-mas:hover{
    box-shadow: 3px 3px 0px rgba(0,0,0, 0.2);
    transform: translate(-3px, -3px);
}

#categorias{
    background: var(--crema);
    padding: 60px 20px;
    margin-top: 60px;
}

#categorias h2{
    text-align: center;
    font-size: 60px;
    margin-top: 0px;
}

#categorias .grupo-princ-categorias{
    margin-bottom: 30px;
}

#categorias h3{
    text-align: left;
    font-size: 30px;
    margin: 0;
}


#categorias .grupo-categorias{
    position: relative;
    display: flex;
    justify-content: space-evenly;
}

#categorias .grupo-categorias ul{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0px;
    padding: 0px;
    column-gap: 60px;
}

#categorias .grupo-categorias ul li{
    font-size: 20px;
    font-weight: 700;
}

#categorias .grupo-categorias ul li ul li{
    font-size: 16px;
    font-weight: 400;
}

#categorias .grupo-categorias ul li ul{
    display: block;
    margin: 4px 0px 15px 30px;
}

#categorias .grupo-categorias ul li i{
    margin-right: 5px;
    font-size: 13px;
    color: var(--azul);
    position: relative;
    top: -1px;
}

#categorias .grupo-categorias ul li a:hover{
    text-decoration: underline;
}

.grupo-principal-footer{
    padding: 50px 20px 47px;
    background: var(--grisClaro);
}

footer .grupo-footer{
    position: relative;
    display: flex;
    justify-content: space-between;
    column-gap: 50px;
}

footer .grupo-footer h4{
    font-size: 21px;
    margin: 0px 0px 18px;
}

footer .grupo-footer .resumen img{
    width: 200px;
}

footer .grupo-footer .resumen{
    width: 25%;
}

footer .grupo-footer .info{
    line-height: 19px;
    font-size: 16px;
}

footer .grupo-footer .recientes{
    width: 25%;
}

footer .grupo-footer .recientes .reciente{
    display: flex;
    column-gap: 12px;
    margin-bottom: 10px;
}

footer .grupo-footer .recientes .imagen{
    width: 40%;
}

footer .grupo-footer .recientes .textos{
    width: 60%;
    max-height: 84px;
    overflow: hidden;
}

footer .grupo-footer .recientes .textos h5{
    margin: 0px;
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
}

footer .grupo-footer .recientes .textos p{
    font-size: 13px;
    line-height: 14px;
    margin: 4px 0px;
}


footer .grupo-footer .recientes img{
    width: 100%;
}

footer .grupo-footer .destacados{
    width: 25%;
}

footer .grupo-footer .redes{
    width: 25%;
}

footer .grupo-footer .redes ul{
    margin: 0;
    padding: 0;
}

footer .grupo-footer .redes ul li{
    margin-bottom: 10px;
}

footer .grupo-footer .redes ul li i{
    margin: 0px 3px;
    color: var(--gris);
}

footer .grupo-footer .redes ul li i.fa-whatsapp{
    font-size: 21px;
    color: green;
}

footer .grupo-footer .redes ul li a{
    margin-left: 4px;
}

.grupo-principal-copyright{
    text-align: center;
    background: var(--negro);
    padding: 1px 10px;
}

.grupo-principal-copyright p{
    font-size: 15px;
    color: var(--blanco);
}

.a-caja_whatsapp .caja_whatsapp {
    text-align: center;
    background: #0f8d08;
    padding: 15px;
    width: auto;
}

.a-caja_whatsapp .caja_whatsapp h2 {
    font-size: 20px;
    width: 95%;
    margin: 0px auto;
    color: var(--blanco) !important;
    hyphens: inherit;
}

.a-caja_whatsapp .caja_whatsapp img {
    width: 50px;
    margin: 10px 0px;
}

.a-caja_whatsapp .caja_whatsapp h3 {
    font-size: 20px;
    width: 90%;
    margin: 0px auto;
    color: #fff;
}

.menu-ciudades ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 0 20px;
}

.menu-ciudades ul li{
    margin: 0px 9px;
    font-size: 16px;
}

.menu-ciudades ul li.active{
    margin-top: -10px;
}

.menu-ciudades ul li i{
    font-size: 8px;
    position: relative;
    top: -2px;
    margin-right: 2px;
    color: var(--crema);
}

.menu-ciudades ul li.active a{
    text-decoration: underline;
    font-weight: 800;
    font-size: 24px;
}

.menu-ciudades ul li a:hover{
    text-decoration: underline;
}

.menu-ciudades ul li a{
    color: var(--azul);
}

.bloque-principal-anuncios{
    position: relative;
    display: flex;
    column-gap: 20px;
}

.bloque-principal-anuncios .sidebar{
    width: 20%;
}

.bloque-principal-anuncios .contenedor-grupo-destacados{
    width: 100%;
}

.bloque-principal-anuncios .contenedor-grupo-destacados h4{
    font-size: 25px;
    margin: 0px;
}

a.eliminar-categoria{
    background: var(--crema);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

a.eliminar-categoria:hover{
    text-decoration: underline;
}

.bloque-principal-anuncios .sidebar ul li a:hover{
    text-decoration: underline;
}

.bloque-principal-anuncios .sidebar ul li.principal a.otros{
    cursor: pointer;
}

.bloque-principal-anuncios .sidebar ul li.principal a.otros:hover{
    cursor: pointer;
    text-decoration: underline;
}

.bloque-principal-anuncios .sidebar ul li a.active{
    text-decoration: underline;
}

.bloque-principal-anuncios .sidebar ul li.principal{
    font-weight: 600;
    margin-bottom: 10px;
}

.bloque-principal-anuncios .sidebar ul li.principal a:hover{
    text-decoration: none;
    cursor: default;
}

.bloque-principal-anuncios .sidebar ul li ul li{
    font-weight: 400;
    line-height: 18px;
    font-size: 15px;
    margin: 4px 0px 6px;
}

.bloque-principal-anuncios .sidebar ul li.principal ul li a:hover{
    text-decoration: underline;
    cursor: pointer;
}

.bloque-principal-anuncios .sidebar ul li ul li i{
    font-size: 10px;
    position: relative;
    top: -1px;
    margin-right: 2px;
}

.paginacion {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    margin: 20px 10px;
}

.paginacion a{
    background: var(--crema);
    padding: 5px 7px;
    color: var(--blanco);
    border-radius: 4px;
    transition: all 0.3s ease;
    align-items: center;
}

.paginacion a.active{
    background: var(--azul);
    padding: 5px 7px;
    color: var(--blanco);
    border-radius: 4px;
}

.paginacion a:hover{
    background: var(--azul);
}

.grupo-condiciones{
    text-align: left;
}

.grupo-condiciones h3{
    font-size: 24px;
    margin: 20px 0px 0px;
}

.grupo-condiciones ol{
    counter-reset: table-of-content;
    list-style-type: none;
}

.grupo-condiciones ol li{
    margin: 10px;
}

.grupo-condiciones ol li::before{
    counter-increment: table-of-content;
    content: counters(table-of-content,".",decimal) " ";
    color: #222;
    font-weight: bold;
}

.grupo-condiciones ul li{
    list-style: disc;
}

.grupo-condiciones ul li ul li{
    list-style: circle;
}

.grupo-condiciones ul li::before {
    counter-increment: table-of-content;
    content: initial;
}

.yc-em2 {
    font-weight: bold;
    margin: 0 0.4em;
}

.grupo-enlaces-importantes{
   margin-top: 20px;
}

.grupo-enlaces-importantes ul{
    margin: -7px 0px;
}

.grupo-enlaces-importantes ul li{
    list-style: disc;
    line-height: 20px;
    margin: 5px 0px 5px;
}

.grupo-enlaces-importantes ul li a:hover{
    text-decoration: underline;
}

.sidebar ul{
    background: var(--crema);
    padding: 20px;
    margin: 0px;
}

.sidebar ul li ul{
    padding: 0px 0px 0px 20px;
}

.menu-ciudades{
    margin-bottom: 50px;
}

.contenedor-anuncio{
    padding: 40px 20px;
    position: relative;
}

.contenedor-anuncio h1{
    font-size: 40px;
    line-height: 46px;
    padding: 0;
    margin: 0;
}

.banner.banner-anuncio{
    background: none;
    margin: 20px 0px 35px;
}

.banner.banner-anuncio .slide{
    height: inherit;
    padding: 20px 19px 32px;
    column-gap: 0px;
}

.banner.banner-anuncio .slide .imagen {
    width: 100%;
    transform: translateX(0px);
}

.banner.banner-anuncio .slide .imagen img {
    display: block;
    width: 100%;
    border-radius: 5px;
    box-shadow: none;
    max-height: 500px;
    object-fit: contain;
}

.banner.banner-anuncio .slider{
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #d1d1d1;
}

.contenedor-anuncio .info-completa h1{
    font-size: 35px;
    line-height: 40px;
}

.contenedor-anuncio .info-completa h2{
    font-size: 30px !important;
    text-align: inherit !important;
    line-height: 35px;
}

.contenedor-anuncio .info-completa h3{
    font-size: 25px !important;
    line-height: 30px;
}

.contenedor-anuncio .info-completa h4{
    font-size: 20px !important;
    line-height: 25px;
}

.contenedor-anuncio .info-completa h5{
    font-size: 15px !important;
    line-height: 20px;
}

.contenedor-anuncio .info-completa img{
    max-width: 100%;
    height: auto;
}

.contenedor-anuncio .info-completa ul, .contenedor-anuncio .info-completa ul li{
    list-style: disc;
}

.contenedor-anuncio .resumen{
    margin: 40px 0px 0px;
    font-weight: 600;
    font-size: 16px;
}

.contenedor-anuncio .info-completa{
    margin: 40px 0px 0px;
    font-size: 16px;
}

.contenedor-anuncio .grupo-compartir{
    display: flex;
    column-gap: 8px;
    margin: 16px 0px;
}

.contenedor-anuncio .grupo-compartir .grupo-redes a{
    color: var(--gris);
    margin-right: 5px;
}


.contenedor-anuncio .grupo-compartir .grupo-redes a i{
    font-size: 20px;
}

.datos-de-contacto h5{
    font-size: 25px;
    margin-bottom: 0px;
}

.datos-de-contacto .btn-whatsapp a{
    background: green;
    display: inline-flex;
    padding: 20px 50px;
    font-size: 20px;
    font-weight: 600;
    color: var(--blanco);
    align-items: center;
}

.datos-de-contacto .btn-whatsapp a i{
    font-size: 37px;
    margin-right: 6px;
}

.datos-de-contacto ul{
    margin: 20px 0px;
    padding: 0px;
}

.datos-de-contacto ul li{
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 12px;
}

.datos-de-contacto ul li i{
    margin-right: 8px;
    color: var(--crema);
    font-size: 20px;
}

.error{
    display: none;
    position: absolute;
    width: 100%;
    background: red;
    top: 0px;
    left: 0px;
    color: #fff;
    font-family: sans-serif;
    text-align: center;
    padding: 9px 5px;
    font-size: 0.9em;
    z-index: 2;
}

.bloqueado{
    display: none;
    position: absolute;
    width: 100%;
    background: red;
    top: 0px;
    left: 0px;
    color: #fff;
    font-family: sans-serif;
    text-align: center;
    padding: 9px 5px;
    font-size: 0.9em;
    z-index: 2;
}

.grupo-acceso{
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px 0px 60px;
}

.grupo-acceso .enlace-crear-cuenta a{
    color: var(--azul);
}

.grupo-acceso h1{
    font-size: 50px;
    margin: 50px 50px 0px;
}

.form-ingreso form{
    position: relative;
    width: 400px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.form-ingreso form input{
    width: 100%;
    padding: 5px;
    margin: 5px 0px;
    text-align: center;
}

.form-ingreso form .grupo-pass{
    position: relative;
}

.form-ingreso form input.ingresosm{
    border: 1px solid #bbc2d8;
    border-radius: 5px;
    transition: 0.3s;
    padding: 9px 0px;
    outline: none;
    position: relative;
}

.form-ingreso form button{
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background: no-repeat;
    outline: none;
    border: none;
    cursor: pointer;
}

.form-ingreso form input.ingresosm:hover{
    border: 1px solid #858ca0;
}

.form-ingreso form .nota{
    font-size: 14px;
    line-height: 18px;
    display: block;
    font-style: italic;
    color: var(--gris);
    text-align: left;
    margin: 5px 0px 15px;
}

.form-ingreso form .nota a{
    color: var(--azul);    
}

.form-ingreso form .nota a:hover{
    text-decoration: underline;    
}

.form-ingreso form input.submit{
    background: #ff8303;
    border: none;
    color: #fff;
    padding: 10px 0px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: 0.3s;
}

.form-ingreso form input.submit:hover{
    background: #0792cf;
}


.form-ingreso .olvido_password:hover{
    text-decoration: underline;
}

.grupo-pass select{
    outline: none;
    border: 1px solid #bbc2d8;
    padding: 5px 12px;
    font-size: 15px;
    font-family: 'Poppins';
    border-radius: 5px;
}


/*************** ADMIN ***************/

.menu ul li{
    position: relative;
}

.menu ul li.acceder:hover ul.menu-perfil-user{
    opacity: 1;
    pointer-events: auto;
}

.menu ul.menu-perfil-user{
    flex-direction: column;
    align-items: flex-start;
    margin: 2px 0px;
    padding: 8px;
    background: radial-gradient(at top right, #533DFD 0%, #730FD5 100%);
    border: 1px solid var(--blanco);
    position: absolute;
    width: 190px;
    border-radius: 0 5px 5px 5px;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
    z-index: 2;
}

.menu ul.menu-perfil-user li{
    padding: 5px 0px;
    display: grid;
    line-height: 17px;
}

.menu ul.menu-perfil-user li a{
    border: none;
    border-radius: 0;
    font-weight: 400;
    font-size: 15px;
    background: none;
    padding: 2px 7px;
}

.menu ul.menu-perfil-user li a:hover {
    color: var(--blanco);
    box-shadow: none;
    text-decoration: underline;
}

.grupo-paso .info{
    background: var(--hueso);
    padding: 20px;
    margin: 20px;
    border-radius: 10px;
}

.grupo-paso .info h3{
    font-weight: 700;
    font-size: 25px;
    padding-bottom: 0;
    margin-bottom: 0;
}


.grupo-paso .info p{
    font-weight: 400;
    font-size: 16px;
    margin-top: 0;
}

.grupo-consultas{
    text-align: center;
}

#categorias .grupo-consultas h2{
    margin: 0px 0px 17px;
}

.grupo-consultas p{
    font-size: 20px;
    margin: 0;
    padding: 0 0 10px;
}

.grupo-consultas p span{
    font-weight: 700;
}

.grupo-acceso .grupo-cuentas{
    text-align: left;
}

.grupo-acceso .grupo-cuentas .grupo-banco{
    border: 1px solid var(--hueso);
    padding: 8px 29px;
    margin: 20px 0px;
}

.grupo-acceso .grupo-cuentas .grupo-banco h4{
    font-size: 26px;
    margin: 7px 0px 0px;
}

.grupo-acceso .grupo-cuentas .grupo-banco img{
    width: 120px;
}

.grupo-acceso .grupo-cuentas .grupo-banco img.yape{
    width: 100%;
}

.grupo-acceso .grupo-cuentas .grupo-banco img.plin{
    width: 70px;
}

.grupo-acceso .grupo-cuentas .grupo-banco p{
    margin: 0px;
}

.bars-menu{
    display: none;
}

#destacados h3{
    padding: 0px;
}

a.eliminar-categoria{
    margin-left: 20px;
}

.grupo-destacados.busqueda{
    padding: 0 20px;
    justify-content: flex-start;
}

.modal_uno{
    width: 300px;
    position: fixed;
    top: -100%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    border-radius: 7px;
    padding: 0;
    transition: all 0.3s ease;
    background: var(--crema);
    z-index: 1;
}

.modal_uno h4{
    font-size: 17px !important;
}

.modal_uno h5{
    font-size: 15px !important;
}

.modal_uno a{
    margin: 9px 0px 20px;
    border: 0px;
    background: var(--morado);
    cursor: pointer;
    color: white;
    padding: 11px 32px;
    border-radius: 7px;
    transition: all 0.3s;
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.4px;
    box-shadow: 0px -2px 3px #0000006e inset, 0px 3px 3px #ffffff24 inset;
    text-decoration: none;
}

.modal_uno a:hover{
    background: var(--crema);
}

.modal_uno .card-body {
    padding: 11px 0px 0px;
}

.modal_uno .card-title{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px 5px;
    background: var(--morado);
    color: var(--blanco);
}





@media (max-width: 1400px){

.slide .textos h1{
    font-size: 50px;
    line-height: 57px;
    margin-bottom: 0px;
}

.slide .textos h5{
    font-size: 22px;
    font-weight: 500;
    line-height: 30px;
    margin-top: 20px;
}



}


@media (max-width: 1200px){

.menu{
    margin-right: 20px;
}

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

.buscador label {
    margin: 10px 0px;
}

.buscador input[type='text'] {
    width: 60%;
}

.buscador input[type='submit'] {
    margin-top: 20px;
}

footer .grupo-footer {
    position: relative;
    display: flex;
    justify-content: space-between;
    column-gap: 0;
    flex-wrap: wrap;
}

footer .grupo-footer .resumen {
    width: 100%;
}

footer .grupo-footer .recientes {
    width: 100%;
}

footer .grupo-footer .redes {
    width: 100%;
}

footer .grupo-footer h4 {
    font-size: 21px;
    margin: 20px 0px 18px;
}

footer .grupo-footer .recientes .reciente {
    display: flex;
    column-gap: 12px;
    margin-bottom: 10px;
    flex-direction: column-reverse;
}

footer .grupo-footer .recientes .textos {
    width: 300px;
    max-height: 84px;
    overflow: hidden;
    margin-bottom: 11px;
}

footer .grupo-footer .recientes .imagen {
    width: 300px;
}

footer .grupo-footer .recientes .textos h5 {
    margin: 0px;
    font-size: 18px;
    font-weight: 600;
    line-height: 21px;
}

footer .grupo-footer .recientes .textos p {
    font-size: 15px;
    line-height: 14px;
    margin: 16px 0px;
}

.a-caja_whatsapp{
    width: 300px;
    display: block;
}

.grupo-destacados {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0px 0px 46px;
    margin-top: 30px;
}

.bloque-principal-anuncios {
    position: relative;
    display: flex;
    column-gap: 20px;
    flex-direction: column-reverse;
    padding: 0px 20px;
}

.bloque-principal-anuncios .sidebar {
    width: 100%;
}

.sidebar ul {
    background: var(--crema);
    padding: 20px;
    margin: 0px;
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
}

.sidebar ul li ul {
    padding: 0px 0px 0px 20px;
    flex-direction: column;
}


}


@media (max-width: 1024px){



}


@media (max-width: 1000px){

.menu{
    position: fixed;
    right: -100%;
    top: 0;
    height: 100%;
    margin-right: 0;
    background: var(--crema);
    z-index: 2;
    width: auto;
    box-shadow: -4px 0px 12px #00000045;
    transition: all 0.3s ease;
}

.menu.active{
    right: 0%;
}

.bars-menu{
    display: block;
    margin-right: 20px;
}

.bars-menu.close{
    position: absolute;
    z-index: 3;
    top: 20px;
    right: 10px;
    color: var(--negro);
}

.bars-menu.close i{
    font-size: 42px;
}

.bars-menu i{
    font-size: 30px;
}

.menu ul {
    list-style: none;
    display: block;
    text-align: center;
    margin: 0px;
    padding: 39px 45px 0px 36px;
    margin-block-start: 0;
    margin-block-end: 0;
}

.menu ul {
    list-style: none;
    display: block;
    text-align: center;
    margin: 0px;
    padding: 39px 45px 0px 36px;
    margin-block-start: 0;
    margin-block-end: 0;
}

.menu ul li a {
    text-decoration: none;
    color: var(--negro);
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 30px;
}

.menu ul li {
    position: relative;
    margin-top: 32px;
}

.slide .textos h1 {
    font-size: 40px;
    line-height: 42px;
    margin-bottom: 0px;
}

.slide .textos h5 {
    font-size: 19px;
    font-weight: 400;
    line-height: 26px;
    margin-top: 20px;
}

.btn-1 a {
    font-size: 16px;
    padding: 11px 23px;
}

.btn-1.destacadas a{
    font-size: 19px;
}

#destacados h2 {
    font-size: 46px;
    margin: 67px 20px 38px;
    line-height: 55px;
}

.grupo-destacados .destacado{
    width: 30%;
}

#categorias .grupo-consultas h2 {
    margin: 0px 0px 17px;
    font-size: 40px;
    line-height: 45px;
}

.grupo-consultas p {
    font-size: 17px;
    margin: 0;
    padding: 0 0 10px;
}


}



@media (max-width: 912px){



}




@media (max-width: 820px){



}


@media (max-width: 800px){

.buscador input[type='text'] {
    width: 90%;
}


.slide .textos {
    width: 100%;
    transform: translateY(0px);
}

.slide .imagen {
    width: 52%;
    transform: translateY(-14px);
}

.owl-carousel .owl-item img {
    max-height: 550px;
    object-fit: cover;
    border-radius: 10px 27px;
    box-shadow: 5px 7px 10px #00000036;
}

.slide .textos h1 {
    font-size: 35px;
    line-height: 40px;
    margin: 0px;
}

.grupo-acceso h1 {
    font-size: 40px;
    line-height: 47px;
    margin-bottom: 20px;
}

.slide {
    display: flex;
    position: relative;
    height: 463px;
    align-items: center;
    padding: 0px 100px 63px;
    column-gap: 50px;
    flex-direction: column-reverse;
}


}


@media (max-width: 768px){



}



@media (max-width: 600px){

footer .grupo-footer .recientes .reciente {
    display: flex;
    column-gap: 12px;
    margin-bottom: 10px;
    flex-direction: column-reverse;
}

.menu {
    right: -175%;
}

.slide {
    display: flex;
    position: relative;
    height: 453px;
    align-items: center;
    padding: 0px 50px 92px;
    column-gap: 50px;
    flex-direction: column-reverse;
}

.slide .imagen {
    width: 63%;
}

.slide .textos h1 {
    font-size: 27px;
    line-height: 33px;
    margin-bottom: 0px;
}

.slide .textos h5 {
    font-size: 17px;
    font-weight: 400;
    line-height: 23px;
    margin-top: 10px;
}


.btn-1 a {
    font-size: 14px;
    padding: 9px 17px;
}

.grupo-destacados .destacado {
    width: 44%;
}

.sidebar ul {
    flex-direction: column;
}

.form-ingreso form {
    position: relative;
    width: 100%;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-sizing: border-box;
}

.form-ingreso{
    width: 100%;
}

.grupo-acceso p{
    padding: 0 20px;
    font-size: 16px;
}

.grupo-destacados.busqueda {
    padding: 0 20px;
    justify-content: center;
}

.grupo-redes {
    display: flex;
    column-gap: 10px;
    align-items: flex-start;
    flex-direction: column;
    row-gap: 10px;
}

.contenedor-anuncio .grupo-compartir {
    display: flex;
    column-gap: 8px;
    margin: 16px 0px -21px;
}

#mensaje-enlace-copiado {
    color: var(--gris);
    opacity: 0;
    margin-top: -12px;
}

}


@media (max-width: 540px){

.slide {
    display: flex;
    position: relative;
    height: 429px;
    align-items: center;
    padding: 0px 50px 92px;
    column-gap: 50px;
    flex-direction: column-reverse;
}

}


@media (max-width: 414px){



}


@media (max-width: 412px){



}


@media (max-width: 400px){

.grupo-destacados .destacado {
    width: 89%;
}

.btn-1.destacadas a {
    font-size: 17px;
}



}


@media (max-width: 393px){



}



@media (max-width: 390px){




}



@media (max-width: 375px){



}


@media (max-width: 360px){

    .buscador label {
        margin: -3px 0px 10px;
        line-height: 28px;
        font-size: 25px;
    }

    .buscador input[type='text'] {
        width: 90%;
        padding: 7px 13px;
    }    

    .buscador input[type='submit'] {
        margin-top: 13px;
        padding: 6px 24px;
    }    

    .owl-carousel .owl-item img {
        max-height: 550px;
        object-fit: cover;
        border-radius: 10px 30px;
        box-shadow: 5px 7px 10px #00000036;
    }    

    .slide .imagen {
        width: 68%;
    }    
       

}



@media (max-width: 350px){

footer .grupo-footer .recientes .imagen {
    width: 100%;
}

.a-caja_whatsapp {
    width: 100%;
    display: block;
}


}


@media (max-width: 280px){



}