
:root {
    --text-dark: #000000;
    --text-light: #767268;
    --extra-light: #f3f4f6;
    --white: #ffffff;
    --max-width: 1200px;
    --header-font: "Oswald", sans-serif;
    --swiper-theme-color: #ffffff;
    --color-green: #4AC6B7;
    --color-pink: #FEC6C5;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Cambia el color de selección de texto a amarillo */
::selection {
  background: #F2B918;
  color: #222;
}

/* Para navegadores Webkit (Chrome, Safari, Edge, móviles, etc.) */
::-webkit-selection {
  background: #F2B918;
  color: #222;
}
/* Scrollbar para navegadores Webkit (Chrome, Edge, Safari, Opera) */
::-webkit-scrollbar {
  width: 10px;
  background: #222;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #F2B918 40%, #888 100%);
  border-radius: 8px;
  border: 2px solid #222;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #F2B918 60%, #444 100%);
}

/* Scrollbar para Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: #F2B918 #222;
}

/* Cambia el color de la barra de pestaña en móviles (Android Chrome, Safari iOS) */
@media (max-width: 900px) {
  :root {
    --theme-color: #111;
  }
}
body {
 
    background-color: #1a1a1a; /* Fondo oscuro */
    color: #fff; /* Texto blanco */
  }
  

.header {
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
  

nav {
    position: fixed;
    isolation: isolate;
    top: 0;
    width: 100%;
    max-width: var(--max-width);
    margin: auto;
    z-index: 9;
 
}

.nav__bar {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background-color: transparent;
}

.nav__logo {
    max-width: 100px;
}

.nav__menu__btn {
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}

.nav__links {
    list-style: none;
    position: absolute;
    width: 100%;
    padding: 2rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
    font-size: 1.0rem;
    font-family: 'lora', sans-serif;
    color: #ffea9f;
  
    background-color: #ffffff;
    transform: translateY(-100%);
    transition: 0.s;
    z-index: -1;
}

.nav__links.open {
    transform: translateY(0);
}

.nav__links .nav__logo {
    display: none;
}

.nav__links a {
    position: relative;
    isolation: isolate;
    padding-bottom: 8px;
    color: var(--white);
    transition: 0.3s;
}
.nav-item {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;

  }
.nav-item:hover {
    color:#F2B918; /* Color azul claro al pasar el cursor */
  }
  /* Estilo para la barra de subrayado debajo del enlace activo */
.nav-item.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #F2B918; /* Barra azul debajo del enlace activo */
  }
.header__container {
    padding-block: 10rem;
}

.header__container p {
    font-size: 1.2rem;
    font-family: var(--header-font);
    color: var(--white);
}

.header__container h1 {
    margin-bottom: 1rem;
    font-size: 3rem;
    font-weight: 400;
    font-family: var(--header-font);
    line-height: 3rem;
    color: var(--white);
}


.main-section {
    display: grid;
    grid-template-columns: 1fr 300px 1fr;
    grid-template-rows: 1fr 1fr;
    align-items: center;
    justify-items: center;
    height: 80vh;
    position: relative;
    gap: 30px;
    padding: 20px;
    color: #aaa;
}

.text-box {
    width: 200px;
    height: 100px;


    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-box:hover {
  color:white;
}

.circle-container {
    position: relative;
    grid-row: span 2;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.beer-img {
  /*   height: 130%; */
transition: transform 0.4s, opacity 0.4s;

    pointer-events: none;
    z-index: 2;
}
.beer-img.zooming {
  transform: scale(1.2);
  opacity: 0.5;
}

.color-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: none;
    z-index: 1;
}

.color-indicator {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #F2B918;
    border-radius: 50%;
    pointer-events: none;
    z-index: 3;
    transform: translate(-50%, -50%);
}

.info-text {
    grid-column: span 3;
    font-size: 18px;
    margin-top: 20px;
    text-align: center;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .main-section {
      
        flex-direction: column;
        justify-content: center;
        padding: 20px 20px 20px 20px;
        gap: 1px;
    }
    .beer-img {
        height: 130%;
    }
    .beer-img-main {
        height: 330px;
    }
    header {
        flex-direction: column;
        gap: 10px;
    }

    .logo {
        position: static;
        transform: none;
    }

    .nav-left,
    .nav-right {
        justify-content: center;
    }
    .main-section {
   
        grid-template-columns: 1fr 100px 1fr !important;
        color: white;
      
    }
    .circle-container {
        width: 200px;
    height: 200px;
    }
    .color-ring {
        width: 90%;
    height: 90%;
    }
    .text-box {
        width: 130px;
        height:0px;
        background: transparent;
        border: none;
        font-size: 11px;
    
    }
    .nav__links {
        display: none;
         background: linear-gradient(rgb(0 0 0), rgb(0 0 0 / 61%)), url(images/tienda/vasos.webp) center center no-repeat;
        padding: 60px 20px 50px 20px;
        margin: 340px 20px 0px 20px;
        border-radius: 20px;
        background-size: cover;
        width: 100%;
    }
    .nav__links.active {
        display: flex;
        opacity: 1;
        pointer-events: auto;
      }
}

@media (width > 768px) {
    nav {
        padding: 1rem 1rem;
        position: static;
        max-width: 900px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav__bar {
        display: none;
    }

    .nav__links {
        padding: 0;
        width: 100%;
        position: static;
        transform: none;
        flex-direction: row;
        justify-content: space-between;
        background-color: transparent;
    }

    .nav__links .nav__logo {
        display: block;
        max-width: 180px;
    }


  
}
@keyframes scroll {
    to {
      transform: translateX(calc(-50% - 5px));
    }
  }

  .blog__header {
    padding: 1rem;
  }
  
  .blog__header h4 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 400;
    font-family: var(--header-font);
    color: var(--text-dark);
  }

/* efecto glamorfismo o ::view-transition */
/* Efecto glassmorphism */
/* Efecto glassmorphism */
.glass {
    display: flex;
    justify-content: flex-start; /* Alinea los logotipos al principio */
    align-items: center;
    background: rgba(255, 255, 255, 0.1); /* Fondo semitransparente */
    backdrop-filter: blur(10px); /* Desenfoque del fondo */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra sutil */
  
    overflow: hidden; /* Esconde los logotipos que salgan fuera de la caja */
    white-space: nowrap; /* Evita que los logotipos se acomoden en varias líneas */
}

.logo2 {
    display: inline-block; /* Hace que los logotipos se muestren en línea */
    margin: 0px 50px 0px 50px;
}

.logo2 img {
    max-width: 100px; /* Ajusta el tamaño de los logotipos */
    transition: transform 0.3s ease-in-out; /* Agrega una transición suave al hover (opcional) */
}

/* Animación para mover los logotipos hacia la derecha */
@keyframes moveRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100%); /* Desplaza todos los logotipos fuera del contenedor */
    }
}

