/* ============================================
   PINTO PRATEADO - Landing Page Styles
   Cores: Dourado (#D4AF37, #FFD700) + Preto (#0D0D0D, #1A1A1A)
   ============================================ */

/* RESET & BASE */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --gold-light: #FFD700;
    --gold-dark: #B8960C;
    --black: #0D0D0D;
    --black-light: #1A1A1A;
    --black-lighter: #2A2A2A;
    --white: #FFFFFF;
    --gray: #888888;
    --gray-light: #CCCCCC;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; }

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

.gold { color: var(--gold); }

/* ============================================
   HEADER / NAVBAR
   ============================================ */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background var(--transition), box-shadow var(--transition);
    background: transparent;
}

#header.scrolled {
    background: rgba(13, 13, 13, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar-nologo .logo {
    visibility: hidden;
    height: 0;
    width: 0;
    overflow: hidden;
}

.logo img {
    height: 88px;
    width: auto;
    transition: transform var(--transition);
}

.logo img:hover { transform: scale(1.05); }

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO
   ============================================ */
#hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #0D0D0D;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-vid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-vid.active { opacity: 1; }

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.4) 40%,
        rgba(0, 0, 0, 0.5) 70%,
        rgba(13, 13, 13, 0.95) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
}

.hero-logo {
    height: clamp(100px, 8vw, 140px);
    width: auto;
    max-width: 90%;
    margin-bottom: 25px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content > p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray-light);
    margin-bottom: 40px;
    font-weight: 300;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 44px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    transition: all var(--transition);
}

.btn-hero.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}

.btn-hero.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.4);
}

.btn-outline-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 44px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold);
    transition: all var(--transition);
}

.btn-outline-hero:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.15);
}

.btn-outline-hero svg { color: var(--gold); }

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-scroll span {
    display: block;
    width: 24px;
    height: 38px;
    border: 2px solid var(--gold);
    border-radius: 12px;
    position: relative;
}

.hero-scroll span::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollDown 1.5s infinite;
}

@keyframes scrollDown {
    0% { opacity: 1; top: 6px; }
    100% { opacity: 0; top: 20px; }
}

/* ============================================
   BUTTONS (general)
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 40px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-lg {
    padding: 16px 50px;
    font-size: 1rem;
}

.btn-pulse {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.6), 0 0 40px rgba(212, 175, 55, 0.3);
    }
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 100px 0; }
.section-dark { background: var(--black-light); }

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 60px;
    font-weight: 300;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.about-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-lead strong { color: var(--gold); }

.about-text p {
    color: var(--gray-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat { text-align: center; }

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    max-width: 350px;
    width: 100%;
    border-radius: 12px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 175, 55, 0.1);
    object-fit: cover;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-image img:hover {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 50px rgba(212, 175, 55, 0.15);
}

/* ============================================
   ARTISTS SECTION
   ============================================ */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.artist-card {
    background: var(--black);
    border-radius: 12px;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.artist-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.artist-img {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
}

.artist-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.artist-card:hover .artist-img img { transform: scale(1.1); }

.artist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.artist-card:hover .artist-overlay { opacity: 1; }

.btn-spotify {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #1DB954;
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition);
}

.btn-spotify:hover {
    background: #1ed760;
    transform: scale(1.05);
}

.btn-spotify svg { fill: var(--white); }

.artist-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 15px 20px 5px;
    color: var(--white);
}

.artist-card p {
    font-size: 0.85rem;
    color: var(--gold);
    padding: 0 20px 20px;
    font-weight: 500;
}

/* ============================================
   LEI DE INCENTIVO
   ============================================ */
.incentivo-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: center;
}

.incentivo-lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-light);
    margin-bottom: 25px;
}

.incentivo-lead strong {
    color: var(--gold);
}

.incentivo-list {
    list-style: none;
    margin-bottom: 30px;
}

.incentivo-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.incentivo-list li svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.incentivo-list strong {
    color: var(--white);
}

.incentivo-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.incentivo-card {
    background: var(--black-light);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: border-color 0.3s ease;
}

.incentivo-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
}

.incentivo-card-icon {
    margin-bottom: 15px;
}

.incentivo-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--gold);
}

