html {
  scroll-behavior: smooth;
}
img {
    aspect-ratio: auto;
    object-fit: cover;
}
/* =========================================
   VARIABLES DE COLOR Y TIPOGRAFÍA
========================================= */

:root {
  --color-amarillo: #FFD930;
  --color-marron:#BF9353;

  --color-rojo: #E30613;
  --color-naranja: #F99D25;

  --color-negro: #000;
  --color-gris-oscuro: #333;
  --color-gris: #666;
  --color-blanco: #fff;

  --font-primary: "Barlow", sans-serif;
  --font-secondary: "Bebas Neue", sans-serif; 
}

/***/
.cintillo{
  text-transform: uppercase;
  
  padding-top: 7px;
  padding-bottom: 5px;
  line-height: 18px;
}
.cintillo a{
  text-decoration: underline;
  color:initial;
}
.cintillo p{
  line-height: 115%;
  margin:0;
  padding:0;
}

.video-home{
  position: relative;
  overflow:hidden;
  width: 100%;
}



/*** css recomendado lenis scroll ***/

  html.lenis {
    height: auto;
  }
  
  .lenis.lenis-smooth {
    scroll-behavior: auto;
  }
  
  .lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }
  
  .lenis.lenis-stopped {
    overflow: hidden;
  }
  
  .lenis.lenis-scrolling iframe {
    pointer-events: none;
  }
/** menú **/
.nav-link:focus, .nav-link:hover {
       color: var(--color-rojo);
}
.menu__box{
    padding: 0;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items:center;
}
.menu__box li{
    list-style-type: none;
    font-weight: 700;
    font-size: 16px;
}
.menu__box li a{
  color: var(--color-negro);
  font-family: var(--font-secondary);
  font-size: 25px;
  letter-spacing: 0.75px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

.menu-top{
  display:flex;
  justify-content:end;
  align-items:center;
  line-height: 0;
  position: absolute;
  right: 0;
}
.menu-items-container{
  display:flex;
  border-radius: 44px;
  border-radius: 44px;
  background: rgba(253, 197, 11, 0.95);
  padding: 5px;
  /*position: absolute;
  left: 50%;
  transform: translateX(-50%);*/
}
.idioma a{
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  font-family: var(--font-secondary);
  margin-bottom: 0;
  color:  var(--color-rojo);
  text-transform: uppercase;
  margin-left: 3px;
  padding: 0;
}
.idioma a:not(:first-child)::before{
  content:'/';
      margin-right: 3px;
}
.menu__box li a:hover, .menu__box li a.active{
    color: var(--color-rojo);
}
.dropdown-item.active{background:#ffffff !important}
.hamburger-menu input[type="checkbox"], .hamburger-menu input[type="checkbox"]:before, .hamburger-menu  input[type="checkbox"]:after{
    display: none;
}
.hamburger-menu{
  display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}
.hamburger-menu .row{
  width: 100%;
   align-items: center;
    justify-content: center;
}
.navbar{
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 0;
  padding-right: 0;
  align-items:center;
  z-index: 600;
    position: fixed;
    top: 0;
    width: 100%;
}
/*** fin css recomendado lenis scroll ***/


body {
  background-color: var(--color-amarillo);
  font-family: var(--font-primary);
  color: var(--color-negro);
  padding-top: 86px; 
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
  font-family: var(--font-secondary);
  text-transform: uppercase;
}

h1, .h1 {
  font-style: normal;
  font-size: clamp(2.8rem, 6vw + 1rem, 6.25rem);  /* 40px → 96px → 100px aprox */
  line-height: 0.84;
}
h1{
  padding-top: 75%;
}

h2, .h2 {
  font-style: normal;
  font-size: clamp(1.8rem, 3vw + 0.5rem, 2.8125rem); /* 28px → 40px → 45px */
  line-height: 0.95;
}
h3, .h3 {
  font-size: clamp(1.4rem, 2.2vw + 0.4rem, 2.0625rem); /* 20px → 28px → 33px */
  line-height: 1.03; 
}
h4, .h4{
  font-size: clamp(1rem, 1.2vw + 0.6rem, 1.4375rem);
}

.container{
  max-width: 1450px;
}
p {
  font-family: var(--font-primary);
  font-size: 17px;
  margin-bottom: 16px;
  color: var(--color-negro);
}
.rojo{
  color: var(--color-rojo);
}
.negro {
  color: var(--color-negro);
}
.blanco, .blanco p  {
  color: var(--color-blanco);
}
.amarillo{
  color: var(--color-amarillo);
}
.bg-amarillo {
  background-color: var(--color-amarillo);
}
.bg-naranja {
  background-color: var(--color-naranja);
}
.bg-marron {
  background-color: var(--color-marron);
}
.bg-blanco{
  background-color: var(--color-blanco);
}
.bg-rojo {
  background-color: var(--color-rojo);
}
.btn {
  font-family: var(--font-secondary);
  display: inline-flex;
  align-items: center;
  padding: 7px 40px 5px 27px;
  border-radius: 40px;
  text-transform: uppercase;
  font-size: 25px;
  letter-spacing: 1px;
  line-height: normal;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}
.etiqueta{
  color: var(--color-naranja);
  background-color: transparent;
  border: 2px solid var(--color-naranja);
  padding: 7px 13px 3px 13px;
  border-radius: 40px;
  display: inline-block;
  position: absolute;
    top: 0;
}
section{
  margin-bottom: 100px
}

.btn-blanco, a.btn-blanco {
  background-color:  var(--color-blanco);
  border: 2px solid var(--color-blanco);
  color: var(--color-rojo) !important;
}
.btn-blanco::after{
  content:url(../img/arrow-red.svg);
  position: absolute;
  right: 13px;
}
.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px); /* Elevación sutil, no altera el layout */
      box-shadow: 0 5px 24px rgb(107 36 0 / 17%);
    filter: brightness(1.03); /* Ligero realce */
}
.btn:active {
  transform: translateY(-1px); /* feedback táctil */
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}
.enlace-externo::after{
  transform: rotate(315deg);
}
.btn-rojo {
  background-color: var(--color-rojo);
  border: 2px solid var(--color-rojo);
  color: var(--color-blanco);
}
.btn-rojo:hover{
  color:var(--color-blanco);;
}
.btn-rojo::after{
  content:url(../img/arrow-white.svg);
  position: absolute;
  right: 13px;
}
.to-top{
  position: fixed;
    right: 16px;
    bottom:95px;
    width: 45px;
    height: 45px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
}
.to-top::after{
      transform: rotate(270deg);
}
.to-top[hidden]{ display: none; }

