* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/*-----FONTS-----*/
@font-face {
  font-family: 'Inter-Light';
  src: url('../fonts/Inter-Light.woff2') format('woff2'),
    url('../fonts/Inter-Light.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Inter-ExtraLight';
  src: url('../fonts/Inter-ExtraLight.woff2') format('woff2'),
    url('../fonts/Inter-ExtraLight.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Inter-Regular';
  src: url('../fonts/Inter-Regular.woff2') format('woff2'),
    url('../fonts/Inter-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Inter-Bold';
  src: url('../fonts/Inter-Bold.woff2') format('woff2'),
    url('../fonts/Inter-Bold.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'LFTEticaSheriff-Regular';
  src: url('../fonts/LFTEticaSheriff-Regular.woff2') format('woff2'),
    url('../fonts/LFTEticaSheriff-Regular.ttf') format('truetype');
  font-style: normal;
}


@font-face {
  font-family: 'LFTEticaSheriff-SemiBd';
  src: url('../fonts/LFTEticaSheriff-SemiBd.woff2') format('woff2'),
    url('../fonts/LFTEticaSheriff-SemiBd.ttf') format('truetype');
  font-style: normal;
}

@font-face {
  font-family: 'LFTEticaSheriff-Bold';
  src: url('../fonts/LFTEticaSheriff-Bold.woff2') format('woff2'),
    url('../fonts/LFTEticaSheriff-Bold.ttf') format('truetype');
  font-style: normal;
}

:root {
  --rojo: #C32A26;
  --naranja: #EFA220;
  --marron: #7b3f28;
  --gris: #797878;
  --gris2: #e4e1e1;
  --verde: #1F9562;
  --verde2: #024C36;
  --dorado: #EFB810;
  --max-width: 1200px;

  /* Fuentes */
  --font-principal-regular: 'LFTEticaSheriff-Regular', serif;
  --font-principal-semi: 'LFTEticaSheriff-SemiBd', serif;
  --font-principal-bold: 'LFTEticaSheriff-Bold', serif;
  --font-inter-regular: 'Inter-Regular';
  --font-inter-regular: 'Inter-Bold';
  --font-boton: 'Inter-Regular';
  --font-parrafo: 'Inter', sans-serif;

  /* Tamaños de fuente */
  --font-size-title: 60px;
  --font-size-subtitle: 35px;
  --font-size-paragraph: 20px;
}


body {
  font-family: 'Inter', sans-serif;
}

/*SELECCIÓN DE TEXTO*/
::selection {
  background: var(--rojo);
  color: white;
}

::-moz-selection {
  background: var(--rojo);
  color: white;
}

/**************************
     ANCHO LAPTOP
***************************/
.ancho {
  box-sizing: border-box;
  height: 100%;
  margin: 0 auto;
  width: 100%;
  /*  padding: 0 15px; */
  min-width: 320px;
  max-width: 1600px;
}

@media (min-width: 1025px) {
  .ancho {
    width: 85%;
    min-width: 1025px;
  }
}

/**************************
     BOTONES
***************************/
.gumi-btn-container {
  font-family: 'inter';
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.gumi-btn-rojo {
  display: inline-flex;
  padding: 13px 20px;
  background-color: var(--rojo);
  color: white;
  text-decoration: none;
  text-align: center;
  font-size: 16px;
  border: none;
  max-width: 100%;
  width: auto;
  box-sizing: border-box;
  transition: background-color 0.3s ease;
}

.gumi-btn-rojo:hover {
  background-color: var(--naranja);
}

.gumi-btn-naranja {
  font-family: var(--font-boton);
  display: inline-flex;
  padding: 13px 20px;
  background-color: var(--naranja);
  color: white;
  text-decoration: none;
  text-align: center;
  font-size: 16px;
  border: none;
  max-width: 100%;
  width: auto;
  box-sizing: border-box;
  transition: background-color 0.3s ease;
}

.gumi-btn-naranja:hover {
  background-color: var(--rojo);
}

@media (max-width: 768px) {

  .gumi-btn-rojo,
  .gumi-btn-naranja {
    font-size: 14px;
    padding: 10px 20px;
  }
}


/**************************
     MENÚ
***************************/
#menuContainer {
  font-family: var(--font-principal-semi);
  font-size: 18px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: var(--rojo);
  color: white;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
}

#menuContainer.scroll {
  background-color: white;
  color: var(--rojo);
}

#menuContainer a {
  color: inherit;
  text-decoration: none;
  padding: 20px 20px;
  display: inline-block;
  position: relative;
  transition: color 0.3s ease;
}

#menuContainer a:not(.logo-link)::after {
  content: '';
  position: absolute;
  bottom: -9px;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--naranja);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

#menuContainer a:not(.logo-link):hover {
  color: var(--naranja);
}