.incentivo-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   FORMAS DE PAGAMENTO
   ============================================ */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.payment-card {
    background: var(--black);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.payment-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.payment-icon {
    margin-bottom: 18px;
}

.payment-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.payment-card p {
    color: var(--gray-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--black);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 99px;
    width: auto;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-grid h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-links ul li,
.footer-contact ul li { margin-bottom: 10px; }

.footer-links a {
    color: var(--gray);
    font-size: 0.95rem;
    transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-size: 0.95rem;
}

.footer-contact svg {
    flex-shrink: 0;
    color: var(--gold);
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--black-lighter);
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.85rem;
}

/* Footer Slim */
.footer-slim {
    background: var(--black);
    padding: 35px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-slim-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray);
}

.footer-slim-content a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-slim-content a:hover {
    color: var(--gold);
}

.footer-slim-sep {
    color: rgba(212, 175, 55, 0.3);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 18px;
        right: 18px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

/* ============================================
   MODALS
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--black);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.3s;
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: var(--gray);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.modal-body { display: flex; }

.modal-left {
    flex: 0 0 45%;
    padding: 40px 32px;
    background: var(--black-light);
    border-radius: 16px 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.modal-right {
    flex: 1;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.modal-left h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-subtitle {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
}

.modal-right h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
}

.modal-form-subtitle {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: -10px;
}

/* Tags */
.label-sm {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    margin-top: 4px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--gray-light);
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.12);
}

.tag-radio svg {
    flex-shrink: 0;
    color: var(--gold);
}

.info-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.04);
    font-size: 0.78rem;
    color: var(--gray);
    line-height: 1.5;
}

.info-box svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--gold);
}

/* Metrics */
.metrics-row {
    display: flex;
    gap: 10px;
}

.metric {
    flex: 1;
    text-align: center;
    padding: 14px 8px;
    background: var(--black-lighter);
    border-radius: 10px;
}

.metric strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 2px;
}

.metric span {
    font-size: 0.65rem;
    color: var(--gray);
}

/* Modal Form */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.field label {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--gray-light);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--black-light);
    border: 1px solid var(--black-lighter);
    border-radius: 6px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    -webkit-appearance: none;
}

.field input::placeholder,
.field textarea::placeholder { color: var(--gray); }

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23D4AF37'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

.field select option {
    background: var(--black-light);
    color: var(--white);
}

.field textarea {
    resize: vertical;
    min-height: 60px;
}

.field-row {
    display: flex;
    gap: 12px;
}

.field-row .field { flex: 1; }
.field-row .field:last-child { flex: 0 0 100px; }

.form-message {
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(29, 185, 84, 0.12);
    color: #1DB954;
    border: 1px solid rgba(29, 185, 84, 0.3);
}

.form-message.error {
    display: block;
    background: rgba(255, 68, 68, 0.1);
    color: #FF4444;
    border: 1px solid rgba(255, 68, 68, 0.3);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image { order: -1; }
    .about-image img { max-width: 200px; }
    .artists-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: rgba(13, 13, 13, 0.98);
        flex-direction: column;
        justify-content: center;
        gap: 25px;
        transition: right var(--transition);
        backdrop-filter: blur(10px);
    }

    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1.1rem; }
    .section { padding: 70px 0; }
    .about-stats { flex-wrap: wrap; justify-content: center; }
    .incentivo-grid { grid-template-columns: 1fr; }
    .payment-grid { grid-template-columns: repeat(2, 1fr); }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .social-links { justify-content: center; }
    .footer-contact li { justify-content: center; }
    .artists-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero,
    .btn-outline-hero {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 16px 32px;
        font-size: 0.95rem;
    }

    /* Modal responsive */
    .modal-body { flex-direction: column; }
    .modal-left {
        flex: none;
        border-radius: 16px 16px 0 0;
    }
    .modal { max-height: 95vh; }
    .metrics-row { flex-direction: column; }
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 2px solid var(--gold);
    color: var(--gold);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
}

@media (max-width: 480px) {
    .navbar { padding: 10px 15px; }
    .logo img { height: 66px; }
    .hero-logo { height: 100px; }
    .hero-content h1 { font-size: 1.6rem; }
    .stat-number { font-size: 2rem; }
    .btn { padding: 12px 30px; font-size: 0.85rem; }
    .modal-left, .modal-right { padding: 28px 20px; }
    .payment-grid { grid-template-columns: 1fr; }
    .incentivo-visual { flex-direction: column; }
}
