@charset "UTF-8";

/*
Theme Name: Click&Up
Version: 1.5
*/


:root {
    --tipografia: open-sans, sans-serif;
    --tipografia-peso: 400;
    --tipografia-titulares: open-sans, sans-serif;
    --tipografia-titulares-peso: 700;
    --tipografia-titulares-transform: uppercase;
    
    --color-fondo: #FFF;
    --color-tipografia: #222;
    --color-primario: #222;
    --color-secundario: #435678;
    --color-destacado: #040407;
}

.btn-primary {
  background-color: var(--color-destacado);
  border-color: var(--color-destacado);
}
.relativiza {
  position: relative;
}
#transition {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000;
    z-index: 1000;
    transition: .5s ease-in-out;
    display: none;
}
#transition.loaded {
    opacity: 0;
    pointer-events: none;
}
#transition.unload {
    width: 100%;
}

b,strong {
  font-weight: bold;
}

#idiomas {
    opacity: 1;
    position: relative;
    top: auto;
    text-align: right;
}
#idiomas {
        position: relative;
        text-align: center;
        min-width: 40px;
    
    }
#idiomas:hover  {
    background-color: rgba(255,255,255,.5);
    color: #6A7684;
}
#idiomas .activo {
    display: block;
    width: 100%;
    padding: 15px 0;
    cursor: pointer;
}
#idiomas ul {
    position: absolute;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: all .2s ease-in-out;
    box-shadow: 0 5px 10px #999;
    z-index: 2;
    background-color: #fff;
    
}
#idiomas:hover ul {
    opacity: 1;
    pointer-events: all;
}
#idiomas ul li {
    display: block;
    margin: 0;
    padding: 0;
}
#idiomas ul li a {
    color: var(--color-destacado);
    display: block;
    padding: 10px;
    /* margin: 0 20px; */
}

body {
    position: relative;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: var(--tipografia);
    font-weight: var(--tipografia-peso);
    background: var(--color-fondo); //url('img/fondo-mobile.jpg') no-repeat 50%;
    background-size: cover;
    background-attachment: fixed;
    color: var(--color-primario);
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

    
    
h1, h2, h3, h4, h5 {
    font-family: var(--tipografia-titulares);
    font-weight: var(--tipografia-titulares-peso);
    text-transform: uppercase;
    color: var(--color-secundario);
}
h1 {
    font-size: 4rem;
}
h2 {
    font-size: 2rem;
}
    @media (min-width: 992px) {
        h2 {
            font-size: 3rem;
        }
    }
h3 {
    font-size: 1.5rem;
}
a {
    color: var(--color-primario);
    text-decoration: none;
}
a:hover {
    color: var(--color-secundario);
    text-decoration: underline;
}
.titular-seccion {
  border-bottom: 1px solid black;
}

.volver {
    display: inline-block;
    text-decoration: none;
    height: 20px;
    width: 30px;
    background: transparent url('img/layout/back.svg') no-repeat 50%;
    background-size: contain;
}

header#cabecera {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: var(--color-fondo);
}
header#cabecera #logo{
    display: block;
    width: 100%;
    max-width: 220px;
    margin: 0;
}
    header#cabecera h1 {
        margin: 0;
        padding: 0;
    }
    #cabecera .btn-secondary {
        display: flex;
        gap: 5px;
        align-items: center;
    }
    #control-carro {
        display: inline-block;
        padding: 5px;
        text-decoration: none;
        display: flex;
        gap: 5px;
    }
    #control-carro * {
        margin: 0;
        padding: 0;
        line-height: 0;
    }
nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    z-index: 3;
    height: 100vh;
    display: flex;
    align-items: center;
    transition: all .3s ease-in-out;
}
    nav.on {
        left: 0;
    }
    /* .home nav {
        left: 0;
    } */
    .home #control-menu {
        display: none;
    }
article {
    /* position: absolute;
    top: 0;
    left: 0;*/
    width: 100%;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    transition: all .3s ease-in-out;
    padding-top: 130px;
}
    .home #contenedor {
        max-width: none;
    }
    .home #contenedor article {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .home #contenedor article .elemento {
        width: 100%;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    .home #contenedor article .elemento:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0, .3);
    }
    .home #contenedor article .elemento a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        z-index: 2;
    }
    article.on {
        opacity: 0;
        pointer-events: none;
    }
    @media (min-width: 992px) {
        #contenedor {
            display: flex;
            max-width: 1280px;
            margin: 0 auto;
        }
        .home #contenedor {
            height: 100%;
        }
        .home #contenedor article {
            display: flex;
            align-items: stretch;
            flex-direction: row;
        }
        .home #contenedor article .elemento {
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: flex 0.3s ease-in-out;
        }
        .home #contenedor article .elemento:hover {
            flex: 1.5;
        }

        .home #contenedor article .elemento:not(:hover) {
            flex: 0.75;
        }
        .home #contenedor article .elemento a img {
            max-width: 80%;
        }
        /* nav {
            position: relative;
            top: auto;
            left: auto;
            width: 25%;
        }
        article {
            position: relative;
            top: auto;
            left: auto;
            width: 75%;
        }
        article.on {
            opacity: 1;
            pointer-events: all;
        }*/
        
    }