#menuContainer a:not(.logo-link):hover::after {
  transform: scaleX(1);
  opacity: 1;
}

#menuContainer a.active:not(.logo-link) {
  color: var(--naranja);
}

#menuContainer a.active:not(.logo-link)::after {
  content: '';
  position: absolute;
  bottom: -9px;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--naranja);
  transform: scaleX(1);
  transform-origin: left;
  opacity: 1;
}

#menuContent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

#leftMenu,
#rightMenu,
#socialIcons {
  display: flex;
  align-items: center;
}

#socialIcons a {
  padding: 0 10px;
}

#logo {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

#menuContainer .logo-link {
  display: inline-block;
  text-decoration: none;
  padding: 0;
}

#menuContainer .logo-link img {
  height: 60px;
  padding: 0;
  margin: 0;
  transition: all 0.3s ease;
}

#menuContainer .logo-link:hover {
  background-color: transparent;
}

#hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1001;
  margin-left: auto;
}

#hamburger .bar {
  width: 28px;
  height: 3px;
  background-color: white;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

#menuContainer.scroll #hamburger .bar {
  background-color: var(--rojo);
}

#hamburger.open .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

#hamburger.open .bar:nth-child(2) {
  opacity: 0;
}

#hamburger.open .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

#responsiveMenu {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  background-color: var(--naranja);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: height 0.4s ease;
  z-index: 999;
}

#responsiveMenu.open {
  height: calc(55vh - 100px);
}

#responsiveMenu a {
  color: white;
  font-size: 22px;
  padding: 15px;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

#responsiveMenu a::after {
  content: '';
  position: absolute;
  bottom: -9px;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--naranja);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

#responsiveMenu a:hover {
  color: var(--rojo);
}

#responsiveMenu a:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

#responsiveMenu a.active {
  color: var(--rojo);
}

#responsiveMenu a.active::after {
  content: '';
  position: absolute;
  bottom: -9px;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--rojo);
  transform: scaleX(1);
  transform-origin: left;
  opacity: 1;
}

@media (max-width: 991px) {

  #leftMenu,
  #rightMenu,
  #socialIcons {
    display: none;
  }

  #hamburger {
    display: flex;
  }

  #logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (min-width: 992px) {
  #responsiveMenu {
    height: 0 !important;
    overflow: hidden;
  }

  #hamburger.open .bar:nth-child(1),
  #hamburger.open .bar:nth-child(2),
  #hamburger.open .bar:nth-child(3) {
    transform: none !important;
    opacity: 1 !important;
  }
}


/**************************
  BANNER ESTÁTICO
***************************/
.banner-productos {
  position: relative;
  width: 100%;
  overflow: visible;
  max-height: 500px;
  margin-top: 80px; /* Espacio para menú fijo */
}

.banner-productos img {
  width: 100%;
  height: 100%;
  max-width: 1920px;
  object-fit: cover;
  display: block;
}

/* TÍTULO CENTRAL */
.banner-titulo {
  font-family: var(--font-principal-semi);
  font-weight: normal;
  font-size: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
 /* background-color: var(--naranja); */
 background-color: rgb(239, 162, 32, 0.75);
  padding: 10px 30px;
  color: white;
  text-align: center;
  z-index: 2;
}

