/* 
   Talismã Musics - Escritório de Artistas
   Versão Dark Theme com efeitos modernos
*/

/* ===== RESET E ESTILOS GERAIS ===== */
:root {
    /* Nova Paleta de cores - Dark Theme */
    --primary-color: #7b87a1;      /* Azul escuro quase preto */
    --secondary-color: #1e293b;    /* Azul escuro mais claro */
    --accent-color: #38bdf8;       /* Azul neon */
    --accent-glow: #0ea5e9;        /* Azul neon para glow */
    --text-light: #f1f5f9;         /* Branco suave */
    --text-gray: #94a3b8;          /* Cinza médio */
    --background-dark: #020617;     /* Fundo muito escuro */
    --background-card: #1e293b;    /* Fundo dos cards */
    --border-color: #334155;       /* Bordas escuras */
    
    /* Tipografia */
    --font-heading: 'Segoe UI', 'Roboto', sans-serif;
    --font-body: 'Segoe UI', 'Roboto', sans-serif;
    
    /* Espaçamentos */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;
    
    /* Outros */
    --border-radius: 0.5rem;
    --box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    --neon-shadow: 0 0 15px var(--accent-glow);
    --transition: all 0.3s ease;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
    line-height: 1.2;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--spacing-md);
}

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

a:hover {
    color: var(--accent-color);
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 var(--spacing-md);
    margin: 0 auto;
}

.section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    color: var(--text-light);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
    padding-bottom: var(--spacing-md);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-glow));
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--text-light);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    box-shadow: var(--box-shadow);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
}

.logo-container {
    width: 120px;
}

.logo {
    max-height: 40px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
}

.menu-toggle {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
    padding: 0;
    z-index: 100;
    margin-left: auto;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--text-light);
    position: absolute;
    left: 5px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger {
    top: 18px;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.menu-toggle.active .hamburger {
    transform: rotate(45deg);
}

.menu-toggle.active .hamburger::before {
    opacity: 0;
}

.menu-toggle.active .hamburger::after {
    transform: rotate(-90deg);
    top: 0;
}

.nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--background-dark) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-xxl) var(--spacing-md);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
}

.nav-list.active {
    right: 0;
}

.nav-list li {
    margin: var(--spacing-md) 0;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-list.active li {
    opacity: 1;
    transform: translateX(0);
    transition-delay: calc(0.1s * var(--i));
}

.nav-list a {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 1rem;
    font-family: 'Poppins', var(--font-heading);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    background-color: var(--background-dark);
    overflow: hidden;
    padding: 120px 0 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--accent-color) 0%, transparent 70%);
    opacity: 0.1;
    pointer-events: none;
}

.hero-logo {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 100%;
    max-width: 500px;
    text-align: center;
    margin-bottom: 50px;
}

.hero-logo-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(56, 189, 248, 0.5));
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 140px auto 80px;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.hero-content h1 {
    color: var(--text-light);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-content p {
    color: var(--text-gray);
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-top: var(--spacing-xl);
    z-index: 10;
    position: relative;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(56, 189, 248, 0.2);
}

.hero-buttons .btn-secondary:hover {
    transform: translateY(-3px);
}

/* Novo carrossel de artistas */
.artists-carousel {
    max-width: 1400px;
    margin: 0 auto;
    overflow: visible;
    position: relative;
    z-index: 5;
}

.artists-carousel-inner {
    display: flex;
    gap: 25px;
    position: relative;
    transition: transform 0.5s ease;
    padding: 20px 10px;
}

.artist-slide {
    flex: 0 0 300px;
    height: 450px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transform-origin: center bottom;
    transition: all 0.5s ease;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.artist-slide.active {
    flex: 0 0 350px;
    transform: translateY(-30px);
    box-shadow: 0 20px 40px rgba(56, 189, 248, 0.4);
    border: 2px solid var(--accent-color);
}

.artist-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    pointer-events: none;
}

.artist-slide:hover .artist-slide-img {
    transform: scale(1.05);
}

/* Hero Artist Carousel - Fixar nomes dos artistas */
.artist-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    text-align: center;
    transform: translateY(0);
    transition: opacity 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}

