:root {
    --bg-black: #080808;
    --orange-glow: rgba(255, 102, 0, 0.4);
    --orange-primary: #FF6600;
    --orange-dark: #CC4400;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-pure: #FFFFFF;
    --text-dim: rgba(255, 255, 255, 0.6);
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --panel-radius: 40px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-black);
    color: var(--text-pure);
    font-family: var(--font-body);
    overflow-x: hidden;
}

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

/* --- Premium Background --- */
.background-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    filter: blur(100px);
}

.blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    opacity: 0.15;
    animation: float 20s infinite alternate cubic-bezier(0.45, 0, 0.55, 1);
}

.blob-1 { background: var(--orange-primary); top: -200px; left: -200px; }
.blob-2 { background: var(--orange-dark); bottom: -200px; right: -200px; animation-delay: -5s; }
.blob-3 { background: #FF3300; top: 30%; left: 50%; width: 400px; height: 400px; animation-delay: -10s; }
.blob-4 { background: #FF8800; bottom: 20%; left: 10%; width: 300px; height: 300px; }

@keyframes float {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    100% { transform: translate(100px, 100px) scale(1.2) rotate(90deg); }
}

/* --- Header --- */
.main-header {
    height: 100px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    height: 40px;
    object-fit: contain;
}

.divider {
    width: 1px;
    height: 24px;
    background: var(--glass-border);
}

.header-tag {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--orange-primary);
    border: 1px solid var(--orange-primary);
    padding: 6px 12px;
    border-radius: 4px;
}

/* --- Hero --- */
.hero-section {
    padding-top: 250px;
    padding-bottom: 100px;
    text-align: center;
}

.hero-label {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 5px;
    color: var(--text-dim);
    margin-bottom: 20px;
}

h1.title {
    font-family: var(--font-head);
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -3px;
    margin-bottom: 10px;
}

h1.title span.plus {
    color: var(--orange-primary);
}

h2.subtitle {
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 200;
    color: var(--text-dim);
    margin-bottom: 30px;
}

.hero-meta {
    display: inline-flex;
    align-items: center;
    background: var(--glass-bg);
    padding: 12px 25px;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
    font-weight: 600;
    font-size: 0.9rem;
}

.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--orange-primary);
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 10px var(--orange-primary);
}

/* --- Liquid Panels --- */
.liquid-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--panel-radius);
    padding: 60px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.liquid-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.05) 0%, transparent 70%);
}

.panel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.stat-block .label {
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--orange-primary);
    margin-bottom: 10px;
}

.stat-block .value {
    display: block;
    font-family: var(--font-head);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 15px;
}

.stat-block .unit {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-dim);
}

.description {
    font-size: 0.95rem;
    color: var(--text-dim);
    max-width: 400px;
}

/* --- Cards --- */
.strategy-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.liquid-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 40px;
    transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.liquid-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--orange-primary);
    transform: translateY(-5px);
}

.liquid-card.highlight {
    background: linear-gradient(145deg, rgba(255, 102, 0, 0.1), transparent);
    border-color: rgba(255, 102, 0, 0.2);
}

.card-icon {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--orange-primary);
    margin-bottom: 20px;
}

.liquid-card h3 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.liquid-card p {
    color: var(--text-dim);
    line-height: 1.5;
}