.logo2 {
    animation: moveRight 10s linear infinite; /* Hace que la animación sea infinita */
}

/* Contenedor de la sección "Quiénes somos" */
.about-us {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 20px;
    background-color: #1a1a1a; /* Fondo oscuro */
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* Asegura que el texto y la imagen estén alineados */
    gap: 30px; /* Espacio entre el texto y la imagen */
  }
  
  /* Contenido de texto */
  .about-text {
    max-width: 600px;
    align-content: center;
  }
  
  .about-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #F2B918; /* Color dorado para el título */
  }
  .about-text2 h2 {
    font-size: 56px;
    font-weight: 700;
    color: #F2B918; /* Color dorado para el título */
    margin: 20px;
   
    text-align: center;
  }
  
  .about-text h3 {
    font-size: 28px;
    font-weight: 600;
    margin: 10px 0;
  }
  
  .about-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #aaa; /* Texto más suave para la descripción */
    margin: 20px 0;
  }
  
  .cta-button {
    display: inline-block;
    background-color: #F2B918;
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #ffea9f; /* Color más oscuro para el hover */
  }
  
  /* Estilo para la imagen */
  .about-image img {
 
    
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  }
  
/* Estilo para el slider de imágenes */
.image-slider {
    background-color: #1a1a1a;

    text-align: center;
  }
  
  .slider-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    position: relative;
  }
  
  .slider-item img {
    max-width: 100%;
    height: auto;

    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  }

  
  .footer {
    overflow: hidden;
    background-color: var(--primary-color);
    background-image: url('images/fondo-footer2web.webp'); /* Ruta de la imagen */
    background-size: cover; /* Ajusta la imagen para que cubra todo el área */
    background-position: center; /* Centra la imagen en el fondo */
    border-bottom: 10px solid var(--white);
}
  
  .footer__container {
    display: grid;
    gap: 4rem;
    text-align: center;
  }
  
  .footer__col img {
    max-width: 150px;
    margin-inline: auto;

  }
  
  .footer__socials {
    margin-block: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .footer__socials a {
    padding: 5px 10px;
    font-size: 1.25rem;
    color: var(--text-dark);
    background-color: var(--white);
    border-radius: 100%;
    transition: 0.3s;
  }
  
  .footer__socials a:hover {
    color: var(--white);
    background-color: var(--text-light);
  }
  
  .footer__bar {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
  }
  
  .footer__col h4 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 400;
    font-family: var(--header-font);
    color: var(--white);
  }
  
  .footer__col p {
    margin-bottom: 1rem;
    color: var(--text-light);
  }
  
  .footer__col p span {
    font-size: 1.2rem;
    margin-right: 10px;
  }
  
  .footer__col form {
    padding: 5px;
    width: 100%;
    max-width: 350px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: var(--text-dark);
    border-radius: 5px;
  }
  
  .footer__col input {
    padding: 0.75rem 0.5rem;
    width: 100%;
    font-size: 1rem;
    color: var(--text-light);
    outline: none;
    border: none;
    background: transparent;
  }
  
  .footer__col .btn:hover {
    color: var(--primary-color);
    background-color: var(--white);
  }
  
  .footer__bar__link {
    position: relative;
    isolation: isolate;
    margin-bottom: -10px;
    margin-inline: auto;
    width: 60px;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .footer__bar__link::after {
    position: absolute;
    content: "";
    top: 25%;
    width: 125%;
    height: 125%;
    rotate: 45deg;
    background-color: var(--white);
    z-index: -1;
  }
  
  .footer__bar__link i {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
  }
  
  .footer__bar__link span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
  }
    /* Esto es de footer*/
    .section__container {
        max-width: var(--max-width);
        margin: auto;
        padding: 5rem 1rem;
        overflow: hidden;
        box-sizing: border-box;  
        grid-template-columns: repeat(3, 1fr);
      }
  /* Diseño responsivo para pantallas pequeñas */
  @media (max-width: 768px) {
    .about-us {
      flex-direction: column;
      text-align: center;
    }
  
    .container {
      flex-direction: column; /* Hace que el texto y la imagen se apilen */
    }
  
    .about-text {
      margin-bottom: 20px; /* Añade espacio entre el texto y la imagen */
    }
    .about-image img {
        max-width: 300px;
    }
    .slider-container {
        flex-direction: column;
      }
    
      .slider-item img {
        max-width: 100%; /* Ajusta el tamaño de las imágenes en móviles */
      }

      
  .footer__container {
    display: inline;
    text-align: center;
  }

  .footer__col:nth-child(1) {
    grid-area: 1/2/2/3;
  }

  .footer__col form {
    margin-inline-start: unset;
  }
  .footer__col p span{
      margin-right: 1px;
  }
    
  }



  @media screen and (max-width: 768px)
  {
         .adopt-a-pet .dogs, .adopt-a-pet .parrot, .adopt-a-pet .cats
      {
          flex-direction: column;
      }
      .adopt-a-pet .dogs .pic, .adopt-a-pet .parrot .pic, .adopt-a-pet .cats .pic
      {
          width: 100% !important;
      }
      .adopt-a-pet .dogs .boxes, .adopt-a-pet .parrot .boxes, .adopt-a-pet .cats .boxes
      {
          width: 100% !important;
      }
    }
      .adopt-a-pet .box-container
  {
      display: flex;
      flex-direction: column;

  }
  .adopt-a-pet .dogs,
  .adopt-a-pet .parrot,
  .adopt-a-pet .cats
  {
      display: flex;
      align-items: center;
      gap: 50px;
      background-color: var(--color-white);
      padding: 10px;
      border-radius: 20px;
      margin: 40px;
  }
  .adopt-a-pet .dogs .pic
  {
    background-image: url(images/shop1.webp);
    background-position: bottom;
    background-size: cover;
    border-radius: 30px 0 0 30px;
    height: 400px;
  }
  
  .adopt-a-pet .cats .pic
  {
      background-image: url(images/shop1.webp);
      background-position: center;
      background-size: cover;
      border-radius: 30px 0 0 30px;
      height: 480px;
  }
  
  .adopt-a-pet .parrot .pic
  {
      background-image: url(images/tienda/final.webp);
      background-position: center;
      background-size: cover;
      border-radius: 0 30px 30px 0;
      height: 460px;
  }
  
  .adopt-a-pet .dogs .pic,
  .adopt-a-pet .parrot .pic,
  .adopt-a-pet .cats .pic
  {
      width: 30%;
  }
  
  .adopt-a-pet .dogs .pic img,
  .adopt-a-pet .parrot .pic img,
  .adopt-a-pet .cats .pic img
  {
      width: 330px;
  }
  
  .adopt-a-pet .dogs .boxes,
  .adopt-a-pet .parrot .boxes,
  .adopt-a-pet .cats .boxes
  {
      width: 70%;
      text-align: center;
      display: flex;
      gap: 30px;
  }
  
  .adopt-a-pet .dogs .boxes .box,
  .adopt-a-pet .parrot .boxes .box,
  .adopt-a-pet .cats .boxes .box
  {
      position: relative;
      overflow: hidden;
      /* border: 1px solid #fff;
      box-shadow: 0px 0px 5px #d9d9d9;

      background: white; */
            border-radius: 10px;
  }
  
  .adopt-a-pet .dogs .boxes .box .offer,
  .adopt-a-pet .parrot .boxes .box .offer,
  .adopt-a-pet .cats .boxes .box .offer
  {
      position: absolute;
      right: 20px;
      top: 20px;
  }
  .adopt-a-pet .dogs .boxes .box .offer i,
  .adopt-a-pet .parrot .boxes .box .offer i,
  .adopt-a-pet .cats .boxes .box .offer i
  {
      color: #F2B918;
      font-size: 35px;
  }
  
  .adopt-a-pet .dogs .boxes .box:hover .offer i,
  .adopt-a-pet .parrot .boxes .box:hover .offer i,
  .adopt-a-pet .cats .boxes .box:hover .offer i
  {
      color: var(--color-green);
  }
  

  
  .adopt-a-pet .dogs .boxes .box:hover img,
  .adopt-a-pet .parrot .boxes .box:hover img,
  .adopt-a-pet .cats .boxes .box:hover img
  {
      transform: scale(1.1);
  }
  
  .adopt-a-pet .dogs .boxes .box .content,
  .adopt-a-pet .parrot .boxes .box .content,
  .adopt-a-pet .cats .boxes .box .content
  {
      padding: 1rem;
  }
  
  .adopt-a-pet .dogs .boxes .box .content .text,
  .adopt-a-pet .parrot .boxes .box .content .text,
  .adopt-a-pet .cats .boxes .box .content .text
  {
      padding-bottom: 1rem;
  }
  
  .adopt-a-pet .dogs .boxes .box .content .text h4,
  .adopt-a-pet .parrot .boxes .box .content .text h4,
  .adopt-a-pet .cats .boxes .box .content .text h4
  {
      color: white;
      font-weight: 500;
      font-size: 1.2rem;
      padding-bottom: 0.5rem;
  }
  
  .adopt-a-pet .dogs .boxes .box .content .text p,
  .adopt-a-pet .parrot .boxes .box .content .text p,
  .adopt-a-pet .cats .boxes .box .content .text p
  {
      font-size: 0.8rem;
      color: var(--color-p);
  }
  
  .adopt-a-pet .dogs .boxes .box .content .price,
  .adopt-a-pet .parrot .boxes .box .content .price,
  .adopt-a-pet .cats .boxes .box .content .price
  {
      display: flex;
      flex-direction: row;
      align-items: center;
      text-align: center;
      justify-content: center;
      gap: 10px;
  }
  
  .adopt-a-pet .dogs .boxes .box .content .price h5,
  .adopt-a-pet .parrot .boxes .box .content .price h5,
  .adopt-a-pet .cats .boxes .box .content .price h5
  {
      color: #F2B918;
      font-size: 1.2rem;
      font-weight: 600;
  }
  
  .adopt-a-pet .dogs .boxes .box .content .price span,
  .adopt-a-pet .parrot .boxes .box .content .price span,
  .adopt-a-pet .cats .boxes .box .content .price span
  {
      text-decoration: line-through;
      color: var(--color-black-light);
      font-size: 0.9rem;
      font-weight: 400;
      color: #1a1a1a;
  }
  
  .adopt-a-pet .dogs .boxes .box .btn,
  .adopt-a-pet .parrot .boxes .box .btn,
  .adopt-a-pet .cats .boxes .box .btn
  {
      padding: 10px 30px;
      background-color: #F2B918;
      cursor: pointer;
      border-radius: 15px;
  }
  
  .adopt-a-pet .dogs .boxes .box .btn:hover,
  .adopt-a-pet .parrot .boxes .box .btn:hover,
  .adopt-a-pet .cats .boxes .box .btn:hover
  {
      background-color: #F2B918;
  }
  
  .adopt-a-pet .dogs .boxes .box .btn a,
  .adopt-a-pet .parrot .boxes .box .btn a,
  .adopt-a-pet .cats .boxes .box .btn a
  {
      color: black;
      font-size: 1rem;
      text-decoration: none;
  }
  @media screen and (max-width:480px)
  {
  .adopt-a-pet .dogs
      {
          flex-wrap: wrap;
      }
      .adopt-a-pet .dogs .pic
      {
          width: 100%;
      }
      .adopt-a-pet .dogs .boxes
      {
          width: 100%;
          flex-wrap: wrap;
      }
      .adopt-a-pet .dogs .boxes .box img
      {
          width: 100px;
      }
   
      /* cat */
      .adopt-a-pet .cats
      {
          flex-wrap: wrap;
      }
      .adopt-a-pet .cats .pic
      {
          width: 100%;
      }
      .adopt-a-pet .cats .boxes
      {
          width: 100%;
          flex-wrap: wrap;
      }
     /*  .adopt-a-pet .cats .boxes .box img
      {
          width: 100%;
      } */
      /* Parrot */
      .adopt-a-pet .parrot
      {
          flex-wrap: wrap;
      }
      .adopt-a-pet .parrot .pic
      {
          width: 100%;
      }
      .adopt-a-pet .parrot .boxes
      {
          width: 100%;
          flex-wrap: wrap;
      }
      .adopt-a-pet .parrot .boxes .box img
      {
          width: 100%;
      }
      /* Rabbit */
      .adopt-a-pet .rabbit
      {
          flex-wrap: wrap;
      }
      .adopt-a-pet .rabbit .pic
      {
          width: 100%;
      }
      .adopt-a-pet .rabbit .boxes
      {
          width: 100%;
          flex-wrap: wrap;
      }
      .adopt-a-pet .rabbit .boxes .box img
      {
          width: 100%;
      }
    }


    /*WHAPSAaP*/


