.elementor-9842 .elementor-element.elementor-element-dab0fb1{--display:flex;}.elementor-9842 .elementor-element.elementor-element-dab0fb1:not(.elementor-motion-effects-element-type-background), .elementor-9842 .elementor-element.elementor-element-dab0fb1 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#007DCC;}.elementor-9842 .elementor-element.elementor-element-f64f33f{--display:flex;}.elementor-9842 .elementor-element.elementor-element-f64f33f:not(.elementor-motion-effects-element-type-background), .elementor-9842 .elementor-element.elementor-element-f64f33f > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#007CBA;}.elementor-9842 .elementor-element.elementor-element-37c52d1{--display:flex;}.elementor-9842 .elementor-element.elementor-element-800d431{--display:flex;}.elementor-9842 .elementor-element.elementor-element-c19d320 > .elementor-widget-container{margin:-99px 0px 0px 0px;}.elementor-9842 .elementor-element.elementor-element-f0831ee{--display:flex;}.elementor-9842 .elementor-element.elementor-element-f0831ee:not(.elementor-motion-effects-element-type-background), .elementor-9842 .elementor-element.elementor-element-f0831ee > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#007CBA;}/* Start custom CSS for html, class: .elementor-element-9836bb3 *//* Estilo general para el encabezado */
.custom-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #007CBA; /* Color de fondo del encabezado */
    position: relative;
    height: 100px;
}

/* Estilo del logo */
.header-logo img {
    width: 250px; /* Ancho del logo */
}

/* Estilo del menú de navegación */
.header-menu {
    display: flex;
    align-items: center;
}

/* Menú en versión de escritorio */
.desktop-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.desktop-menu li {
    margin: 0 15px;
}

.desktop-menu a {
    text-decoration: none;
    color: #fff; /* Color del texto de los enlaces */
    position: relative;
    font-size: 16px; /* Tamaño de fuente */
    padding-bottom: 5px;
}

/* Efecto de subrayado blanco en hover */
.desktop-menu a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #fff; /* Color del subrayado */
    transition: width .3s ease;
    position: absolute;
    bottom: 0;
    left: 0;
}

.desktop-menu a:hover::after {
    width: 100%;
}

/* Menú en versión móvil */
.mobile-menu {
    display: none; /* Ocultar por defecto */
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    width: 100%;
    z-index: 10;
}

.mobile-menu li {
    margin: 0;
    padding: 10px;
    border-bottom: 1px solid #444;
}

.mobile-menu a {
    color: #0A395C;
    text-decoration: none;
    display: block;
}

/* Estilo del botón hamburguesa */
.menu-toggle {
    display: none; /* Ocultar por defecto */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: -10px;
}

.menu-toggle .hamburger {
    width: 25px;
    height: 2px;
    background-color: #fff;
    position: relative;
}

.menu-toggle .hamburger::before,
.menu-toggle .hamburger::after {
    content: '';
    width: 25px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 0;
}

.menu-toggle .hamburger::before {
    top: -7px;
}

.menu-toggle .hamburger::after {
    top: 7px;
}

/* Mostrar el menú móvil cuando el botón hamburguesa es activado */
.menu-toggle.active + .mobile-menu {
    display: block;
}

/* Media query para dispositivos móviles */
@media (max-width: 768px) {
    .desktop-menu {
        display: none; /* Ocultar menú de escritorio en móviles */
    }

    .menu-toggle {
        display: block; /* Mostrar botón hamburguesa en móviles */
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-574a44b *//* === VIDEO DE FONDO (DESKTOP Y MOBILE) === */
.fullscreen-video-wrapper {
  position: relative;
  width: 100%;
  height: 100vh; /* Altura visible */
  overflow: hidden;
}

.fullscreen-video {
  position: absolute;
 
  width: 100%;
  height: 100%;
  object-fit: cover; /* evita distorsión */
  z-index: 1;
}

/* Video mobile oculto en escritorio */
.video-mobile {
  display: none;
}

/* Mostrar video mobile en pantallas pequeñas */
@media (max-width: 767px) {
  .fullscreen-video {
    display: none;
  }

  .video-mobile {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Contenido superpuesto sobre el video */
.video-overlay-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
  padding: 20px;
}

.video-overlay-content h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
  font-family: "Arial", sans-serif;
}

.video-cta-btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #FBD21E;
  color: #0A395C;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
}

.video-cta-btn:hover {
  background-color: #fff100;
  color: #000;
}

/* === Overlay banner geolocalizado === */
.banner-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 2;
}

/* === SECCIÓN DE TARJETAS Y HUSKY === */
.tw-husky-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
}

.tw-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
}

