/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");


/*==========FORMA PRINCIPAl========*/
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: transparent;
}

/* Hacer que el contenido principal ocupe el espacio disponible */
.main-content {
  flex: 1;
  margin-top: 65px; /* Altura del .barra_navegacion_principal */
  padding: 0px;
}


/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --black-color: #3aa6c8;
  --black-color-light: #1c1f33;
  --black-color-lighten: hsl(220, 20%, 18%);
  --white-color: #fff;
  --body-color: rgba(200, 91, 58, 0.09) !important;

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Fredoka", sans-serif;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;
  --font-bold: 900;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font) !important;
  /*font-size: var(--normal-font-size);*/
  /*text-transform: capitalize; /*--Iniciar los textos con mayuscula--*/
  background-color: var(--body-color) !important;

  margin: 0; /* Elimina el margen predeterminado del cuerpo */
  padding: 0; /* Elimina el relleno predeterminado del cuerpo */

  min-height: 100vh;
  box-sizing: border-box;
}



/*=======AVISO DE NO ORIZONTAL EN CELULARES=======
.body-aviso {
    display: none;
}


/*Celulares en VERTICAL
@media screen and (max-width: 950px) and (orientation: portrait) {
  .wrapper {
    display: block;/*Tu sitio normal
  }

  .body-aviso {
    display: none;/*Se oculta el aviso
  }
}*/

/*Celulares en HORIZONTAL
@media screen and (max-width: 950px) and (orientation: landscape) {
  .wrapper {
    display: none;/*Se oculta tu sitio
  }

  body {
    background: linear-gradient(135deg, #fef9e7, #f4f4f4);
  }

  .body-aviso {
    display: flex;/*Muestras el aviso
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: linear-gradient(135deg, #fef9e7, #f4f4f4);
  }

  .body-aviso-info {
    font-family: 'Outfit', sans-serif !important;
    color: #000;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
  }

  .body-aviso img {
      margin-top: 10px;
      width: 200px;
      filter: drop-shadow(1px 1px 0px #fff); /*Sombra para el contenido de las imagenes
  }
}
/*=====================================================*/



/*===================CURSOR ESTANDAR===================*/
button {
    cursor: pointer; /* Hace que los botones se vean más interactivos */
}

input, textarea {
    cursor: text; /* Barra vertical en áreas de texto */
}

a {
    cursor: pointer; /* Hacer clic en enlaces */
}

.disabled {
    cursor: not-allowed; /* Indicar elementos deshabilitados */
}
/*===================================================*/



/*================BARRA DE NAVEGACION================*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;

}

.nose {
  color: #138D75, #45B39D, #45B39D, #138D75;
}

.barra_navegacion_principal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  /*background-image: url('../imagenes/fondopie.jpg') !important;
  /*opacity: 1.0;  Establece la opacidad de la imagen de fondo */
  /*background-repeat: no-repeat;
  background-size: cover;*/

  background-color: #3aa6c8; /* Color de fondo para pantallas grandes */
  border-inline: 3px solid  #005B82;
  border-bottom: 3px solid  #005B82;


  border-radius: 0 0 20px 20px !important;
  padding: 0px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100 !important;
  height: 68px; /* Altura del .barra_navegacion_principal */
  box-shadow: 0px 2px 6px #7B7D7D;
  transition: all 0.3s ease-in-out;
}

