/* Reset e configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #0A0A0A 0%, #1a1a1a 100%);
    color: #F2F2F2;
    min-height: 100vh;
    overflow-x: hidden;
}

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

/* Header */
.header {
    text-align: center;
    padding: 40px 0;
    border-bottom: 2px solid #E60026;
    margin-bottom: 40px;
    position: relative;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 255, 255, 0.1) 50%, transparent 70%);
    pointer-events: none;
}

.logo-container {
    margin-bottom: 20px;
}

.site-logo {
    max-width: 100%;
    width: 750px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.5));
    transition: all 0.3s ease;
}

.site-logo:hover {
    filter: drop-shadow(0 0 25px rgba(0, 255, 255, 0.8));
    transform: scale(1.05);
}

.slogan {
    font-family: 'Titillium Web', sans-serif;
    font-size: 1.2rem;
    color: #4D4D4D;
    font-style: italic;
    margin-top: 10px;
}

/* Animações */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 0, 38, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(230, 0, 38, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(230, 0, 38, 0);
    }
}

/* Navigation Buttons */
.nav-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.nav-btn {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #4D4D4D;
    border-radius: 15px;
    padding: 30px;
    color: #F2F2F2;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Titillium Web', sans-serif;
    text-decoration: none;
    display: block;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.nav-btn:hover::before {
    left: 100%;
}

.nav-btn:hover {
    border-color: #00FFFF;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.nav-btn.active {
    border-color: #E60026;
    background: linear-gradient(135deg, #2a1a1a 0%, #3a2a2a 100%);
    animation: pulse 2s infinite;
}

.nav-btn.coming-soon {
    opacity: 0.7;
}

.nav-btn.coming-soon:hover {
    border-color: #4D4D4D;
    transform: none;
    box-shadow: none;
}

.btn-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.nav-btn h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #00FFFF;
}

.nav-btn p {
    font-size: 1rem;
    color: #4D4D4D;
}

/* Content Sections */
.content-section {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.content-section.active {
    display: block;
}

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

/* Studio Content */
.studio-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(230, 0, 38, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%);
    border-radius: 15px;
    border: 1px solid #4D4D4D;
}

.studio-header h1 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #00FFFF;
    margin-bottom: 20px;
}

.studio-header p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #F2F2F2;
}

/* Services Section */
.services-section {
    margin-bottom: 50px;
}

.services-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: #E60026;
    margin-bottom: 30px;
    text-align: center;
}

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

.service-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid #4D4D4D;
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E60026, #00FFFF, #E60026);
    background-size: 200% 100%;
    animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #00FFFF;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.service-card h3 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 1.3rem;
    color: #00FFFF;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    line-height: 1.6;
    color: #F2F2F2;
}

/* Why Choose Section */
.why-choose-section {
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05) 0%, rgba(230, 0, 38, 0.05) 100%);
    border-radius: 15px;
    border: 1px solid #4D4D4D;
}

.why-choose-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: #E60026;
    margin-bottom: 30px;
    text-align: center;
}

.benefits-grid {
    display: grid;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.benefit-bullet {
    color: #00FFFF;
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: -5px;
    flex-shrink: 0;
}

.benefit-item strong {
    color: #00FFFF;
}

/* Contact Section */
.contact-section {
    margin-bottom: 50px;
}

.contact-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: #E60026;
    margin-bottom: 30px;
    text-align: center;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid #4D4D4D;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: #00FFFF;
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.2rem;
}

.contact-item a {
    color: #F2F2F2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #00FFFF;
}

.company-info {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid #4D4D4D;
    border-radius: 10px;
    padding: 25px;
    margin-top: 30px;
}

.company-info h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    color: #E60026;
    margin-bottom: 20px;
    text-align: center;
}

.company-info p {
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.5;
}

.company-info strong {
    color: #00FFFF;
}

/* Coming Soon */
.coming-soon-message {
    text-align: center;
    padding: 100px 20px;
}

.coming-soon-message h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #E60026;
    margin-bottom: 20px;
}

.coming-soon-message p {
    font-size: 1.2rem;
    color: #4D4D4D;
    margin-bottom: 30px;
}