footer {
    /* position: absolute;
    bottom: 0;
    left: 0; */
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    z-index: 100;
    padding: 20px 0;
}
  footer ul {
    display: inline-block;
    margin: 0;
    padding: 0;
  }
  footer ul li {
    display: inline-block;
    margin: 0;
    padding: 0;
  }





#control-menu {
    display: inline-block;
}
    #hamburguesa {
        display: inline-block;
        width: 25px;
        height: 16px;
        position: relative;
        margin: 5px 0 0 10px;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        -o-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
        cursor: pointer;
    }
    #hamburguesa span {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
        background: var(--color-primario);
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
    }
    
    #hamburguesa span:nth-child(1) {
        top: 0px;
    }
    
    #hamburguesa span:nth-child(2),#hamburguesa span:nth-child(3) {
        top: 8px;
    }
    
    #hamburguesa span:nth-child(4) {
        top: 16px;
    }
    
    #hamburguesa.on span:nth-child(1) {
        top: 18px;
        width: 0%;
        left: 50%;
    }
    
    #hamburguesa.on span:nth-child(2) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    
    #hamburguesa.on span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    
    #hamburguesa.on span:nth-child(4) {
        top: 18px;
        width: 0%;
        left: 50%;
    }
#menu {
    margin: 0;
    padding: 2rem;
    width: 100%;
    font-family: var(--tipografia-titulares);
    font-weight: var(--tipografia-titulares-peso)
}
#menu li {
    list-style-type: none;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-destacado);
    /* font-size: 2rem; */
    text-transform: uppercase;
}
    @media (min-width: 992px) {
        #menu li {
            font-size: 2rem;
            text-align: center;
        }
    }
#menu.secundario li {
    /* font-size: 1rem; */
}
#menu li:last-child {
    border-bottom: none;
}
#menu li a {
    text-decoration: none;    
}


.cycle-pager {
  text-align: center; 
}
  .cycle-pager span {
    width:  15px;
    height: 15px;
    display: inline-block;
    content: '';
    border: 1px solid var(--color-destacado);
    border-radius: 50%;
    color: var(--color-destacado);
    background-color: var(--color-destacado);
    opacity: .5;
    margin: 10px 5px;
    cursor: pointer;
  }
  .cycle-pager span.cycle-pager-active {
    opacity: 1;
  }


/* CARTA */

#categorias.on {
  opacity: 0;
  pointer-events: none;
}
#categorias {
    display:flex;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    gap: 1;
    overflow:auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    background-color: var(--color-fondo);
}
    #categorias::-webkit-scrollbar {
        display: none;
    }
#categorias a {
  /* border: 1px solid black; */
  margin: 10px 0;
  padding: 0;
  list-style-type: none;
}
#categorias a.current {
  color: var(--color-secundario);
  font-weight: 700;
}
#categorias figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin: 0;
    transition: transform 0.2s ease-in-out;
    cursor: pointer;
}
#categorias figure > figcaption {
    /* max-width: 80px; */
    padding: 5px 10px;
    /* overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; */
    text-align: center;
    line-height: 1.2em;
    white-space: nowrap;
    background-color: #eee;
    margin-right: 5px;
    border-radius: 5px;
}

#categorias figure:hover {
    /* transform: scale(1.1); */
}

#categorias picture {
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(white 66%, transparent 0), linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    padding: 5px;
    border-radius: 50%;
}

#categorias .personal {
    background: none;
}

#categorias picture > img {
    width: 64px;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border: 1px solid #b1b1b1;
    border-radius: 50%;
} 
/* .linea-botones p{
  line-height: 2.5em;
} */

#platos {
    padding-top: 100px;
}
    #platos .separador {
        text-align: center; 
        padding: 100px 20px; 
        background-color: #e3e3e3;
        background-repeat: no-repeat; 
        background-size: cover;
        background-position: 50%;
        position: relative;
        color: white;
        text-transform: uppercase;
        z-index: 2;
        /* font-size: 3rem; */
    }
    @media (max-width: 992px) {
        #platos .separador {
            font-size: 1.3rem;
            padding: 50px;
            margin: 1rem -.75rem;
        }    
    }
    #platos .separador {
       color: white; 
    }
    #platos .separador:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, .3);
        z-index: -1;

    }
    @media (min-width: 992px) {
        #platos {
            padding-top: 0px;
        }
        #platos .grupo {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-gap: 20px;
        }
    }
