
        :root {
            --primary: #ffffff;
            --secondary: #ecce86;
            --white: #3f2b17;
            --light-gray: #181818;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: #ffffff;
            line-height: 1.6;
            background-color: var(--white);
        }
        
        h1, h2, h3, h4 {
            font-family: 'Montserrat', sans-serif;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        /* Header */
        header {
            background-color: #36200b;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            z-index: 1000;
            padding: 1rem 5%;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .logo {
            font-weight: bold;
            font-size: 1.5rem;
            color: var(--primary);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 2rem;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--primary);
            font-weight: 600;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: var(--secondary);
        }
        
        .btn {
            display: inline-block;
            background-color: var(--secondary);
            color: var(--primary);
            padding: 0.8rem 1.2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: var(--primary);
            color: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        

      /* Hero Section Styles */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}



.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 20px;
}

.hero h1 {
    padding-top: 35%;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    animation: fadeInDown 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.event-info-box {
    margin-bottom: 2.5rem;
    animation: fadeIn 1s ease-out 0.6s both;
}

.event-info {
    display: inline-block;
    background: rgba(8, 8, 8, 0.2);
    border: 2px solid white;
    border-radius: 30px;
    padding: 12px 25px;
    backdrop-filter: blur(8px);
}

.event-info p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.btn {
    display: inline-block;
  
    color: rgb(0, 0, 0);
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeIn 1s ease-out 0.9s both;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: 500px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .event-info {
        padding: 8px 15px;
    }
    
    .event-info p {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .event-info p {
        font-size: 0.8rem;
    }
}
        
        /* Seções comuns */
        section {
            padding: 5rem 5%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background-color: var(--secondary);
            bottom: -10px;
            left: 25%;
        }
        
        /* Seção 8 Chaves */
        .keys-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .key-item {
            text-align: center;
            padding: 2rem;
            border-radius: 10px;
            background-color: var(--light-gray);
            transition: transform 0.3s;
        }
        
        .key-item:hover {
            transform: translateY(-10px);
        }
        
        .key-item i {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 1rem;
        }
        
        .highlight-text {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary);
            text-align: center;
            margin: 3rem 0;
            padding: 1.5rem;
            background-color: var(--light-gray);
            border-left: 5px solid var(--secondary);
        }
        
        /* Seção Benefícios */
        .benefits-list {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }
        
        .benefit-item i {
            color: var(--secondary);
            font-size: 1.5rem;
            margin-right: 1rem;
            margin-top: 0.3rem;
        }
        
        /* Seção Programação */
        .schedule {
            background-color: var(--light-gray);
        }
        
        .schedule-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 2rem;
        }
        
        .schedule-table th, .schedule-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        
        .schedule-table th {
            background-color: var(--primary);
            color: var(--white);
        }
        
        .schedule-table tr:nth-child(even) {
            background-color: rgba(58, 1, 92, 0.05);
        }
        
        /* Seção Método */
        .method-steps {
            display: flex;
            overflow-x: auto;
            padding: 2rem 0;
            gap: 1.5rem;
            scroll-snap-type: x mandatory;
        }
        
        .step-card {
            min-width: 300px;
            background-color: var(--light-gray);
            padding: 2rem;
            border-radius: 10px;
            scroll-snap-align: start;
            position: relative;
        }
        
        .step-number {
            position: absolute;
            top: -15px;
            left: -15px;
            background-color: var(--secondary);
            color: var(--primary);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        /* Seção Investimento */
        .pricing {
            background-color: var(--light-gray);
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .pricing-card {
            background-color: var(--white);
            border-radius: 25px;
            padding: 13px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            position: relative;
        }
        
        .pricing-card.featured {
            border: 3px solid var(--secondary);
        }
        
        .pricing-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        
        .price {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary);
            margin: 1.5rem 0;
        }
        
        .price span {
            font-size: 1rem;
            font-weight: normal;
        }
        
        .vip-badge {
            position: absolute;
            top: -15px;
            right: 20px;
            background-color: var(--secondary);
            color: var(--primary);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-weight: bold;
            font-size: 0.8rem;
        }
        

        
        /* Seção Facilitadoras */
        .facilitators {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 3rem;
            margin-top: 3rem;
        }
        
        .facilitator {
            max-width: 400px;
            text-align: center;
        }
        
        .facilitator img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid var(--secondary);
            margin-bottom: 1.5rem;
        }
        
 
        
        /* Footer */
        footer {
            background-color: #36200b;
            color: #ddd;
            padding: 3rem 5%;
            text-align: center;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-links a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s;
        }
        





        /* Para Quem É Section */
.for-whom {
    padding: 4rem 2rem;
    background-color: #3f2b17;
    text-align: center;
}

.audience-list {
    max-width: 800px;
    margin: 2rem auto 0;
    text-align: left;
    font-weight: 700;
}

.audience-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.audience-item i {
    color: #4CAF50;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.audience-item p {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}




/* Estilos para o menu mobile */
        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: #3A015C;
        }
        
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
                position: absolute;
                right: 20px;
                top: 20px;
                z-index: 1000;
            }
            
            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 300px;
                height: 65vh;
                background: #d9d9d9;
                transition: all 0.3s ease;
                z-index: 999;
                padding-top: 60px;
            }
            
            nav.active {
                right: 0;
            }
            
            nav ul {
                flex-direction: column;
                padding: 0;
            }
            
            nav ul li {
                margin: 15px 0;
                text-align: center;
            }
            
            .header-container {
                justify-content: center;
                position: relative;
            }
            
            #header-cta {
                margin-left: 0;
                margin-top: 8px;
            }
        }