.to-top__icon{
  width: 24px;
  height: 24px;
  display: block;
}
/* WCAG foco visible */
.to-top:focus-visible{
  outline: 3px solid #000;
  outline-offset: 3px;
}
.border-radius{
border-radius: 20px;
}
.cabecera-interior{
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.bg-historia{
  background-image: url(../img/fachada-osborne.webp);
}
.bg-productos{
  background-image: url(../img/cola-veterano-lifestyle.webp);
}
.bg-eventos{
  background-image: url(../img/ole-parties-escenario.webp);
}
.bg-cocteles{
  background-image: url(../img/cocteles-combinados-veterano.webp);
}
.bg-hero-interior h1{
  padding-top: 40%;
}
.cabecera-interior.bg-hero-interior::before{
  content:'';
  background-color: #000000;
  opacity: 0.75;
  width: 100%;
  height: 100%;
}
.cabecera-interior div{
  z-index:2;
}
.cabecera-interior::before{
  content:'';
  position: absolute;
  left:0;
  top:0;
  height: 100%;
  width: 50%;
  opacity: 0.8;
  border-radius:20px;
  background: #000000;
  background: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  background: -moz-linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
}
.breadcrumb{
  background-color: transparent;
  padding-top: 30px;
}
.breadcrumb-item a{
  color:var(--color-negro);
  text-decoration: none;
}
.breadcrumb-item.active{
  color:var(--color-negro);
  font-weight: bold;
}
.breadcrumb-item+.breadcrumb-item::before{
  color:var(--color-rojo);
}
.text-style ul li:not(:last-child), .text-style ol li:not(:last-child){
  margin-bottom: 10px;
}
.text-style ul li::marker, .text-style ol li::marker{
  color:var(--color-rojo);
  font-weight: bold
}
.after-rojo{
  position: relative;
  display: flex;
  justify-content: center;
}
.after-rojo::after{
  content:'';
  background-color: var(--color-rojo);
  position: absolute;
  bottom: -5px;
  width: 80%;
  height: 10px;
  z-index:1;
}
.link-text a{
  font-weight: bold;
  text-decoration: underline;
  color:#000000;
}
.capa-trama-naranja{
  position: relative;
  background-color: var(--color-naranja);
  padding-top: 10%;
  padding-bottom: 15px;
}
.capa-trama div {
  z-index:2;
  position: relative;
}
.capa-trama{
  position: relative;
}
.capa-trama::after{
  content:'';
  background-image: url(../img/capa-trama.webp);
  background-size: cover;
  background-position: top center;
  position: absolute;
  top: 0px;
  left:0px;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
.capa-trama-header::after{
  max-height: 200px;
}
.aspect-16_9 {
    aspect-ratio: 16 / 9;
}
.aspect-9_16 {
    aspect-ratio: 9 / 16;
}
.aspect-19_9 {
    aspect-ratio: 19 / 9;
}
.aspect-9_12 {
    aspect-ratio: 9 / 12;
}
.aspect-4_5 {
    aspect-ratio: 4 / 5;
}
.bg-img {
    align-items: center;
    display: flex;
    justify-content: center;
     transition: transform 0.3s ease;
}
.bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slick-campanas .slick-slide{
  margin-right: 15px;
}
.slick-campanas .slick-list {
  padding-left: 0 !important;
  padding-right: 200px !important; /* ajusta este valor a lo que quieras */
}
.slick-campanas .slick-next, .slider-tres-items .slick-next{
    right: 50px !important;
}
.slick-campanas .slick-prev, .slider-tres-items .slick-prev {
    left: inherit!important;
    right: 100px!important;
}
.slick-campanas .slick-next, .slick-prev, .slider-tres-items .slick-next{
  top:-60px!important;
}
.slick-campanas .slick-next:before, .slick-campanas .slick-prev:before, .slider-tres-items .slick-next:before, .slider-tres-items .slick-prev:before{
  content: url(../img/arrow-white.svg) !important;
  background-color: var(--color-rojo);
  color: var(--color-blanco);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s ease;
  opacity: 1!important;
}
.slick-campanas .slick-prev:before, .slider-tres-items .slick-prev:before  {
    transform: rotate(180deg);
}
footer .texto-movimiento-animation{
  opacity: 0.3;
}
.producto-card-bg {
  position: relative;
  background-size: cover;
  min-height: 550px;
  background-position: center;
  padding: 40px 20px 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}
.producto-card-text{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-start;
}
.producto-detalle-img{
  min-height: 90vh;
}
.producto-card-trama1{
  background-image: url('../img/trama-gradient-1.webp'); 
}
.producto-card-trama2{
  background-image: url('../img/trama-gradient-2.webp'); 
}
.producto-card-trama3{
  background-image: url('../img/trama-gradient-3.webp'); 
}
.producto-img {
  max-width: 125px;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}
.producto-img-lata {
    max-width: 175px;
}
.producto-card:hover .producto-card-bg, .producto-card:hover .bg-img{
  transform: translateY(-6px);
}
.producto-card:hover .producto-img {
  transform: translateY(-8px);
}
.producto-card {
    padding: 10px;
}
.producto-card h3{
  position: relative;
      display: inline-block;
      max-width: 90%;
}
.producto-card h3::after{
  content:url(../img/arrow-red.svg);
  position: absolute;
  top: -4px;
  right: -25px;
}
.bullets-white li{
  list-style-type: none;
  position: relative;
  color:var(--color-blanco);
}
.bullets-white li p{
  color:var(--color-blanco);
}
.bullets-white li::after{
  content:url(../img/arrow-white.svg);
  position: absolute;
      top: 0px;
    left: -30px;
}
.bullets-white h4{
  margin-bottom: 0;
}
.card-border-rojo{
  border:5px solid red;
}
.enlaces a{
  color: var(--color-negro);
  text-decoration: none;
  font-size: 13px;
  margin-right: 20px;
  font-family: var(--font-primary);
}
.video-recorte{
  overflow:hidden;
}
.video-recorte video{
  width: 101%;
}
/*********
**********
LAPTOP.  (lg)
**********
*********/

@media screen and (max-width:1200px) {
}



/*********
**********
TABLET. (md)
**********
*********/

@media screen and (max-width:992px) {
   /** MENÚ **/
    #menu__toggle {
      opacity: 0;
    }
    #menu__toggle:checked + .menu__btn > span {
      transform: rotate(45deg);
    }
    #menu__toggle:checked + .menu__btn > span::before {
      top: 0;
      transform: rotate(0deg);
    }
    #menu__toggle:checked + .menu__btn > span::after {
      top: 0;
      transform: rotate(90deg);
    }
    #menu__toggle:checked ~ .menu__box {
      right: 0 !important;
    }
    #clic:checked ~ .menu__box {
      right: -100% !important;
    }
    .menu-items-container{
      display: block
    }
    .menu__btn {
    position: absolute;
    right: 12px;
    width: 26px;
    height: 26px;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    margin-bottom: 0;
    }
    .menu__btn > span,
    .menu__btn > span::before,
    .menu__btn > span::after {
      display: block;
      position: absolute;
      width: 100%;
      height: 3px;
      background-color: var(--color-rojo);
      transition-duration: .25s;
    }
    .menu__btn > span::before {
      content: '';
      top: -8px;
    }
    .menu__btn > span::after {
      content: '';
      top: 8px;
    }
    .menu__box {
      display: block;
      position: fixed;
      top: 0;
      right: -100%;
      width: 300px;
      height: 20000px;
      margin: 0;
      padding: 180px 0;
      list-style: none;
      background-color: rgb(255 217 48 / 95%);
      box-shadow: 2px 2px 6px rgba(0, 0, 0, .4);
      transition-duration: .25s;
      z-index: 900;
    }
    .menu__box li{
        padding-right: 12px;
    }
    .menu__box li a{
          font-size: 20px;
    }
    .menu__item {
      display: block;
      padding: 12px 0;
      color: #333;
      font-size: 20px;
      font-weight: 600;
      text-decoration: none;
      transition-duration: .25s;
      text-align: right;
    }
    .menu__item:hover {
      background-color: transparent;
    }
    .menu-top {
      justify-content: flex-start;
      text-align: left;
      padding-left: 35px;
      margin-top: 20px;
  }
  .navbar{
    height: 85px;
  }
  .dropdown-menu {
      position: relative;
      background-color: transparent;
      border: 0;
      padding: 0;
      float: none;
      text-align: right;
      
  }
  .dropdown-menu a{
      font-weight: 600 !important;
      padding-right: 20px;
  }
  .menu-items-container{
        background: transparent;
  }
  /**fin menú**/
  .bg-img {
    margin-bottom: 40px;
  }
  .slick-campanas .slick-list, .slider-tres-items .slick-list{
    padding-left: 0 !important;
    padding-right: 50px !important; /* ajusta este valor a lo que quieras */
  }
  .bg-cover{
      height: 80vh;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  .img-cover{
      height: 100%;
      width: auto;
    margin-left: 20px;
  }
}



