title{
    display: none;
}

svg{
  pointer-events: none;
}

object{
  pointer-events: none;
}
/* HEADER */
.header {
    max-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px;
    background-color: var(--color-header-fondo);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    font-family: 'BellMT', sans-serif;
    color: var(--color-header-texto);
    text-transform: uppercase;
  }
  
  .logo {
    display: flex;
    margin: auto 0px;
  }
  
  .logo object {
    padding: 0px 10px;
  }
  
  .menu {
    display: flex;
    align-items: center;
  }

  .menu.active {
    display: none;
  }
  
  .menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .menu li {
    display: inline-block;
    margin-right: 10px;
  }

  .menu a {
    display: block;
    text-decoration: none;
    padding: 10px;
    border-radius: 4px;
    color: var(--color-header-texto);
    font-weight: bold;
    cursor: pointer;
  }
  
  .menu a:hover {
    border-bottom: 4px solid var(--color-header-texto);
    margin-bottom: -4px;
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out, width 0.3s ease-in-out;
  }
  
  .desplegable-header {
    display: none;
    cursor: pointer;
    width: 25px;
    margin-right: 25px;
  }
  .desplegable-header:focus {
    width: 30px;
  }
  
  .desplegable-header:hover {
    transform: scale(1.1);
  }
  
  .desplegable-header .line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-header-texto);
    margin-bottom: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, width 0.3s ease-in-out;
  }
  
  
  .desplegable-header .line:focus {
    width: 30px;
  }
  
  .desplegable-header .line:hover {
    transform: scale(1.1);
  }

  @media (max-width: 768px) {
    .logo {
      max-width: 80px;
      flex-grow: 1;
    }
  
    .menu {
      display: none;
    }
  
    .menu.active {
        display: block;
    }

    .menu.active {
        display: block;
        position: fixed;
        position: absolute;
        top: 100%; /* Coloca el menú justo debajo del header */
        left: 0;
        width: 100%;
        background-color: var(--color-header-desplegable);
        padding: 10px;
        border: 1px solid var(--color-header-fondo);
      }
      
    .menu.active ul {
        display: block;
        list-style: none;
        padding: 0;
        margin-right: 25px;
    }
      
    .menu.active li {
        display: block;
        text-align: right;
        margin-bottom: 10px; /* Espacio entre elementos del menú */
    }

    .menu.active a {
        display: block;
        text-decoration: none;
        padding: 10px;
        border-radius: 4px;
        color: var(--color-header-texto);
        font-weight: bold;
        transition: background-color 0.3s ease;
        cursor: pointer;
      }
      
      .menu.active a:hover {
        background-color: var(--color-header-fondo);
      }

    .desplegable-header {
      display: block;
    }
  
    .header.fixed {
      position: fixed;
      top: 0;
    }
  }
  /* FIN HEADER */

