        .main-container {
            padding: 20px;
        }
        
        .sidebar-promocionales {
            background-color: #f6f9f9;
            border: 1px solid #ddd;
            font-family: sans-serif;
            margin-bottom: 20px;
        }
        
        .sidebar-promocionales h3 {
            background-color: #d3d3d3;
            margin: 0;
            padding: 10px;
            font-size: 16px;
            font-weight: bold;
        }
        
        .sidebar-promocionales ul {
            list-style: none;
            margin: 0;
            padding: 10px;
            background-color: #f6f9f9;
        }
        
        .sidebar-promocionales li {
            margin-bottom: 8px;
        }
        
        .sidebar-promocionales a {
            text-decoration: none;
            color: #333;
            font-size: 14px;
        }
        
        .producto-item {
            border: 1px solid #ccc;
            padding: 15px;
            border-radius: 6px;
            background: white;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .producto-item img {
            max-width: 100%;
            height: auto;
            margin-bottom: 10px;
            object-fit: contain;
            max-height: 200px;
        }
        
        .btn-cotizar {
            background-color: #28a745;
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 6px;
            font-weight: bold;
            font-size: 16px;
            white-space: nowrap;
        }
        
        .btn-cotizar img {
            filter: brightness(0) saturate(100%) invert(100%);
        }
        
        .paginacion {
            margin-top: 20px;
            text-align: center;
        }
        
        .paginacion a,
        .paginacion span {
            margin: 0 5px;
            font-weight: 600;
        }
        
        .paginacion .disabled {
            color: #999;
            pointer-events: none;
        }
        
        .btn-ver-mas {
            background-color: #9A2AA0;
            color: white;
            font-weight: bold;
            padding: 12px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-size: 18px;
            width: 100%;
            max-width: 250px;
            transition: background-color 0.3s ease;
            margin: 10px auto;
            display: block;
            text-align: center;
        }
        
        .btn-ver-mas:hover {
            background-color: #7e1f84;
            text-decoration: none;
            color: white;
        }
        
        .fa-search-plus {
            transform: scaleX(-1);
        }
        
        .flip-icon {
            transform: scaleX(-1);
        }
        
        .color-circle {
            width: 25px;
            height: 25px;
            border-radius: 50%;
            border: 1px solid #333;
            margin-bottom: 4px;
        }
        
        @media (max-width: 767.98px) {
            .modal-body {
                flex-direction: column;
            }
            
            .modal-body > div {
                max-width: 100% !important;
            }
            
            .producto-nombre {
                font-size: 18px !important;
            }
            
            .producto-codigo {
                font-size: 16px !important;
            }
        }

        /* Estilos para los tabs */
        .servicio-tabs {
            margin-bottom: 20px;
            border-bottom: 1px solid #ddd;
        }
        
        .servicio-tabs .nav-link {
            color: #333;
            font-weight: bold;
            border: 1px solid transparent;
            border-bottom: none;
            margin-right: 5px;
        }
        
        .servicio-tabs .nav-link.active {
            color: #9A2AA0;
            background-color: #f8f9fa;
            border-color: #ddd #ddd #f8f9fa;
        }
        
        .categoria-group {
            margin-bottom: 15px;
        }
        
        .categoria-group-title {
            font-weight: bold;
            background-color: #e9ecef;
            padding: 5px 10px;
            border-radius: 4px;
            margin-bottom: 5px;
        }

/* Estilos personalizados para la sección de alertas */
.alert-doble-vela {
    background-color: #fff3cd;
    border-color: #ffeeba;
    color: #856404;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 16px;
}

.alert-doble-vela i {
    margin-right: 10px;
    font-size: 20px;
}

/* Estilos personalizados para la sección de banner */
.banner-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden; /* Evita desbordamientos */
    border-radius: 10px; /* Bordes redondeados */
}

.banner-overlay-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10; /* Asegura que esté sobre la imagen */
}

.banner-btn {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
    .banner-btn {
        padding: 15px 30px;
        font-size: 1.2rem;
    }
}

/* Estilos personalizados para la sección de populares */

.popular-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h4 {
    color: #333;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    font-size: 2rem;
}

.section-header h6 {
    color: #00A3C8;
    font-weight: 600;
    position: relative;
    display: inline-block;
    font-size: 1.5rem;
}

.section-header h6::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: #00A3C8;
    margin: 15px auto 0;
}

.popular-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.popular-row {
    display: flex;
    gap: 30px;
}

.popular-item {
    flex: 1;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.popular-item:hover {
    transform: translateY(-15px);
}

.popular-item .bg-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: all 0.6s ease;
    opacity: 0.8;
    mix-blend-mode: multiply;
}

.popular-item:hover .bg-image {
    transform: scale(1.12);
    opacity: 0.6;
}

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    color: white;
    background: linear-gradient(to top, rgba(193, 67, 180, 0.9) 0%, rgba(193, 67, 180, 0) 100%);
    transition: all 0.4s ease;
}

.popular-item:hover .item-overlay {
    background: linear-gradient(to top, rgba(193, 67, 180, 0.95) 0%, rgba(193, 67, 180, 0.8) 100%);
    padding-bottom: 40px;
}

.item-overlay h5 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.8rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.item-overlay p {
    color: #f6f7f7;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    transition: all 0.4s ease;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.popular-item:hover .item-overlay p {
    opacity: 1;
    max-height: 200px;
}

