
.logo h2 {
    font-weight: bold;
  }
  
  .search-bar input {
    max-width: 300px;
  }
  
  .navbar-nav .nav-link {
    margin-right: 15px;
  }
  
  .bg-dark {
    background-color: #000 !important;
  }
  .carousel-caption {
    padding: 15px;
    border-radius: 10px;
    color: #000;
  }
  
  .carousel-item img {
    height: 400px;
    object-fit: cover;
  }
  
  .mb-3 img {
    border-radius: 8px;
  }
  .hotline {
    display: flex;
    align-items: center; /* Alinear verticalmente los elementos */
    gap: 1rem; /* Espaciado entre texto y carrito */
  
}

.cart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f5f0f0; /* Color gris */
    border-radius: 50%; /* Hacer un círculo */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Sombra */
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Para que no interfiera con clics */
}
.promo-container {
    
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
}

.promo-image {
    flex: 1 1 50%;
    background: url('assets/img/Hisense_doce/hisense.jpeg') no-repeat center center/cover;
}

.promo-content {
    flex: 1 1 50%;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f7f7ff;
}

.promo-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333333;
    margin-bottom: 10px;
}

.promo-description {
    font-size: 1.2rem;
    color: #555555;
    margin-bottom: 20px;
}

.promo-price {
    font-size: 3rem;
    color: #d9534f;
    font-weight: bold;
    margin-bottom: 20px;
}

.promo-prices {
    font-size: 2.5rem;
    color: #194ab4;
    font-weight: bold;
    margin-bottom: 20px;
}

.promo-countdown {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap; /* Permite que los elementos se ajusten en pantallas pequeñas */
}

.countdown-item {
    background-color: #000;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.5rem; /* Tamaño de fuente por defecto */
    padding: 5px 10px; /* Espaciado interno */
    border: 2px solid #000; /* Opcional: Para un diseño más claro */
    border-radius: 8px;
}

.countdown-item span {
    font-weight: bold; /* Acentúa los números */
}

@media (max-width: 768px) {
    .promo-countdown {
        gap: 5px; /* Reduce el espacio entre elementos */
    }

    .countdown-item {
        font-size: 1rem; /* Reduce el tamaño del texto */
        padding: 3px 5px; /* Reduce el espaciado interno */
    }

    .countdown-item span {
        font-size: 1.2rem; /* Ajusta el tamaño del número */
    }
}

.moving-button {
 
    display: inline-block;
    padding: 10px 10px; /* Tamaño reducido */
    font-size: 16px; /* Tamaño de fuente más pequeño */
    font-weight: bold;
    color: #ffffff;
    background: #007bff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    animation: moveUpDown 1s ease-in-out infinite;
    text-align: center;
    margin: 0 auto; /* Centrado horizontal */
}

/* Animación para el movimiento de arriba a abajo */
@keyframes moveUpDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}