@charset "UTF-8";

/*--------------------------------------------------------------
>>> TABLA DE CONTENIDO:
----------------------------------------------------------------
# Normalize
# Forms
# Links
# Transitions
# Utilities
# Header
# Panel Side Mobile
# Footer

# Hero
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
@font-face {
    font-family: "DM Serif Display", "sans-serif";
    src: url('../../assets/fonts/DMSerifDisplay-Regular2') format('woff2'),
        url('../../assets/fonts/DMSerifDisplay-Regular') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url('../../assets/fonts/Manrope-Regular.woff2') format('woff2'),
        url('../../assets/fonts/Manrope-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SourceSerif4";
    src: url('../../assets/fonts/SourceSerif4-SemiBold.woff2') format('woff2'),
        url('../../assets/fonts/SourceSerif4-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SourceSerif4";
    src: url('../../assets/fonts/SourceSerif4-Medium.woff2') format('woff2'),
        url('../../assets/fonts/SourceSerif4-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'AwesomeSerif-MediumTall';
    src: url('../../assets/fonts/AwesomeSerif-MediumTall.woff2') format('woff2'),
         url('../../assets/fonts/AwesomeSerif-MediumTall.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'AwesomeSerifItalic-MediumTall';
    src: url('../../assets/fonts/AwesomeSerifItalic-MediumTall.woff2') format('woff2'),
         url('../../assets/fonts/AwesomeSerifItalic-MediumTall.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

*, ::after, ::before {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Manrope";
    background-color: #ffffff;
    color: #000;
    font-size: 16px;
    position: relative;
}

p {
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,h2,h3,h4,h5,h6 {
    font-family: "DM Serif Display", "sans-serif";
    font-weight: 500;
    letter-spacing: -0.05em;
    margin-top: 0;
    margin-bottom: 20px;
}

h2 {
    font-size: 3.125rem;
    line-height: 3.25rem;
}

h3 {
    font-size: 1.625rem;
    line-height: 1.875rem;
}

img {
    max-width: 100%;
    height: auto;
}

/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/
a:hover, a:focus, a:active {
  color: #fff;
  text-decoration: none;
}
a:focus {
  outline: 0;
}
a:hover, a:active {
  outline: 0;
}

/*--------------------------------------------------------------
# Transitions
--------------------------------------------------------------*/
a, .cta, img, svg, .menu, .item_vino {
    text-decoration: none;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    letter-spacing: normal;
    color: #2d3020;
}
/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
main {
    display: block;
    position: relative;
}

.container {
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1358px;
}

.cta {
    background-color: #f5c74d;
    color: #8e4f01;
    border: 1px solid #8e4f01;
    font-size: 0.938rem;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 9px 24px;
    border-radius: 45px;
    position: relative;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta:hover{
    background-color: #8e4f01;
    color: #f5c74d;
    text-decoration: none;
}

.btn-whatsapp {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 9999;
    color: #fff;
    background-color: #4dc247;
    box-shadow: 0 0 6px rgba(0, 0, 0, .3);
    border-radius: 50%;
}
.btn-whatsapp svg {
    width: 45px;
    height: 45px;
    padding: 10px;
    fill: #fff;
    vertical-align: middle;
}

.mb-24 {
    margin-bottom: 24px;
}

.d-none {
    display: none !important;
}

@media (min-width: 576px) {
    .d-sm-block {
        display: inline-block !important;
    }
}

@media (min-width: 992px) {
    .d-lg-none {
        display: none !important;
    }
    .d-lg-block {
        display: inline-block !important;
    }
}

.rounded-24 {
    border-radius: 24px;
}
/* --------------------------------------------------------------
# Preloader
-------------------------------------------------------------- */
#preloader {position: fixed;inset: 0;background: #ffffff;z-index: 9999;display: flex;align-items: center;justify-content: center;transition: opacity .6s ease, visibility .6s ease;}
#preloader.hide {opacity: 0;visibility: hidden;}
.loader span {width: 10px;height: 10px;margin: 0 4px;background: #000;border-radius: 50%;display: inline-block;animation: bounce 1.2s infinite ease-in-out both;}
.loader span:nth-child(2) { animation-delay: -.16s; }
.loader span:nth-child(3) { animation-delay: -.32s; }@keyframes bounce {0%, 80%, 100% { transform: scale(0); }40% { transform: scale(1); }}
/* --------------------------------------------------------------
# Header
-------------------------------------------------------------- */
.Web-Header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 35px 0 0;
}

.main-header .header-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
}

