 /* Header que desaparece ao descer */
        header {
            transition: transform 0.3s ease, opacity 0.3s ease;
            transform: translateY(0);
            opacity: 1;
        }

        header.hidden-header {
            transform: translateY(-100%);
            opacity: 0;
            pointer-events: none;
        }

        /* Carrossel com imagens */
        .carousel-container {
            position: relative;
            width: 100%;
            height: 600px;
            overflow: hidden;
            margin-top: 240px;
        }

        .carousel-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
            background-size: cover;
            background-position: center;
        }

        .carousel-slide.active {
            opacity: 1;
        }

        .carousel-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.5), transparent);
            z-index: 2;
        }

        .carousel-text {
            position: absolute;
            bottom: 4rem;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            color: white;
            z-index: 3;
            width: 90%;
            max-width: 800px;
        }

        .carousel-text p {
            font-size: 2.25rem;
            font-weight: bold;
            text-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
            line-height: 1.3;
        }

        .carousel-controls {
            position: absolute;
            left: 1.5rem;
            right: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            z-index: 4;
        }

        .carousel-btn {
            background-color: rgba(255, 255, 255, 0.8);
            border: none;
            border-radius: 50%;
            padding: 0.75rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-btn:hover {
            background-color: rgba(255, 255, 255, 1);
            transform: scale(1.1);
        }

        .carousel-indicators {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.75rem;
            z-index: 4;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background-color: white;
            width: 30px;
            border-radius: 6px;
        }

        @media (max-width: 768px) {
            .carousel-container {
                height: 400px;
                margin-top: 200px;
            }

            .carousel-text p {
                font-size: 1.5rem;
            }

            .carousel-btn {
                width: 40px;
                height: 40px;
                padding: 0.5rem;
            }
        }