        .carousel-container {
            width: 100%;
            max-width: none;
            margin: 0 auto;
            padding: 0 1.5rem;
            box-sizing: border-box;
        }
        .carousel-container .section-title {
            font-family: "Poppins", sans-serif;
            font-size: clamp(1.65rem, 2.4vw, 2.25rem);
            font-weight: 700;
            margin-bottom: 1.4rem;
            color: #101827;
            letter-spacing: -0.02em;
        }
        .carousel-with-arrows {
            position: relative;
            padding: 0 72px;
            margin-bottom: 2.5rem;
            background: rgba(255, 255, 255, 0.92);
            border: 1px solid rgba(17, 24, 39, 0.08);
            border-radius: 32px;
            box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
        }
        .carousel-with-arrows::before,
        .carousel-with-arrows::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 74px;
            z-index: 1;
            pointer-events: none;
        }
        .carousel-with-arrows::before {
            left: 0;
            background: linear-gradient(90deg, rgba(255,255,255,0.96), rgba(255,255,255,0));
        }
        .carousel-with-arrows::after {
            right: 0;
            background: linear-gradient(270deg, rgba(255,255,255,0.96), rgba(255,255,255,0));
        }
        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.94);
            color: #111827;
            border: none;
            font-size: 16px;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
            box-shadow: 0 12px 30px rgba(0,0,0,0.16);
        }
        .carousel-arrow:hover {
            background: #fff;
            transform: translateY(-50%) scale(1.05);
            box-shadow: 0 18px 35px rgba(0,0,0,0.2);
        }
        .prev-post {
            left: 12px;
        }
        .next-post {
            right: 12px;
        }
        /* Estilos para el selector de negocios */
        .business-selector-navbar {
            display: flex;
            align-items: center;
            gap: 0;
            padding: 8px 12px;
            border-right: 1px solid rgba(0,0,0,0.1);
            position: relative;
        }
        .business-selector-btn {
            background: linear-gradient(135deg, rgba(76, 120, 175, 0.12), rgba(76, 120, 175, 0.06));
            border: 1px solid rgba(76, 120, 175, 0.15);
            color: #4c78af;
            padding: 8px 12px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 13px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        .business-selector-btn:hover {
            background: linear-gradient(135deg, rgba(76, 120, 175, 0.2), rgba(76, 120, 175, 0.1));
            border-color: rgba(76, 120, 175, 0.25);
            box-shadow: 0 4px 12px rgba(76, 120, 175, 0.12);
        }
        .business-selector-btn.active {
            background: linear-gradient(135deg, rgba(76, 120, 175, 0.25), rgba(76, 120, 175, 0.15));
            border-color: #4c78af;
            box-shadow: 0 4px 16px rgba(76, 120, 175, 0.15);
        }
        .business-btn-icon {
            font-size: 16px;
        }
        .business-btn-arrow {
            font-size: 10px;
            transition: transform 0.3s ease;
        }
        .business-selector-btn.active .business-btn-arrow {
            transform: rotate(180deg);
        }
        .business-selector-dropdown {
            position: absolute;
            top: calc(100% + 8px);
            left: 12px;
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            min-width: 260px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            overflow: hidden;
        }
        .business-selector-dropdown.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .business-selector-dropdown.show.dark-mode {
            background: #2a2a2a;
            border-color: #444;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        }
        .business-item {
            padding: 12px 16px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.2s ease;
            border-bottom: 1px solid #f0f0f0;
            color: #333;
        }
        .business-item.dark-mode {
            border-bottom-color: #444;
            color: #e6e6e6;
        }
        .business-item:last-child {
            border-bottom: none;
        }
        .business-item:hover {
            background: #f5f5f5;
            padding-left: 20px;
        }
        .business-item.dark-mode:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .business-item.active {
            background: linear-gradient(90deg, rgba(76, 120, 175, 0.08), transparent);
            border-left: 3px solid #4c78af;
            padding-left: 13px;
        }
        .business-item.dark-mode.active {
            background: linear-gradient(90deg, rgba(76, 120, 175, 0.15), transparent);
        }
        .business-item-icon {
            font-size: 20px;
            min-width: 24px;
        }
        .business-item-label {
            flex: 1;
        }
        .business-item-name {
            font-weight: 500;
            font-size: 13px;
        }
        .business-item-desc {
            font-size: 11px;
            color: #999;
            margin-top: 2px;
        }
        .business-item.dark-mode .business-item-desc {
            color: #aaa;
        }
        .business-item-check {
            font-size: 12px;
            color: #4c78af;
            opacity: 0;
            transition: opacity 0.2s ease;
        }
        .business-item.active .business-item-check {
            opacity: 1;
        }
        @media (max-width: 768px) {
            .business-selector-navbar {
                padding: 8px 0;
                border-right: none;
            }
            .business-selector-btn {
                padding: 6px 10px;
                font-size: 12px;
            }
            .business-selector-dropdown {
                min-width: 240px;
            }
        }