        :root {
            --primary-purple: #6b46c1;
            --secondary-purple: #8b5cf6;
            --accent-red: #dc2626;
            --light-purple: #ede9fe;
            --dark-purple: #4c1d95;
            --white: #ffffff;
            --gray-100: #f3f4f6;
            --gray-600: #4b5563;
            --gray-800: #1f2937;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Arial", sans-serif;
            line-height: 1.6;
            color: var(--gray-800);
            background: linear-gradient(135deg, var(--light-purple) 0%, var(--white) 100%);
            min-height: 100vh;
        }

        .container {
            margin: 0 50px;
            padding: 0;
            max-width: none;
        }

        /* Título da Página */
        .page-title {
            text-align: center;
            padding: 3rem 0 2rem 0;
            background: linear-gradient(135deg, var(--light-purple) 0%, var(--white) 100%);
        }

        .page-title h1 {
            font-size: 3rem;
            color: var(--primary-purple);
            margin-bottom: 1rem;
        }

        .page-title p {
            font-size: 1.2rem;
            color: var(--gray-600);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Seção de Detalhes */
        .detalhes-container {
            padding: 4rem 0;
            background: var(--white);
        }

        /* Seção de Vídeo */
        .video-section {
            background: var(--light-purple);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(107, 70, 193, 0.1);
            margin-bottom: 3rem;
        }

        .video-section h3 {
            color: var(--primary-purple);
            font-size: 2rem;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .video-wrapper {
            position: relative;
            width: 70%;
            height: 0;
            padding-bottom: 39.375%;
            background: #000;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            margin: 0 auto;
        }

        .video-wrapper img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            border: none;
            border-radius: 15px;
            transition: transform 0.3s ease;
        }

        .video-wrapper:hover img {
            transform: scale(1.05);
        }

        /* Accordion - CORRIGIDO */
        .accordion-container {
            max-width: 1000px;
            margin: 0 auto;
            background: var(--white);
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(107, 70, 193, 0.1);
            overflow: hidden;
        }

        .accordion-item {
            border-bottom: 1px solid var(--gray-100);
        }

        .accordion-item:last-child {
            border-bottom: none;
        }

        .accordion-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.5rem 2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            background: var(--white);
            border: none;
            width: 100%;
            text-align: left;
        }

        .accordion-header:hover {
            background: var(--gray-100);
        }

        .accordion-header.active {
            background: var(--light-purple);
            color: var(--primary-purple);
        }

        .accordion-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--primary-purple);
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .accordion-icon {
            font-size: 1.5rem;
        }

        .accordion-arrow {
            font-size: 1.2rem;
            color: var(--gray-600);
            transition: transform 0.3s ease;
        }

        .accordion-arrow.active {
            transform: rotate(90deg);
        }

        /* CORREÇÃO PRINCIPAL: Accordion content */
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-in-out, padding 0.3s ease;
            padding: 0 2rem;
            border-top: none;
        }

        .accordion-content.active {
            padding: 2rem;
            border-top: 1px solid var(--gray-100);
        }

        .accordion-content-inner {
            color: var(--gray-600);
            line-height: 1.6;
        }

        .accordion-content-inner h4 {
            color: var(--primary-purple);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .accordion-content-inner p {
            margin-bottom: 1rem;
        }

        .accordion-content-inner ul {
            margin-left: 1.5rem;
            margin-bottom: 1rem;
        }

        .accordion-content-inner li {
            margin-bottom: 0.5rem;
        }

        .highlight-box {
            background: var(--light-purple);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 1rem 0;
        }

        /* Destaque de Preço */
        .price-highlight {
            background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
            color: var(--white);
            padding: 3rem 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 20px 40px rgba(107, 70, 193, 0.2);
            margin-top: 3rem;
        }

        .price-highlight h4 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .price-main {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .price-installment {
            font-size: 1.1rem;
            opacity: 0.8;
            margin-bottom: 2rem;
        }

        /* Botão de Ação */
        .cta-reserva {
            display: inline-block;
            background: var(--accent-red);
            color: var(--white);
            padding: 18px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
        }

        .cta-reserva:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(220, 38, 38, 0.4);
        }

        /* Mobile (<=768px) */
        @media (max-width: 768px) {
            .page-title h1 {
                font-size: 2rem;
            }

            .page-title p {
                font-size: 1rem;
                padding: 0 15px;
            }

            .price-main {
                font-size: 2.2rem;
            }

            .container {
                margin: 0 20px;
            }

            .video-wrapper {
                width: 100%;
                padding-bottom: 56.25%;
            }
            
            .video-wrapper img {
                border-radius: 10px;
            }

            .accordion-header {
                padding: 1rem;
            }

            .accordion-title {
                font-size: 1.2rem;
            }

            .cta-reserva {
                padding: 14px 30px;
                font-size: 1.1rem;
            }
        }

        /* Para telas muito pequenas */
        @media (max-width: 480px) {
            .video-section {
                padding: 1rem;
            }
            
            .video-wrapper {
                padding-bottom: 60%;
            }
            
            .accordion-content.active {
                padding: 1rem;
            }
        }