/* Página de Detalhes do Serviço */

.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.3rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    padding: 80px 0;
    background: #0a0f1e;
    color: #e2e8f0;
}

.intro-text {
    text-align: center;
    margin-bottom: 60px;
}

.intro-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    color: #cbd5e1;
}

.content-section h2 {
    font-size: 2.2rem;
    color: #a5b4fc;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.service-item {
    background: rgba(30, 41, 59, 0.6);
    border-radius: 15px;
    padding: 40px 30px;
    border: 1px solid rgba(100, 116, 139, 0.2);
    transition: all 0.3s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 35px;
    color: #a5b4fc;
}

.service-item h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #e2e8f0;
    font-weight: 600;
}

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

.service-item li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #cbd5e1;
    line-height: 1.6;
}

.service-item li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6366f1;
    font-weight: bold;
}

.why-choose {
    margin-bottom: 80px;
}

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

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

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(30, 41, 59, 0.6);
}

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

.benefit-icon i {
    font-size: 30px;
    color: #a5b4fc;
}

.benefit-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #e2e8f0;
    font-weight: 600;
}

.benefit-item p {
    color: #cbd5e1;
    line-height: 1.6;
}

.cta-section {
    background: rgba(99, 102, 241, 0.1);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    border: 2px solid rgba(99, 102, 241, 0.2);
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #e2e8f0;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #cbd5e1;
}

/* Seções específicas da hospedagem */
.performance-section {
    text-align: center;
    margin-bottom: 60px;
}

.performance-desc {
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 1.7;
}

.specs-section {
    margin-bottom: 60px;
}

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

.spec-item {
    background: rgba(99, 102, 241, 0.1);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    border: 2px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

.spec-item:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.4);
    background: rgba(99, 102, 241, 0.15);
}

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

.spec-icon i {
    font-size: 30px;
    color: #a5b4fc;
}

.spec-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #e2e8f0;
    font-weight: 600;
}

.spec-item p {
    font-size: 1.1rem;
    color: #6366f1;
    font-weight: 700;
}

.performance-guarantee {
    text-align: center;
    margin-bottom: 80px;
    padding: 40px;
    background: rgba(30, 41, 59, 0.3);
    border-radius: 15px;
    border-left: 5px solid #6366f1;
}

.performance-guarantee p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin: 0;
    line-height: 1.7;
}

.important-note {
    margin-bottom: 60px;
}

.note-content {
    background: rgba(245, 158, 11, 0.1);
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-radius: 15px;
    padding: 30px;
}

.note-content h3 {
    color: #fbbf24;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.note-content p {
    color: #cbd5e1;
    margin: 0;
    line-height: 1.7;
}

.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-large {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .cta-section {
        padding: 40px 25px;
    }
}