/* Estilos para as páginas de serviços */

.servico-hero {
    background-color: #0b2c59;
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-top: 80px;
}

.servico-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.servico-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.servico-conteudo {
    padding: 4rem 0;
}

.servico-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.servico-info h2 {
    color: #0b2c59;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.servico-info p {
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #333;
}

.servico-info h3 {
    color: #0b2c59;
    margin: 2rem 0 1rem;
    font-size: 1.4rem;
}

.servico-lista {
    list-style: none;
    padding: 0;
}

.servico-lista li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    color: #333;
}

.servico-lista i {
    color: #0b2c59;
    margin-right: 1rem;
    font-size: 1.1rem;
}

.servico-imagem {
    position: sticky;
    top: 100px;
}

.servico-imagem img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.servico-cta {
    background-color: #f5f5f5;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.servico-cta h3 {
    color: #0b2c59;
    margin-bottom: 1rem;
}

.servico-cta p {
    margin-bottom: 1.5rem;
    color: #333;
}

.btn-primary {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: #0b2c59;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #153d73;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Responsividade */
@media (max-width: 768px) {
    .servico-grid {
        grid-template-columns: 1fr;
    }

    .servico-hero {
        padding: 3rem 0;
        margin-top: 60px;
    }

    .servico-hero h1 {
        font-size: 2rem;
    }

    .servico-imagem {
        position: static;
    }
} 