.header-row > [class^=col-header] {
    display: flex;
    align-items: stretch;
    position: static;
}

.header-row .col-header {
    flex-basis: 0;
    flex-grow: 0.33;
    max-width: 100%;
    width: 100%;
    min-height: 1px;
    align-items: center;
}

.header-row .col-header.col-header_center {
    -ms-flex-pack: center;
    justify-content: center;
    flex-grow: 0.6;
}

.header-row .col-header.col-header_left,
.header-row .col-header.col-header_right {
    flex-grow: 0.2;
}

.header-row .col-header.col-header_right {
    justify-content: flex-end;
}

.main-navigation {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: auto;
}

.main-navigation > ul {
    position: relative;
    display: flex;
    width: 100%;
    vertical-align: middle;
    height: 100%;
}

.main-navigation ul {
    font-weight: normal;
    font-size: 0.938rem;
    list-style: none;
    margin: 0px 0px;
    padding: 0px 0px;
}

.main-navigation > ul > li {
    margin: 0px 5px;
    padding: 0px 0px;
    float: left;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

.main-navigation ul > li > a {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    text-align: center;
    outline: none;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
    padding: 6px 24px;
    text-transform: uppercase;
    border: 1px solid #fff;
    border-radius: 35px;
}

.col-header.col-header_right .main-navigation ul > li:last-child a {
    background-color: #f5c74d;
    border-color: #f5c74d;
    color: #8e4f01;
}

.main-navigation ul li.dropdown {
    position: relative;
}

.dropdown a::after {
    content: '';
    display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: -0.125em;
  margin-right: -5px;
    margin-left: 5px;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M4.43 8.512a.75.75 0 0 1 1.058-.081L12 14.012l6.512-5.581a.75.75 0 0 1 .976 1.138l-7 6a.75.75 0 0 1-.976 0l-7-6a.75.75 0 0 1-.081-1.057' clip-rule='evenodd'/%3E%3C/svg%3E");
}

.dropdown .subMenu {
    position: absolute;
    top: 35px;
    right: 0;
    width: 100%;
    padding-top: 5px;
    opacity: 0;
    visibility: hidden;
}
.dropdown .subMenu li {}
.dropdown .subMenu li a {
    justify-content: center;
}
.dropdown .subMenu li a::after {
    display: none;
}
.dropdown:hover .subMenu {
    opacity: 1;
    visibility: visible;
}

.main-nav-mob {
    display: flex;
    align-items: center;
}

.menu-burger {
    position: relative;
    width: 32px;
    height: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-left: 16px;
    cursor: pointer;
    display: flex;
}

.menu-burger > span {
    width: 100%;
    height: 2px;
    background-color: #fff;
    opacity: 1;
    transform: translateY(0) rotate(0);
    transition: all 0.3s;
}

/* BURGER */
.burger {
  width: 32px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1100;
}

.burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: 0.4s ease;
}

.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.burger span:nth-child(3) { bottom: 0; }

/* BURGER → CRUZ */
.burger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 50%;
  bottom: auto;
}

/*--------------------------------------------------------------
# Header Sticky
--------------------------------------------------------------*/
.header-sticky {
    position: fixed;
    top: -200px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #242426;
    opacity: 0;
    -webkit-transition: all 0.7s;
    -moz-transition: all 0.7s;
    -o-transition: all 0.7s;
    -ms-transition: all 0.7s;
    transition: all 0.7s;
    /* border-bottom: 1px solid #8e4f01; */
    padding: 10px 0;
}

.Web-Header.visible .header-sticky {
    top: 0;
    opacity: 1;
}

.header-sticky .main-navigation ul > li > a {
    font-size: 0.875rem;
}

.Web-Header .header-sticky .logo-principal {
    width: 50px;
}

.header-sticky .menu-burger > span {
    width: 100%;
    height: 2px;
    background-color: #8e4f01;
    opacity: 1;
    transform: translateY(0) rotate(0);
    transition: all 0.3s;
}
/*--------------------------------------------------------------
# MENU FULLSCREEN
--------------------------------------------------------------*/
.menu {
  position: fixed;
    inset: 0;
    background: #242426;
    display: flex;
    /* transform: translateY(-100%); */
    /* transition: transform 0.6s ease; */
    z-index: 900;
    pointer-events: none;
    padding: 132px 24px 24px;
    opacity: 0;
    visibility: hidden;
}