.barra_navegacion_principal:hover {
  /*background: linear-gradient(to right, #117A65, #1ABC9C, #1ABC9C, #117A65);*/
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.barra_navegacion_principal.hide {
  transform: translateY(-100%); /* la mueve fuera de la vista hacia arriba */
}


.logo {
  font-size: 25px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease-in-out;
}

.logo:hover {
  transform: scale(1.05); /* Hace que el logo se agrande al pasar el cursor */
}

.logo img {
  width: 160px; /* Ajusta el tamaño del logo según tus necesidades */
  height: auto; /* Para mantener la proporción de la imagen */
  margin-right: 10px; /* Espacio entre el logo y el título */
  border-radius: 50px; /* Borde redondeado */
  background-color: #fff;
  justify-content: center; /* Centramos horizontalmente las imágenes */
  align-items: center; /* Centramos verticalmente las imágenes */
  border: 3px solid #C85B3A;
  box-shadow: 3px 3px 0px #C85B3A;
  padding: 3px; /* Añade relleno para que el fondo degradado sea visible */
  box-sizing: border-box; /* Asegura que el relleno se incluya en el tamaño total */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, width 0.3s ease-in-out; /* Transiciones para suavizar los cambios */
}

.logo img:hover {
  transform: scale(0.93); /* Agranda la imagen del logo al pasar el cursor */
  box-shadow: 0px 0px 0px #C85B3A;
}

@keyframes fadeIn {
  0% { 
      opacity: 0; 
      transform: 
      scale(0.9); 
    }
  100% { 
      opacity: 1; 
      transform: 
      scale(1); 
  }
}

.logo img {
  animation: fadeIn 1s ease-in-out; /* Animación de suavizado al cargar la página */
}

.navigation ul {
  list-style: none;
  display: flex;
}

.navigation ul li {
  float: left;
  position: relative;
}

.navigation ul li a {
  font-size: 16px;
  font-family: "Fredoka", sans-serif;
  color: #1c1f33;
  font-weight: 900;
  text-decoration: none;
  padding: 9px;
  display: block;
  transition: all 0.3s ease, background-color 0.5s ease, transform 0.5s ease, color 0.5s ease;
  border-radius: 10px;
  border: solid 2px  #005B82;
  margin-right: 10px;
  background-color: ;
  position: relative;
  overflow: hidden;
}

/*.navigation ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
}*/

.navigation ul li a:hover {
  background-color: #005B82;
  /*transform: scale(1.05); Hace que el enlace se agrande al pasar el cursor */
  color: #fff;
  transition: background-color 0.5s ease, transform 0.5s ease, color 0.5s ease;
}

.navigation ul li a.active,
.navigation ul li a:active {
  background-color: #005B82;
  color: #fff;
  border-color: #fff;
}



/*Sub secciones de una seccion principal*/
.navigation ul li:hover > .sub_paginas {
  display: block;
} 

.navigation ul li .sub_paginas {
  position: absolute;
  top: 100%;
  width: 100%;
  background-color: #fff; /* Ajuste en la opacidad */
  border: solid 2px #005B82;
  display: none;
  padding: 2px;
  border-radius: 10px;
  box-shadow: 3px 3px 0px #005B82; /* Sombra para submenús */
  animation: slideDown 0.3s ease; /*Animacion al mostrarse la sub barra*/
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navigation ul li .sub_paginas li {
  width: 100%;
}

.navigation ul li .sub_paginas li a {
  display: flex;
  align-items: center;
  gap: 8px; /* Espacio automático entre icono y texto */
  
  font-size: 15px;
  border-radius: 8px;
  text-transform: capitalize;
  border: solid 2px #005B82;
  color: #1c1f33;
  padding: 8px;
  transition: all 0.3s ease;
  margin: 0;
}

.navigation ul li .sub_paginas li a:hover {
  background-color: #005B82;
  color: #fff;
  /*transform: scale(1.03); Hace que el enlace se agrande al pasar el cursor */
}


/*Mas seccion de las Sub secciones*/
.navigation ul li .sub_paginas li:hover > .mas_sub_paginas {
  display: block;
} 

.navigation ul li .sub_paginas li .mas_sub_paginas {
  position: absolute;
  top: 0;
  left: 100%;
  width: 200px;
  display: none;
  padding: 3px;
  border-radius: 10px;
  border: solid 2px #005B82;
  background-color: #3aa6c8; /* Ajuste en la opacidad */
  box-shadow: 3px 3px 0px #005B82; /* Sombra para submenús */
}

.navigation ul li .sub_paginas li .mas_sub_paginas li a:hover {
  background-color: transparent;
  color: #fff
}


.navigation ul li .iniciar_sesion {
  font-size: 20px;
  padding: 8px;
}


/*----------Contador del carrito--------*/
.li-carrito-compras .contador {
  font-weight: 900;
  padding: 5px;
  border-radius: 100px;
}
/*----------------------------------------*/


/*-----Boton del usuario y tambien de cerrar sesion----*/
.navigation ul li .user-button {
  border-radius: 30px !important;
}

.user-button i {
  margin-right: 1px;
  color:  #C85B3A;
}

.user-button:hover i {
  color: rgba(207, 216, 220, 0.9);
}

.navigation .li-user-sesion .user-menu {
  width: auto;
}

.user-menu li button {
  color: #fff;
  background-color: #E74C3C;
  border-radius: 0px 0px 8px 8px;
  padding: 8px 12px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  display: flex;
  justify-content: center;
  margin-top: 10px;
  width: 100%;
}

.user-menu li button i {
  margin-right: 8px;
  font-size: 18px;
}

.user-menu li button:hover {
  background-color: #C0392B;
}

/*-------------------------------------------*/



#toggle,
.barra_navegacion_principal label {
  display: none;
  cursor: pointer;
}

/*.menu {
  width: 450px !important;
  height: 35px;
}*/


/*------------ Responsive styles-----1050------ */
@media (max-width: 950px) {
  .barra_navegacion_principal label {
    display: initial;
    cursor: pointer;
  }


  .barra_navegacion_principal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    height: 68px; /* Altura del .barra_navegacion_principal */
  }

  .logo:hover {
    transform: scale(1.04); /* Hace que el logo se agrande al pasar el cursor */
  }

  .logo img {
    width: 150px; /* Ajusta el tamaño del logo según tus necesidades */
  }


  .menu-toggle {
    display: block;
    cursor: pointer;
    width: 50px; /* Ancho del label */
    height: 50px; /* Altura del label */
    border-radius: 10px;
    background-color: #005B82;
    align-items: center;
    justify-content: center;

    position: relative;
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease; /* Transición suave para el cambio de transformación */
  }

  .menu-icon {
    font-size: 40px;
    position: absolute;
    top: 50%; /* Alinea verticalmente */
    left: 50%; /* Alinea horizontalmente */
    transform: translate(-50%, -50%);
    color: #fff;
    opacity: 1; /* Inicialmente visible */
    transition: opacity 0.3s ease, transform 0.3s ease; /* Transiciones suaves */
  }

  .menu-bars {
    /* filter: drop-shadow(2px 2px 0px #fff); /*Sombra para el contenido de las imagenes*/
  }

  .menu-close {
    opacity: 0; /* Inicialmente invisible */
  }

  .menu-toggle::before,
  .menu-toggle::after {
    content: '';
    position: absolute;
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
  }

  .menu-toggle::before {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0); /* Inicialmente invisible y escala 0 */
  }

  .menu-toggle::after {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleY(0); /* Inicialmente invisible y escala 0 en Y */
  }

  #toggle:checked + .menu-toggle .menu-bars {
    opacity: 0; /* Oculta las barras al abrir el menú */
    transform: translateX(-50%) scaleY(0); /* Rotación de 90 grados al abrir */

  }

  #toggle:checked + .menu-toggle .menu-close {
    opacity: 1; /* Muestra el ícono de X al abrir el menú */
  }

  #toggle:checked + .menu-toggle {
    box-shadow: 0 8px 0px #005B82;
    border-radius: 10px 10px 0 0;
  }



  #toggle:checked ~ .navigation {
    display: flex;
    animation: slideDown 0.3s ease; /*Animacion al mostrarse la barra de navegacion en movil*/
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10%);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(58, 166, 200, 1.0);
    border: solid 3px #005B82;
    display: none;
    flex-direction: column;
    transition: all 0.3s ease;
    border-radius: 20px;
    width: 100%; /*Tamaño del contenedor de los botones*/
    margin: auto;
  }

  .navigation ul {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0;
    margin: 0;
    margin-top: 10px;

  }

  .navigation ul li {
    width: 90%; /*Tamaño de los botones*/
    margin-bottom: 3px;
  }

  .navigation ul li a {
    padding: 15px 30px;
    margin-right: 0px;
    color: #1c1f33;
    font-size: 17px;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 10px;
    border: solid 2px  #005B82;
    background-color: #3aa6c8;
  }

  .navigation ul li a:hover {
    color: #fff;
    background-color: #005B82;
    transform: scale(0.99); /* Hace el efecto de precion al pasar el cursor */
    /* similar al de PC   transform: scale(1.03) !important;     */
  }

  .navigation ul li .iniciar_sesion {
    font-size: 25px;
  }

  .navigation ul .li-carrito-compras a {
    font-size: 23px;
    padding: 10px 20px;
  }

  .navigation ul .li-user-sesion .user-button i {
    font-size: 30px;
  } 

  .navigation ul li .sub_paginas {
    position: relative; /* Importante: quita el posicionamiento especial */
    width: 100% !important;
    background-color: #fff;   /* Fondo visible */
    border: 2px solid #005B82;   /* Mantiene estilo */
    padding: 4px;
    animation: slideDown 0.6s ease;
    margin-top: 0px;
    margin-bottom: 10px;
    border-radius: 15px;    
    box-shadow: 3px 3px 0px #005B82; /* Igual que en PC */
    overflow: hidden;
  }
  

  /* Mostrar submenu cuando su <li> tenga una clase como .open (mejor con JS) */
  .navigation ul li.open > .sub_paginas {
    display: block;
  }

  .navigation ul li .sub_paginas li {
    margin: 0px;
  }

  .navigation ul li .sub_paginas li a {
    padding: 10px 20px;
    color: #1c1f33;
    font-size: 16px;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 10px;
    border: solid 2px #005B82;
    background-color: #fff
  }


}
/*========================================================*/



