@charset "utf-8";
/* CSS Document */

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

/* Light */
@font-face {
    font-family: 'accia_flare';
    src: url('../fonts/acciaflare-light-webfont.woff2') format('woff2'),
         url('../fonts/acciaflare-light-webfont.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Regular */
@font-face {
    font-family: 'accia_flare';
    src: url('../fonts/acciaflare-regular-webfont.woff2') format('woff2'),
         url('../fonts/acciaflare-regular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Medium */
@font-face {
    font-family: 'accia_flare';
    src: url('../fonts/acciaflare-medium-webfont.woff2') format('woff2'),
         url('../fonts/acciaflare-medium-webfont.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Bold */
@font-face {
    font-family: 'accia_flare';
    src: url('../fonts/acciaflare-bold-webfont.woff2') format('woff2'),
         url('../fonts/acciaflare-bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* {
	box-sizing: border-box; /* Padding y borde no incrementan el ancho */
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

:root {
	--color-body: #ffffff;
	--color-clear: #ffffff;
	--color-brown: #5b3b1b;
	--color-yellow: #ffbf3c;
	--color-link: #ffbf3c;
	--color-bg-gray: #f2f2f2;
	--color-bg-menu: #5b3b1b;
	--color-bg-menu-rgb: 91, 59, 27;
	--font-body: 'accia_flare', Roboto, Helvetica Neue, Helvetica, sans-serif;
	--font-headers: 'accia_flare', Helvetica Neue, Helvetica, sans-serif;
}

.color-clear {
	color: var(--color-clear);
}

.color-yellow {
	color: var(--color-yellow) !important;
}

.bg-dark-brown {
	background-color: var(--color-brown) !important;
}

html {
    overflow-y: scroll;
    scroll-padding-top: 0px; 
}

body {
	color: var(--color-body);
	font-family: var(--font-body);
	font-weight: 400;
}

h1 {
	font-weight: 700;
	font-family: var(--font-headers);
	line-height: 0.9em;
}

h2 {
	font-weight: 400;
	font-size: 30px;
	font-family: var(--font-headers);
}

h3 {
	font-size: 1.5rem;
	margin-top: 20px;
	font-weight: 700;
	font-family: var(--font-headers);
	
}

h4 {
	font-family: var(--font-headers);
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1.4em;
}

p {
	font-size: 1.1rem;
	font-weight: 300;
}

a {
	color: var(--color-body);
}

a:link {
	color: var(--color-link);
	text-decoration: none;
	
}

a:visited {
	color: var(--color-link);
	text-decoration: none;
	
}

a:hover {
	color: var(--color-link);
	text-decoration: underline;
}

/*HEADER*/

header#header_nav {
	background-color: var(--color-bg-menu);
	position: fixed;
	width: 100%;
	padding-top: 10px;
	padding-bottom: 10px;
	top: 0;
	z-index: 999;
	height: 70px;
}

header#header_nav .logo {
  margin-left: 15px;
  margin-top: 3px;
	width: 85px;
	-webkit-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s; 

}

header#header_nav.hdr-small .logo {
	margin-left: 15px;
	margin-top: 8px;
	width: 65px;
	-webkit-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s; 
}

/* change header */

header#header_nav.hdr-small {
	background-color: rgba(var(--color-bg-menu-rgb), 0.65);
	padding: 0;
	height: 52px;
}

header#header_nav.hdr-small .toggle-button {
	top: 4px;
}

header#header_nav.hdr-small nav.main {
	top: 52px;
}

/* end change header */

/*NAV*/

nav.main {
	display: none;
	background-color: var(--color-brown);
	position: absolute;
	top: 70px;
	padding-top: 10px;
	padding-bottom: 10px;
	overflow: visible !important;
}

nav.main ul {
	padding-left: 0;
	padding-top: 20px;
	padding-bottom: 20px;
	margin-bottom: 0;
	margin-left: 9px;
}

nav.main ul li {
	list-style-type: none;
	font-weight: 400;
	text-transform: uppercase;
	position: relative;
	display: block;
	height: auto;
	padding: 5px 0;
}

nav.main ul li a {
	color: #ffffff;
    position: relative;
    color: inherit; /* o el color inicial que ya tengas */
    text-decoration: none !important; /* Quitamos el subrayado por defecto */
    transition: color 0.3s ease;
}



nav.main ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--color-link);
    transition: width 0.3s ease;
}