.menu.active {
    pointer-events: auto;
  /* transform: translateY(0); */
  opacity: 1;
    visibility: visible;
}

.menu ul {
  list-style: none;
  width: 100%;
}

.menu li {
  margin: 20px 0;
}

.menu a {
    font-size: 1.125rem;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    vertical-align: -webkit-baseline-middle;
    letter-spacing: .1em;
    display: flex;
    width: 100%;
}

.menu a:hover {
    color: #f5c74d;
}

.menu a.cta-tienda {
    padding: 10px 20px;
    border: 1px solid #f5c74d;
    background-color: #f5c74d;
    border-radius: 35px;
    width: max-content;
    color: #8e4f01;
    line-height: 1;
}
.menu a.cta-tienda:hover {
    border: 1px solid #f5c74d;
    background-color: #f5c74d;
    color: #8e4f01;
}
.menu a.cta-idioma {
    padding: 10px 20px;
    border: 1px solid #fff;
    border-radius: 35px;
    width: max-content;
    line-height: 1;
}
.menu a.cta-idioma:hover {
    color: #fff;
}
/*--------------------------------------------------------------
# Home Hero
--------------------------------------------------------------*/
.home_hero {
    /* background-image: url('../../assets/img/fondo-cielo.jpg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat; */
    position: relative;
    min-height: 165vh;
    overflow: hidden;
}
.home_hero .box_titulo {
    position: absolute;
    width: 100%;
    top: 35%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
    text-align: center;
}
.home_hero h1 {
    color: #fff;
    /* font-size: 5.938rem;
    line-height: 5.75rem; */
    font-size: 5.338rem;
    line-height: 5.05rem;
    margin-bottom: 40px;
}
.home_hero p {
    color: #fff;
    font-size: 1.375rem;
    line-height: 1.5rem;
}
.home_hero .img-plantas {
    /* display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom center;
    position: relative;
    z-index: 2;
    pointer-events: none; */
}
/* .carrusel_hero .carrusel-img {
    display: block;
    width: 100% !important;
    height: 818px !important;
    object-fit: cover;
    object-position: top center;
} */
/* HERO LAYER GSAP */
.hero-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
.layer-back {
  z-index: 1;
}
.layer-front {
  z-index: 2;
}
.home_hero h1.AwesomeSerif {
    font-family: 'AwesomeSerif-MediumTall';
    font-weight: 500;
}
/*--------------------------------------------------------------
# Home Historia
--------------------------------------------------------------*/
.seccion_historia {
    position: relative;
    text-align: center;
    background-color: #f5c74d;
    padding: 249px 0;
}
.candado-flotante {
    position: absolute;
    top: -40px;
    right: 8%;
    z-index: 2;
}
.candado-flotante .palabras {
    /* animation: spin 10s linear infinite; */
}
.candado-flotante .candado {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.seccion_historia h2 {
    font-size: 4.625rem;
    line-height: 4.5rem;
    color: #8e4f01;
    max-width: 790px;
    margin: auto;
    margin-bottom: 50px;
}
.seccion_historia .cta {
    margin: auto;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }   
}
/*--------------------------------------------------------------
# Home Resto
--------------------------------------------------------------*/
.seccion_resto {
    background-color: #f5c74d;
    color: #8e4f01;
    font-size: 1.375rem;
    line-height: 1.75rem;
    border-top: 1px solid #8e4f01;
    border-bottom: 1px solid #8e4f01;
    position: relative;
}
.seccion_resto::before {
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 2;
    background-color: #8e4f01;
}
.seccion_resto h2 {
    font-size: 3.125rem;
    line-height: 3rem;
    max-width: 424px;
    margin: auto;
}
.seccion_resto p {
    max-width: 415px;
    margin: auto;
    margin-bottom: 32px;
}
.seccion_resto .img-resto {
    margin: 50px 0;
}
.seccion_resto .cta {
    margin: auto;
}
.seccion_resto .box-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}
.seccion_resto .box-grid > div {
    padding: 44px;
}
.seccion_resto .box-grid > div:first-child {
    text-align: center;
}
.seccion_resto .box-grid > div:last-child {}
.seccion_resto .box-grid > div:last-child img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*--------------------------------------------------------------
# Home Comprar
--------------------------------------------------------------*/
.seccion_comprar {
    background-image: url('../../assets/img/home-comprar.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    text-align: center;
    color: #f5c74d;
    font-size: 1.375rem;
    line-height: 1.75rem;
    padding: 130px 0 470px;
}
.seccion_comprar h2 {
    /* font-size: 4.313rem;
    line-height: 4.188rem; */
    font-size: 4.125rem;
    line-height: 4.25rem;
}
.seccion_comprar h2.AwesomeSerif {
    font-family: 'AwesomeSerif-MediumTall';
    font-weight: 500;
}
.seccion_comprar .cta {
    margin: auto;
    margin-top: 50px;
    background-color: transparent;
    color: #f5c74d;
    border: 1px solid #f5c74d;
}
.seccion_comprar .cta:hover {
    background-color: #f5c74d;
    color: #8e4f01;
}
/*--------------------------------------------------------------
# Vinos
--------------------------------------------------------------*/
.seccion_vinos {
    background-color: #f5b399;
    color: #8e4f01;
    border-bottom: 1px solid #8e4f01;
}
.container_vinos {
    width: 100%;
    max-width: 1440px;
    margin-right: auto;
    margin-left: auto;
}
.vinos_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
.vinos_grid > * {
    border-right: 1px solid #8e4f01;
}
.vinos_grid > *:last-child {
    border-right: 0;
}
.seccion_vinos .item_vino {
    color: #8e4f01;
    background-color: #f5b399;
    padding: 38px 32px;
    font-size: 1rem;
    line-height: 1.375rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid #8e4f01;
}
.seccion_vinos .item_vino .item_vino_head {
    margin-bottom: 28px;
}
.seccion_vinos .item_vino .nombre {
    margin-bottom: 5px;
}
.seccion_vinos .item_vino .precio {}
.seccion_vinos .item_vino:hover {
    background-color: #f5c74d;
}
.seccion_vinos .item_vino:hover img {
    transform: scale(1.1);
}
.seccion_vinos .item_vino .nombre .hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
/*--------------------------------------------------------------
# Ubicacion
--------------------------------------------------------------*/
.seccion_ubicacion {
    background-color: #f5b399;
    color: #8e4f01;
    padding: 40px 0;
    font-size: 1.375rem;
    line-height: 1.75rem;
}
.seccion_ubicacion .box-grid {
    display: grid;
    grid-template-columns: 1fr 805px;
    gap: 48px;
    align-items: center;
}
.seccion_ubicacion h2 {
    font-size: 3.125rem;
    line-height: 3rem;
    margin-bottom: 35px;
}
.seccion_ubicacion p {
    margin-bottom: 35px;
}
.seccion_ubicacion .cta {
    background-color: transparent;
}
.seccion_ubicacion .cta:hover {
    background-color: #8e4f01;
}
/*--------------------------------------------------------------
# Instagram
--------------------------------------------------------------*/
.seccion_instagram {
    background-color: #f5b399;
    color: #8e4f01;
    font-size: 1.375rem;
    line-height: 1.75rem;
}
.seccion_instagram > div:first-child {
    border-top: 1px solid #8e4f01;
    border-bottom: 1px solid #8e4f01;
}
.seccion_instagram > div:last-child {
    border-bottom: 1px solid #8e4f01;
}
.seccion_instagram .instagram-head {
        display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    padding: 33px 0;
}
.seccion_instagram .instagram-head a {
    color: #8e4f01;
}
.seccion_instagram .instagram-posts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 21px;
    padding: 30px 0;
}
.seccion_instagram .instagram-posts-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.web-footer {
    background-color: #f5b399;
    padding: 49px 0;
    text-align: center;
    color: #8e4f01;
}

