/* Bot de Veículos DayZ - Estilos específicos */

/* Container principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Seção principal */
section {
    padding: 2rem 0;
}

section[style*="background: var(--bg-dark)"] {
    background: #0f172a !important;
}

.hero-section {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    padding: 4rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    opacity: 0.8;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.hero-section p {
    font-size: 1.1rem;
    color: #94a3b8;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.free-badge {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
    position: relative;
    z-index: 1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.product-overview {
    max-width: 1200px;
    margin: 0 auto;
}

.overview-content h2 {
    color: #8b5cf6;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    font-weight: 600;
}

.overview-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
    border-radius: 2px;
}

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

.feature-card {
    background: rgba(30, 41, 59, 0.8);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

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

.feature-card p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.feature-card ul {
    color: #cbd5e1;
    padding-left: 1.5rem;
    margin: 0;
}

.feature-card li {
    margin-bottom: 0.5rem;
    position: relative;
}

.feature-card li::marker {
    color: #8b5cf6;
}

.screenshots-section {
    margin: 4rem 0;
    text-align: center;
}

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

.screenshot-card {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.screenshot-placeholder {
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    color: #94a3b8;
    transition: background 0.3s ease;
}

.screenshot-card:hover .screenshot-placeholder {
    background: rgba(139, 92, 246, 0.2);
}

.screenshot-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.download-section {
    margin: 4rem 0;
    text-align: center;
    background: rgba(30, 41, 59, 0.8);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(34, 197, 94, 0.05));
    pointer-events: none;
}

.download-section h2 {
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    color: #ffffff;
    font-weight: 600;
}

.download-section p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
    text-decoration: none;
}

.btn-large:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.3);
}

/* Responsividade para tablets */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .hero-section h1 {
        font-size: 2.8rem;
    }
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0 2rem;
        margin-top: 60px;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-section p {
        font-size: 1rem;
        padding: 0 1rem;
        line-height: 1.5;
    }
    
    .free-badge {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .feature-icon i {
        font-size: 1.3rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .screenshot-placeholder {
        height: 150px;
    }
    
    .download-section {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }
    
    .btn-large {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .overview-content h2 {
        font-size: 2rem;
    }
}

/* Responsividade para telas muito pequenas */
@media (max-width: 480px) {
    .hero-section {
        padding: 2rem 0 1.5rem;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .overview-content h2 {
        font-size: 1.6rem;
    }
    
    .feature-card {
        padding: 1.2rem;
    }
    
    .download-section {
        padding: 1.5rem 1rem;
    }
}