/* === CSS Ativo (1 blocos) === */
/*
 * ======================================
 * SEÇÃO HOME (Container Principal)
 * ======================================
 */
.container-full {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    width: 100%;
    color: #fff;
    padding: 15px; /* Reduz o padding geral do container */
    background-color: #542a72;
    background-image: url('https://websim.com.br/images/programadorbg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.logo-img {
    max-width: 150px;
    height: auto;
    border-radius: 10px;
    margin: 50px 0 10px;
}

.texto-resumo {
    max-width: 90%;
    line-height: 1.6;
    padding: 20px;
    margin: 0 auto;
  font-size: 20px;
}

/*
 * ======================================
 * GRID DE SERVIÇOS
 * ======================================
 */
.grid-servicos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 10px;
}

/* Força o fundo transparente nos cards e aplica o desfoque */
.card {
    background-color: rgba(255, 255, 255, 0.3) !important; /* Corrigido para garantir a transparência */
    border: 1px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 10px;
    border-radius: 20px;
    text-align: center;
    color: #fff;
}
    
.card i {
    color: #fff;
    margin-bottom: 15px;
}

.card h2 {
    font-size: 1.2rem;
    margin: 8px 0;
    color: #fff;
}

.card p {
    font-size: 0.85rem;
    color: #fff;
}

/*
 * ======================================
 * SEÇÃO SOBRE NÓS
 * ======================================
 */
.container-principal {
    display: flex;
    min-height: 100vh;
}

.coluna {
    flex: 1;
}

.coluna.conteudo {
    background-color: #fff;
    color: #542a72;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.coluna.imagem-fundo {
    background: url('https://websim.com.br/images/websim-estrutura.webp') center center/cover no-repeat;
}

.titulo-destaque {
    font-weight: normal;
    font-size: 32px;
    margin-bottom: 0;
}

.texto-justificado {
    font-size: 1rem;
    margin-top: 10px;
    margin-bottom: 20px;
    text-align: justify;
}

.tabela-responsiva {
    overflow-x: auto;
    max-width: 100%;
    margin-top: 20px;
}
    
.tabela-responsiva table {
    width: 100%;
    border-collapse: collapse;
    background-color: #542a72;
    color: #fff;
    text-align: left;
    margin: 0;
}
    
.tabela-responsiva td {
    padding: 10px;
    border: 1px solid #fff;
}
    
.tabela-responsiva td i {
    margin-right: 6px;
}

/*
 * ======================================
 * MEDIA QUERIES (Responsividade)
 * ======================================
 */
@media (max-width: 768px) {
    .container-principal {
        flex-direction: column;
    }
    
    .coluna.imagem-fundo {
        min-height: 300px;
    }

    .coluna.conteudo {
        padding: 20px;
    }
}