/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: #0F0F0F;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

/* =========Logo Section ==========*/
/* Variáveis de Tamanho da Logo - Ajuste aqui */
:root {
    --logo-size: 80px;
    --logo-padding: 5px;
    --logo-border-radius: 8px;
}

/* Container Principal da Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

/* Quadrado da Logo */
.logo-icon {
    width: var(--logo-size);
    height: var(--logo-size);
    background-color: transparent;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: var(--logo-padding);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

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

/* Imagem da Logo */
.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* Textos da Logo */
.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: #9CA3AF;
    line-height: 1.2;
}

/* Tamanhos Pré-definidos */
.logo-icon.small {
    --logo-size: 35px;
    --logo-padding: 3px;
}

.logo-icon.medium {
    --logo-size: 50px;
    --logo-padding: 5px;
}

.logo-icon.large {
    --logo-size: 65px;
    --logo-padding: 7px;
}

.logo-icon.xlarge {
    --logo-size: 80px;
    --logo-padding: 10px;
}

/* Responsivo */
@media (max-width: 768px) {
    :root {
        --logo-size: 40px;
        --logo-padding: 4px;
    }
    
    .logo-title {
        font-size: 1.1rem;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
    }
}


.logo-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: #9CA3AF;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: #D1D5DB;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #10B981;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #10B981;
    transition: width 0.3s ease;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-icons {
    display: flex;
    gap: 0.5rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: rgba(16, 185, 129, 0.2);
    color: #10B981;
    transform: translateY(-2px);
}

.btn-contato {
    background-color: #10B981;
    color: #FFFFFF;
    border: none;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-contato:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 50px; /* 🎯 AJUSTE: primeiro valor controla espaço do topo */
    position: relative;
    overflow: hidden;
}

/* Fundo com Imagem do Studio */
.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Overlay escuro sobre a imagem */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgb(0, 0, 0) 0%,
        rgba(0, 0, 0, 0) 50%,
        rgba(0, 0, 0, 0.267) 100%
    );
}

/* Container e Conteúdo */
.container {
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    margin-top: 25px; /* 🎯 AJUSTE AQUI: aumenta para descer mais o conteúdo */
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    color: #10B981;
    margin-bottom: 10rem;
    animation: fadeInDown 0.8s ease;
    backdrop-filter: blur(10px);
}

/* Título */
.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title-highlight {
    color: #10B981;
    display: block;
}

/* Descrição */
.hero-description {
    font-size: 1.125rem;
    color: #fdfeff;
    margin-bottom: 2.5rem;
    display: block;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* Botões */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: #10B981;
    color: #FFFFFF;
    border: none;
}

.btn-primary:hover {
    background-color: #059669;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #10B981;
    transform: translateY(-3px);
}

/* Animações */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsivo - Tablet */
@media (max-width: 1024px) {
    .hero {
        padding: 100px 0 50px;
    }

    .hero-content {
        margin-top: 60px; /* 🎯 Ajusta no tablet */
    }

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

    .hero-description {
        font-size: 1rem;
    }
}