nav.main ul li a.active::after {
    width: 30%; /* Ajusta este valor (ej: 50%, 70%, etc.) */
}

nav.main ul li a.active {
    color: var(--color-link);
}


/*FOOTER*/

footer {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;     /* opcional: lo centra bien en pantallas chicas */
  padding: 10px 0; /* margen interno */
}

footer p {
	font-size: 0.9em;
	padding: 0;
	margin: 0;
}

footer span {
    display: block;
}

footer .ico img {
	margin: 0 5px;
	vertical-align: middle;
    padding-bottom: 7px;
}

.menu-transition {
	cursor: pointer;
	display: block;
}

.hamburger-lines {
	height: 22px;
	width: 30px;
	position: absolute;
	top: 24px;
	right: 20px;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.hamburger-lines .line {
	display: block;
	height: 2px;
	width: 100%;
	background: #fff;
}

.hamburger-lines .line1 {
	transform-origin: 0% 0%;
	transition: transform 0.4s ease-in-out;
}

.hamburger-lines .line2 {
  transition: transform 0.2s ease-in-out;
}

.hamburger-lines .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

.checkbox {
	display: none;
}

input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
	transform: rotate(45deg);
  }

input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
	transform: scaleY(0);
}

input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
	transform: rotate(-45deg);
}

.hdr-small .hamburger-lines {
    top: 14px !important;
}

/* -- CONTENIDO -- */

section.seccion-h-100 {
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	position: relative;
}

section.top {
	margin-top: 100px;
}

section.top-mobile {
	margin-top: 90px;
}

h1.inicio {
	font-size: 1.6rem;
	font-weight: 400;
}

.table-auto {
	width: auto;
}

strong, .strong {
	font-weight: 700;
}

/* SECCION INICIO */

#secc1 {
  background-image: url('../img/bg_inicio_mobile.jpg');  
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#secc1 .container {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 50px;
}

.contenedor_inicio {
  position: absolute;
  top: 30%;    /* porcentaje desde el top del contenedor */
  left: 40%;   /* porcentaje desde la izquierda del contenedor */
  width: 55%;  /* ancho relativo al contenedor */
  overflow: hidden;
  text-align: center;
}

#secc1 h1 {
    font-size: clamp(2em, 3vw, 4em);
    font-weight: 300;
    line-height: 1.2em;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

#secc1 p {
    font-size: clamp(1em, 1.25vw, 1.5em);
    max-width: 400px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}


/*============================*/
/* PRODUCTOS */
/*============================*/

.seccprod_mob {
    display: block !important;
}

.seccprod_desk {
    display: none !important;
}

#secc4 .productos-wrapper {
  position: relative;
  width: 100%;
  max-width: 1920px;
  /*aspect-ratio: 1920 / 1000;  Ajusta según la proporción de tu fondo */
  margin: 0 auto;
  height: 100%;
}

#secc4 .fondo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.5s ease;
  z-index: 1;
}

/* Productos */
#secc4 .producto {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0%;
  z-index: 2;
  transition: filter 0.5s ease;
}

#secc4 .item-wrap {
  position: relative;
  text-align: center;
}

#secc4 .item {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  cursor: unset;
  z-index: 1;   /* La botella queda detrás del texto */
}

/* Textos */
#secc4 .titulo {
  position: absolute;
  font-size: 1.4vw;   /* Escala con el ancho de pantalla */
  color: white;
  text-align: left;
  line-height: 1.4;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
  width: 100%;
  z-index: 10;
     opacity: 0;
    transform: translateY(-20px); /* Posición inicial (20px arriba) */
    transition: opacity 0.5s ease, transform 0.5s ease; 
}

