/* =================================================================== */
/* =================== ESTILOS DE RESPONSIVIDADE =================== */
/* =================================================================== */
@media (max-width: 991.98px) {
    .espaco{
        padding-top: 5rem;}
}

@media (max-width: 767.98px) {
    .service-description-section .service-image {
        margin-bottom: 2rem;
    }
}

/* =================================================================== */
/* ======================= ESTILIZAÇÃO GERAL ========================= */
/* =================================================================== */
.section-padding {
    padding: var(--fluid-space-4) 0;
}

.section-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--azul-claro);
    font-weight: 500;
    margin-bottom: 1.5rem;
    display: block;
}

.text-light-gray {
    color: #adb5bd;
}

/* =================================================================== */
/* ======================= SEÇÕES ESPECÍFICAS ======================== */
/* =================================================================== */

.page-header .container {
    position: relative;
}

/* --- Seção de Descrição do Serviço --- */
#seguranca {
    background-color: #ffffff;
}
.service-description-section .content-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.service-description-section .service-image {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 1rem 2rem rgba(0,0,0,0.1);
}
.service-description-section p {
    color: var(--cinza-escuro);
}

/* --- Seção Tecnologia em Nuvem --- */
#cloud {
    background-color: #0c1427;
    color: #fff;
}
#cloud p {
    color: #adb5bd;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
#cloud .section-title {
    color: #fff;
}

/* --- Seção Inteligência Artificial --- */
#ia {
    background-color: #f0f2f5;
}
.service-card {
    background-color: #fff;
    border: none;
    border-radius: 0.75rem;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.service-icon {
    font-size: 2.5rem;
    color: var(--azul-claro);
    margin-bottom: 1.5rem;
    display: inline-block;
}
.service-card h5 {
    font-weight: 700;
    color: var(--azul-escuro);
}
.service-card p {
    color: var(--cinza-escuro);
}

/* --- Seção Desenvolvimento --- */
#desenvolvimento {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1542831371-29b0f74f9713?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}
#desenvolvimento::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(12, 20, 39, 0.90);
}
#desenvolvimento .container {
    position: relative;
    z-index: 2;
}
#desenvolvimento .section-title {
    color: #fff;
}
#desenvolvimento p {
    color: #adb5bd;
}
