/* Página de Serviços */

.hero-section {
    background: linear-gradient(rgba(10, 15, 30, 0.8), rgba(10, 15, 30, 0.9)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-section p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Seção de Serviços em Destaque */
.featured-services {
    padding: 80px 0;
    background: #0a0f1e;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #a5b4fc;
    font-weight: 700;
}

.featured-grid {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.featured-card {
    background: rgba(30, 41, 59, 0.8);
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    display: none;
    align-items: center;
}

.featured-card.active {
    display: flex;
}

.slider-nav {
    text-align: center;
    margin-top: 30px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(165, 180, 252, 0.3);
    border: none;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: #6366f1;
    transform: scale(1.2);
}

.slide-content {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-image {
    flex: 1;
    height: 100%;
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-slide:hover .slide-image img {
    transform: scale(1.05);
}

.featured-icon {
    width: 100px;
    height: 100px;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.featured-icon i {
    font-size: 45px;
    color: #a5b4fc;
}

.slide-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #e2e8f0;
    font-weight: 700;
}

.slide-content p {
    color: #cbd5e1;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1.1rem;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 30px;
}



/* Seção de Produtos */
.products-section {
    padding: 80px 0;
    background: #0e1525;
}

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

.product-card {
    background: rgba(30, 41, 59, 0.6);
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(100, 116, 139, 0.2);
}

.product-card:hover {
    transform: translateY(-5px);
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(165, 180, 252, 0.3);
}

.product-icon {
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.product-icon i {
    font-size: 25px;
    color: #a5b4fc;
}

.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #e2e8f0;
    font-weight: 600;
}

.product-card p {
    color: #cbd5e1;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.product-card .price {
    font-size: 1.4rem;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #6366f1;
    color: #fff;
}

.btn-primary:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.btn-outline {
    background: transparent;
    color: #a5b4fc;
    border: 2px solid #6366f1;
}

.btn-outline:hover {
    background: #6366f1;
    color: #fff;
}

.btn-large {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* Responsividade */
@media (max-width: 992px) {
    .featured-card {
        flex-direction: column;
        height: auto;
    }
    
    .slide-content {
        order: 2;
        padding: 40px 30px;
        text-align: center;
    }
    
    .slide-image {
        order: 1;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .featured-card {
        height: auto;
        margin: 0 15px;
    }
    
    .slide-content h3 {
        font-size: 1.8rem;
    }
    
    .price {
        font-size: 1.8rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card {
        margin: 0 15px;
    }
}