#secc4 .titulo.grupo1 {
  position: absolute;
  top: 10%;     /* Ajusta para la altura correcta */
  left: 90%;    /* Ajusta para que quede a la derecha de la botella */
}

#secc4 .titulo.grupo2 {
  position: absolute;
  top: 10%;     /* Ajusta para la altura correcta */
  left: 80%;    /* Ajusta para que quede a la derecha de la botella */
}

#secc4 .titulo.grupo3 {
  position: absolute;
  top: 10%;     /* Ajusta para la altura correcta */
  left: 44%;    /* Ajusta para que quede a la derecha de la botella */
}

#secc4 .titulo.grupo1 h3, .titulo.grupo2 h3, .titulo.grupo3 h3 {
  font-size: 1.6vw;
  margin: 0 0 10px;
  font-weight: 400;
}

#secc4 .titulo.grupo1 p, .titulo.grupo2 p, .titulo.grupo3 p {
  margin: 2px 0;
  font-size: 1vw;
}

#secc4 .titulo h3,
#secc4 .titulo p {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

#secc4 .producto:hover .titulo h3 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s; /* Retraso de 0.1s */
}

#secc4 .producto:hover .titulo p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s; /* Retraso de 0.3s (después del h3) */
}

#secc4 .producto:hover .titulo {
	opacity: 1;
    transform: translateY(0); /* Posición final (sin desplazamiento) */
}

#secc4 .producto:hover .item {
  transform: scale(1.02);
}

#secc4 .producto:hover { z-index: 90; }

/* Blur del fondo al hover de cualquier producto */
#secc4 .producto:hover ~ .fondo,
#secc4 .producto:hover + .fondo,
#secc4 .producto:hover .fondo {
  filter: blur(6px);
}

/* Posiciones de los grupos (en %) para escalar proporcionalmente */

/* Grupo 1 */
#secc4 .producto:nth-of-type(1) {
	top: 23.9%;
    left: 19.5%;
    width: 21.7%;
}
/* Grupo 2 */
#secc4 .producto:nth-of-type(2) {
   top: 22%;
   left: 44.5%;
   width: 12%;
}
/* Grupo 3 */
#secc4 .producto:nth-of-type(3) {
    top: 23.8%;
    left: 58.3%;
    width: 21.2%;
}

#secc4 .fondo.blur-active,
#secc4 .producto.blur-active {
  filter: blur(5px);
  transition: filter 0.3s ease;
    filter: blur(6px) brightness(0.8); /* blur + oscurecimiento */
}

/* VIDEOS */

#secc5 {
  background-image: url('../img/bg_videos.jpg');  
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* CONTACTO */

#secc6 {
  background-image: url('../img/bg_contacto.jpg');  
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ============================ */
/* SPLIDE */
/* ============================ */

.splide {
    width: 100%;
    height: 100vh; /* o la altura que quieras */
}

.splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Estilos comunes para los dos sliders */

/* El contenedor principal de cada slide. Es la referencia para la imagen y el texto */
#slider1 .splide__slide,
#slider2 .splide__slide,
#slider3 .splide__slide {
    height: 100vh; /* O 100% si el contenedor padre ya tiene una altura definida */
    display: flex; /* Hacemos el slide un contenedor flexible */
    justify-content: center; /* Centra el contenido horizontalmente */
    align-items: center; /* Centra el contenido verticalmente */
    position: relative;
}

/* El CSS de la imagen se simplifica ahora que su contenedor la centra */
#slider1 .splide__slide img,
#slider2 .splide__slide img
#slider3 .splide__slide img {
    /* Mantenemos object-fit para que la imagen cubra todo el espacio */
    object-fit: cover;
    /* La imagen ahora se ajustará al tamaño del contenedor padre flexbox */
    width: 100%;
    height: 100%;
    display: block;
}