/* BODY */
body{
    margin: 0px;
    padding: 0px;
    max-width: 100%;
    background-color: var(--color-body-fondo);
}

  
  #seccion-importante {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--color-header-fondo);
    padding: 40px 10px 40px 10px;
    box-shadow: 0 2px 4px rgba(var(--color-header-fondo), 0.2);
    color: var(--color-header-texto2);
    font-size: 16px;
  }
  
  #si-contenido{
    margin: 0% 2% 2% 5%;
    flex: 2;
  }
  
  #si-imagen {
    margin: 0% 5% 2% 2%;
    flex: 1;
  }

  .si-svg{
    display: flex;
    align-items: center;
    margin-bottom: 5px;
  }

  .si-svg svg{
    width: 16px;
    height: 16px;
    fill: var(--color-header-texto);
  }
  .si-svg span{
    padding-left: 10px;
    font-family: 'BellMT', sans-serif;
  }

  .si-svg a{
    text-decoration: none;
    color: var(--color-header-texto);
    font-weight: 100;
    cursor: pointer;
  }

  .si-svg a:hover{
    border-bottom: 1px solid var(--color-header-texto2);
    transition: transform 0.3s ease-in-out, width 0.3s ease-in-out;
  }

  .si-lista{
    display: grid;
    padding-left: 26px;
    margin-bottom: 15px;
    font-size: 18px;
  }

  #seccion-importante h1 {
    font-size: 36px;
    color: var(--color-header-texto);
    margin-top: 0px;
    margin-bottom: 5px;
    font-family: 'BellMT', sans-serif;
    display: block;
    text-align: left;
    padding-left: 2%;
    margin-top:2%;
    width: -webkit-fill-available;
  }
  #seccion-importante h2 {
    font-size: 20px;
    line-height: 32px;
    color: var(--color-header-texto2);
    margin-top: 0px;
    margin-bottom: 10px;
    font-family: 'BellMT', sans-serif;
    display: block;
    text-align: left;
  }
  #seccion-importante p{
    margin-top: 0px;
    margin-bottom: 5px;
    color: var(--color-header-texto2);
    font-family: 'BellMT', sans-serif;
    text-align: left;
  }


  @media (max-width: 768px) {
    #seccion-importante h1 {
        font-size: 28px;
    }
    #seccion-importante h2 {
        font-size: 18px;
        line-height: 24px;
    }
    #si-imagen{
        display: none;
    }
  }

  /* REVIEWS */
  #reviewsContainer{
    display: flex;
    align-items: center;
    width: 100%;
  }

  .rating {
    display: flex;
  }
  .rating svg{
    max-height: 16px;
    max-width: 16px;
  }
  .reviewImg{
    padding-right: 20px;
    filter: blur(2px);
    filter: contrast(0.1);
    height: 90px;
  }

  .reviewAuth{
    margin:auto;
    display: flex;
    flex-direction: row-reverse;
    text-align: right;
    font-family: 'BellMT', cursive;
    font-size: 12px;
  }

  .reviewMore {
    background: none;
    border: none;
    padding: 0;
    margin-right: auto;
    font-size: inherit;
    font-family: inherit;
    cursor: pointer;
  }
  
  .reviewMore:hover {
    text-decoration: underline;
  }

  .reviewComment{
    display: block;
    text-align: justify;
    font-family: 'BellMT', cursive;
    font-size: 16px; 
    height: 100px;
    max-height: 100px; /* Establece la altura máxima del div */
    overflow: hidden;
    transition: max-height 0.3s ease-in-out; /* Añade una transición suave */
  }

  #reviewsContainer div{
    padding-right: 10px;
  }

  @media (max-width: 768px) {
    .reviewImg{
        display:none;
    }
    .rating{
        display: block;
        text-align: center;
        margin: 5px;
    }
    .rating svg{
        max-height: 14px;
        max-width: 14px;
      }
    .reviewComment{
        font-size: 14px;
    }

    }

  /* BOTONES */

  .btn-informese {
    display: inline-block;
    padding: 12px 24px;
    margin-bottom: 10px;
    margin-top: 30px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'BellMT', sans-serif;
    color: var(--color-header-texto2);
    background-color: var(--color-header-desplegable);
    border: none;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(var(--color-header-desplegable), 0.1);
    transition: background-color 0.3s ease;
    cursor: pointer;
  }
  
  .btn-informese:hover {
    color: var(--color-header-texto);
    border-bottom: 4px solid var(--color-header-texto);
    margin-bottom: 6px;
    transform: scale(1.05);
  }
  
  .btn-informese:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--color-header-desplegable), 0.5);
  }
  
  .btn-informese:active {
    transform: translateY(1px);
  }

/* SECCIONES */
.sc{
    background: var(--color-body-sc);
    color: var(--color-body-texto);
    max-width: 1025px;
    margin: 25px auto;
    padding: 10px;
}

.sc-tittle{
    font-family: BELLMT, sans-serif;
    font-size: 20px;
    font-weight: bold;
    margin: 10px;
    text-transform: uppercase;
}

.sc-subtittle{
  font-family: BELLMT, sans-serif;
  font-size: 18px;
  font-weight: bold;
  margin: 10px;
  text-transform: uppercase;
  color: var(--color-footer-fondo2);
  text-align: center;
  padding-bottom: 20px;
}

.sc-line {
    height: 1px;
    margin: 20px 10%;
    background: linear-gradient(to right, transparent, var(--color-header-fondo) 25%, var(--color-header-fondo) 75%, var(--color-header-fondo) 25%, transparent);
  }

.sc p{
    margin: 0px 10px 10px 10px;
    text-align: justify;
    font-family: BELLMT, sans-serif;
}

