        .carousel-item img {
            height: 500px;
            object-fit: cover;
            width: 100%;
            border-radius: 12px;
        }

        .carousel-indicators [data-bs-target] {
            background-color: var(--primary-color);
        }

        .detail-icon {
            font-size: 1.5rem;
            color: var(--accent-color);
            margin-right: 10px;
        }

        .feature-box {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            border: 1px solid #e9ecef;
            height: 100%;
        }

        .price-tag {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent-color);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: clip;
            /* We want to shrink, not show ellipsis if possible */
            max-width: 100%;
        }

        .price-line {
            white-space: nowrap;
            display: block;
            /* Ensure it takes full width of container if needed */
            width: 100%;
        }

        .btn-whatsapp {
            background-color: #25D366;
            color: white;
            font-weight: 700;
            font-size: 1.1rem;
            border: none;
        }

        .btn-whatsapp:hover {
            background-color: #128C7E;
            color: white;
        }

        /* Mobile adjustments */
        @media (max-width: 768px) {
            .carousel-item img {
                height: 300px;
            }

            .price-tag {
                font-size: 1.5rem;
            }
        }

        .modal-overlay {
            display: none;
            /* Oculto por padrão */
            position: fixed;
            z-index: 9999;
            /* Fica acima de tudo, inclusive da navbar */
            padding-top: 50px;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.9);
            /* Fundo preto transparente */
            backdrop-filter: blur(5px);
            /* Efeito de desfoque no fundo */
        }

        /* Imagem central */
        .modal-content-img {
            margin: auto;
            display: block;
            max-width: 90%;
            max-height: 85vh;
            border-radius: 4px;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
            animation: zoomIn 0.3s;
        }

        @keyframes zoomIn {
            from {
                transform: scale(0.9);
                opacity: 0;
            }

            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* Botão Fechar (X) */
        .close-modal {
            position: absolute;
            top: 15px;
            right: 35px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            transition: 0.3s;
            cursor: pointer;
            z-index: 10001;
        }

        .close-modal:hover,
        .close-modal:focus {
            color: var(--accent-color);
            text-decoration: none;
            cursor: pointer;
        }

        /* Setas de Navegação */
        .modal-prev,
        .modal-next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            width: auto;
            padding: 16px;
            margin-top: -50px;
            color: white;
            font-weight: bold;
            font-size: 30px;
            transition: 0.3s ease;
            border-radius: 0 3px 3px 0;
            user-select: none;
            z-index: 10000;
            background-color: rgba(0, 0, 0, 0.3);
        }

        .modal-next {
            right: 0;
            border-radius: 3px 0 0 3px;
        }

        .modal-prev:hover,
        .modal-next:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }

        /* Ajuste do cursor no carrossel principal */
        .carousel-item img {
            cursor: zoom-in;
            /* Indica que é clicável */
        }

        /* Ajustes Mobile para o Modal */
        @media only screen and (max-width: 700px) {
            .modal-content-img {
                width: 100%;
                max-height: 70vh;
                margin-top: 30%;
            }

            .close-modal {
                top: 10px;
                right: 20px;
                font-size: 30px;
            }

            .modal-prev,
            .modal-next {
                padding: 10px;
                font-size: 20px;
            }
        }

        /* =========================================
   ANIMATIONS & EFFECTS
   ========================================= */
        .years-badge {
            background-color: rgba(37, 211, 102, 0.85) !important;
            /* Green similar to WhatsApp/Image */
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .animate-on-scroll.is-visible {
            opacity: 1;
            transform: translateY(0);
        }