/* El contenedor del texto, que se superpone a la imagen y lo centra */
#slider1 .slide-content,
#slider2 .slide-content,
#slider3 .slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    color: white;
    display: flex;
    justify-content: flex-start; /* Cambiado a flex-start para alinear el contenido en la parte superior */
    align-items: center; /* Mantiene el centrado horizontal */
    flex-direction: column; /* Mantiene el apilamiento vertical del título y el párrafo */
}

/* Ajusta el margen superior para separar el texto del borde superior si es necesario */
#slider1 .slide-content .container,
#slider2 .slide-content .container,
#slider3 .slide-content .container {
    margin-top: 15%; /* Ajusta este valor según sea necesario */
    background-color: rgba(91, 59, 27, 0.2);
    margin-top: 0px;
    padding: 82px 25px 10px;

}

/* Estilos de texto para ambos sliders */
#slider1 .slide-content h1,
#slider2 .slide-content h1,
#slider3 .slide-content h1 {
    font-size: clamp(2.6em, 10vw, 12em);
    font-weight: 300;
    margin-bottom: 0.1em;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

#slider1 .slide-content p,
#slider2 .slide-content p,
#slider2 .slide-content p {
    font-size: clamp(1.2em, 1.25vw, 1.5em);
    max-width: 400px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.splide__arrow {
background: var(--color-brown);
height: 3em;
width: 3em;
    transition: opacity 0.6s ease, transform 0.6s ease;
    opacity: 1;
}

.splide__arrow:hover {
    opacity: 0.5 !important;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.splide__arrow svg {
    fill: #ffffff;
}

/* ============================ */
/* ANIMACIONES */
/* ============================ */

/* Clase base para elementos animados (inicialmente ocultos) */
[class*="elem"] {
    opacity: 0;
    transform: translateY(20px); /* Posición inicial para anim_ap */
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Animación de abajo hacia arriba */
.anim_ap.show {
    opacity: 1;
    transform: translateY(0);
}

/* Animación de derecha a izquierda */
.anim_left.show {
    opacity: 1;
    transform: translateX(0);
}

/* Posición inicial para anim_left */
.anim_left {
    transform: translateX(50px); /* Empieza 50px a la derecha */
}


/* Estilo base de la animación, por ejemplo, los elementos ocultos */
[class*="elem"] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* El estado final cuando tienen la clase 'show' */
[class*="elem"].show {
    opacity: 1;
    transform: translateY(0);
}

/* Ahora, el retraso */
/* Agrega un retraso para cada elemento en la secuencia */
.elem-1 { transition-delay: 0s; }
.elem-2 { transition-delay: 0.4s; } /* 0.2 segundos de retraso */
.elem-3 { transition-delay: 1.4s; } /* 0.4 segundos de retraso */
.elem-4 { transition-delay: 0.6s; }
/* ... y así sucesivamente para cada elemento ... */


/* Forms */

 input.form-control {
 	color: var(--color-clear);
 	background-color: rgba(255, 255, 255, 0.3);
    border: 1px solid var(--color-clear);
    border-radius: 5px;
 }

 input:-webkit-autofill {
    color: #ffffff !important; /* Color del texto */
    -webkit-text-fill-color: white !important; /* Hace que el texto sea blanco */
    transition: background-color 5000s ease-in-out 0s; /* Asegura que el color se mantenga */
    border: 1px solid var(--color-clear) !important;
}

textarea.form-control {
	font-size: 0.9em;
 	color: var(--color-clear) !important;
 	background-color: rgba(255, 255, 255, 0.3);
 	border: 1px solid var(--color-clear);
 	border-radius: 5px;
 	padding: .56rem .75rem;
 }

.form-control::placeholder {
  color: var(--color-clear) !important;
  opacity: 1;
}

.msg-error {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 0 20px;
	color: red;
    font-size: 1em;
    text-align: center;
    border-radius: 5px;
}

.msg-success {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 0 20px;
	color: cyan;
    font-size: 1em;
    text-align: center;
    border-radius: 5px;
}

/* Reset botones */

.btn-primary {
	background-color: var(--color-yellow);
    border: 1px solid var(--color-yellow);
    border-radius: 5px;
	color: var(--color-body);
	text-transform: uppercase;
	min-width: 150px;
	padding: 0.7em;
	font-weight: 500;
}

.btn-primary:hover {
	background-color: transparent !important;
    border: 1px solid var(--color-clear) !important;
    background-color: rgba(0, 0, 0, 0.3) !important;
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
	background-color: #797878;
}

.btn-secondary {
	background-color: var(--color-brown);
	border: 0;
	color: var(--color-yellow);
	text-transform: uppercase;
	min-width: 150px;
	padding: 0.7em;
	font-weight: 500;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
	color: #fff;
	background-color: #333 !important; /* Reset Press Azul */
	box-shadow: none;
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

/* Reset Glow Azul*/

.form-control:focus, .form-select:focus {
	color: var(--color-clear);
  border-color: var(--color-clear); !important;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.form-control:focus label {
	color: red;
}

.transition {
	-webkit-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s; 
}

/****************************/
/* MEDIA QUERIES */
/****************************/

/* 768 */
@media screen and (min-width: 768px) {

body {
	padding-bottom: 80px;
}

footer.p-md-fixed {
	position: fixed;
	bottom: 0;
	margin-top: auto;
}

}

/* 992 */
@media screen and (min-width: 992px) {

#secc1 {
  background-image: url('../img/bg_inicio.jpg');  
}

}


/* 1024 */
@media screen and (min-width: 1025px) {

.seccprod_mob {
    display: none !important;
}

.seccprod_desk {
    display: block !important;
}

#slider1 .slide-content .container,
#slider2 .slide-content .container {
    margin-top: 15%; /* Ajusta este valor según sea necesario */
    background-color: transparent;
    padding: 0px 8% 0;

}

footer span {
    display: inline-block;
}


}

/* Estilos para pantalla horizontal (landscape) y ancho mínimo de 1024px */
@media screen and (min-width: 1024px) and (orientation: landscape) {
    .seccprod_mob {
        display: none !important;
    }
    .seccprod_desk {
        display: block !important;
    }
}


/* 1280 */
@media screen and (min-width: 1200px) {


section.top {
	margin-top: 130px;
}

.toggle-button {
	display: none;
}

header#header_nav {
	height: 70px;
}

header#header_nav .logo {
	margin-left: 0px;
	margin-top: 0px;
	width: 90px;
	-webkit-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s; 
}

header#header_nav.hdr-small .logo {
	margin-left: 5px;
	margin-top: 8px;
	width: 65px;
	-webkit-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s; 
}