/*======================PIE DE PAGINA=======================*/
.footer {
  background-color: #005B82; 
  padding: 50px 25px;
  color: #fff;
  border-radius: 20px 20px 0px 0px !important;
  border-inline: 3px solid  #3aa6c8;
  border-top: 3px solid  #3aa6c8;
}

.footer2 {
  background-color: #3aa6c8;
  color: #fff;
  padding: 10px 0;
  justify-content: center;
  align-items: center;
  display: flex;
  font-family: "Fredoka", sans-serif;
}

.container-f {
  max-width: 100%;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
}

.footer2 p {
  font-weight: 600;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-links h4 {
  margin-bottom: 20px;
  text-transform: uppercase; /*Poner letras en mayusculas*/
  font-size: 14px;
  text-align: center;
  font-family: 'Outfit', sans-serif ;
  font-weight: 900;
}

.footer-links ul li {
  list-style: none !important;
}

.footer-links a {
  display: block;
  color: #B3B6B7;
  text-align: center;
  text-decoration: none;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 500;
  font-family: "Fredoka", sans-serif;
}

.footer-links a:hover {
  color: #ffa837;
}

.footer-links p {
  font-size: 14px;
  margin-bottom: 3px;
}

.footer-links p .email-vet{
  transition: color 0.3s ease-out, text-decoration 0.3s ease-out;
  display: inline;
}

.footer-links p .email-vet:hover {
  color: #C85B3A; /* Azul más oscuro al pasar el mouse */
  text-decoration: underline;
}


.social-link {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 30px; /*Espacio para los iconos*/
}

.social-link a{
  color: #fff;
  font-size: 30px;
  transition: transform 0.6s;
}

.social-link a:hover {
  color: #C85B3A; /* Cambia a color rojo al pasar el mouse */
  transform: scale(1.2); /* Pequeño agrandamiento al pasar el mouse */
  transition: transform 0.6s;
}



.footer-links .app-download {
  padding-block: 10px;
}

.footer-links .android-app {
  margin-bottom: 20px;
}

.footer-links .app-download .title-app-download{
  font-size: 14px;
  margin-bottom: 3px;
  text-align: center;
}

.footer-links .app-download .title-app-download i{
  font-size: 18px;
}

.footer-links .app-download .title-app-download .fa-android{
  color: #3DDC84;
}


.footer-links .app-download .btn-download {
  display: inline-block;
  text-align: center;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif ;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
  cursor: pointer !important;
  transition: all 0.3s ease;
}

.footer-links .app-download .btn-download  span {
  text-shadow: 1px 1px 0 #000;
  font-size: 16px;
}

.footer-links .app-download .btn-download  .VET {
  color: #3aa6c8;
}

.footer-links .app-download .btn-download  .Y {
  color: #C85B3A;
}


.footer-links .app-download .btn-download i {
  font-size: 20px;
}

.footer-links .app-download .btn-download:hover {
  background: linear-gradient(135deg, #C85B3A, #C85B3A); /*#36d1dc, #5b86e5*/
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transform: translateY(-3px);
}

.footer-links .app-download .btn-download:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


.footer-links .app-download .content-info-ext-app {
  
}

.footer-links .app-download .content-info-ext-app a{
  font-size: 10px;
  margin: 0;
  text-align: right;
}


.footer-links .android-download{
  color: #fff !important;
  background: linear-gradient(135deg, #3DDC84, #185a9d); /* Verde-azul moderno */
}

.footer-links .ios-download{
  opacity: 0.3;
  color: #1c1f33 !important;
  background: linear-gradient(135deg, #FFFFFF, #185a9d); /* Verde-azul moderno */
}

.footer-links .ios-download:hover {
  transform: none !important;
  box-shadow: none  !important;
  background: linear-gradient(135deg, #FFFFFF, #185a9d) !important;
}

.footer-links .ios-download:active {
  transform: none;
}


/* CAJA DE CONTACTANOS CON CORREO
.input-send {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.input-send input {
  padding: 12px 12px;
  font-size: 16px;
  font-family: "Fredoka", sans-serif;
  background-color: transparent;
  color: #fff;
  border-radius: 10px 0 0 10px;
  outline: none;
  width: 250px;
  border: solid 2px #fff;
}

.input-send input::placeholder {
  color: #afafaf ;
}

.input-send button {
  padding: 12px 20px;
  background-color: #C85B3A;
  border: solid 2px #C85B3A;
  color: #fff;
  font-family: "Fredoka", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer !important;
  border-radius: 0 10px 10px 0;

  transition: color 0.3s ease-out, background-color 0.3s ease-out, border-color 0.3s ease-out, transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.input-send button:hover {
  color: #fff;
  border-color: #fff;
}

.input-send button:active {
    transform: scale(0.98); 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}*/




@media (max-width: 950px) {

  .footer {
    padding: 10px 0;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    margin-block: 15px;
  }

  .footer-links h4 {
    margin-bottom: 10px; 
  }

  .footer-links  .btn-download {
    font-weight: 700;
  }

  .input-send {
    justify-content: center;
  }

  .social-link {
    justify-content: center;
  }

  .social-link a:last-child {
  }

  .footer2 {
    text-align: center;
  }
}
/*==========================================================*/



/*================BOTON FLOTANTE DE WHATSAPP================*/
.whatsapp-btn {
  position: fixed;
  bottom: 60px;
  left: 15px;
  z-index: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  animation: breathe 2s ease-in-out infinite;
  cursor: move;
  user-select: none;
}

/*Estilos solo al icono whatsapp*/
.whatsapp-btn i {
  color: #fff;
  font-size: 24px;
  animation: beat 2s ease-in-out infinite;
  text-decoration: none;
}

/*Estilos con animation contorno respirando*/
@keyframes breathe {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

/*Estilos de animacion del icono latiendo*/
@keyframes beat {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 950px) {
  .whatsapp-btn {
    left: 8px;
  }
}
/*=============================================================*/



/*-=======================BOTON PARA SUBIR=====================*/
.contenedor-boton-flotante {
  position: fixed;
  bottom: 60px;
  right: 20px;
  z-index: 300;
  display: none;
}

.boton-flotante {
  /*background-color: rgba(46, 204, 113, 0.8); /* Color verde con transparencia */
  display: flex;
  justify-content: center;
  align-items: center;
  /*- background-color: rgba(204, 157, 43, 0.7);-*/
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
  position: relative;
  border: solid 2px  #fff;
  background-color:  rgba(0, 91, 130, 0.8);
  border-radius: 10px;
  padding: 12px 10px;
  box-shadow: 0px 0px 5px #000;
}

.boton-flotante:hover {
  background-color:  #005B82;
}

.icono-flotante {
  color: #fff;
  font-size: 23px;
}


/* Animación de pulso */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.boton-flotante {
    animation: pulse 4s infinite; /* Añade una animación de pulso */
}

@media (max-width: 950px) {
  .contenedor-boton-flotante {
    right: 10px;
  }
}

/*===========================================================*/



/*========================BANNER FIJO========================*/
.banner-fijo {
    width: 100%;
    height: 40px;
    background-color: #C85B3A;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Ticker que contiene el texto */
.ticker {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Contenido dentro del ticker */
.ticker-content {
    display: flex;
    width: fit-content;
    animation: scrollTicker 30s linear infinite;
    white-space: nowrap; /* Evita que el texto se rompa en varias líneas */
}

/* Estilo del texto en el ticker */
.ticker-content span {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    font-family: 'Outfit', sans-serif !important;
    margin-right: 30px; /* Espacio entre los textos */
    cursor: pointer;
}

/* Animación de desplazamiento continuo */
@keyframes scrollTicker {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

 /* Espacio para evitar solapamiento con el banner fijo */
body {
    margin: 0;
    padding-bottom: 40px;
}


@media (max-width: 950px) {
  body {
    padding-bottom: 35px;
  }

  .banner-fijo {
    height: 35px;
  }

  /* Estilo del texto en el ticker */
  .ticker-content span {
    font-size: 14px;
    font-weight: 700;
    margin-right: 15px; /*El espacio entre los textos*/
  }

}
/*==========================================================*/



/*=======Modal de INFORMACION LEGAR del pie de pagina=======*/
.modal-pie-informacion-legal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  
  justify-content: center;
  align-items: center;
}

.modal-pie-informacion-legal.active {
  display: flex;
}

.modal-content-informacion-legal {
  background: #fff;
  border-radius: 12px;
  width: auto;
  position: relative;
  padding: 20px;
  box-shadow: 6px 6px 0px rgba(253, 254, 254, 0.4);

  transition: transform 0.3s ease-out;
  animation: modalInformacionLegalFadeIn 0.3s ease-out; /*ANIMACION DE APARICION LENTA*/
}

.scroll-modal-informacion-legal {
  max-width: 700px;
  max-height: 80vh;
  overflow-y: auto;
}

/* Estilo para el contenedor de la scrollbar */
.scroll-modal-informacion-legal::-webkit-scrollbar {
    width: 10px;  /* Ancho de la scrollbar */
}

/* Estilo para la pista de la scrollbar */
.scroll-modal-informacion-legal::-webkit-scrollbar-track {
    background: #f1f1f1; /* Color de fondo de la pista */
    border-radius: 10px;
}

/* Estilo para el pulgar de la scrollbar */
.scroll-modal-informacion-legal::-webkit-scrollbar-thumb {
    background-color: #C85B3A; /* Color del pulgar */
    border-radius: 10px;
    border: 3px solid #f1f1f1; /* Espacio alrededor del pulgar */
}

/* Estilo para el pulgar de la scrollbar al pasar el mouse */
.scroll-modal-informacion-legal::-webkit-scrollbar-thumb:hover {
    background-color: #C85B3A; /* Color del pulgar al pasar el mouse */
}


/* Animación suave de entrada */
@keyframes modalInformacionLegalFadeIn {
    from { 
        transform: translateY(30px); 
        opacity: 0; 
    }
    
    to   { 
        transform: translateY(0);
        opacity: 1; 
    }
}


.btn-cerrar-modal-content-informacion-legal {
  top: -5px;
  right: 5px;
  position: absolute;
  font-size: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: #C85B3A;
  font-weight: 600;
}

#modal-title-informacion-legal {
  margin-top: 10px;
  margin-bottom: 10px;
  color: #C85B3A;
  font-size: 24px;
  font-family: "Titan One", sans-serif;
}

#modal-body-informacion-legal .sub-titulo {
  margin-bottom: 6px;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 600;
  font-family: "Fredoka", sans-serif;;
}

#modal-body-informacion-legal .ultima-actualizacion span {
  font-weight: 500;
}

#modal-body-informacion-legal p {
  text-align: justify;
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 16px;
  font-family: "Fredoka", sans-serif;;
}

#modal-body-informacion-legal p span {
  font-weight: 500;
}

#modal-body-informacion-legal .lista{
  list-style: disc;
  padding-left: 1.2rem;
}

#modal-body-informacion-legal .lista li {
  text-align: justify;
}

#modal-body-informacion-legal .lista span {
  font-weight: 500;
}


/*==========================================================*/