.web-footer nav a {
    color: #8e4f01;
    line-height: 1;
    letter-spacing: 0.1em;
    text-decoration: none;
    margin: 0 24px;
}

.web-footer .copy {
    font-family: 'AwesomeSerifItalic-MediumTall';
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-top: 24px;
}
.web-footer .legal {
    text-align: center;
    font-weight: 600;
    font-size: 0.625rem;
    letter-spacing: 1px;
    color: #8e4f01;
}
/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
.seccion_hero {
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.seccion_hero h1 {
    text-align: center;
    color: #fff;
    font-size: 5.938rem;
    line-height: 5.75rem;
}
/*--------------------------------------------------------------
# Bodega - Comienzo
--------------------------------------------------------------*/
.seccion_bodega_comienzo {
    background-color: #f3e2d0;
    color: #8e4f01;
    padding: 30px 0 44px;
    font-size: 1.125rem;
    line-height: 1.5rem;
}
.seccion_bodega_comienzo .box-head {
    text-align: center;
    padding-bottom: 70px;
}
.seccion_bodega_comienzo .box-head p {
    font-size: 1.125rem;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 120px;
}
.seccion_bodega_comienzo .box-head h2 {
    max-width: 750px;
    margin: auto;
    margin-bottom: 150px;
}
.seccion_bodega_comienzo .box-head .img-comienzo_01 {
    display: block;
    max-width: 88%;
}
.seccion_bodega_comienzo .box-grid {
    display: grid;
    grid-template-columns: 1fr 63%;
    gap: 22px;
    padding-top: 70px;
}
.seccion_bodega_comienzo .box-grid h3 {
    margin-bottom: 24px;
}
.seccion_bodega_comienzo .box-grid p {}
.seccion_bodega_comienzo .box-grid .img-comienzo_02 {
    display: block;
    margin-left: auto;
    margin-top: 155px;
}
.seccion_bodega_comienzo .box-grid .img-comienzo_03 {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*--------------------------------------------------------------
# Bodega - Fachada
--------------------------------------------------------------*/
.seccion_bodega_fachada {
    background-image: url('../../assets/img/bodega-fachada.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    padding: 70px 0 630px;
    color: #ffffff;
    text-align: center;
}
.seccion_bodega_fachada h2 {
    font-size: 1.625rem;
    line-height: 1.875rem;
    max-width: 1247px;
    margin: auto;
}
/*--------------------------------------------------------------
# Bodega - Tradicion
--------------------------------------------------------------*/
.seccion_bodega_tradicion {
    background-color: #f3e2d0;
    color: #8e4f01;
    font-size: 1.125rem;
    line-height: 1.5rem;
}
.seccion_bodega_tradicion h2 {
    font-size: 3.125rem;
    line-height: 3.125rem;
    max-width: 520px;
    margin: auto;
    margin-bottom: 35px;
}
.seccion_bodega_tradicion p {
    max-width: 400px;
    margin: auto;
}
.seccion_bodega_tradicion .img-tradicion {
    margin-bottom: 40px;
}
.seccion_bodega_tradicion .box-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}
.seccion_bodega_tradicion .box-grid > div {
    padding: 48px;
}
.seccion_bodega_tradicion .box-grid > div:first-child img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.seccion_bodega_tradicion .box-grid > div:last-child {
    text-align: center;
}
/*--------------------------------------------------------------
# Bodega - Visitas
--------------------------------------------------------------*/
.seccion_bodega_visitas {
    background-image: url('../../assets/img/bodega-visitas.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 120px 0;
}
.seccion_bodega_visitas .tarjeta {
    text-align: center;
    background-color: #f5c74d;
    color: #8e4f01;
    font-size: 1.125rem;
    line-height: 1.5rem;
    padding: 60px 60px 70px;
    position: relative;
    border-radius: 24px;
    max-width: 758px;
    margin: auto;
}
.seccion_bodega_visitas .tarjeta::before {
    content: '';
    display: block;
    position: absolute;
    top: 12px;
    right: 12px;
    bottom: 12px;
    left: 12px;
    border: 2px solid #8e4f01;
    border-radius: 20px;
    pointer-events: none;
}
.seccion_bodega_visitas .tarjeta .icon {
    margin-bottom: 24px;
}
.seccion_bodega_visitas .tarjeta h2 {
    font-size: 3.125rem;
    line-height: 3rem;
    margin-bottom: 30px;
}
.seccion_bodega_visitas .tarjeta p {
    max-width: 459px;
    margin: auto;
}
.seccion_bodega_visitas .tarjeta .cta {
    margin: auto;
    margin-top: 35px;
}
/*--------------------------------------------------------------
# Resto - Espacio
--------------------------------------------------------------*/
.seccion_resto_espacio {
    padding: 32px 0 100px;
    background-color: #f3e2d0;
    color: #8e4f01;
    font-size: 1.375rem;
    line-height: 1.75rem;
}
.seccion_resto_espacio .resto_espacio_head {
    text-align: center;
    padding-bottom: 80px;
}
.seccion_resto_espacio .resto_espacio_head p:first-child {
    font-size: 1.125rem;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 120px;
}
.seccion_resto_espacio .resto_espacio_head p {
    max-width: 690px;
    margin: auto;
}
.seccion_resto_espacio .resto_espacio_head h2 {
    font-size: 8.5rem;
    line-height: 8.25rem;
    margin-bottom: 44px;
}
.seccion_resto_espacio .box-grid {
    padding-top: 80px;
    display: grid;
    grid-template-columns: 766px 1fr;
    gap: 120px;
}
.seccion_resto_espacio .box-grid h3 {
    margin-bottom: 24px;
}
.seccion_resto_espacio .box-grid p {
    font-size: 1.125rem;
    line-height: 1.5rem;
    max-width: 396px;
}
.seccion_resto_espacio .box-grid .resto-espacio_img {
    display: block;
    margin-bottom: 40px;
}
/*--------------------------------------------------------------
# Resto - Banner
--------------------------------------------------------------*/
.resto-banner {
    display: block;
    width: 100%;
    height: 820px;
    object-fit: cover;
    object-position: center;
}
/*--------------------------------------------------------------
# Resto - Chef
--------------------------------------------------------------*/
.seccion_resto_chef {
    padding: 44px 0 100px;
    background-color: #f3e2d0;
    color: #8e4f01;
    font-size: 1.125rem;
    line-height: 1.5rem;
}
.seccion_resto_chef .box-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}
.seccion_resto_chef h2 {
    font-size: 4.625rem;
    line-height: 4.5rem;
    margin-bottom: 130px;
}
@keyframes infiniteLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.brandsCarousel {
  max-width: 1440px;
    margin: auto;
    overflow: hidden;
    margin-top: 100px;
}
.carouselTrack {
  display: flex;
  align-items: flex-start;
  gap: 16px; /* separación natural */
  width: max-content;
  /* animation: infiniteLoop 20s linear infinite; */
  animation: infiniteLoop 30s linear infinite;
}
.brandLogo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.brandLogo img {
  width: auto;
  height: auto;
  max-height: 339px; /* límite visual */
  object-fit: contain;
}
.brandsCarousel:hover .carouselTrack {
  animation-play-state: paused;
}
/*--------------------------------------------------------------
# Resto - Experiencia
--------------------------------------------------------------*/
.seccion_resto_experiencia {
    padding: 100px 0 0;
    background-color: #f3e2d0;
    color: #8e4f01;
    font-size: 1.375rem;
    line-height: 1.75rem;
    text-align: center;
}
.seccion_resto_experiencia h2 {
    font-size: 4.625rem;
    line-height: 4.5rem;
    max-width: 1010px;
    margin: auto;
    margin-bottom: 30px;
}
.seccion_resto_experiencia p {
    max-width: 800px;
    margin: auto;
}
.wrapper-tarjetas {
    position: relative;
    padding: 860px 0 0;
    max-width: 1240px;
    margin: auto;
}
.tarjeta-expe {
    text-align: center;
    background-color: #f5c74d;
    color: #8e4f01;
    font-size: 1.125rem;
    line-height: 1.5rem;
    padding: 60px 60px 70px;
    position: relative;
    border-radius: 24px;
    width: 658px;
    max-width: 100%;
    margin: auto;
    position: absolute;
    z-index: 2;
}
.tarjeta-expe::before {
    content: '';
    display: block;
    position: absolute;
    top: 12px;
    right: 12px;
    bottom: 12px;
    left: 12px;
    border: 2px solid #8e4f01;
    border-radius: 20px;
    pointer-events: none;
}
.tarjeta-expe .icon {
    margin-bottom: 24px;
}
.tarjeta-expe h2 {
    font-size: 3.125rem;
    line-height: 3rem;
    margin-bottom: 30px;
}
.tarjeta-expe p {
    max-width: 447px;
    margin: auto;
    margin-bottom: 16px;
}
.tarjeta-expe .cta {
    margin: auto;
    margin-top: 35px;
}
.tarjeta-expe.tar01 {
    top: 120px;
    left: 0;
}
.tarjeta-expe.tar02 {
    bottom: 0px;
    right: 0;
}
.tarjeta-expe.tar01 .cta {
    background-color: #f5b399;
}
.tarjeta-expe.tar01 .cta:hover {
    background-color: #8e4f01;
}
/*--------------------------------------------------------------
# Resto - Carrusel Galeria
--------------------------------------------------------------*/
.carrusel_galeria .carrusel-galeria_img {
    display: block;
    width: 100%;
    height: 820px;
    object-fit: cover;
    object-position: center;
}
.carrusel_control {
    position: absolute;
    right: 0;
    bottom: 48px;
    left: 0;
    display: flex;
    gap: 16px;
    justify-content: center;
    z-index: 2;
}
.carrusel_control li {
    background-color: #8e4f01;
    width: 59px;
    height: 59px;
    border-radius: 59px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.carrusel_control li.prev svg {
    transform: rotate(180deg);
}
.carrusel_control li svg {}
/*--------------------------------------------------------------
# Historia - Intro
--------------------------------------------------------------*/
.seccion_resto_historia {
    padding: 32px 0 0;
    background-color: #f3e2d0;
    color: #8e4f01;
    font-size: 1.375rem;
    line-height: 1.75rem;
}
.seccion_resto_historia .resto_espacio_head {
    text-align: center;
    padding-bottom: 70px;
}
.seccion_resto_historia .resto_espacio_head p:first-child {
    font-size: 1.125rem;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 120px;
}
.seccion_resto_historia .resto_espacio_head p {
    max-width: 350px;
    margin: auto;
}
.seccion_resto_historia .resto_espacio_head h2 {
    font-size: 4.625rem;
    line-height: 4.5rem;
    margin-bottom: 44px;
}
.historia-slider {
  position: relative;
  background: #f3e2d0;
  padding: 70px 12px 60px;
  overflow: hidden;
}
.historia-slider .slide {
  display: none;
}
.historia-slider .slide.active {
  display: block;
}
.historia-slider .slide-content {
  position: relative;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}
.historia-slider .year {
  display: block;
    font-family: 'AwesomeSerif-MediumTall';
    font-size: 31.5rem;
    color: #8e4f01;
    line-height: 1;
}
.historia-slider .slide-photo {
    position: absolute;
    top: 18%;
    right: 24%;
    width: 271px;
    border: 10px solid #fff;
    transform: rotate(6deg);
}
.historia-slider .slide-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.historia-slider .slide-text {
  max-width: 864px;
    margin: auto;
    margin-top: 2rem;
    color: #8e4f01;
}
.historia-slider .slide-text h3 {
  font-size: 1.625rem;
    line-height: 1;
    margin-bottom: 10px;
}
.historia-slider .slide-text p {
  font-size: 1.125rem;
    line-height: 1.5rem;
}
.historia-slider .nav {
  position: absolute;
  bottom: 12.5rem;
  right: 3rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: #8e4f01;
  cursor: pointer;
}
.historia-slider .nav.prev {
  right: 7.5rem;
}
.historia-slider .nav.prev svg {
    transform: rotate(180deg);
}
.historia-slider .timeline {
  display: flex;
    gap: 250px;
    border-top: 1px solid #8e4f01;
    margin: 30px auto 0;
    padding: 30px 50% 0px;
    overflow-x: auto;
    scroll-behavior: smooth;
    position: relative;
}
.historia-slider .timeline::-webkit-scrollbar {
  display: none;
}
.historia-slider .timeline-item {
  flex: 0 0 auto;
  background: none;
  border: none;
  cursor: pointer;
  text-align: center;
  position: relative;
  color: rgba(138,79,15,.4);
}
.historia-slider .timeline-year {
  font-family: 'AwesomeSerif-MediumTall';
    font-size: 3.625rem;
    line-height: 1;
    display: block;
}
.historia-slider .timeline-text {
  display: block;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: .05em;
    margin-top: 10px;
}
.historia-slider .timeline-item.active {
  color: #8a4f0f;
}
.historia-slider .slide_05 .slide-photo {
    width: 350px;
    right: 14%;
}
@media (max-width: 991px) {
    .historia-slider .year {
        font-size: 20.5rem;
    }
    .historia-slider .slide-photo {
        top: 16%;
        right: 24%;
        width: 170px;
    }
}
@media (max-width: 767px) {
  .historia-slider {
    padding: 35px 12px 60px;
  }
  .historia-slider .year {
        font-size: 7.5rem;
    }
  .historia-slider .slide-photo {
    position: relative;
    right: auto;
    top: auto;
    margin: 2rem auto;
    display: block;
    width: 220px;
    border: 5px solid #fff;
  }
  .historia-slider .slide-text {
    max-width: 100%;
  }
  .historia-slider .slide-text h3 {
        font-size: 1.5rem;
    }
    .historia-slider .slide-text p {
        font-size: 1rem;
    }
  .historia-slider .timeline {
    gap: 32px;
        overflow-x: auto;
  }
  .historia-slider .timeline-year {
        font-size: 2.5rem;
    }
    .wrapper_flechas {
        display: flex;
        justify-content: center;
        gap: 16px;
        margin-top: 30px;
    }
    .historia-slider .nav {
        position: relative;
        bottom: 0;
        right: 0;
    }
    .historia-slider .nav.prev {
        right: 0;
    }
    .historia-slider .slide_05 .slide-photo {
        width: 220px;
        right: auto;
    }
}

/*--------------------------------------------------------------
# Historia - Intro
--------------------------------------------------------------*/
.seccion_resto_bodega {
    background-image: url('../../assets/img/bodega-hero.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 200px 0;
    color: #f5c74d;
    text-align: center;
    font-size: 1.375rem;
    line-height: 1.75rem;
}
.seccion_resto_bodega h2 {
    font-size: 4.625rem;
    line-height: 4.5rem;
    margin-bottom: 30px;
}
.seccion_resto_bodega p {
    max-width: 520px;
    margin: auto;
}
.seccion_resto_bodega .cta {
    color: #f5c74d;
    border: 1px solid #f5c74d;
    background-color: transparent;
    margin: auto;
    margin-top: 40px;
}
.seccion_resto_bodega .cta:hover {
    color: #8e4f01;
    background-color: #f5c74d;
}
/*--------------------------------------------------------------
# Contacto
--------------------------------------------------------------*/
.seccion_hero.seccion_hero_contacto {
    min-height: 50vh;
    padding-top: 150px;
    background-position: center;
}
.seccion_contacto_form {
    position: relative;
    background-color: #f3e2d0;
    color: #8e4f01;
    padding: 90px 0;
    font-size: 1.125rem;
    line-height: 1.5rem;
}
.seccion_contacto_form .iframe {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    max-width: 50%;
    z-index: 1;
}
.seccion_contacto_form .box-head p {
    font-size: 1.125rem;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 120px;
    text-align: center;
}
.seccion_ubicacion .box-iframe iframe {
    display: block;
    border-radius: 24px;
}
.contacto_form {
    width: 100%;
    /* max-width: 767px; */
    max-width: 46%;
    margin-right: auto;
    /* margin-left: auto; */
}
input[type=date], input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=url], select, textarea {
    width: 100%;
    border: 0;
    border-radius: 3px;
    padding: 0.688rem 1rem;
    transition: all .3s;
}
.elementor-column {
    display: flex;
    min-height: 1px;
    position: relative;
    margin-bottom: 20px;
}
.elementor-field-textual {
    font-family: "Manrope";
    border-radius: 3px;
    font-size: 16px;
    line-height: 1.4;
    min-height: 40px;
    padding: 5px 14px;
    background-color: #F5EEE2;
    border: 0;
    color: #000;
    font-weight: 400;
    flex-grow: 1;
    max-width: 100%;
    vertical-align: middle;
    width: 100%;
}
.elementor-column.form_buttons {
    justify-content: center;
        margin-top: 40px;
    margin-bottom: 0;
}
.elementor-button {
    font-family: "Manrope";
    background-color: #61CE7000;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-radius: 30px 30px 30px 30px;
    border-color: #926B42;
    padding: 10px 70px 10px 70px;
    color: #926B42;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    padding: 12px 24px;
    fill: #926B42;
    text-align: center;
    transition: all .3s;
    letter-spacing: 0.1em;
    cursor: pointer;
}
::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #926B42;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #926B42;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #926B42;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #926B42;
}