/* Performance Page Specific Styles */

/* Performance Hero */
.performance-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #e3121c 100%);
    background-size: 200% 200%;
    animation: heroGradient 15s ease infinite;
    position: relative;
    overflow: hidden;
}

@keyframes heroGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.performance-hero::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 1440 320"><path fill="%23000000" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,112C1248,107,1344,117,1392,122.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.performance-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.performance-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.performance-hero-subtitle {
    font-size: 1.25rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

/* Stages Section */
.stages-section {
    padding: 5rem 0;
    background: #0a0a0a;
}

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

.stage-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid rgba(227, 18, 28, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stage-card:hover {
    transform: translateY(-10px);
    border-color: #e3121c;
    box-shadow: 0 20px 40px rgba(227, 18, 28, 0.3);
}

.stage-card.featured {
    border-color: #e3121c;
    background: linear-gradient(135deg, #1a1a1a 0%, rgba(227, 18, 28, 0.1) 100%);
}

.stage-card.featured::before {
    content: 'MAIS POPULAR';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #e3121c;
    color: #ffffff;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.stage-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.stage-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e3121c;
    opacity: 0.3;
    line-height: 1;
}

.stage-title {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    flex: 1;
}

.stage-badge {
    background: rgba(227, 18, 28, 0.2);
    color: #e3121c;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
}

.stage-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.stage-gains {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(227, 18, 28, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(227, 18, 28, 0.1);
}

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

.gain-label {
    display: block;
    color: #999;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.gain-value {
    display: block;
    color: #e3121c;
    font-size: 1.5rem;
    font-weight: 700;
}

.stage-includes {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.stage-includes li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    position: relative;
    padding-left: 2rem;
}

.stage-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e3121c;
    font-weight: bold;
}

.stage-requirements {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stage-requirements h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.stage-requirements ul {
    list-style: none;
    padding: 0;
}

.stage-requirements li {
    padding: 0.5rem 0;
    color: #999;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.stage-requirements li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #e3121c;
}

/* Services Detail Section */
.performance-services {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

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

.service-detail-card {
    background: #2d2d2d;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    border-color: #e3121c;
    box-shadow: 0 10px 30px rgba(227, 18, 28, 0.2);
}

.service-detail-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-detail-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.service-detail-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-detail-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-benefits {
    list-style: none;
    padding: 0;
}

.service-benefits li {
    padding: 0.5rem 0;
    color: #999;
    position: relative;
    padding-left: 1.5rem;
}

.service-benefits li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #e3121c;
    font-weight: bold;
}

/* Brands Performance */
.brands-performance {
    padding: 5rem 0;
    background: #0a0a0a;
}

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

.brand-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(227, 18, 28, 0.1);
}

.brand-card:hover {
    transform: scale(1.05);
    border-color: #e3121c;
    box-shadow: 0 10px 30px rgba(227, 18, 28, 0.2);
}

.brand-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    opacity: 1;
    transition: all 0.3s;
}

.brand-card:hover .brand-logo {
    transform: scale(1.1);
}

.brand-card h3 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.models-list {
    list-style: none;
    padding: 0;
}

.models-list li {
    padding: 0.5rem 0;
    color: #999;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.models-list li:last-child {
    border-bottom: none;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e3121c, transparent);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e3121c 0%, #ff4444 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    box-shadow: 0 10px 30px rgba(227, 18, 28, 0.3);
}

.process-step h3 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-step p {
    color: #999;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: #0a0a0a;
}

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

.faq-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(227, 18, 28, 0.1);
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: #e3121c;
    transform: translateX(5px);
}

.faq-item h3 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    padding-left: 2rem;
}

.faq-item h3::before {
    content: '?';
    position: absolute;
    left: 0;
    color: #e3121c;
    font-weight: bold;
}

.faq-item p {
    color: #999;
    line-height: 1.6;
}

/* Final CTA */
.performance-final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #e3121c 0%, #1a1a1a 100%);
    background-size: 200% 200%;
    animation: ctaGradient 10s ease infinite;
    text-align: center;
}

@keyframes ctaGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.performance-final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.performance-final-cta p {
    font-size: 1.25rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

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

.btn-secondary {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #e3121c;
    transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .performance-hero-title {
        font-size: 2rem;
    }
    
    .stages-grid {
        grid-template-columns: 1fr;
    }
    
    .stage-card.featured::before {
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .performance-final-cta h2 {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons a {
        width: 90%;
        justify-content: center;
    }
}