.artist-slide-title, .artist-slide-genre {
    opacity: 0;
    transition: opacity 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.artist-slide.active .artist-slide-title,
.artist-slide.active .artist-slide-genre {
    opacity: 1;
}

.artist-slide-title {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.artist-slide-genre {
    display: inline-block;
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.artist-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    position: relative;
    z-index: 10;
}

.artist-nav-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.artist-nav-dot.active {
    background-color: var(--accent-color);
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.7);
}

.artist-nav-arrows {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    pointer-events: none;
}

.artist-nav-arrow {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.artist-nav-arrow:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

/* ===== ARTISTAS SECTION ===== */
.artistas {
    background-color: #1a2740;
    position: relative;
    padding: var(--spacing-xxl) 0;
    overflow: hidden;
}

.artistas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--accent-color) 0%, transparent 80%);
    opacity: 0.15;
    pointer-events: none;
}

#music-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.artistas .container {
    position: relative;
    z-index: 2;
}

.artistas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.artista-card {
    background-color: var(--background-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    height: auto;
}

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

.artista-img {
    height: 350px;
    position: relative;
    overflow: hidden;
}

.artista-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.artista-card:hover .artista-img img {
    transform: scale(1.05);
}

.artista-info {
    padding: 20px;
    position: relative;
    background-color: var(--background-card);
    height: auto;
    min-height: 120px;
    display: flex;
    flex-direction: column;
}

.artista-info h3 {
    color: var(--text-light);
    font-size: 1.8rem;
    margin-bottom: 5px;
    line-height: 1.2;
}

.artista-genero {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.artista-social {
    display: flex;
    gap: 15px;
    margin-top: auto;
    justify-content: center;
}

.artista-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.artista-social a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

/* Particles */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

/* Responsividade */
@media (max-width: 1199px) {
    .artistas-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 767px) {
    /* Carrossel mobile com peek-a-boo */
    .artists-carousel {
        margin-bottom: 30px;
        overflow-x: visible;
        width: 100%;
        padding: 0;
        -webkit-overflow-scrolling: touch; /* Para melhor scroll no iOS */
        touch-action: pan-x; /* Permitir apenas scroll horizontal */
    }
    
    .artists-carousel-inner {
        display: flex;
        gap: 15px;
        padding: 20px 0;
        margin-left: 0;
        transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1); /* Transição mais lenta estilo Netflix */
        justify-content: flex-start;
        cursor: grab; /* Indicador visual de que pode arrastar */
    }
    
    .artists-carousel-inner:active {
        cursor: grabbing; /* Feedback visual ao arrastar */
    }
    
    .artist-slide {
        flex: 0 0 65%; /* Reduzido para mostrar mais dos slides adjacentes */
        height: auto;
        aspect-ratio: 2/3;
        border-radius: 8px;
        transition: all 1s cubic-bezier(0.25, 1, 0.5, 1); /* Transição mais lenta */
        transform: scale(0.92);
        opacity: 0.7;
        position: relative;
        margin: 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }
    
    .artist-slide.active {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 15px 30px rgba(56, 189, 248, 0.3);
    }
    
    /* Melhor disposição dos cards de artistas no mobile */
    .artistas-grid {
        display: flex;
        flex-direction: row;
        gap: 20px;
        padding: 0 15px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: none;
        scrollbar-width: none;
        position: relative;
        margin-left: 0;
        margin-right: 0;
        padding-bottom: 20px;
        padding-left: calc(50% - 145px); /* Para o primeiro item começar centralizado */
        padding-right: calc(50% - 145px); /* Para o último item terminar centralizado */
        scroll-behavior: auto;
    }
    
    /* Esconder a scrollbar mas manter a funcionalidade */
    .artistas-grid::-webkit-scrollbar {
        display: none;
    }
    
    .artista-card {
        flex: 0 0 290px; /* Tamanho fixo para facilitar centralização */
        min-width: 290px;
        width: 290px;
        display: flex;
        flex-direction: row;
        height: auto;
        align-items: stretch;
        background-color: var(--background-card);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        scroll-snap-align: none;
        transition: transform 0.5s ease, box-shadow 0.5s ease;
    }
    
    /* Efeito visual durante a interação */
    .artista-card:hover,
    .artista-card:active {
        transform: scale(1.02);
        box-shadow: 0 15px 40px rgba(56, 189, 248, 0.3);
    }
    
    .artista-img {
        width: 40%;
        min-width: 120px;
        height: auto;
        position: relative;
        border-radius: 8px 0 0 8px;
        overflow: hidden;
    }
    
    .artista-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }
    
    .artista-info {
        flex: 1;
        padding: 12px 15px;
        min-height: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background-color: var(--background-card);
    }
    
    .artista-info h3 {
        font-size: 1.2rem;
        margin-bottom: 2px;
    }
    
    .artista-genero {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .artista-social {
        gap: 10px;
    }
    
    .artista-social a {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    /* Ajustes para o hero section no mobile */
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-logo {
        top: 80px;
        max-width: 280px;
    }
    
    .hero-content {
        margin: 100px auto 40px;
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: clamp(1.8rem, 4vw, 2.8rem);
        margin-bottom: var(--spacing-md);
    }
    
    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: var(--spacing-lg);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        padding: 0 15px;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .artist-slide-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }
    
    .artist-nav {
        margin-top: 20px;
    }
    
    .artist-nav-arrows {
        width: 100%;
        padding: 0;
        pointer-events: none;
    }
    
    .artist-nav-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background: rgba(0, 0, 0, 0.7);
        font-size: 1rem;
        z-index: 20;
        pointer-events: auto;
    }
    
    .artist-nav-arrow.prev {
        left: 5px;
    }
    
    .artist-nav-arrow.next {
        right: 5px;
    }
    
    /* Modificar a indicação de swipe para melhor visibilidade */
    .artistas::after {
        content: 'arraste para navegar';
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        color: var(--accent-color);
        font-size: 0.8rem;
        opacity: 0.8;
        animation: fadeInOut 3s infinite;
        pointer-events: none;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 5px 10px;
        border-radius: 15px;
    }
    
    @keyframes fadeInOut {
        0%, 100% { opacity: 0.4; }
        50% { opacity: 0.8; }
    }
}