.sc p svg{
    max-width: 16px;
    max-height: 16px;
    margin-right: 10px;
}

.sc p a{
    text-decoration: none;
    color: var(--color-header-fondo);
    font-size: 12px;
    font-family: "BEM MT",math;
}

.sc h1{
    text-align: center;
}
.container {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    padding: 0 10%;
    position: relative;
}

@media (max-width: 768px) {
    .container {
        padding: 0 5%;
    }
    .sc-line {
        margin: 10px 5%;
    }
    .sc-tittle{
        font-size: 18px;
    }
    .sc{
        margin: 20px;
        padding: 5px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 2%;
    }
    .sc-line {
        margin: 5px 2%;
    }
    .sc-tittle{
        font-size: 16px;
    }

}

.sc-izquierda, .sc-derecha{
    flex: 1;
    padding: 10px;
}

.sc-img-boton{
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    background: var(--color-header-desplegable);
    height: 100%;
}

.sc-img-boton:hover{
    background: var(--color-header-fondo);
}

.sc-img-boton object{
    display: block;
    max-height: 200px;
    margin: auto;
    cursor:pointer;
}

.sc-img-boton svg{
    cursor:pointer;
}

.sc-img-boton polygon{
    cursor:pointer;
}

.sc a{
    text-decoration: none;
}

.sc-img-contenido {
    text-align: center;
    color: var(--color-header-texto2);
    padding: 10px;
    cursor: pointer;
    width: 90%;
  }
  
.sc-img-contenido h2 {
    color: var(--color-header-texto);
    font-size: 30px;
    text-transform: uppercase;
    margin: 10px;
  }
  
.sc-img-contenido p {
    text-align: center;
    font-size: 14px;
    margin: 10px 0px;
  }

  .sc-two{
    display: flex;
    flex-direction: row;
}

  @media (max-width: 768px) {´
    .sc-img-contenido h2 {
        color: var(--color-header-texto);
        font-size: 28px;
    }
    .sc-two{
        display: flex;
        flex-direction: column;
    }

}
/* FORMULARIO */
#form-pop-msg{
    padding: 15px;
    border-radius: 20px;
    border: 1px solid var(--color-header-fondo);
    background: green;
    font-family: "BELL MT",cursive;
    text-align: center;
    color: var(--color-header-texto);
}

.form{
    margin: 0 15px 0 15px;
}

.form-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    
  }
  
  .form-h2 {
    text-align: center;
  }
  
  .form-label,
  .form-input,
  .form-select,
  .form-textarea {
    display: block;
    margin-bottom: 10px;
    padding: 0 4px;
  }

  .phone-input {
    display: flex;
    align-items: center;
    font-size: 16px;
    flex-flow: wrap;
    margin: 0px 10px 10px 10px;
  }
  
  .phone-input input {
    width: 20px;
    text-align: center;
  }
  
  .phone-input .separator {
    margin: 0 2px;
    font-size: 5px;
  }
  
  .form-input[type="text"],
  .form-input[type="email"],
  .form-textarea {
    width: 100%;
    padding: 5px;
  }
  
  .form-button {
    margin-top: 10px;
    padding: 10px;
  }
  
  .form-button{
    display: flex;
    flex-direction: row-reverse;
  }

  #name-div{
    flex: 1;
    width: 100%;
    padding:10px 10px 0 0;
  }
  #correo-div{
    flex: 2;
        width: 100%;
        padding:10px 0 0 0;
  }
  #telefono-div{
    padding: 10px;
  }
  #contacto-div{
    display: flex;
    padding-top: 10px;
  }
  .form-normal{
    padding-top: 10px;
  }

  .form-horas{
    padding: 10px;
    margin: 0 20px 0 10px;
    border-radius: 20px;
    border: 1px solid var(--color-header-fondo);
    background: var(--color-header-desplegable);
    color: var(--color-header-texto);
  }

  .form-checkbox-group{
    margin: 10px 10px;
    color: var(--color-header-texto2);
  }
  .form-hora-inicio{
    margin: 0 10px;
  }
  
  .form-close {
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .form-close:hover,
  .form-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }

  /* FOOTER */

  footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px 5px 10px;
    background-color: var(--color-footer-fondo);
    flex-direction: column;
    font-family: 'BellMT', sans-serif;
    color: var(--color-footer-texto);
    text-transform: uppercase;
  }

  .f-logo{
    width: 100%;
    margin: 15px 0 10px 0;
  }

  .f-social-link svg{
    cursor: pointer;
    fill: var(--color-footer-texto2);
    max-width: 20px;
    max-height: 20px;
    margin: 0px 10px;
  }
  .f-social-link g{
    cursor: pointer;
    fill: var(--color-footer-texto2);
    max-width: 20px;
    max-height: 20px;
    margin: 5px;
  }

  .f-social-link svg:hover{
    fill: var(--color-footer-texto);
    transform: scale(1.5);
}
.f-social-link g:hover{
    fill: var(--color-footer-texto);
}