nav.main {
	position: relative;
	top: 0;
	background: transparent;
	display: block !important;
	overflow: hidden;
	padding-top: unset;
	padding-bottom: unset;
}

nav.main ul {
	margin-left: 0;
	padding-top: 12px;
	padding-bottom: 0;
}

nav.main ul li {
	font-size: 14px;
	height: unset;
	padding: 0;
}

nav.main ul li.nav_search, nav.main ul li.nav_user {
	display: block;
	margin-top: 0;
	margin-left: 12px;
	margin-right: 12px;
}

nav.main ul li a {
	display: inline-block;
	padding: 4px 20px;
	border-bottom: 4px solid transparent;
	-webkit-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s; 	
	
}

nav.main ul li a:hover {
	color: var(--color-yellow);
	text-decoration: none;
}

nav.main ul li.item-perfil {
	margin-left: 15px;
	padding-right: 10px;

}

nav.main ul li.item-perfil a {
	border-left: 1px solid rgba(2550, 255, 255, 0.2);
	padding-left: 30px;
}

header#header_nav.hdr-small nav.main {
	top: 0px;
}

header#header_nav.hdr-small nav.main ul li a {
	/*padding: 0px 20px 0px;*/
	padding: 0px 20px 4px;
	-webkit-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s; 	
}

nav.main ul li .submenu {
	position: absolute;
}

h1.inicio {
	font-size: 2.5em;
}