.container-boton{

  position: fixed;
  z-index: 999;
  border-radius: 50%;
  bottom: 40px;
  right: 15px;
  padding: 2px;
  transition: ease 0.3s;
  animation: efecto 1.2s infinite;
}

.container-boton:hover{
  transform: scale(1.1);
  transition: 0.3s;
}

.boton{
  width: 50px;
  transition: ease 1s;
}

@keyframes efecto{
  0%{
      box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.85);
  }
  100%{
      box-shadow: 0 0 0 25px rgba(0, 0, 0, 0);
  }
}

/*WHAPSAaP*/
.separator {
  height: 5px;
  background: linear-gradient(to right, #f00, #00f);
  margin: 2em 0;
}



/* ==== Craft Beer Section ==== */
.craft-beer-section {
  background: transparent;
  padding: 60px 0 40px 0;
  width: 100%;
}

.craft-beer-section .beer-flex {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.beer-img-box {
  flex: 1 1 320px;
  min-width: 260px;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.beer-img-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  z-index: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 60% 40%, #f10000cc 0%, #f10000cc 60%, transparent 100%);
  filter: blur(18px) saturate(1.2);
  pointer-events: none;
}
.beer-img-bg.bg-ipa {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  z-index: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 60% 40%, #ff9100cc 0%, #ff9100cc 60%, transparent 100%);
  filter: blur(18px) saturate(1.2);
  pointer-events: none;
}
/* Irish Red Ale - color rojo */
.beer-img-bg.bg-irish {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  z-index: 1;
  border-radius: 50%;
 background: radial-gradient(circle at 60% 40%, #d7263dcc 0%, #d7263dcc 60%, transparent 100%);
  filter: blur(18px) saturate(1.2);
  pointer-events: none;
}

/* Irish Red Ale - color rojo */
.beer-img-bg.bg-irish {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  z-index: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 60% 40%, #ffe066cc 0%, #ffe066cc 60%, transparent 100%);
  filter: blur(18px) saturate(1.2);
  pointer-events: none;
}
/* Marcumango - color moradito */
.beer-img-bg.bg-maracumango {
    position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  z-index: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 60% 40%, #b6c642 0%, #b6c642 60%, transparent 100%);
  filter: blur(18px) saturate(1.2);
  pointer-events: none;
}

.beer-img-main {
  /* max-width: 150px;
  width: 100%; */
  border-radius: 12px;
  position: relative;
  z-index: 2;
}

.beer-info-box {
  flex: 2 1 340px;
  min-width: 260px;
  margin: 8px;
  color: #aaa;
}

.beer-info-box h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #F2B918;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}

.beer-info-box h2 span {
  color: #fff;
  font-weight: bold;
}

.beer-info-box p {
  color: #aaa;
  margin-bottom: 1rem;
  font-size: 1.08rem;
}

.beer-info-stats {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 1rem;
}

.beer-stat-value {
  font-size: 1.7rem;
  font-weight: bold;
  color: #aaa;
  display: block;
}

.beer-stat-label {
  font-size: 0.9rem;
  color: #888;
  display: block;
}

.beer-stat-divider {
  border-left: 2px solid #F2B918;
  height: 32px;
}

.beer-presentations {
  font-size: 1rem;
  color: #888;
}

@media (max-width: 900px) {
  .craft-beer-section .beer-flex {
    flex-direction: column;
    gap: 2.5rem;
    padding: 0 1rem;
  }
  .beer-info-box {
    padding: 0;
    text-align: center;
  }
    .beer-info-stats {
    justify-content: center;
    text-align: center;
  }
}
.swiper-button-next:after, .swiper-button-prev:after {
  color: #F2B918; /* Cambia el color de las flechas */
  font-size: 24px; /* Ajusta el tamaño de las flechas */
}

.barril-banner {
  background: #F2B918;
  color: #222;
  font-weight: 600;
  text-align: center;
  padding: 12px 0;
  font-size: 1.1em;
  border-radius: 8px;
  /* margin: 18px 0; */
  box-shadow: 0 2px 8px #0002;
  letter-spacing: 0.5px;
}
.barril-banner i {
  margin-right: 8px;
  color: #222;
}
.barril-card {
  background: #181818;
  border: 2px solid #F2B918;
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 2px 8px #0002;
  margin: 18px 0;
}
.barril-img {
  width: 70px;
  margin-bottom: 10px;
}
.barril-animado {
  background: #F2B918;
  color: #222;
  padding: 18px 24px;
  border-radius: 12px;
  font-size: 1.25em;
  font-weight: 700;
  text-align: center;
  margin: 24px auto;
  box-shadow: 0 2px 12px #0001;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  animation: barrilFadeIn 1.2s;
}
.beer-emoji {
  font-size: 2em;
  animation: barrilBounce 1.2s infinite alternate;
}
.barril-highlight {
  color: #fff;
  background: #222;
  padding: 2px 10px;
  border-radius: 8px;
  margin: 0 4px;
  animation: barrilPulse 1.5s infinite alternate;
}
.barril-sub {
  display: block;
  font-size: 0.85em;
  font-weight: 400;
  margin-top: 6px;
  color: #222;
  letter-spacing: 0.5px;
}
@keyframes barrilFadeIn {
  from { opacity: 0; transform: translateY(-30px);}
  to { opacity: 1; transform: translateY(0);}
}
@keyframes barrilBounce {
  from { transform: translateY(0);}
  to { transform: translateY(-10px);}
}
@keyframes barrilPulse {
  from { background: #222; color: #fff;}
  to { background: #F2B918; color: #222;}
}

    .linea {
      display: flex;
      align-items: center;
      margin-bottom: 12px;
      font-size: 14px;
    }

    .titulo {
      width: 70px;
      font-weight: bold;
    }

    .etiqueta-izq, .etiqueta-der {
      width: 50px;
      text-align: center;
    }

    .estrellas {
      display: flex;
      gap: 3px;
      margin: 0 20px;
    }

    .fa-star {
      color: #FFD700;
    }

    .fa-regular.fa-star {
      color: #555;
    }
    .fa-solid{
      color: #FFD700;
    }
    
    
    
    .swiper-slide a{
      text-decoration: none;
    }
    
  .swiper-pagination{
      display:none;
  }
  

.btnn {
    padding: 12px 80px;
    background-color: #F2B918;
    cursor: pointer;
    border-radius: 15px;
    color:#000000;
    border:none;
    }
    
    @media (max-width: 768px) {
          .medidor {
            display: grid;
            align-items: center;
            text-align: center;
            justify-content: center;
          }
          .footer__col h3{
              margin: 10px;
              color: #F2B918;
          }
    }

      .footer__col h3{
              margin: 10px;
              color: #F2B918;
          }
@media (max-width: 768px) {
  .hero-bg {
    background-image: url("images/tienda/trigo85px.webp");
  }
  .santa-img {
    width: 170px !important;
    height: auto;
  }
  .about-text2 h2 {
    font-size: 40px;

  }
      .adopt-a-pet .parrot .pic {
        height: 350px;
    }
}
  .santa-img {
    width: 200px !important;
    height: auto;
  }