.f-info{
    display: flex;
    flex-direction: row;
    margin: 20px 0;
    align-items: flex-start;
    flex-wrap: wrap;
}

.f-info span{
    display: block;
    margin: 5px;
    font-family: "BELLMT",sans-serif;
    font-size: 14px;
    text-transform: none;
    fill: var(--color-footer-texto2);
}
.f-info-1 object{
    max-height: 14px;
    margin: 0px 10px;
  }


.f-info-1 a{
    text-decoration: none;
    cursor: pointer;
    color: var(--color-footer-texto2);
}
.f-info-1 a:hover{
    color: var(--color-footer-texto);
}

.f-info h1{
    font-family: "BELL MT",sans-serif;
    color: var(--color-footer-texto2);
    font-size: 16px;
    text-align: left;
}

.f-info h2{
    font-family: "BELL MT",sans-serif;
    color: var(--color-footer-texto2);
    font-size: 13px;
    text-align: left;
    margin: 5px 0 0 5px;
}

.f-info iframe{
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 3px solid var(--color-footer-fondo2);
}

.f-info-1,.f-info-2,.f-info-3{
    margin: 10px;
}

.f-info-2{
    margin: 10px 20px;
}
.f-info-1, .f-info-3{
    flex: 1;
}

.f-copy{
    font-family: "BELL MT", system-ui;
    font-size: 14px;
    text-transform: none;
    padding: 20px;
    margin: 20px 0 5px 0;
    border-top: 2px dotted var(--color-footer-texto);
}

.f-copy a{
  display: block;
  text-decoration: none;
  padding-left: 5px;
  color: var(--color-header-texto);
  font-weight: bold;
  cursor: pointer;
}

/* Estilos para la ventana emergente de consentimiento de cookies */
#cookie-consent-popup {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 10px;
  background-color: var(--color-header-fondo);
  color: var(--color-header-texto);
  text-align: center;
  z-index: 9999;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--color-footer-fondo);
  flex-direction: row;
  font-size: 12px;
  text-align: justify;
}

#cookie-consent-popup p {
  padding: 0 20px;
  margin-top: 5px;
  margin-bottom: 0px;
}

#cookie-consent-popup p a{
  color: var(--color-body-fondo);
}

#cookie-consent-popup div{
  display: flex;
  flex-direction: column;
}

#cookie-consent-popup .buttons button {
  display: inline-block;
  padding: 12px 24px;
  font-size: 12px;
  margin-bottom: 10px;
  margin-top: 10px;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-family: 'BellMT', sans-serif;
  color: var(--color-header-desplegable);
  background-color: var(--color-header-texto2);
  border: none;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(var(--color-header-desplegable), 0.1);
  transition: background-color 0.3s ease;
  cursor: pointer;
  font-size: 14px;
}

#cookie-consent-popup .buttons button:hover {
  background-color: var(--color-header-texto2);
}

.buttons a{
  display: inline-block;
  padding: 12px 24px;
  font-size: 12px;
  margin-bottom: 10px;
  margin-top: 10px;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-family: 'BellMT', sans-serif;
  color: var(--color-header-texto2);
  background-color: var(--color-header-desplegable);
  border: none;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(var(--color-header-desplegable), 0.1);
  transition: background-color 0.3s ease;
  cursor: pointer;
  font-size: 12px;
}

.buttons a:hover{
  color: var(--color-header-texto);
  border-bottom: 4px solid var(--color-header-texto);
  margin-bottom: 6px;
  transform: scale(1.05);
}