/* Responsivo - Mobile */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 100px 0 40px;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 1rem;
        margin-top: 40px; /* 🎯 Ajusta no mobile */
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1.5rem;
    }

    .hero-badge svg {
        width: 14px;
        height: 14px;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero-title br {
        display: none;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .hide-mobile {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0 1rem;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Ajuste da imagem de fundo no mobile */
    .hero-bg-image {
        object-position: center;
        transform: scale(1.1);
    }
}

/* Responsivo - Mobile Pequeno */
@media (max-width: 480px) {
    .hero-content {
        margin-top: 20px; /* 🎯 Ajusta no mobile pequeno */
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 0.875rem;
    }

    .btn-primary, .btn-secondary {
        font-size: 0.875rem;
        padding: 0.8rem 1.2rem;
    }
}

.btn-primary {
    background-color: #10B981;
    color: #FFFFFF;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #059669;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: #10B981;
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Services Section */
.services {
    padding: 8rem 0;
    background-color: #0F0F0F;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.section-description {
    font-size: 1.125rem;
    color: #9CA3AF;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top left, rgba(16, 185, 129, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.2);
}



.service-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: rgba(16, 185, 129, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #FFFFFF;
}

.service-description {
    font-size: 0.95rem;
    color: #9CA3AF;
    line-height: 1.7;
}

/* =========== Productions Section ============== */
.productions {
    padding: 8rem 0;
    background-color: #0F0F0F;
}

.productions .section-title {
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.6),
        0 0 20px rgba(255, 255, 255, 0.4),
        0 0 30px rgba(255, 255, 255, 0.2),
        0 0 40px rgba(255, 255, 255, 0.1);
}

.productions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.production-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
    display: block;
    cursor: pointer;
    position: relative;
}

.production-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.production-card:hover::before {
    opacity: 1;
}

.production-card:hover {
    transform: translateY(-10px);
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 25px 60px rgba(16, 185, 129, 0.2);
}

.production-image {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
}

.production-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

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

.production-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

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

.production-overlay svg {
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.production-card:hover .production-overlay svg {
    transform: scale(1.2);
}

.production-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #FFFFFF;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.production-card:hover .production-title {
    color: #10B981;
}

/* ==========================================
   🎨 AJUSTE INDIVIDUAL DE IMAGENS
   ========================================== */

/* Produção 1 - Pessoa Melhor */
.production-1 .production-image img {
    object-position: 0px center; /* horizontal vertical */
}

/* Produção 2 - Ô Cupido */
.production-2 .production-image img {
    object-position: center 1px;
}

/* Produção 3 - A Dor do Adeus */
.production-3 .production-image img {
    object-position: center 0.1px;
}

/* Produção 4 - A Luz da Manhã */
.production-4 .production-image img {
    object-position: center center;
}

/* Produção 5 - Eu Venci */
.production-5 .production-image img {
    object-position: 0px center;
}

/* Produção 6 - Vida Loca */
.production-6 .production-image img {
    object-position: center 0px;
}

/* Animação de entrada */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .productions {
        padding: 5rem 0;
    }

    .productions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .production-image {
        height: 240px;
    }

    .production-title {
        font-size: 1rem;
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .production-image {
        height: 200px;
    }
}

/* Artists Section */
.artists {
    padding: 8rem 0;
    background-color: #0A0A0A;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.artist-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.artist-card:hover {
    transform: translateY(-10px);
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

/* Imagem do artista */
.artist-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
}

/* Ajuste exclusivo da imagem do Pinduka */
.artist-card.artist-pinduka .artist-image img {
    object-position: center 30%; /* Sobe o enquadramento */
}

/* Faz TODAS as fotos ajustarem perfeitamente */
.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.artist-image-placeholder { 
    width: 100%; 
    height: 100%; 
    transition: transform 0.5s ease; 
}

/* Efeito de zoom ao passar o mouse */
.artist-card:hover .artist-image img {
    transform: scale(1.1);
}

.artist-info {
    padding: 1.5rem 1.5rem 0.75rem 1.5rem; /* 🎯 Padding inferior reduzido de 1.5rem para 1rem */
}

.artist-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: #FFFFFF;
}

.artist-role {
    font-size: 0.95rem;
    color: #10B981;
    font-weight: 600;
    margin-bottom: 1rem;
}

.artist-actions {
    display: flex;
    margin-bottom: 0px;
    gap: 0.75rem;
}

.btn-artist-primary {
    flex: 1;
    background-color: #10B981;
    color: #FFFFFF;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-artist-primary:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.btn-artist-secondary {
    background-color: transparent;
    color: #9CA3AF;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-artist-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: #10B981;
    color: #10B981;
}

/* About Section */
.about {
    padding: 8rem 0;
    background-color: #0F0F0F;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.05rem;
    color: #9CA3AF;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #10B981;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #9CA3AF;
}

/* About Section - Imagem do Studio */
.about-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.studio-image {
    width: 100%;
    height: 500px;
    background: #0F0F0F; /* Fundo preto para combinar com a foto */
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Remove o pseudo-elemento que fazia o grid */
.studio-image::before {
    display: none;
}

/* Estilo para a imagem dentro do container - MOSTRA IMAGEM INTEIRA */
.studio-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* 🎯 CONTAIN = Mostra a imagem inteira */
    object-position: center center;
    display: block;
    border-radius: 20px;
}

/* Carousel Section*/
.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.carousel-image.active {
    opacity: 1;
    transform: translateX(0);
}

.carousel-image.previous {
    opacity: 0;
    transform: translateX(-100%);
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
    border-top: 1px solid rgba(16, 185, 129, 0.2);
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

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

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.cta-description {
    font-size: 1.125rem;
    color: #9CA3AF;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.btn-cta {
    background-color: #10B981;
    color: #FFFFFF;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #059669;
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.4);
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background-color: #0A0A0A;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.9rem;
    color: #6B7280;
    line-height: 1.7;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #FFFFFF;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #10B981;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #9CA3AF;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background-color: rgba(16, 185, 129, 0.2);
    color: #10B981;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #6B7280;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .artists-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}