/* ===== PRODUTOS SECTION ===== */
.produtos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

.produto-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.produto-card:hover {
    transform: translateY(-5px);
}

.produto-img {
    height: 200px;
    overflow: hidden;
}

.produto-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.produto-info {
    padding: var(--spacing-md);
}

.produto-desc {
    margin-bottom: var(--spacing-md);
}

/* ===== EVENTOS SECTION ===== */
.eventos-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.evento-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    display: flex;
    overflow: hidden;
    transition: var(--transition);
}

.evento-card:hover {
    transform: translateY(-5px);
}

.evento-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color);
    color: var(--text-light);
    padding: var(--spacing-md);
    min-width: 80px;
    text-align: center;
}

.dia {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.mes {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.evento-info {
    padding: var(--spacing-md);
    flex-grow: 1;
}

.evento-local, .evento-hora {
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.evento-local i, .evento-hora i {
    margin-right: var(--spacing-xs);
    color: var(--accent-color);
}

/* ===== CONTATO SECTION ===== */
.contato-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.contato-info h3 {
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    font-size: 1.8rem;
}

.contato-info p {
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.contato-info i {
    width: 24px;
    margin-right: var(--spacing-md);
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 3px; /* Alinha com o texto */
}

.social-media {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
    align-items: center;
}

.social-media a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.2rem;
    line-height: 0;
}

.social-media a i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.social-media a:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--text-light);
    transform: translateY(-3px);
}

.footer .social-media a {
    background-color: var(--secondary-color);
}

.contato-form {
    background-color: var(--background-card);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    color: var(--text-light);
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    background-color: var(--primary-color);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 1rem;
    border-radius: var(--border-radius);
    width: 100%;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo-img {
    max-height: 60px;
    margin-bottom: var(--spacing-md);
}

.footer h4 {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-links a {
    color: var(--text-light);
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.newsletter-form {
    display: flex;
    margin-top: var(--spacing-md);
}

.newsletter-form input {
    flex-grow: 1;
    padding: var(--spacing-sm);
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.btn-newsletter {
    background-color: var(--accent-color);
    color: var(--text-light);
    border: none;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    transition: var(--transition);
}

.btn-newsletter:hover {
    background-color: var(--secondary-color);
}

.footer-bottom {
    padding-top: var(--spacing-md);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ===== RESPONSIVIDADE ===== */
/* Tablets */
@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .artistas-grid,
    .produtos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sobre-content {
        flex-direction: row;
    }
    
    .sobre-text {
        flex: 1;
    }
    
    .sobre-img {
        flex: 1;
        margin-top: 0;
    }
    
    .contato-container {
        flex-direction: row;
    }
    
    .contato-info {
        flex: 1;
    }
    
    .contato-form {
        flex: 2;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktops */
@media (min-width: 992px) {
    .menu-toggle {
        display: none;
    }
    
    .nav-list {
        position: static;
        width: auto;
        height: auto;
        background: none;
        flex-direction: row;
        padding: 0;
        gap: var(--spacing-lg);
    }
    
    .nav-list li {
        margin: 0;
        opacity: 1;
        transform: none;
    }
    
    .nav-list a {
        font-size: 1rem;
        padding: 0.5rem;
    }
    
    .hero-content {
        margin: 150px auto 0;
        max-width: 60%;
    }
    
    .hero-logo {
        max-width: 450px;
    }
    
    .artistas-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .prev-btn,
    .next-btn {
        width: 50px;
        height: 50px;
    }
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 1s ease forwards;
}

/* Efeito de texto neon */
@keyframes neonPulse {
    0% {
        text-shadow: 0 0 7px var(--accent-color),
                     0 0 10px var(--accent-color),
                     0 0 21px var(--accent-color);
    }
    50% {
        text-shadow: 0 0 10px var(--accent-color),
                     0 0 15px var(--accent-color),
                     0 0 30px var(--accent-color);
    }
    100% {
        text-shadow: 0 0 7px var(--accent-color),
                     0 0 10px var(--accent-color),
                     0 0 21px var(--accent-color);
    }
}

.hero-content h1 {
    animation: neonPulse 2s infinite;
    letter-spacing: 2px;
}

/* Animações */
@keyframes glow {
    0% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.8),
                     0 0 10px rgba(255, 255, 255, 0.8),
                     0 0 15px var(--accent-color),
                     0 0 20px var(--accent-color),
                     0 0 25px var(--accent-color);
    }
    100% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
                     0 0 20px rgba(255, 255, 255, 0.8),
                     0 0 30px var(--accent-color),
                     0 0 40px var(--accent-color),
                     0 0 50px var(--accent-color);
    }
}

/* Animação de entrada */
.animate-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Header scroll effect */
.header.scroll-down {
    transform: translateY(-100%);
}

.header.scroll-up {
    transform: translateY(0);
}

/* Hover effects */
.artista-card {
    transition: none;
    will-change: auto;
}

.artista-card:hover {
    transform: none !important;
}

.artista-social a {
    transition: none;
    will-change: auto;
}

.artista-social a:hover {
    transform: none !important;
}

/* Hero section enhancements */
.hero h1 {
    animation: glow 2s ease-in-out infinite alternate;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .artista-card {
        transform: none !important;
    }
    
    #particles-js {
        opacity: 0.5;
    }
}

/* ===== HERO SECTION CAROUSEL ===== */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-carousel-item.active {
    opacity: 1;
}

.hero-carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35) grayscale(20%);
    object-position: center;
}

/* Ajuste para fotos na vertical */
@media (min-width: 768px) {
    .hero-carousel-img {
        object-position: top 30%;
    }
}

.hero-carousel-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 30px;
    justify-content: center;
    align-items: center;
    width: auto;
    margin: 0 auto;
}

.hero-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-carousel-dot.active {
    background-color: var(--accent-color);
    transform: scale(1.2);
}

/* Ajustes para artistas no mobile */
@media (max-width: 767px) {
    .artista-card {
        margin: 0 auto;
        max-width: 300px;
    }
    
    .artistas-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
} 