:root {
    --bg-color: #0f0f0f;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --accent: #222222;
    --highlight: #ffffff;
    --font-main: 'Montserrat', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 60px 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.divider {
    width: 200px;
    height: 1px;
    background-color: #555;
    margin: 30px auto;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#hero-lightpass {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Degradê apenas no rodapé da seção — transição suave para a próxima dobra */
    background: linear-gradient(to bottom, transparent 0%, transparent 70%, var(--bg-color) 100%);
    z-index: 3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    max-width: 350px;
    width: 80%;
    margin-bottom: 50px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.hero-nav-buttons {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.nav-circle-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: transform 0.3s;
}

.nav-circle-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    font-size: 1.2rem;
    margin-bottom: 10px;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
    background: rgba(0, 0, 0, 0.15);
}

.nav-circle-btn:hover i {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
}

.nav-circle-btn span {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-social-icons {
    display: flex;
    gap: 15px;
}

.hero-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.hero-social-icons a:hover {
    transform: scale(1.1);
}

/* Dates Section */
.dates-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid var(--accent);
}

.date-header, .date-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
    padding: 15px;
    border-bottom: 1px solid var(--accent);
}

.date-header {
    font-weight: bold;
    font-size: 0.8rem;
    letter-spacing: 1px;
    background: rgba(255,255,255,0.05);
}

.date-row {
    font-size: 1rem;
}

/* Media Section */
.video-grid {
    margin-bottom: 50px;
}

.secondary-videos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.secondary-videos iframe {
    width: 100%;
    height: 200px;
}

/* Bio Section */
.lang-switcher {
    margin-bottom: 30px;
    text-align: center;
}

.lang-btn {
    background: none;
    border: 1px solid var(--text-secondary);
    color: var(--text-secondary);
    padding: 8px 20px;
    cursor: pointer;
    margin: 0 5px;
    border-radius: 20px;
    transition: all 0.3s;
}

.lang-btn.active, .lang-btn:hover {
    background: var(--text-primary);
    color: var(--bg-color);
}

.bio-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.bio-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.bio-content.hidden {
    display: none;
}

/* Contacts */
.contact-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.contact-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--text-primary);
    color: var(--bg-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
}

.vip-list {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.vip-list h3 {
    margin-bottom: 20px;
}

.vip-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vip-form input {
    padding: 15px;
    background: var(--accent);
    border: none;
    border-radius: 8px;
    color: var(--text-primary);
    text-align: center;
}

.vip-form button {
    padding: 15px;
    background: var(--highlight);
    color: var(--bg-color);
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

/* Footer */
footer {
    text-align: center;
    padding: 50px 0;
    border-top: 1px solid var(--accent);
}

footer img {
    margin-bottom: 20px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: 100svh;
    }
    
    #hero-lightpass {
        object-fit: cover;
    }
    
    .hero-logo {
        max-width: 250px;
    }

    .hero-nav-buttons {
        gap: 20px;
    }
    
    .nav-circle-btn i {
        width: 50px;
        height: 50px;
    }
    
    .nav-circle-btn span {
        font-size: 0.6rem;
    }
    
    .hero-social-icons a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .date-header, .date-row {
        font-size: 0.8rem;
        padding: 10px;
    }
    
    .secondary-videos {
        grid-template-columns: 1fr;
    }
    
    .contact-links {
        flex-direction: column;
        align-items: center;
    }
}

/* Presskit Section */
.presskit-section {
    background: linear-gradient(180deg, var(--bg-color) 0%, rgba(255, 255, 255, 0.02) 50%, var(--bg-color) 100%);
    text-align: center;
}

.presskit-text {
    max-width: 800px;
    margin: 0 auto;
}

.presskit-text.hidden {
    display: none;
}

.presskit-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.presskit-action {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.presskit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
    text-decoration: none;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.presskit-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.presskit-btn:hover {
    background: var(--text-primary);
    color: var(--bg-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

.presskit-btn:hover i {
    transform: translateY(2px);
}

.presskit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .presskit-text p {
        font-size: 1rem;
        padding: 0 10px;
    }
    .presskit-btn {
        padding: 14px 30px;
        font-size: 0.9rem;
    }
}