/* BOTÓN FLECHA SCROLL + TEXTO */
.scroll-down {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 30%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-text {
  color: white;
  font-size: 14px;
  font-family: var(--font-regular, sans-serif);
  margin-bottom: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.scroll-down:hover .scroll-text {
  opacity: 1;
}

/* BOTÓN CÍRCULO */
.scroll-down button {
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.scroll-down:hover button {
  animation: float-down 1.5s ease-in-out infinite;
}

.scroll-down button img {
  width: 50px;
  height: 50px;
}

/* ANIMACIÓN DE FLECHA */
@keyframes float-down {
  0% { transform: translateY(0); }
  50% { transform: translateY(8px); }
  100% { transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .banner-productos {
    height: 200px;
    margin-top: 80px;
  }

  .banner-productos img {
    height: 100%;
    object-fit: cover;
  }

  .banner-titulo {
    font-size: 25px;
    padding: 8px 20px;
  }

  .banner-titulo h1 {
    font-size: 28px;
  }

  .scroll-down button {
    width: 50px;
    height: 50px;
  }

  .scroll-down button img {
    width: 50px;
    height: 50px;
  }

  .scroll-text {
    font-size: 12px;
  }
}


/**************************
  SLIDER BANNER
***************************/
.slider-container {
  font-family: "Inter-Bold";
  position: relative;
  width: 100%;
  max-width: 1920px;
  overflow: hidden;
}

.slider {
  display: flex;
  transition: transform 1s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 750px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.slide-content {
  /*background-color: rgba(67, 95, 58, 0.8);*/
  color: #fff;
  padding: 20px;
  text-align: center;
  max-width: 80%;
  border-radius: 5px;
  position: absolute;
  /*left: 40px; */
  bottom: 50px;
}

.slide-content h2 {
  font-family: "Montserrat-Bold";
  font-size: 2em;
  margin: 0 0 10px 0;
}

.slide-content p {
  font-size: 1.2em;
  margin: 0 0 20px 0;
}

.btn {
  font-family: 'inter';
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--naranja);
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.btn:hover {
  background-color: var(--rojo);
  color: white;
  /*border: 1px solid white; */
}

.navigation-dots {
  text-align: center;
  position: absolute;
  bottom: 20px;
  width: 100%;
}

.dot {
  display: inline-block;
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background-color: var(--naranja);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: var(--rojo);
}

.nav-button-slider {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  transition: background-color 1s ease;
  z-index: 10;
}

.nav-button-slider img {
  width: 45px;
  height: 45px;
}

.nav-button-slider.left {
  left: 120px;
}

.nav-button-slider.right {
  right: 120px;
}

@media (max-width: 768px) {
  .slide {
    height: 620px;
    background-position: 50% center;
  }

  .slide-content {
    /* background-color: rgba(67, 95, 58, 0.8);*/
    color: #fff;
    padding: 20px;
    text-align: left;
    max-width: 80%;
    border-radius: 5px;
    position: absolute;
    /* left: 40px;  Alinea el contenido a la izquierda */
    bottom: 50px;
  }

  .slide-content h2 {
    font-family: "LTMuseum-Medium";
    font-size: 1.5em;
    line-height: 1;
  }

  .slide-content p {
    font-size: 0.9em;
  }

  .btn {
    font-size: 14px;
  }

  .nav-button-slider {
    padding: 8px;
  }

  .nav-button-slider img {
    width: 0px;
    height: 0px;
  }

  .nav-button-slider img {
    width: 40px;
    height: 40px;
  }

  .nav-button-slider.left {
    left: 15px;
  }

  .nav-button-slider.right {
    right: 15px;
  }

}

@media (max-width: 768px) {
  .slide {
    height: 620px;
  }
}

/*BREADCRUMB*/
.breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 50px;
  text-align: left;
  font-family: 'Inter';
}

.breadcrumb {
  font-size: 14px;
}

.breadcrumb a {
  text-decoration: none;
  color: var(--gris);
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--naranja);
}

.breadcrumb a.active {
  color: var(--dorado);
  font-weight: bold;
  pointer-events: none;
}
.breadcrumb span.active {
  color: var(--dorado);
  font-weight: bold;
  pointer-events: none;
}
@media (max-width: 768px) {
  .breadcrumb {
    font-size: 15px;
    text-align: center;
  }
}

/**************************
  FORMULARIO SUSCRIPCIÓN
***************************/
.subscription-background {
  background-color: var(--naranja);
  padding: 50px 20px;
}

.subscription-form {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  /* background: #fff;  Fondo blanco para el formulario */
  /* padding: 20px; */
}

.subscription-form .content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.subscription-form .text {
  text-align: left;
}

.subscription-form h2 {
  font-family: var(--font-principal-semi);
  font-weight: normal;
  font-size: 40px;
  color: var(--rojo);
  margin-bottom: 10px;
}

.subscription-form p {
  font-family: var(--font-principal-regular);
  font-size: 25px;
  color: white;
}

.subscription-form input[type="text"],
.subscription-form input[type="email"] {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  font-size: 16px;
}

.subscription-form .checkbox-container label {
  font-size: 14px;
  color: white;
  display: block;
  text-align: left;
}

.subscription-form .checkbox-container label a {
  text-decoration: none;
  color: var(--rojo);
}

.subscription-form .checkbox-container label a:hover {
  color: #eec57e;
}

.subscription-form button {
  font-family: 'Inter';
  background-color: var(--rojo);
  color: #ffffff;
  padding: 10px 20px;
  margin-top: 30px;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.subscription-form button:hover {
  background-color: var(--naranja);
  color: var(--rojo);
  outline: 2px solid var(--rojo);
  outline-offset: -2px;
  transition: 0.3s;
}

/* Responsivo para pantallas pequeñas */
@media (max-width: 768px) {
  .subscription-form .content {
    grid-template-columns: 1fr;
  }

  .subscription-form h2 {
    font-size: 30px;
  }

  .subscription-form .text,
  .subscription-form .form {
    text-align: center;
  }

  .subscription-form p {
    font-size: 20px;
  }
}

.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #c32a26;
  color: #ffffff;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  min-width: 300px;
  max-width: 500px;
  opacity: 0;
  transform: translateX(400px);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.notification.show,
.notification:not(.hidden) {
  opacity: 1;
  transform: translateX(0);
}

.notification.hidden {
  display: none;
  opacity: 0;
  transform: translateX(400px);
}

.notification p {
  margin: 0;
  padding: 0;
}

/**************************
    SLIDER RECETAS -HOME
***************************/
.new-container-carrucel {
  background-color: white;
  padding-top: 50px;
  padding-bottom: 50px;
}

.new-title_carrucel {
  font-family: var(--font-principal-semi);
  font-weight: normal;
  font-size: 40px;
  color: var(--rojo);
  text-align: center;
}

.new-parrafo_carrucel {
  font-family: var(--font-principal-regular);
  text-align: center;
  color: var(--marron);
  font-size: 25px;
  margin-top: 15px;
  margin-bottom: 50px;
}

.new-slider-wrapper {
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  cursor: grab;
}

.new-card-list {
  display: flex;
  transition: transform 0.5s ease;
}

.new-card-item {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  box-sizing: border-box;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--rojo);
}

.new-card-item p {
  color: var(--rojo);
  font-size: 22px;
  margin-top: 10px;
}

.new-image-container {
  position: relative;
  width: 350px;
  height: 350px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 10px;
}

.new-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.new-category-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--rojo);
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 18px;
  font-family: "LTMuseum-Medium";
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.new-category-button:hover {
  background-color: var(--naranja);
}

.new-overlay {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: rgba(195, 42, 38, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: bottom 0.3s ease;
}

.new-image-container:hover .new-overlay {
  bottom: 0;
}

.new-recipe-name {
  color: white;
  font-family: var(--font-principal-semi);
  font-size: 20px;
}

.new-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.new-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--rojo);
  border-radius: 50%;
  cursor: pointer;
}

.new-pagination-bullet.active {
  background-color: var(--naranja);
}

.new-nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-100%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.new-nav-button.new-prev {
  left: -0px;
}

.new-nav-button.new-next {
  right: -0px;
}

.new-nav-button img {
  width: 45px;
  height: 45px;
}

@media screen and (max-width: 1024px) {
  .new-card-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media screen and (max-width: 620px) {
  .new-card-item {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .new-image-container {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 768px) {
  .new-container-carrucel {
    padding: 20px;
  }

  .new-title_carrucel {
    margin-top: 30px;
    font-size: 30px;
    font-weight: bold;
  }

  .new-parrafo_carrucel {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .new-nav-button img {
    width: 40px;
    height: 40px;
  }

  .new-nav-button.new-prev {
    left: -145px;
  }

  .new-nav-button.new-next {
    right: -145px;
  }

}

/*==ANIMACIÓN==*/
.new-title_carrucel,
.new-parrafo_carrucel,
.new-card-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Cuando se activa la animación */
.animate .new-title_carrucel,
.animate .new-parrafo_carrucel,
.animate .new-card-item {
  opacity: 1;
  transform: translateY(0);
}

/**************************
 CARRUSEL PRODUCTOS - HOME
***************************/
.container-carrucel {
  background-color: #fbe9d7;
  padding-top: 70px;
  padding-bottom: 50px;
}

.title_carrucel {
  font-family: var(--font-principal-semi);
  font-weight: normal;
  font-size: 40px;
  color: var(--rojo);
  text-align: center;
}

.parrafo_carrucel {
  font-family: var(--font-principal-regular);
  text-align: center;
  color: var(--marron);
  font-size: 25px;
  margin-top: 15px;
  margin-bottom: 50px;
}

.slider-wrapper {
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  cursor: grab;
}

.card-list {
  display: flex;
  transition: transform 0.5s ease;
}

.card-item {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  box-sizing: border-box;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #0037A4;
}

.card-item p {
  font-family: var(--font-principal-semi);
  font-weight: normal;
  color: var(--rojo);
  font-size: 25px;
  margin-top: 10px;
}

.card-image {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--naranja);
  border-radius: 50%;
  cursor: pointer;
}

.pagination-bullet.active {
  background-color: var(--rojo);
}

.nav-button-productos {
  position: absolute;
  top: 50%;
  transform: translateY(-100%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.nav-button-productos.prev {
  left: 10px;
}

.nav-button-productos.next {
  right: 10px;
}

.nav-button-productos img {
  width: 45px;
  height: 45px;
}

@media (max-width: 768px) {
  .nav-button-productos img {
    width: 40px;
    height: 40px;
  }

  .nav-button-productos.prev {
    left: -150px;
  }

  .nav-button-productos.next {
    right: -150px;
  }
}

@media screen and (max-width: 1024px) {
  .card-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media screen and (max-width: 620px) {
  .card-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.product-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (max-width: 768px) {
  .container-carrucel {
    padding: 20px;
  }

  .title_carrucel {
    margin-top: 30px;
    font-size: 30px;
    font-weight: bold;
  }

  .parrafo_carrucel {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

/**************************
    VIDEOS HOME (YouTube)
***************************/
.videos-publicidad {
  background-color: var(--rojo);
  padding: 50px 20px;
  text-align: center;
  position: relative;
}

.video-carrusel-titulo h2 {
  font-family: var(--font-principal-semi);
  font-weight: normal;
  font-size: 40px;
  color: var(--naranja);
  margin: 0;
}

.video-carrusel-titulo p {
  font-family: var(--font-principal-regular);
  color: white;
  font-size: 25px;
  margin-top: 15px;
  margin-bottom: 50px;
}

.video-carrusel-container {
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.video-carrusel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.video-carrusel-item {
  flex: 0 0 33.33%;
  padding: 10px;
}

.video-carrusel-item iframe {
  width: 100%;
  height: 250px;
  border: 1px solid var(--naranja);
  border-radius: 12px;
}

.video-carrusel-boton {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 2;
  padding: 10px;
  border-radius: 50%;
}

.video-carrusel-boton img {
  width: 45px;
  height: 45px;
}

.video-carrusel-boton-izq {
  left: 330px;
}

.video-carrusel-boton-der {
  right: 330px;
}

@media (max-width: 1024px) {
  .video-carrusel-item {
    flex: 0 0 50%;
  }

  .video-carrusel-item iframe {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .video-carrusel-item {
    flex: 0 0 100%;
  }

  .video-carrusel-item iframe {
    height: 220px;
  }


  .video-carrusel-titulo h2 {
    font-size: 30px;
  }

  .video-carrusel-titulo p {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .video-carrusel-boton img {
    width: 40px;
    height: 40px;
  }

  .video-carrusel-boton-izq {
    left: 5px;
  }

  .video-carrusel-boton-der {
    right: 5px;
  }
}



/**************************
        FOOTER
***************************/
.footer {
  position: relative;
  width: 100%;
  color: white;
  background-color: var(--rojo);
  /*  background: url('../img/pattern/contenedor-footer.svg') no-repeat; */
  background-size: cover;
  padding-top: 30px;
  z-index: 1;
}

.footer-wrapper {
  max-width: 1920px;
  margin: 0 auto;
  padding: 20px 16px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.footer-column img {
  max-width: 180px;
  margin-bottom: 20px;
}

.footer-column h2 {
  font-family: var(--font-principal-semi);
  font-weight: normal;
  color: var(--naranja);
  margin-bottom: 10px;
  font-size: 30px;
}

.footer-column p,
.footer-column a {
  font-size: 15px;
  line-height: 1.5;
}

.parrafo-razon {
  font-family: 'Inter';
  color: var(--dorado);
  font-size: 14px;

}

.menu-footer ul {
  list-style: none;
  padding: 0;
}

.menu-footer li {
  margin-bottom: 5px;
  transition: transform 0.3s;
}

.menu-footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
}

.menu-footer a:hover {
  color: var(--dorado);
}

.menu-footer li:hover {
  transform: translateX(8px);
}

.social-iconos {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}

.social-iconos a img {
  width: 35px;
  transition: transform 0.3s, filter 0.3s;
}

.social-iconos a:hover img {
  filter: brightness(0) saturate(100%) invert(45%) sepia(84%) saturate(383%) hue-rotate(11deg);
  transform: scale(1.2);
}

.links {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 10px 0;
}

.links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
}

.links a:hover {
  color: var(--dorado);
  transform: translateX(8px);
}

.reclamaciones img {
  width: 160px;
  margin-top: 10px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid white;
  padding-top: 10px;
  font-size: 13px;
}

.footer-bottom a {
  text-decoration: none;
  color: #e75e59;
}

.footer-bottom a:hover {
  color: var(--naranja);
}

.phone-number {
  font-family: var(--font-principal-semi);
  color: white;
  text-decoration: none;
}

.footer-column.contact .phone-number {
  font-size: 30px;
  color: white;
  text-decoration: none;
  display: inline-block;
}

.footer-column.contact .phone-number:hover {
  text-decoration: none;
  color: var(--naranja);
}

.footer-image-svg {
  width: 100%;
  display: block;
  margin-top: -1px;
  line-height: 0;
}

.footer-image-svg img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column {
    margin: 10px 0;
  }

  .social-iconos {
    justify-content: center;
  }

  .links {
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
}

/*PATTER MANTEL INFERIOR*/
#pattern-container {
  width: 100%;
  position: relative;
  bottom: 0;
  height: 20px;
  background-image: url('../img/iconos/pattern-dg.svg');
  background-repeat: repeat-x;
  background-size: auto 20px;
}

/**************************
  CONTACTANOS
***************************/
#section-correo {
  padding: 50px 20px;
  background-color: white;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.contact-details {
  flex: 1;
  max-width: 45%;
  text-align: left;
}

.contact-details h2 {
  font-family: var(--font-principal-bold);
  font-weight: normal;
  font-size: 35px;
  color: var(--rojo);
  margin-bottom: 20px;
}

.contact-details h3 {
  font-family: var(--font-principal-semi);
  font-weight: normal;
  font-size: 20px;
  color: var(--naranja);
  margin-top: 15px;
  margin-bottom: 15px;
}

.contact-details p {
  font-family: var(--font-principal-regular);
  font-size: 16px;
  color: var(--gris);
  margin-top: 20px;
  margin-bottom: 20px;
}

.contact-details a {
  color: white;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.ver-distribuidores-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: var(--naranja);
  color: #fff;
  text-decoration: none;
}

.ver-distribuidores-btn:hover {
  background-color: var(--rojo);
}

.contact-form {
  flex: 1;
  max-width: 45%;
}

.contact-form h2 {
  font-size: 28px;
  color: var(--rojo);
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  font-family: var(--font-principal-regular);
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid var(--naranja);
  font-size: 16px;
  border-radius: 5px;
}

input,
textarea,
select,
button {
  outline: none;
}

/* input:focus,
textarea:focus,
select:focus,
button:focus {
  outline: none;
  box-shadow: 0 0 0 1px var(--naranja);
}*/

.contact-form button {
  background-color: var(--naranja);
  color: #fff;
  padding: 10px 20px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  margin-top: 30px;
}

.contact-form button:hover {
  background-color: var(--rojo);
  transition: 0.3s;
}

.contact-form label {
  font-size: 13px;
  color: var(--gris);
  display: block;
  text-align: left;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.contact-form label a {
  text-decoration: none;
  color: var(--rojo);
}

.contact-form label a:hover {
  color: var(--naranja);
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-details,
  .contact-form {
    max-width: 100%;
  }

  .contact-details h2 {
    font-size: 30px;

  }

  .contact-details h3 {
    font-size: 18px;
  }
}

.contact-details hr {
  border: none;
  border-top: 1px dashed var(--naranja);
  margin: 10px 0;
}

.contact-details a:hover {
  text-decoration: none;
}

/**************************
  MARCAS
***************************/
.prefix-section-marcas {
  text-align: center;
  padding-top: 50px;
  padding-bottom: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.prefix-section-marcas-title {
  font-family: var(--font-principal-semi);
  font-weight: normal;
  color: var(--rojo);
  font-size: 40px;
  margin-bottom: 10px;
}

.prefix-section-marcas-subtitle {
  font-family: var(--font-principal-regular);
  color: var(--marron);
  font-size: 25px;
  margin-bottom: 80px;
}

.prefix-section-marcas-carousel {
  overflow: hidden;
  position: relative;
  padding: 20px 50px;
}

.prefix-section-marcas-track {
  display: flex;
  transition: transform 0.5s ease;
}

.prefix-section-marcas-item {
  min-width: calc(100% / 6);
  box-sizing: border-box;
  flex-shrink: 0;
  padding: 0 1px;
}

.prefix-section-marcas-item img {
  width: auto;
  height: 25px;
  max-width: 100%;
  margin: 0 auto;
}

.prefix-section-marcas-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 20;
}

.prefix-section-marcas-btn img {
  width: 45px;
  height: auto;
}

.prefix-section-marcas-btn.prev {
  left: -0px;
}

.prefix-section-marcas-btn.next {
  right: -0px;
}

.prefix-section-marcas-nav {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.prefix-section-marcas-dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: var(--naranja);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.prefix-section-marcas-dot.active {
  background-color: var(--rojo);
}

@media (min-width: 600px) {
  .prefix-section-marcas-item {
    min-width: 25%;
  }
}

@media (max-width: 768px) {
  .prefix-section-marcas {
    padding: 20px;
  }

  .prefix-section-marcas-btn.prev {
    left: -150px;
  }

  .prefix-section-marcas-btn.next {
    right: -150px;
  }

  .prefix-section-marcas-title {
    font-size: 30px;
  }

  .prefix-section-marcas-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
  }

}

/**************************
  POLITICAS DE PRIVACIDAD
***************************/
.politicas-privacidad {
  background: #fff;
  padding: 130px 20px;
}

.contenedor-politicas {
  max-width: 1000px;
  margin: 0 auto;
  color: var(--gris);
  font-family: sans-serif;
}

.contenedor-politicas h2 {
  font-family: var(--font-principal-semi);
  color: var(--rojo);
  font-size: 50px;
  margin-bottom: 40px;
  text-align: center;
}

.contenedor-politicas h3 {
  font-family: var(--font-principal-semi);
  color: var(--naranja);
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.contenedor-politicas p {
  font-family: var(--font-principal-regular);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--gris);
}

.contenedor-politicas ul,
.contenedor-politicas ol {
  font-family: var(--font-principal-regular);
  font-size: 16px;
  line-height: 1.8;
  color: var(--gris);
  margin: 0 0 30px 30px;
  padding-left: 20px;
}

.contenedor-politicas ul li,
.contenedor-politicas ol li {
  margin-bottom: 12px;
}

.contenedor-politicas ul li::marker,
.contenedor-politicas ol li::marker {
  color: var(--rojo);
  font-weight: bold;
}

.contenedor-politicas span {
  color: var(--gris);
  font-weight: bold;
}

/* Responsive */
@media (max-width: 600px) {
  .contenedor-politicas h2 {
    font-size: 28px;
  }

  .contenedor-politicas h3 {
    font-size: 20px;
  }

  .contenedor-politicas p,
  .contenedor-politicas ul,
  .contenedor-politicas ol,
  .contenedor-politicas li {
    font-size: 15px;
  }

  .contenedor-politicas ul,
  .contenedor-politicas ol {
    margin-left: 20px;
  }
}