        /* ================= VÁRIAVEIS CSS ================= */
        :root {
            --bg-main: #FEFEFE;
            --bg-dark: #0F0F0F;
            --btn-bg: #0F0F0F;
            --accent-gold: #ffe283;
            --text-dark: #1A1A1A;
            --text-light: #FEFEFE;
            --font-title: 'Playfair Display', serif;
            --font-body: 'Montserrat', sans-serif;
            --transition: all 0.3s ease;
        }

        /* ================= RESET & BASE ================= */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        html { scroll-behavior: smooth; }

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

        /* Proteção de Mídia (CSS) */
        img, video {
            -webkit-user-drag: none;
            user-select: none;
            pointer-events: none; 
        }
        
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        /* Estrutura de Seções */
        section {
            padding: 80px 20px;
            position: relative;
            z-index: 1;
        }

        .section-dark {
            background-color: var(--bg-dark);
            color: var(--text-light);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-family: var(--font-title);
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 50px;
            letter-spacing: 1px;
        }

        .section-title span {
            color: var(--accent-gold);
            font-style: italic;
        }

        .btn-primary {
            display: inline-block;
            background-color: var(--btn-bg);
            color: var(--text-light);
            padding: 12px 30px;
            font-size: 0.9rem;
            font-weight: 600;
            border-radius: 8px;
            border: 2px solid var(--btn-bg);
            transition: var(--transition);
            pointer-events: auto;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-primary:hover {
            background-color: var(--accent-gold);
            border-color: var(--accent-gold);
            color: var(--bg-dark);
            transform: translateY(-2px);
        }

        /* ================= BOTÃO DE PLAYLIST PARA ARTISTAS ================= */
        .btn-playlist {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background-color: transparent;
            color: var(--btn-bg);
            padding: 10px 22px;
            font-size: 0.9rem;
            font-weight: 600;
            border-radius: 40px;
            border: 1.5px solid var(--accent-gold);
            transition: var(--transition);
            pointer-events: auto;
            letter-spacing: 0.5px;
            backdrop-filter: blur(2px);
        }

        .btn-playlist i {
            font-size: 1rem;
            color: var(--accent-gold);
            transition: var(--transition);
        }

        .btn-playlist:hover {
            background-color: var(--accent-gold);
            border-color: var(--accent-gold);
            color: var(--bg-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .btn-playlist:hover i {
            color: var(--bg-dark);
        }

        .section-dark .btn-primary {
            background-color: transparent;
            border-color: var(--accent-gold);
            color: var(--accent-gold);
        }

        .section-dark .btn-primary:hover {
            background-color: var(--accent-gold);
            color: var(--bg-dark);
        }

        /* ================= HEADER / LINKTREE ================= */
        #linktree {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
            text-align: center;
        }

        .video-container {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: -2;
            overflow: hidden;
        }

        #bg-video {
            width: 100%; height: 100%;
            object-fit: cover;
            pointer-events: none; 
            filter: blur(3px);
            transform: scale(1.02);
        }

        .video-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: -1;
        }

        .avatar {
            width: 120px; height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--accent-gold);
            margin-bottom: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.5);
        }

        .linktree-title {
            font-family: var(--font-title);
            color: var(--text-light);
            font-size: 2.5rem;
            margin-bottom: 5px;
            letter-spacing: 2px;
        }

        .linktree-slogan {
            color: var(--text-light);
            font-size: 1rem;
            font-weight: 300;
            margin-bottom: 30px;
        }

        .links-container {
            width: 100%;
            max-width: 400px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 2;
        }

        .link-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background-color: var(--btn-bg);
            color: var(--text-light);
            padding: 15px 25px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            border: 1px solid rgba(255,255,255,0.1);
            transition: var(--transition);
            pointer-events: auto;
        }

        .link-btn i {
            position: absolute;
            left: 25px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.3rem;
        }

        .link-btn:hover {
            border-color: var(--accent-gold);
            transform: translateY(-2px);
        }

        .icon-whatsapp { color: #25D366; font-size: 1.3rem; }
        .icon-instagram {
            background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 1.3rem;
        }
        .icon-star { color: #FFD700; font-size: 1.2rem; }

        .map-container {
            margin-top: 20px;
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
            border: 2px solid var(--btn-bg);
            transition: var(--transition);
            pointer-events: auto;
        }

        .map-container:hover { border-color: var(--accent-gold); }
        .map-container iframe { width: 100%; height: 200px; border: 0; display: block; }

        .scroll-down {
            position: absolute;
            bottom: 30px;
            color: rgba(254, 254, 254, 0.6);
            font-size: 2rem;
            animation: bounce 2s infinite;
            cursor: pointer;
            pointer-events: auto;
            transition: var(--transition);
        }
        .scroll-down:hover { color: var(--accent-gold); }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-15px); }
            60% { transform: translateY(-7px); }
        }

        /* ================= NAVBAR (MENU) ================= */
        #navbar {
            position: fixed;
            top: 0; left: 0; width: 100%;
            background-color: rgba(254, 254, 254, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            z-index: 1000;
            transform: translateY(-100%);
            transition: transform 0.4s ease-in-out;
        }

        #navbar.visible { transform: translateY(0); }

        .nav-logo { height: 40px; object-fit: contain; }
        .menu-toggle { font-size: 1.5rem; color: var(--btn-bg); cursor: pointer; display: block; pointer-events: auto; }

        .nav-links {
            position: absolute;
            top: 100%; left: 0; width: 100%;
            background-color: var(--bg-main);
            flex-direction: column;
            text-align: center;
            display: none;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .nav-links.active { display: flex; }
        .nav-links li a { 
            display: block; padding: 15px; font-size: 0.85rem; font-weight: 600; 
            letter-spacing: 1px; color: var(--btn-bg); transition: var(--transition); pointer-events: auto; 
        }
        .nav-links li a:hover { color: #b39b4b; }

        .dropdown { position: relative; }
        .dropdown-menu {
            display: none; 
            background: var(--bg-main);
            text-align: center;
        }
        .dropdown:hover .dropdown-menu { display: block; }
        
        .nav-btn-whatsapp {
            background-color: #25D366;
            color: var(--text-light) !important;
            margin: 10px 20px;
            border-radius: 8px;
            padding: 10px 15px !important;
        }
        .nav-btn-whatsapp:hover { 
            background-color: var(--accent-gold); 
            color: var(--bg-dark) !important; 
        }

        .nav-btn-antesdosim {
            background-color: var(--btn-bg);
            color: var(--text-light) !important;
            margin: 10px 20px;
            border-radius: 8px;
            padding: 10px 15px !important;
        }
        .nav-btn-antesdosim:hover { 
            background-color: var(--accent-gold); 
            color: var(--bg-dark) !important; 
        }

        /* ================= HERO SECTION ================= */
        #inicio {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        #inicio::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: url('../media/bg_hero.jpg');
            background-size: cover;
            background-position: center;
            z-index: -2;
        }

        .hero-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(254, 254, 254, 0.75); 
            z-index: -1;
        }

        .hero-content { max-width: 800px; z-index: 2; padding: 20px; }
        .hero-title { font-family: var(--font-title); font-size: 2.5rem; color: var(--btn-bg); margin-bottom: 20px; line-height: 1.2; }
        .hero-title span { color: #ffd756; font-style: italic; }
        .hero-text { font-size: 1.1rem; color: #333; margin-bottom: 30px; font-weight: 500; }

        /* ================= SOBRE NÓS ================= */
        .sobre-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            align-items: start;
        }

        .sobre-text p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            color: #444;
        }

        .sobre-quote {
            border-left: 4px solid var(--accent-gold);
            padding-left: 20px;
            font-size: 1.3rem;
            font-family: var(--font-title);
            font-style: italic;
            color: var(--btn-bg);
            margin: 30px 0;
            background-color: rgba(255, 226, 131, 0.1);
            padding: 20px;
            border-radius: 0 8px 8px 0;
        }

        .produtor-card {
            background-color: var(--bg-dark);
            color: var(--text-light);
            border-radius: 12px;
            padding: 30px;
            text-align: center;
        }

        .produtor-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--accent-gold);
            margin-bottom: 20px;
        }

        .premios-container {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-top: 20px;
        }

        .premio-img {
            width: 80px;
            border-radius: 50%;
            pointer-events: none;
        }

        /* ================= ARTISTAS CARROSSEL ================= */
        .artistas-carousel-container {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
        }

        .artistas-grid {
            display: flex;
            gap: 30px;
            transition: transform 0.5s ease-in-out;
            will-change: transform;
        }

        .artista-card {
            flex: 0 0 calc(100% - 20px);
            min-width: 280px;
            background-color: #FFF;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: var(--transition);
            border: 1px solid rgba(0,0,0,0.05);
            display: flex;
            flex-direction: column;
        }

        .artista-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .artista-img {
            width: 100%;
            height: 280px;
            background-color: var(--bg-dark);
            object-fit: cover;
            border-bottom: 3px solid var(--accent-gold);
        }

        .artista-info {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .artista-nome {
            font-family: var(--font-title);
            font-size: 1.6rem;
            color: var(--btn-bg);
            margin-bottom: 10px;
        }

        .artista-desc {
            font-size: 0.9rem;
            color: #555;
            margin-bottom: 20px;
            flex-grow: 1;
            line-height: 1.5;
        }

        /* Botões de navegação do carrossel */
        .carousel-nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }

        .carousel-btn {
            background-color: var(--btn-bg);
            color: var(--text-light);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: none;
            cursor: pointer;
            font-size: 1.3rem;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: auto;
        }

        .carousel-btn:hover {
            background-color: var(--accent-gold);
            color: var(--bg-dark);
            transform: scale(1.05);
        }

        .carousel-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
            transform: none;
        }

        /* Indicadores de página (opcional) */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 20px;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: var(--transition);
        }

        .dot.active {
            background-color: var(--accent-gold);
            width: 25px;
            border-radius: 10px;
        }

        /* ================= PACOTES ================= */
        .pacotes-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .pacote-card {
            background-color: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            padding: 40px 30px;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }

        .pacote-card:hover {
            border-color: var(--accent-gold);
            background-color: rgba(255,255,255,0.05);
        }

        .pacote-title {
            font-family: var(--font-title);
            font-size: 1.8rem;
            color: var(--accent-gold);
            margin-bottom: 10px;
        }

        .pacote-subtitle {
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 20px;
            color: #FFF;
        }

        .pacote-list {
            margin-top: 20px;
            text-align: left;
            flex-grow: 1;
        }

        .pacote-list li {
            margin-bottom: 15px;
            font-size: 0.9rem;
            color: #CCC;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .pacote-list li i {
            color: var(--accent-gold);
            margin-top: 4px;
        }

        /* ================= ANTES DO SIM ================= */
        .antes-do-sim-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            align-items: center;
        }

        .antes-do-sim-content {
            background-color: #fff;
            border: 1px solid rgba(0,0,0,0.06);
            border-radius: 16px;
            padding: 35px 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.04);
        }

        .antes-do-sim-content .section-title {
            text-align: left;
            margin-bottom: 20px;
        }

        .antes-do-sim-lead {
            font-size: 1.2rem;
            font-style: italic;
            color: #b39b4b;
            font-family: var(--font-title);
            margin-bottom: 18px;
            line-height: 1.4;
        }

        .antes-do-sim-content p {
            margin-bottom: 15px;
            color: #444;
        }

        .antes-do-sim-video-wrap {
            background-color: #fff;
            border: 1px solid rgba(0,0,0,0.06);
            border-radius: 16px;
            padding: 18px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.04);
        }

        .video-antes-sim {
            width: 100%;
            border-radius: 12px;
            border: 3px solid var(--accent-gold);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            pointer-events: auto;
            display: block;
        }

        .btn-whatsapp-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background-color: #25D366;
            color: var(--text-light);
            padding: 14px 28px;
            font-size: 0.92rem;
            font-weight: 700;
            border-radius: 10px;
            border: 2px solid #25D366;
            transition: var(--transition);
            pointer-events: auto;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }

        .btn-whatsapp-cta:hover {
            background-color: var(--accent-gold);
            border-color: var(--accent-gold);
            color: var(--bg-dark);
            transform: translateY(-2px);
        }

        .pacote-actions {
            margin-top: 22px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            text-align: center;
        }

        /* ================= FOOTER / CONTATO ================= */
        #footer {
            padding: 60px 20px 20px;
            text-align: center;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto 40px;
            text-align: left;
        }

        .footer-col {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .footer-col h4 {
            color: var(--accent-gold);
            font-family: var(--font-title);
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .footer-link {
            color: #CCC;
            transition: var(--transition);
            pointer-events: auto;
            display: flex;
            align-items: center;
            gap: 10px;
            justify-content: center;
        }

        .footer-link:hover { color: var(--accent-gold); }

        .footer-logo {
            width: 140px;
            filter: brightness(0) invert(1);
            margin-bottom: 20px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            color: #888;
            font-size: 0.85rem;
        }

        /* ================= BOTÃO VOLTAR AO TOPO ================= */
        #backToTop {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 45px;
            height: 45px;
            background-color: var(--btn-bg);
            color: var(--text-light);
            border: 2px solid transparent;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
            pointer-events: auto;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }

        #backToTop.show { opacity: 1; visibility: visible; }
        #backToTop:hover { 
            background-color: var(--accent-gold); 
            color: var(--bg-dark);
            transform: translateY(-3px); 
        }

        /* ================= DESKTOP ================= */
        @media (min-width: 768px) {
            .artista-card {
                flex: 0 0 calc(50% - 15px);
            }
        }

        @media (min-width: 1024px) {
            .artista-card {
                flex: 0 0 calc(33.333% - 20px);
            }
        }

        @media (min-width: 992px) {
            .menu-toggle { display: none; }
            .nav-links {
                position: static;
                display: flex !important;
                flex-direction: row;
                align-items: center;
                width: auto;
                background: transparent;
                box-shadow: none;
            }
            .nav-links li a { padding: 10px 15px; }
            .nav-btn-whatsapp { margin: 0 0 0 15px; }
            
            .dropdown-menu {
                position: absolute;
                top: 100%;
                left: 0;
                min-width: 180px;
                background: rgba(254, 254, 254, 0.95);
                box-shadow: 0 4px 10px rgba(0,0,0,0.05);
                border-radius: 0 0 8px 8px;
            }

            .hero-title { font-size: 4rem; }
            .section-title { font-size: 3rem; }

            .sobre-grid { grid-template-columns: 2fr 1fr; gap: 60px; }
            .pacotes-grid { grid-template-columns: repeat(3, 1fr); }
            .antes-do-sim-grid { grid-template-columns: 1.05fr 0.95fr; }
            .antes-do-sim-content { padding: 45px 40px; }
            
            .footer-grid { 
                grid-template-columns: 1fr 1fr 1fr; 
                text-align: left;
            }
            .footer-col { align-items: flex-start; text-align: left; }
            .footer-link { justify-content: flex-start; }
        }

        /* ================= ESTILOS EXTRAÍDOS DE ATRIBUTOS INLINE ================= */
        .section-light-bg { background-color: #f9f9f9; }
        .artista-actions { text-align: center; margin-top: auto; }
        .pacote-card-dark { background-color: var(--bg-dark); color: #fff; }
        .pacote-description { font-size: 0.9rem; color: #aaa; }
        .produtor-name { font-family: var(--font-title); font-size: 1.8rem; }
        .produtor-role { color: var(--accent-gold); font-weight: 600; margin-bottom: 15px; }
        .produtor-description { font-size: 0.9rem; color: #CCC; }
