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

:root {
    --color-primary: #2e8dfe;
    --color-dark: #191b26;
    --color-accent: #7d1963;
    --color-accent-light: #5141ae;
    --color-light: #f8f9fa;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--color-dark);
    background: #ffffff;
    /* overflow-x: hidden; */
}

/* Responsive */
@media (max-width: 768px) { 
    .about {
        padding-top: 4rem;
    }
    
    .about-logo-img {
        max-height: 80px;
        max-width: 200px;
    }
    
    .about-header .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .about-logo-img {
        max-height: 60px;
        max-width: 150px;
    }
}

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

/* Section Styles */
.section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, #4B0082, #0064FF);
    border-radius: 2px;
}

/* About Section com Logo */
.about {
    padding-top: 5rem; /* Espaço para header fixo */
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%234B0082" opacity="0.2"/><circle cx="80" cy="30" r="1.5" fill="%230064FF" opacity="0.08"/><circle cx="50" cy="70" r="2.5" fill="%23FF6B35" opacity="0.06"/></svg>');
}

.about-header {
    text-align: center;
    margin-bottom: 6rem;
}

.about-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-logo-img {
    max-height: 150px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(75, 0, 130, 0.2));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.about-header .section-title {
    margin-bottom: 0;
    font-size: 2.2rem;
}

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

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #4B0082, #0064FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.about-text img.about-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1.5rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #4B0082;
    box-shadow: 0 15px 40px rgba(75, 0, 130, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #4B0082, #0064FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.feature-card h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #666;
    font-size: 0.9rem;
}



/* Stats Section */
.stats {
    background: linear-gradient(135deg, #4B0082, #0064FF);
    color: white;
    text-align: center;
}

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

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--color-light);
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonials {
    background: #f8f9fa;
}

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

.testimonial {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.testimonial:hover {
    transform: translateY(-5px);
    border-color: #4B0082;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #4B0082, #0064FF);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

.testimonial p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.stars {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.testimonial-name {
    font-weight: bold;
    color: #333;
}

/* Artists Section */
.artists {
    background: white;
}

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

.artist-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.artist-card:hover {
    transform: translateY(-10px);
    border-color: #4B0082;
    box-shadow: 0 20px 40px rgba(75, 0, 130, 0.2);
}

.artist-photo {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #4B0082, #0064FF);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    overflow: hidden;
}

.artist-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.artist-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.artist-specialty {
    background: linear-gradient(45deg, #4B0082, #0064FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 600;
}

.artist-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.artist-btn {
    padding: 0.8rem 2rem;
    background: linear-gradient(45deg, #4B0082, #0064FF);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.artist-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(75, 0, 130, 0.3);
}

/* Process Section */
.process {
    background: #f8f9fa;
}

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

.process-step {
    text-align: center;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #4B0082, #0064FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    color: white;
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #4B0082, #0064FF);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 6rem;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="3" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="40" r="2" fill="%23ffffff" opacity="0.05"/><circle cx="60" cy="80" r="4" fill="%23ffffff" opacity="0.08"/></svg>');
    background-size: 300px 300px;
}

.artist-card {
    
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1.2rem 3rem;
    background: white;
    color: #4B0082;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer-location {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #4B0082, #0064FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
}

.social-link svg {
    width: 24px;
    height: 24px;
}


.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.contact-info h3 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.contact-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item strong {
    display: block;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    margin: 0;
    line-height: 1.6;
}

.contact-item small {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Location Section */
.location {
    /* background: #f8f9fa; */
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

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

.location-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #4B0082, #0064FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.location-info p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.location-details {
    background: #fdfdfd;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 1rem;
    padding-bottom: 2rem;
    border-radius: 15px;
}

.location-details p {
    margin-bottom: 0.8rem;
    color: #333;
    font-size: 1rem;
}

.location-details p:last-child {
    margin-bottom: 0;
}

.location-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, #4B0082, #0064FF);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(75, 0, 130, 0.3);
}

.location-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(75, 0, 130, 0.4);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .map-container iframe {
        height: 300px;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Contact Info Section */
.contact-info-section {
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.03), rgba(0, 100, 255, 0.03));
    position: relative;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%234B0082" opacity="0.05"/><circle cx="80" cy="30" r="1.5" fill="%230064FF" opacity="0.03"/></svg>');
    background-size: 200px 200px;
}

.contact-info-content {
    position: relative;
    z-index: 2;
}

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

.contact-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: #4B0082;
    box-shadow: 0 15px 40px rgba(75, 0, 130, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #4B0082, #0064FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.contact-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
    background: linear-gradient(45deg, #4B0082, #0064FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-item h4.green {
    color: #333;
    background: linear-gradient(45deg, #128C7E, rgb(0, 39, 31));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-item small {
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
    display: block;
    margin-top: 0.5rem;
}

.email-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.email-btn {
    background: linear-gradient(45deg, #4B0082, #0064FF);
}

.email-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-cta {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(45deg, #4B0082, #0064FF) border-box;
}

.contact-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #4B0082, #0064FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.contact-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-btn.primary {
    background: linear-gradient(45deg, #4B0082, #0064FF);
    color: white;
    box-shadow: 0 5px 15px rgba(75, 0, 130, 0.3);
}

.contact-btn.secondary {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.contact-btn:hover {
    transform: translateY(-3px);
}

.contact-btn.primary:hover {
    box-shadow: 0 8px 25px rgba(75, 0, 130, 0.4);
}

.contact-btn.secondary:hover {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Botão WhatsApp - Cores Oficiais */
.whatsapp-btn, .contact-btn.secondary {
    background: #25D366; /* Verde oficial do WhatsApp */
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover, .contact-btn.secondary:hover {
    background: #128C7E; /* Verde escuro do WhatsApp */
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Ícone do WhatsApp nos botões */
.whatsapp-btn::before {
    content: '📱';
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

/* Ou usando SVG do WhatsApp */
.whatsapp-btn-svg {
    background: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.whatsapp-btn-svg:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.whatsapp-btn-svg svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Botão Google Maps - Cor Oficial */
.location-btn {
    background: white; /* Vermelho oficial do Google */
    color: #EA4335;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(234, 67, 53, 0.3);
}

.location-btn:hover {
    background: #D33B2C; /* Vermelho escuro para hover */
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(234, 67, 53, 0.4);
}

/* Ícone do Google Maps */
.location-btn::before {
    font-size: 1.1rem;
}

/* Social Link Instagram - Gradiente Oficial */
.social-link.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
    color: white;
    transition: all 0.3s ease;
}

.social-link.instagram:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

/* Ou versão simplificada com uma cor principal */
.social-link.instagram-simple {
    background: #E4405F; /* Rosa principal do Instagram */
    color: white;
}

.social-link.instagram-simple:hover {
    background: #C13584; /* Roxo do Instagram */
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 2rem;
    }
    
    .contact-cta {
        padding: 2rem;
    }
    
    .contact-cta h3 {
        font-size: 1.5rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn {
        width: 100%;
        max-width: 300px;
    }
}

.mt-6 {
    margin-top: 6rem;
}