/* --- Detailed Section --- */
.flex-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.content-text h2 {
    font-family: var(--font-head);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.tracks-badge {
    background: var(--orange-primary);
    color: #000;
    padding: 40px;
    border-radius: 100px 30px 100px 100px;
    text-align: center;
    flex-shrink: 0;
}

.tracks-badge .big {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
}

.tracks-badge .small {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.detailed-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.detailed-cards-grid .glass-box {
    text-align: left;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
    border-radius: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.detailed-cards-grid .glass-box:hover {
    transform: translateY(-10px) rotate(1deg);
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(255, 102, 0, 0.3);
}

.detailed-cards-grid .box-label {
    letter-spacing: 3px;
    font-weight: 900;
    font-size: 0.75rem;
    color: var(--orange-primary);
    margin-bottom: 0;
}

.detailed-cards-grid .box-desc {
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 20px 0;
    color: var(--text-pure);
}

.vagas-badge {
    align-self: flex-start;
    background: var(--orange-primary);
    color: #000;
    padding: 12px 25px;
    border-radius: 100px;
    font-weight: 900;
    font-family: var(--font-head);
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
    border: none;
}

.vagas-badge.dimmed {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-pure);
    box-shadow: none;
    backdrop-filter: blur(10px);
}


.estimative-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 80px;
}

.glass-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 50px;
    text-align: center;
}

.box-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dim);
    margin-bottom: 10px;
}

.box-value {
    display: block;
    font-family: var(--font-head);
    font-size: 5rem;
    font-weight: 900;
    color: var(--orange-primary);
}

.box-sub {
    font-size: 1rem;
    font-weight: 600;
}

/* --- Budget --- */
.budget-section {
    margin-bottom: 100px;
}

.budget-panel {
    background: linear-gradient(135deg, #111, #000);
    border: 2px solid var(--orange-primary);
    padding: 80px;
    border-radius: var(--panel-radius);
    text-align: center;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 102, 0, 0.2);
}

.budget-label {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 5px;
    color: var(--text-dim);
    margin-bottom: 15px;
}

.budget-value {
    font-family: var(--font-head);
    font-size: 6rem;
    font-weight: 900;
    color: var(--text-pure);
    margin-bottom: 15px;
    text-shadow: 0 0 40px rgba(255, 102, 0, 0.3);
}

.budget-meta {
    color: var(--orange-primary);
    font-size: 1rem;
    font-weight: 600;
}

/* --- Playlists --- */
.playlists-explorer {
    margin-bottom: 150px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: var(--font-head);
    font-size: 3rem;
}

.tabs {
    display: flex;
    background: var(--glass-bg);
    padding: 8px;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-dim);
    padding: 12px 30px;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.tab-btn.active {
    background: var(--orange-primary);
    color: #000;
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
}

.playlists-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.playlist-card {
    display: flex;
    align-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 15px 25px;
    border-radius: 24px;
    gap: 25px;
    transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.playlist-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
}

.p-img {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    object-fit: cover;
}

.p-info { flex-grow: 1; }
.p-name { font-weight: 700; font-size: 1.2rem; margin-bottom: 4px; }
.p-stats { font-size: 0.9rem; color: var(--text-dim); }

.spotify-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #1DB954;
    color: #000;
    padding: 12px 24px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.85rem;
    transition: 0.3s;
}

.spotify-btn:hover { background: #1ed760; transform: translateY(-2px); }
.spotify-btn img { height: 18px; }

/* --- Footer --- */
.main-footer {
    padding: 100px 0;
    border-top: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.date-badge {
    background: var(--glass-bg);
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 800;
    color: var(--orange-primary);
    font-size: 0.9rem;
}

.footer-logos {
    display: flex;
    gap: 40px;
}

.footer-logos img {
    height: 35px;
    opacity: 0.5;
}

/* --- Mobile --- */
@media (max-width: 800px) {
    .strategy-blocks, .estimative-grid, .flex-row, .panel-grid {
        grid-template-columns: 1fr;
    }
    
    .flex-row { flex-direction: column; text-align: center; }
    
    .hero-section { padding-top: 180px; }
    
    .budget-panel { padding: 40px 20px; }
    .budget-value { font-size: 3.5rem; }
    
    .section-header { flex-direction: column; align-items: center; gap: 20px; text-align: center; }
    
    .playlist-card { flex-direction: column; text-align: center; padding: 25px; }
    
    .liquid-panel { padding: 40px 20px; }
    .stat-block .value { font-size: 3rem; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