#slider1 .slide-content .container,
#slider2 .slide-content .container,
#slider3 .slide-content .container {
    padding: 0px 4% 0;

}

}

/* 1366 */
@media screen and (min-width: 1360px) {
h2 {
    font-size: 30px;
}

#slider1 .slide-content .container,
#slider2 .slide-content .container,
#slider2 .slide-content .container  {
    padding: 0;

}

}

/* 1440 */
@media screen and (min-width: 1400px) {
section.top {
	margin-top: 140px;
}

header#header_nav {
	height: 80px;
}

nav.main ul li {
	font-size: 16px;
	height: unset;
	padding: 0;
}

header#header_nav .logo {
    margin-left: 0px;
    margin-top: 5px;
}

}


/* 1680 */
@media screen and (min-width: 1680px) {
section.top {
	margin-top: 150px;
}

body {
	padding-bottom: 0px;
}

h2 {
    font-size: 38px;
}

}

        /* Contenedor del slider */
        .swiper {
            width: 100%;
            height: 100%;
        }

        /* Contenedor de cada diapositiva */
        .swiper-slide {
            width: 60%;
            height: auto;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease;
            outline: none; /* Esto elimina el contorno azul al hacer clic */
        }
        
        /* Contenedor para el thumbnail y el boton de play */
        .swiper-slide .video-container {
            position: relative;
            width: 100%;
            padding-top: 56.25%; /* Relacion de aspecto 16:9 */
            cursor: pointer;
        }

        .swiper-slide .video-container img,
        .swiper-slide .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 12px;
            box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
        }

        /* Boton de play */
        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background-color: rgba(0, 0, 0, 0.6);
            border-radius: 50%;
            justify-content: center;
            align-items: center;
            opacity: 1;
            transition: opacity 0.3s ease;
            display: none; /* Ocultar por defecto */
        }
        
        .swiper-slide.swiper-slide-active .play-button {
            display: flex; /* Mostrar solo en el slide activo */
        }

        .swiper-slide:hover .play-button {
            opacity: 0.8;
        }

        .play-button svg {
            fill: #fff;
            width: 30px;
            height: 30px;
        }
        
        /* Ocultar el boton de play y el thumbnail cuando se esta reproduciendo el video */
        .swiper-slide.is-playing .play-button,
        .swiper-slide.is-playing .video-thumbnail {
            display: none;
        }

        /* Estilo para la diapositiva central (activa) */
        .swiper-slide.swiper-slide-active {
            transform: scale(1.2);
            z-index: 10;
        }
        
        /* Estilos de las flechas de navegacion */
        .swiper-button-prev,
        .swiper-button-next {
            color: #fff;
            background-color: var(--color-brown);
            border-radius: 50%;
            width: 44px;
            height: 44px;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s; 
        }

        .swiper-button-prev:hover,
        .swiper-button-next:hover {
            opacity: 0.5;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s; 
        }

        .swiper-button-prev:after,
        .swiper-button-next:after {
            font-size: 1.25rem;
        }

		.slide_video, .slide_video .swiper-slide {
		  -webkit-tap-highlight-color: transparent;
		  user-select: none;
		}



        /* 1) El wrapper no debe quedarse con los clicks */
.slide_video .swiper-wrapper{
  cursor: default !important;
  pointer-events: none;            /* no capta el click */
}

/* 2) Rehabilitar los clicks donde sí corresponde */
.slide_video .swiper-slide .video-container{ pointer-events: none; }
.slide_video .swiper-slide.swiper-slide-active .video-container{ pointer-events: auto; }

.slide_video .swiper-button-next,
.slide_video .swiper-button-prev{ pointer-events: auto; } /* flechas siguen funcionando */

/* 3) Asegurar capas: el activo por encima de los vecinos */
.slide_video .swiper-slide{ position: relative; z-index: 1; }
.slide_video .swiper-slide.swiper-slide-active{ z-index: 5; }
.slide_video .swiper-slide-prev,
.slide_video .swiper-slide-next{ z-index: 2; }