.tw-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.tw-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.tw-info-icon {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tw-info-icon img {
  width: 90px;
  height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.tw-info-icon img:hover {
  transform: scale(1.1);
}

.tw-card h3 {
  color: #0A395C;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: Arial, sans-serif;
}

.tw-card p {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.5;
  font-family: Arial, sans-serif;
}

.tw-husky-center {
  text-align: center;
}

.tw-husky-center img {
  max-height: 700px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.tw-husky-center img:hover {
  transform: scale(1.03);
}

/* === RESPONSIVO HUSKY === */
@media (max-width: 991px) {
  .tw-husky-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tw-column {
    flex-direction: column;
    align-items: center;
  }

  .tw-husky-center img {
    max-height: 350px;
    margin: 30px 0;
  }

  .tw-card {
    width: 90%;
  }
.tw-husky-center {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .tw-husky-center img {
    max-height: 380px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center center;
    margin: 0 auto;
  }
}


/* Video Mobile */
.video-mobile {
  display: none;
}

@media (max-width: 768px) {
  .fullscreen-video {
    display: none;
  }
  .video-mobile {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

/* Banner de fondo si falla el video */
.banner-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  opacity: 0.2;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c19d320 *//* === CARRUSEL DE PRODUCTOS === */
.producto-title-highlight {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #0A395C;
  text-decoration: underline;
  text-underline-offset: 8px;
  font-family: Arial, sans-serif;
  margin: 40px 0 20px 0;
}

/* === CONTENEDOR GENERAL (Desktop) === */
.producto-carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

/* === BANNER GEOLOCALIZADO === */
.producto-banner-static {
  flex: 0 0 30%;
  position: relative;
  height: 450px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.producto-banner-static img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* === CARRUSEL === */
.producto-carousel-container {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.producto-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.producto-carousel::-webkit-scrollbar { display: none; }

/* === TARJETAS === */
.producto-card {
  position: relative;
  flex: 0 0 calc(33.33% - 20px);
  scroll-snap-align: start;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 420px;
  text-align: center;
}

.producto-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.producto-card img {
  width: 100%;
  height: 39%;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
  display: block;
}

.producto-card-content {
  padding: 20px;
  padding-bottom: 85px; /* deja espacio para el botón */
  box-sizing: border-box;
}

.producto-card h3 {
  font-size: 1.1rem;
  color: #0A395C;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: Arial, sans-serif;
  margin-top: 20px;
}

.producto-card p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 5px;
  line-height: 1.5;
  font-family: Arial, sans-serif;
 padding: 10px;
}

.producto-stars {
  color: #FFD700;
  font-size: 1.4rem;
  margin-top: 10px;
}

/* === BOTÓN === */
.producto-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0A395C;
  color: white;
  padding: 15px 0;
  border: none;
  border-radius: 0 0 15px 15px;
  font-weight: bold;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: background 0.3s ease, transform 0.2s ease;
  font-family: Arial, sans-serif;
}

.producto-btn:hover {
  background: #FBD21E;
  color: #0A395C;
  transform: scale(1.02);
}

/* === FLECHAS === */
.producto-prev, .producto-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #0A395C;
  color: #fff;
  border-radius: 50%;
  font-size: 22px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  border: none;
  z-index: 3;
}
.producto-prev:hover, .producto-next:hover {
  background: #FBD21E;
  color: #0A395C;
}
.producto-prev { left: -55px; }
.producto-next { right: -55px; }

/* === RESPONSIVO === */

/* Tablet */
@media (max-width: 1024px) {
  .producto-card { flex: 0 0 calc(50% - 20px); }
}

/* === MÓVIL === */
@media (max-width: 768px) {
  /* Ocultar banner en móvil */
  .producto-banner-static { display: none !important; }

  /* Carrusel ocupa todo el ancho */
  .producto-carousel-wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .producto-carousel {
    gap: 12px;
    scroll-snap-type: x mandatory;
  }

  .producto-card {
    flex: 0 0 85%;
    min-height: 380px;
    border-radius: 12px;
  }

  .producto-card img {
    height: 45%;
    border-radius: 12px 12px 0 0;
  }

  .producto-btn {
    font-size: 0.95rem;
    padding: 13px 0;
  }

  .producto-prev, .producto-next {
    display: none !important;
  }
}
/* 🔹 Ajuste visual para eliminar espacio blanco extra bajo el carrusel */
.producto-carousel-wrapper {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.producto-carousel-container {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* 🔹 Corrige posibles espacios del banner oculto en móvil */
@media (max-width: 768px) {
  .producto-banner-static {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .producto-carousel-wrapper {
    margin-bottom: 10px !important;
    padding-bottom: 0 !important;
  }

  .producto-card {
    min-height: auto !important;
  }
}/* End custom CSS */