#platos .snippet {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-columns: 20% auto 20%;
    grid-gap: 0px;
    /* align-items: center; */
    padding: 10px;
    cursor: pointer;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 20px;
}
    @media (min-width: 992px) {
        #platos .snippet {
            margin-bottom: 0;
        }
}
#platos .snippet:hover {
    box-shadow: 0 0px 10px #ddd;
    background-color: #fff !important;
}
#platos .snippet.sin-imagen {
    grid-template-columns: repeat(2, 1fr);
    grid-template-columns: auto 20%;
}

#platos .snippet:hover {
background-color: #eee;
}
#platos .snippet figure {
    margin: 0 1rem 0 0;
    aspect-ratio: 1 / 1;
  border-radius: 10px; /* Convierte el contenedor en un círculo */
  overflow: hidden; /* Oculta cualquier contenido que se salga del círculo */
  display: flex; /* Centrar contenido */
  justify-content: center; /* Centrar horizontalmente */
  align-items: center; /* Centrar verticalmente */
  background-color: #e3e3e3; /* Fondo de reserva */
}

#platos .snippet figure img {
  width: 100%; /* Ajusta la imagen al contenedor */
  height: 100%; /* Llena todo el espacio del contenedor */
  object-fit: cover; /* Recorta la imagen para llenar el círculo sin deformarla */
}
    @media (min-width: 992px) {
        #platos .snippet figure {
            aspect-ratio: 1 / 1;
        }
    }
#platos .snippet .info h3 {
    text-transform: none;
    /* font-size: 4rem; */
}
#platos .snippet .info h3,
#platos .snippet .info p {
    margin: 0;
    padding: 0; 
}
#platos .snippet .info h3 {
    font-size: 1.1rem;
    line-height: 1.2em;
    margin-bottom: .3em;
} 
#platos .snippet .info p {
    line-height: 1.4em;
    font-size: .9rem;
}
#platos .snippet .info .badge {
  background-color: rgb(130, 130, 130);
  color: white;
}
    @media (min-width: 992px) {
        #platos .snippet .info h3 {
            font-size: 1.1rem;
            line-height: 1em;
        }
        #platos .snippet .info p {
            line-height: 1.4em;
        }
    }

    #platos .snippet .precio {
        text-align: right;
        font-size: 1.2rem;
    }
    #platos .snippet .moneda {
        font-size: .7em;
        
    }

@media (min-width: 992px) {
    #platos .snippet .precio {
        /* font-size: 1.3rem; */
    }
}


#popup {
  position: fixed;
  top: 200px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  background-color:var(--color-fondo);
  color: var(--color-tipografia);
  opacity: 0;
  pointer-events: none;
  transition: .3s ease-in-out;
  overflow: auto;
}
#popup #cerrar {
  width: 100%;
  height: auto;
  max-width: 30px;
}
#popup.on {
  top: 0;
  opacity: 1;
  pointer-events: all;
}
#popup img {
  width: 100%;
  height: auto;
}
#popup .cerrar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
#popup .titular {
  /* font-size: 2rem; */
}
#popup .precio {
  /* font-size: 1.3rem; */
  text-align: right;
}
  @media (min-width: 992px) {
    #popup {
      top: 60%;
      left: 50%;
      transform: translate(-50%, -50%);
      
      width: 80%;
      max-width: 500px;
      max-height: 80%;
      border: 1px solid black;
      box-shadow: 0 10px 100px #000;
    }
    #popup.on {
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }
  }
  
/* Snippet local */
  .snippet-local img {
      width: 100%;
      height: auto;
  }
  .snippet-local img.alignright, 
  img.alignright {
    float: right; 
    width: auto;
    max-width: 100px;
  }
  

#push-popup {
      position: fixed;
      z-index: 1000;
      bottom: -3%;
      width: 95%;
      margin-left: 2.5%;
      background-color: white;
      border: 1px solid black;
      border-radius: 5px;
      box-shadow: 0 1px 10px #000;
      padding: 5px;
      max-width: 400px;
      pointer-events: none;
      opacity: 0;
      transition: .5s ease-in-out;
  }
      #push-popup.on {
          bottom: 3%;
          pointer-events: all;
          opacity: 1;
      }
      #push-popup .cerrar {
          width: 20px;
          height: auto;
          cursor: pointer;
      }
      #push-popup a {
          text-decoration: none;
      }
      #push-popup h1 {
          /* font-size: 1rem; */
          margin: 0;
          padding: 0;
          line-height: 1rem;
          text-transform: uppercase;
      }
      
.grecaptcha-badge {
  display: none;
}