@media (max-width: 1200px) {
    .popular-item {
        height: 350px;
    }
}

@media (max-width: 992px) {
    .popular-item {
        height: 300px;
    }
    
    .item-overlay h5 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .popular-grid {
        gap: 20px;
    }
    
    .popular-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .popular-item {
        height: 250px;
    }
    
    .item-overlay {
        padding: 20px;
    }
    
    .item-overlay h5 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .popular-section {
        padding: 60px 0;
    }
    
    .section-header h4 {
        font-size: 1.6rem;
    }
    
    .section-header h6 {
        font-size: 1.2rem;
    }
    
    .popular-item {
        height: 200px;
    }
}

/* Estilos personalizados para la sección de testimoniales */

.testimonios-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.testimonios-title {
    color: #00A3C8;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
    font-size: 1.8rem;
}

.testimonios-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #00A3C8;
    margin: 15px auto 0;
}

.testimonio-card {
    background: white;
    border-radius: 8px;
    padding: 30px 25px;
    margin: 0 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(0, 163, 200, 0.1);
}

.testimonio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: #00A3C8;
    transition: all 0.4s ease;
}

.testimonio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.testimonio-card:hover::before {
    height: 100%;
}

.testimonio-text {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
}

.testimonio-text::before,
.testimonio-text::after {
    content: '"';
    font-size: 1.8rem;
    color: #00A3C8;
    opacity: 0.3;
    position: absolute;
    font-family: Georgia, serif;
}

.testimonio-text::before {
    top: -12px;
    left: -8px;
}

.testimonio-text::after {
    bottom: -20px;
    right: -8px;
}

.testimonio-author {
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
    font-size: 1.05rem;
}

.testimonio-role {
    color: #00A3C8;
    font-size: 0.85rem;
    font-style: italic;
}

/* Indicadores personalizados */
.custom-indicators {
    display: flex;
    justify-content: center;
    padding: 30px 0 10px;
    position: relative;
    margin-top: 10px;
}

.custom-indicator {
    width: 12px;
    height: 12px;
    background: #e0e0e0;
    margin: 0 6px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 50%;
    border: 2px solid transparent;
}

.custom-indicator.active {
    background: #00A3C8;
    transform: scale(1.2);
    border-color: rgba(0, 163, 200, 0.2);
}

/* Flechas de navegación */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

/* Ocultar flechas en móvil */
@media (max-width: 767px) {
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: #00A3C8;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    border-color: white;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none;
    width: 18px;
    height: 18px;
    border-left: 3px solid #00A3C8;
    border-bottom: 3px solid #00A3C8;
    transition: all 0.3s ease;
}

.carousel-control-prev-icon {
    transform: rotate(45deg);
    margin-right: -3px;
}

.carousel-control-next-icon {
    transform: rotate(-135deg);
    margin-left: -3px;
}

/* Responsive para móviles */
@media (max-width: 767px) {
    .testimonios-section {
        padding: 60px 0;
    }
    
    .testimonios-title {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: -15px;
    }
    
    .carousel-control-next {
        right: -15px;
    }
    
    .testimonio-card {
        padding: 25px 20px;
    }
}

/* Ajustes para el carrusel */
.carousel-inner {
    padding: 10px 0;
}

.carousel-item {
    transition: transform 0.6s ease-in-out;
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
    display: flex;
}

/* Desktop - 3 testimonios */
@media (min-width: 992px) {
    .carousel-item-end.active,
    .carousel-item-next {
        transform: translateX(33.33%);
    }
    
    .carousel-item-start.active, 
    .carousel-item-prev {
        transform: translateX(-33.33%);
    }
}

/* Tablet - 2 testimonios */
@media (min-width: 768px) and (max-width: 991px) {
    .carousel-item-end.active,
    .carousel-item-next {
        transform: translateX(50%);
    }
    
    .carousel-item-start.active, 
    .carousel-item-prev {
        transform: translateX(-50%);
    }
}

/* Estilos generales del footer */
.ap-main-footer {
    background-color: #119ADD;
    color: white;
    font-family: 'Open Sans', sans-serif;
    padding: 50px 0 30px;
    position: relative;
}

.ap-footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.ap-footer-section {
    margin-bottom: 30px;
}

.ap-footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ap-footer-links {
    list-style: none;
    padding: 0;
}

.ap-footer-links li {
    margin-bottom: 10px;
}

.ap-footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.ap-footer-links a:hover {
    color: #e0f7ff;
    text-decoration: underline;
}

.ap-contact-info {
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.ap-contact-info i {
    margin-right: 8px;
    width: 20px;
    text-align: center;
}

.ap-social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.ap-social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
}

.ap-social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.ap-social-icon img {
    width: 22px;
    vertical-align: middle;
}

.ap-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.5;
}

/* Botones flotantes */
.ap-float-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.ap-float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.ap-float-btn:hover {
    transform: scale(1.1);
}

.ap-float-btn.messenger {
    background: #0084FF;
}

.ap-float-btn img {
    width: 28px;
}

/* Responsive */
@media (max-width: 767px) {
    .ap-footer-section {
        text-align: center;
    }
    
    .ap-social-icons {
        justify-content: center;
    }
    
    .ap-footer-bottom {
        padding: 0 15px;
    }
    
    .ap-float-buttons {
        right: 30px;
        bottom: 10px;
    }
    
    .ap-float-btn {
        width: 45px;
        height: 45px;
    }
}

