@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root{
    --fs-14-32:clamp(0.75rem, 0.269rem + 1.923vi,2rem);
} 


body {
    background-color: #fff;
    color: #333;
    font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
}

.txd-none{
    text-decoration: none;
}
.navbar-background, .footer-background {
    background-color: #333;
}

.nav-link {
    color: #fff;
}

.nav-link:hover {
    color: #ddd;
}

.whatsapp, .facebook, .instagram {
    font-size: 1.5rem;
    color: #fff;
}

.carousel-item img {
    max-height: 760px; /* Ajusta el tamaño de las imágenes */
    object-fit: cover; /* Cubre todo el espacio disponible sin perder proporciones */

  }
  

.carousel-inner img {
    height: 70hv;
    object-fit: cover;
}

.white-bar {
    background-color: #fff;
    color: #333;
    padding: 3vh;
}

.card {
    background-color: #333;
    border: none;
    height: 100%; /* Hace que todas las tarjetas ocupen el 100% de su contenedor */
    display: flex;
    flex-direction: column;
}

.card-img-top {
    height: 200px; /* Ajusta el tamaño de las imágenes */
    object-fit: cover; /* Mantiene el aspecto de la imagen dentro del tamaño fijo */
}

.card-body {
    flex-grow: 1; /* Permite que el contenido del cuerpo de la tarjeta se expanda */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-title {
    color: #fff;
}

.card-text {
    color: #ccc;
}

.btn {
    width: 100%;
}


.social-img{
    width: 3rem;
}
/* Ajustes de estilo para el contenedor del logo */
.logo-container {
/*     background: linear-gradient(to bottom left, #BB5A9F, #0CACC6); 
 */    padding: 10px; /* Espacio alrededor del logo */
    border-radius: 5px; /* Esquinas redondeadas */
    opacity: 0; /* Inicialmente oculto */
    transition: opacity 1s ease; /* Transición suave para la aparición */
}

/* Logo */
.logo-navbar {
    width: 20vh;
    height: auto;
}
.logo-footer {
    width: 25vh;
    height: auto;
}

/* Animación de aparición */
@keyframes fadeIn {
    to {
        opacity: 1; /* Al final de la animación, totalmente visible */
    }
}

/* Activar la animación al cargar */
.show-logo {
    opacity: 1; /* Esto activa el fondo */
}

 /* Cambiar el color del icono del botón toggle a blanco */
 .navbar-toggler {
  border-color: white; /* Cambia el color del borde del toggle */
}

 /* Estilos adicionales para el menú off-canvas */
 .offcanvas {
  background-color: #333; /* Color de fondo del menú off-canvas */
}
.offcanvas a {
  color: #ffffff; /* Color de texto de los enlaces */
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%20<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30' fill='white'><path stroke='white' stroke-width='3' d='M5 7h20M5 15h20M5 23h20'/></svg>");
}
/* Centrado del contenido del navbar */
.navbar-nav {
    margin: auto; /* Centra horizontalmente */
}

.card-img-top{
    height: 17rem;
    object-fit: cover;
}


.white-bar {
    background-color: white; /* Color de fondo opcional */
    padding: 20px; /* Espaciado opcional */
}

.custom-heading {
    font-size: var(--fs-14-32); 
    text-align: center; 
}

.underline {
    display: inline-block; 
    position: relative; 
}

.underline::after {
    content: "";
    display: block;
    width: var(--undeline-w);
    height: 3px;
    background: linear-gradient(to bottom left, #BB5A9F, #0CACC6); 
    position: absolute;
    bottom: -5px;
    right: 0;
}

.small-image {
    max-width: 8vh; 
    height: auto; 
}
.image-container {
    background-color: white; 
    padding: 20px; 
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 
    width: 100%; 
}

.box {
  width: 400px;    
  height: 250px;   
  overflow: hidden; 
}

.dynoflex-image {
  width: 100%;     
  height: auto;     
}

@media (max-width: 768px) {
  .box {
      width: 100%;   
      height: auto;  
  }
}


.ppf-video, .ppf-image {
    width: 100%;
    height: auto;
    max-height: 450px; 
    object-fit: cover; 
}


.ppf-card {
    display: flex;
    flex-direction: row;
}


.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
}


@media (max-width: 768px) {
    .ppf-card {
        flex-direction: column; 
    }
    .text-content {
        text-align: center; 
        order: 1; 
    }
    .video-container {
        order: 2; 
    }
}

  .btn {
    border-radius: 2px;
    font-weight: normal;
  }
  .btn.btn-primary {
    background-color: black;
    color: white;
  }
  .btn.btn-primary:hover,
  .btn.btn-primary:focus {
    background-color: rgba(0, 0, 0, 0.9);
  }
  
  .display-4 {
    font-size: 35px;
  }
  @media (max-width: 576px) {
    .display-4 {
      font-size: 25px;
    }
  }


.home-content {
    margin-top: 5px;
  }
  .home-content .category-card {
    height: 500px;
    position: relative;
    margin-bottom: 5px;
    overflow: hidden;
  }
  .home-content .category-card.video-card .category-content::after {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .home-content .category-card:hover > .category-content::before {
    background-color: rgba(0, 0, 0, 0.3);
  }
  .home-content .category-card > .category-content {
    transition: all 0.5s;
    text-decoration: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .home-content .category-card > .category-content.left {
    width: calc(100% - 5px);
  }
  .home-content .category-card > .category-content::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0);
    transition: all 0.3s;
  }

  .home-content .category-card h5 {
    font-size: 14px;
    letter-spacing: 3px;
  }
  @media (max-width: 768px) {
    .home-content .category-card {
      height: 450px;
    }
    .home-content .category-card.video-card {
      display: none;
    }
    .home-content .category-card > .category-content {
      width: calc(100% - 10px) !important;
      left: 5px;
    }
    .home-content .category-card > .category-content::before {
      background-color: rgba(0, 0, 0, 0.2);
    }
  }
  
.fw-600{
    font-weight: 600;
}

  /*Productos*/
  .collection .subtitle {
    letter-spacing: 3px;
    opacity: 0.6;
    line-height: 1;
    font-size: 13px;
  }
  
  .product-card .product-title {
    font-size: 18px;
    text-transform: uppercase;
    cursor: pointer;
  }
  .product-card .product-zoom {
    position: absolute;
    top: 9%;
    left: 15%;
  }
  .product-card .product-zoom::before {
    content: "";
    display: block;
    position: absolute;
    top: 10%;
    left: 10%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    margin-left: -25px;
    background-color: #000;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 50%;
    z-index: 1;
    cursor: pointer;
  }
  .product-card .product-zoom::after {
    display: block;
    position: absolute;
    top: 10%;
    left: -8px;
    margin-top: -16px;
    transform: translateY(15px);
    transition: all 0.35s;
    color: #fff;
    font-size: 20px;
    text-align: left;
    content: "\e036";
    opacity: 0;
    z-index: 5;
    cursor: pointer;
  }
  .product-card:hover .product-zoom::after {
    transform: translateY(0);
    opacity: 1;
  }
  .product-card:hover .product-zoom::before {
    opacity: 0.5;
  }
  .product-card .sizes {
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
  }
  .product-card .sizes .size {
    font-size: 12px;
  }
  .product-card .sizes .size:not(:last-child)::after {
    margin: 10px;
    content: "•";
  }
  .product-card .colors {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .product-card .colors .color {
    opacity: 0.6;
    font-size: 12px;
    text-transform: uppercase;
  }
  .product-card .colors .color:not(:last-child)::after {
    margin: 10px;
    content: "•";
  }
  .product-card .slick-prev,
  .product-card .slick-next {
    border-radius: 50%;
    border: 1px solid white;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: white;
    transition: all 0.3s;
  }
  .product-card .slick-prev i,
  .product-card .slick-next i {
    height: 16px;
  }
  .product-card .slick-prev:hover,
  .product-card .slick-next:hover {
    border: 1px solid white;
    background-color: rgba(0, 0, 0, 0.7);
    font-size: 13px;
    color: white;
  }
  .product-card .slick-prev::before,
  .product-card .slick-next::before {
    content: none !important;
  }
  .product-card .slick-prev {
    left: 15px;
    z-index: 2;
  }
  .product-card .slick-next {
    right: 15px;
    z-index: 2;
  }
  @media (max-width: 768px) {
    .product-card .product-zoom::after {
      transform: translateY(0);
      opacity: 1;
    }
    .product-card .product-zoom::before {
      opacity: 0.5;
    }
  }

  .owl-carousel .item {
    position: relative;
}

.owl-carousel .item img {
    width: 100%;
    height: auto; 
    display: block; 
    object-fit: cover;
}

.owl-nav {
    position: absolute; 
    top: 50%; 
    width: 100%; 
    display: flex;
    justify-content: space-between; 
    transform: translateY(-50%); 
}

.owl-nav .nav-btn {
    background: rgba(255, 255, 255, 0.8); 
    border-radius: 50%; 
    padding: 10px; 
    cursor: pointer; 
}

.home-content .category-card.video-card .category-content::after {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .home-content {
    margin-top: 5px;
  }
  .home-content .category-card {
    height: 500px;
    position: relative;
    margin-bottom: 5px;
    overflow: hidden;
  }
    .home-content .category-card.video-card .category-content::after {
      content: "";
      background: rgba(0, 0, 0, 0.4);
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
    }
  .home-content .category-card:hover > .category-content::before {
    background-color: rgba(0, 0, 0, 0.3);
  }
  .home-content .category-card > .category-content {
    transition: all 0.5s;
    text-decoration: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .home-content .category-card > .category-content.left {
    width: calc(100% - 5px);
  }
  .home-content .category-card > .category-content::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0);
    transition: all 0.3s;
  }
  .home-content .category-card h5 {
    font-size: 14px;
    letter-spacing: 3px;
  }
  @media (max-width: 768px) {
    .home-content .category-card {
      height: 450px;
    }
    .home-content .category-card.video-card {
      display: none;
    }
    .home-content .category-card > .category-content {
      width: calc(100% - 10px) !important;
      left: 5px;
    }
    .home-content .category-card > .category-content::before {
      background-color: rgba(0, 0, 0, 0.2);
    }
  }
  
  .category-card .view-button {
    -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
            transform: translateY(10px);
    transition: all .4s;
    opacity: 0;
  }
  
  .category-card:hover .view-button {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  
  .touchevents .category-card .view-button {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  
  @media (max-width: 768px) {
    .category-card .view-button {
      -webkit-transform: translateY(0);
          -ms-transform: translateY(0);
              transform: translateY(0);
      opacity: 1;
    }
  }
  .btn-outline-white {
    border-color: #ffffff;
    background-color: transparent;
    color: #ffffff;
  }
  
  .btn-outline-white:hover {
    background-color: #ffffff;
    color: #ffffff;
  }
  
  .btn-outline-white:hover {
    color: #606975;
  }

.equal-height {
    height: 100%;
    object-fit: cover; 
}

.container-equal {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px; /* Altura fija para las secciones de imagen/video */
    max-height: 100%;
}

@media (max-width: 768px) {
    .container-equal {
        height: auto; /* Ajuste automático en móviles */
    }
    .equal-height {
        height: auto;
    }
}

.circle-image {
    width: 300px; 
    height: 200px;
/*     border-radius: 50%;  */
    object-fit: cover;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.842); 
}

.circle-title {
    font-size: 1.5em;
    margin: 10px 0 5px 0; 
}

.circle-text {
    font-size: 1em;
    max-width: 300px;
}

.logoMarqueeSection {
  padding-top: 4vh;
  padding-bottom: 4vh;
  background: #333;
}

#logoMarqueeSection {
  max-width: 1920px !important;
  margin: 0 auto;
  overflow: hidden; /* Evita el desbordamiento del contenido */
}

.default-content-container {
  margin: 0 auto;
  padding: 4.5rem 2rem; /* Ajuste en los paddings */
  width: 100%;
}

div.marquee > img {
  height: 4vh;
  width: auto; /* Asegúrate de que la imagen sea responsiva */
  padding-right: 5.4rem;
}
div.marquee1 > img {
  height: 10vh;
  width: auto; /* Asegúrate de que la imagen sea responsiva */
  padding-right: 5.4rem;
}

.logoMarqueeSection > div > div {
  padding: 0;
  min-height: 0;
}

.marquee-wrapper {
  display: inline-block;
  white-space: nowrap;
}

.marquee {
  display: inline-block;
  white-space: nowrap;
  position: relative;
  transform: translate3d(0%, 0, 0);
  animation-name: marquee;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}




.marquee-wrapper:hover .marquee {
    animation-play-state: paused !important;
}

@keyframes marquee {
    0% {
        transform: translate3d(0%, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* Media Queries para responsividad */
@media (max-width: 1200px) {
    .default-content-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    div.marquee > a > img {
        height: 70px; 
    }
}

@media (max-width: 768px) {
    div.marquee > a > img {
        height: 60px; 
    }

    .marquee a {
        padding-right: 3rem; 
    }
}

@media (max-width: 480px) {
    div.marquee > a > img {
        height: 50px; 
    }

    .marquee a {
        padding-right: 1rem; 
    }

    .default-content-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}


.logoMarqueeSection {
  padding-top: 4vh;
  padding-bottom: 4vh;
  background: #f3f3f3;
}

#logoMarqueeSection {
  max-width: 1920px !important;
  margin: 0 auto;
  overflow: hidden; /* Evita el desbordamiento del contenido */
}

.default-content-container {
  margin: 0 auto;
  padding: 4.5rem 2rem; /* Ajuste en los paddings */
  width: 100%;
}

div.marquee1 > a > img {
height: 8vh;
  width: auto; /* Asegúrate de que la imagen sea responsiva */
}

.logoMarqueeSection > div > div {
  padding: 0;
  min-height: 0;
}

.marquee-wrapper {
  display: inline-block;
  white-space: nowrap;
}

.marquee1 {
  display: inline-block;
  white-space: nowrap;
  position: relative;
  transform: translate3d(0%, 0, 0);
  animation-name: marquee;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.marquee1 a {
  display: inline-block;
  white-space: nowrap;
  padding-right: 5.4rem;
}

.marquee-wrapper:hover .marquee1 {
  animation-play-state: paused !important;
}

@keyframes marquee {
  0% {
      transform: translate3d(0%, 0, 0);
  }
  100% {
      transform: translate3d(-100%, 0, 0);
  }
}

/* Media Queries para responsividad */
@media (max-width: 1200px) {
  .default-content-container {
      padding-left: 2rem;
      padding-right: 2rem;
  }

  div.marquee1 > a > img {
      height: 70px; 
  }
}

@media (max-width: 768px) {
  div.marquee1 > a > img {
      height: 60px; 
  }

  .marquee1 a {
      padding-right: 3rem; 
  }
}

@media (max-width: 480px) {
  div.marquee1 > a > img {
      height: 50px; 
  }

  .marquee1 a {
      padding-right: 1rem; 
  }

  .default-content-container {
      padding-left: 1rem;
      padding-right: 1rem;
  }
}


.bg-example{
  background-color: #333;
    background-size: cover; /* Opcional, para cubrir toda la pantalla */
}

.cotizacionSection {
  padding: 4vh 2rem;
  background-color: #f9f9f9;
  text-align: center;
}

.cotizacionSection h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

/* .step-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
}
 */
.step {
  background-color: white;
  border: 1px solid #ddd;
  padding: 2rem;
  border-radius: 8px;
  width: 300px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);

}


.step-text h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.step-text p {
  font-size: 1rem;
  color: #555;
}

/* Ajustes para pantallas más pequeñas */
@media (max-width: 768px) {
  .step-container {
      flex-direction: column;
      align-items: center;
  }

  .step {
      width: 100%;
      max-width: 400px;
  }
}


.polarizado-container {
  position: relative;
  width: 100%;
  height: 100%; /* Ajusta la altura según sea necesario */
  overflow: hidden;
  border: 1px solid #ccc; /* Opcional: Añadir un borde para mejorar la visibilidad */
}
.polarizado-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none; /* Ocultar todas las imágenes inicialmente */
}
.polarizado-container img.active {
  display: block; /* Solo mostrar la imagen activa */
}
      .btn-square {
      width: 145px; /* Ajusta el tamaño según sea necesario */
      height: 50px; /* Hacer botones cuadrados */
      border: 2px solid black; /* Borde negro */
      background-color: white; /* Fondo blanco */
      color: black; /* Color de texto negro */
      font-weight: bold; /* Texto en negrita */
      margin: 5px; /* Espacio entre botones */
      transition: background-color 0.3s, color 0.3s; /* Transiciones suaves */
  }
  .btn-square.active {
      background-color: black; /* Fondo negro cuando está activo */
      color: white; /* Texto blanco cuando está activo */
  }

  .sticky {
    display: block;
    position: fixed;
    bottom: 100px;
    right: 6px;
    z-index: 9;
    background-color: transparent;
}

.sticky img {
    width: 60px;
}

.whatsapp-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  color: #333; /* Color de texto normal */
  background-color: #fff; /* Fondo blanco */
  text-decoration: none; /* Sin subrayado */
  border: 2px solid #f8f8f8; /* Borde gris oscuro */
  border-radius: 5px; /* Bordes redondeados */
  transition: background-color 0.3s ease, color 0.3s ease; /* Transiciones suaves */
}

.whatsapp-button:hover {
  color: #fff; /* Color de texto en hover */
  background-color: #333; /* Fondo gris oscuro en hover */
}


.whatsapp-button-2 {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff; /* Color de texto inicial blanco */
  background-color: #333; /* Fondo gris oscuro inicial */
  text-decoration: none; /* Sin subrayado */
  border: 2px solid #f8f8f8; /* Borde gris oscuro */
  border-radius: 5px; /* Bordes redondeados */
  transition: background-color 0.3s ease, color 0.3s ease; /* Transiciones suaves */
}

.whatsapp-button-2:hover {
  color: #333; /* Color de texto en hover gris oscuro */
  background-color: #fff; /* Fondo blanco en hover */
}