/*********
**********
MOBILE. (sm)
**********
*********/

@media screen and (max-width:768px) {
  .cabecera-interior::before{
    top:inherit;
    bottom: 0;
    height: 80%;
    width: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  }
  section {
    margin-bottom: 80px;
  }
  .slick-campanas .slick-list, .slider-tres-items .slick-list {
    padding-left: 0 !important;
    padding-right: 100px !important; /* ajusta este valor a lo que quieras */
  }
  .slick-campanas .slick-next:before, .slick-campanas .slick-prev:before, .slider-tres-items .slick-next:before, .slider-tres-items .slick-prev:before{
    width: 35px;
    height: 35px;
    margin-top: 20px;
    padding: 21px;
  }
  .producto-img {
    max-width: 75px;
  }
  .producto-img-lata{
    max-width: 120px;
  }
  .producto-card-bg{
    min-height: 380px;
  }
  .producto-detalle-img img{
    max-height:350px;
  }
  .etiqueta{
    position: relative;
    margin-bottom: 4rem
  }
  .enlaces a{
    display: block;
    margin-right: 0;
  }
  .slick-campanas .slick-next, .slider-tres-items .slick-next {
    right: 35px !important;
  }
  .slick-campanas .slick-prev, .slider-tres-items .slick-prev {
    left: inherit !important;
    right: 86px !important;
  }
}