#avirato_container {
  padding-top: 400px;
  background: transparent url(img/fondo-reservas.jpg) no-repeat 50%;
  background-size: cover;
  margin-bottom: 30px !important;
  position: relative;
  overflow: hidden;
}

.rating a {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: center;
}
.rating figure img {
    height: 80px;
    width: auto;
}



/*
 vanillaSlideshow v0.1
 (c) Dimitri Mikadze
 https://github.com/DimitriMikadze/vanilla-slideshow
 License: MIT
*/

    
    #vanilla-slideshow-container { 
        width: 100%; 
        text-align: center;
        position: relative; 
        
    }
    /* @media screen and (min-width: 992px) {
        #vanilla-slideshow-container { 
            width: 100%; 
            height: 80vh;
        }
    } */
    #vanilla-slideshow-container > *{ 
      -webkit-user-select: none; /* Safari */
      -ms-user-select: none; /* IE 10 and IE 11 */
      user-select: none; /* Standard syntax */
    }
    
    #vanilla-slideshow { 
        width: 100%; 
        position: absolute; 
        top: 0;
        left: 0;
        /* border: 5px solid blue; */
        
    }
    #vanilla-slideshow .vanilla-slide { 
        /* border: 5px solid yellow; */
        width: 100%;  
        background-size: cover; 
        background-position: 50% 50%;
        background-repeat: no-repeat;
        position: absolute; 
        top: 0; 
        left: 0; 
        opacity: 0;
        overflow: hidden;
        display: flex;
        align-items: center; /* vertical */
        justify-content: center; /* horizontal */
    }
    
    #vanilla-slideshow .vanilla-slide.vanilla-active { 
        opacity: 1;
    }
    
    
    
    
    /* Arrows */
    
    #vanilla-slideshow-previous {
        position: absolute;
        left: 20px;
        top: 50%;
        width: 48px;
        height: 50px;
        background-position: 0 100%;
        cursor: pointer; 
        opacity: 0.7;
        z-index: 5; 
        display: none;
        color: white;
    }
    
    #vanilla-slideshow-next {
        position: absolute;
        color: white;
        right: 20px;
        top: 50%;
        width: 48px;
        height: 50px;
        background-position: 100% 100%;
        cursor: pointer; 	
        opacity: 0.7;
        z-index: 5; 
        display: none;
    }
    
    #vanilla-slideshow-previous:hover, #vanilla-slideshow-next:hover {
        opacity: 1;
    }
    
    /* Indicators */
    
    #vanilla-indicators {
        display: inline-block;
        z-index: 5;
        position: absolute;
        bottom: 20px;
        width: 100%;
        left: 0;
    }
    
    .vanilla-indicators {
        width: 32px;
        height: 4px;
        /* border-radius: 50%; */
        background-color: rgba(255,255,255,.3);
        display: inline-block;
        margin: 2px;
        cursor: pointer;
    }
    
    .vanilla-indicators.vanilla-active {
        background-color: rgba(255,255,255,1);
    }
    




.mc-banner {
    z-index: 9999999 !important;
}    


        
        
        
        
        
        
/* General */
.wpcf7 form {
  font-family: Arial, sans-serif;
  background-color: var(--color-fondo);
  color: var(--color-tipografia);
  padding: 20px 0;
  border-radius: 8px;
}
.wpcf7 form label {
    display: block;
 }
/* Inputs, selects, textarea */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="url"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 input[type="date"],
.wpcf7 input[type="file"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: .5rem;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: var(--color-fondo);
  color: var(--color-tipografia);
  font-size: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Hover y focus en inputs */
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="url"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="number"]:focus,
.wpcf7 input[type="date"]:focus,
.wpcf7 input[type="file"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  border-color: var(--color-primario);
  box-shadow: 0 0 5px var(--color-primario);
  outline: none;
}

/* Botón de envío */
.wpcf7 input[type="submit"] {
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: var(--color-destacado);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.wpcf7 input[type="submit"]:hover {
  background-color: var(--color-primario);
}

/* Mensajes de error y éxito */
.wpcf7-response-output {
  margin-top: 20px;
  padding: 15px;
  border-radius: 5px;
  font-weight: bold;
}

.wpcf7-response-output.wpcf7-mail-sent-ok {
  color: #fff;
  background-color: var(--color-secundario);
}

.wpcf7-response-output.wpcf7-mail-sent-ng {
  color: #fff;
  background-color: #ff0000;
}

/* Campos de archivo */
.wpcf7 input[type="file"] {
  padding: 5px;
  font-size: 14px;
  cursor: pointer;
  border: none;
}

/* Placeholder */
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: #aaa;
  font-style: italic;
}

/* Textarea */
.wpcf7 textarea {
  resize: vertical;
  min-height: 120px;
}

/* Select */
.wpcf7 select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23435678' d='M2 0L0 2h4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px;
}