.back-btn {
    background: linear-gradient(135deg, #E60026 0%, #ff1744 100%);
    border: none;
    border-radius: 25px;
    padding: 15px 30px;
    color: #F2F2F2;
    font-family: 'Titillium Web', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(230, 0, 38, 0.4);
}

/* Footer */
.footer {
    border-top: 2px solid #4D4D4D;
    padding: 30px 0;
    text-align: center;
    margin-top: 50px;
}

.footer-content p {
    color: #4D4D4D;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

/* Social Buttons Styles */
.social-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #4D4D4D;
    border-radius: 10px;
    color: #F2F2F2;
    text-decoration: none;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.social-btn:hover::before {
    left: 100%;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.3);
}

.social-btn.instagram:hover {
    border-color: #E4405F;
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.3);
}

.social-btn.linkedin:hover {
    border-color: #0077B5;
    box-shadow: 0 8px 25px rgba(0, 119, 181, 0.3);
}

.social-btn.tiktok:hover {
    border-color: #FF0050;
    box-shadow: 0 8px 25px rgba(255, 0, 80, 0.3);
}

.social-btn.youtube:hover {
    border-color: #FF0000;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

.social-icon {
    font-size: 1.2rem;
}

/* Contact Info Styles */
.contact-info {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid #4D4D4D;
    border-radius: 10px;
    padding: 25px;
    margin-top: 20px;
}

.contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding: 0;
    background: none;
    border: none;
}

.contact-info .contact-item:last-child {
    margin-bottom: 0;
}

.contact-bullet {
    color: #00FFFF;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.contact-text {
    color: #F2F2F2;
    font-size: 1rem;
    word-break: break-word;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 15px;
    }
    
    .site-logo {
        width: 600px;
    }
    
    .nav-buttons {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .service-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .header {
        padding: 30px 0;
        margin-bottom: 30px;
    }
    
    .site-logo {
        width: 450px;
    }
    
    .slogan {
        font-size: 1rem;
    }
    
    .nav-buttons {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .nav-btn {
        padding: 25px;
    }
    
    .btn-icon {
        font-size: 2rem;
    }
    
    .nav-btn h3 {
        font-size: 1.3rem;
    }
    
    .studio-header {
        padding: 25px;
        margin-bottom: 40px;
    }
    
    .studio-header h1 {
        font-size: 2rem;
    }
    
    .studio-header p {
        font-size: 1rem;
    }
    
    .services-section h2,
    .why-choose-section h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .why-choose-section {
        padding: 25px;
        margin-bottom: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .social-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .social-btn {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .company-info {
        padding: 20px;
    }
    
    .company-info h2 {
        font-size: 1.5rem;
    }
    
    .coming-soon-message {
        padding: 80px 20px;
    }
    
    .coming-soon-message h2 {
        font-size: 2rem;
    }
    
    .footer {
        padding: 25px 0;
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .header {
        padding: 20px 0;
        margin-bottom: 25px;
    }
    
    .site-logo {
        width: 300px;
    }
    
    .slogan {
        font-size: 0.9rem;
    }
    
    .nav-btn {
        padding: 20px;
    }
    
    .btn-icon {
        font-size: 1.8rem;
    }
    
    .nav-btn h3 {
        font-size: 1.2rem;
    }
    
    .nav-btn p {
        font-size: 0.9rem;
    }
    
    .studio-header {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .studio-header h1 {
        font-size: 1.8rem;
    }
    
    .studio-header p {
        font-size: 0.95rem;
    }
    
    .services-section h2,
    .why-choose-section h2,
    .contact-section h2 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .service-card {
        padding: 18px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
    
    .why-choose-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .benefit-item {
        font-size: 1rem;
        gap: 12px;
    }
    
    .benefit-bullet {
        font-size: 1.3rem;
    }
    
    .social-buttons {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .social-btn {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .contact-info {
        padding: 18px;
    }
    
    .contact-text {
        font-size: 0.9rem;
    }
    
    .company-info {
        padding: 18px;
    }
    
    .company-info h2 {
        font-size: 1.4rem;
    }
    
    .company-info p {
        font-size: 0.9rem;
    }
    
    .coming-soon-message {
        padding: 60px 15px;
    }
    
    .coming-soon-message h2 {
        font-size: 1.8rem;
    }
    
    .coming-soon-message p {
        font-size: 1rem;
    }
    
    .back-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .footer {
        padding: 20px 0;
        margin-top: 30px;
    }
    
    .footer-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .site-logo {
        width: 250px;
    }
    
    .studio-header h1 {
        font-size: 1.6rem;
    }
    
    .services-section h2,
    .why-choose-section h2,
    .contact-section h2 {
        font-size: 1.4rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .benefit-item {
        font-size: 0.95rem;
    }
    
    .contact-text {
        font-size: 0.85rem;
    }
    
    .company-info p {
        font-size: 0.85rem;
    }
}