/*********
**********
MOBILE SMALL. 

**********
*********/

@media screen and (max-width:576px) {
}

/*YOUTUBE*/
.yt-video{width:100%; min-height:400px; cursor:pointer; background-repeat: no-repeat; background-position:center center; background-size:contain; position:relative
}
.yt-video-enoteca{
   min-height:200px;
}
.yt-video::before{
  content:"";
  background: url("../img/youtube_btn.svg") no-repeat center center;
  background-size: auto;
  background-size: 64px 64px;
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: .8;
  filter: alpha(opacity=80);
  transition: all 0.2s ease-out;
}
.yt-video:hover::before{
  background: url("../img/youtube_btn_hover.svg") no-repeat center center;
  background-size: auto;
  background-size: 64px 64px;
}
.yt-video-responsive {
  overflow: hidden;
  padding-bottom: 0px;
  position: relative;
}
.yt-video-responsive iframe, .video-responsive object, .video-responsive embed {
  height: 100%;
  width: 100%;
  left: 0;
  position: absolute;
  top: 0;
}

.wpml-ls-display{displat:none}
.wpml-ls-item{text-transform:uppercase}
.text-a-white .wpml-ls-current-language a{color:#87D5AD}
.wpml-ls-item{
  position: relative;
}
.wpml-ls-item:not(:last-child):after{
  content:'|';
  position: absolute;
    right: -2px;
    top: 2px;
}
.wpml-ls-legacy-list-horizontal{
  padding:0 !important;
}


.mute_button {
  position: absolute;
  right: 25px;
  top: 25px;
  z-index: 2;
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
  /* Por defecto: muteado */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640' fill='%23ffffff'%3E%3Cpath d='M73 39.1C63.6 29.7 48.4 29.7 39.1 39.1C29.8 48.5 29.7 63.7 39 73.1L567 601.1C576.4 610.5 591.6 610.5 600.9 601.1C610.2 591.7 610.3 576.5 600.9 567.2L351.9 318.2L351.9 130.9C351.9 111.7 336.3 96.1 317.1 96.1C308.6 96.1 300.4 99.2 294 104.9L211.8 178L73 39.1zM122.2 224L112 224C85.5 224 64 245.5 64 272L64 368C64 394.5 85.5 416 112 416L160 416L294.1 535.2C300.5 540.9 308.7 544 317.2 544C336.4 544 352 528.4 352 509.2L352 453.8L122.2 224zM471.3 174.4C462.9 184.7 464.5 199.8 474.8 208.2C507.3 234.6 528 274.9 528 320C528 353 516.9 383.4 498.2 407.7L532.4 441.9C559.6 408.8 576 366.3 576 320C576 259.9 548.3 206.2 505.1 171C494.8 162.6 479.7 164.2 471.3 174.5zM428.5 338L463.8 373.3C474 358.1 480 339.7 480 320C480 289.9 466.1 263.1 444.5 245.5C434.2 237.1 419.1 238.7 410.7 249C402.3 259.3 403.9 274.4 414.2 282.8C425.1 291.6 431.9 305 431.9 320.1C431.9 326.5 430.7 332.5 428.4 338.1z'/%3E%3C/svg%3E");
}

/* Estado con sonido activo */
.mute_button.unmuted {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640' fill='%23ffffff'%3E%3Cpath d='M112 416L160 416L294.1 535.2C300.5 540.9 308.7 544 317.2 544C336.4 544 352 528.4 352 509.2L352 130.8C352 111.6 336.4 96 317.2 96C308.7 96 300.5 99.1 294.1 104.8L160 224L112 224C85.5 224 64 245.5 64 272L64 368C64 394.5 85.5 416 112 416zM505.1 171C494.8 162.6 479.7 164.2 471.3 174.5C462.9 184.8 464.5 199.9 474.8 208.3C507.3 234.7 528 274.9 528 320C528 365.1 507.3 405.3 474.8 431.8C464.5 440.2 463 455.3 471.3 465.6C479.6 475.9 494.8 477.4 505.1 469.1C548.3 433.9 576 380.2 576 320.1C576 260 548.3 206.3 505.1 171.1zM444.6 245.5C434.3 237.1 419.2 238.7 410.8 249C402.4 259.3 404 274.4 414.3 282.8C425.1 291.6 432 305 432 320C432 335 425.1 348.4 414.3 357.3C404 365.7 402.5 380.8 410.8 391.1C419.1 401.4 434.3 402.9 444.6 394.6C466.1 376.9 480 350.1 480 320C480 289.9 466.1 263.1 444.5 245.5z'/%3E%3C/svg%3E");
}