.elementor-250 .elementor-element.elementor-element-7524f3d{--display:flex;--margin-top:18px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}body.elementor-page-250:not(.elementor-motion-effects-element-type-background), body.elementor-page-250 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}/* Start custom CSS for html, class: .elementor-element-52a232b *//* Variáveis de Cores - Dark Mode */
:root {
    --bg-dark: #121212;      /* Fundo Preto Profundo */
    --surface-dark: #000000; /* Fundo Secundário para o Conteúdo */
    --orange-color: #ff6600; /* Laranja Vibrante */
    --text-light: #f0f0f0;   /* Texto Principal Claro */
    --text-muted: #aaaaaa;   /* Texto Secundário Cinza */
}

/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    width: 100%; 
    max-width: 100%; 
    margin: 0 auto; 
    background-color: var(--surface-dark);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); 
}

/* Cabeçalho e Slogan */
.header-content {
    padding: 40px 5% 20px 5%; 
    text-align: right;
    border-bottom: 2px solid var(--orange-color); 
    margin-bottom: 30px;
}

.company-name {
    /* Usando clamp para controle de fonte responsivo e mínimo/máximo */
    font-size: clamp(24px, 2.5vw, 40px); 
    font-weight: 800;
    color: var(--text-light);
    text-transform: uppercase; 
    margin-bottom: 5px;
}

.slogan {
    font-size: clamp(14px, 1vw, 20px); 
    color: var(--orange-color);
    font-weight: bold;
    letter-spacing: 3px;
    text-align: right;
    text-transform: uppercase;
}

/* Colunas de Conteúdo */
.content-columns {
    padding: 0 5% 30px 5%; 
}

.section {
    display: flex;
    align-items: flex-start;
    padding: 25px 0;
    border-left: 5px solid var(--orange-color); 
    margin-bottom: 25px;
    padding-left: 25px; 
    position: relative;
    background-color: #252525; 
    border-radius: 5px;
}

/* Ícone posicionado sobre a barra lateral */
.icon-box {
    position: absolute;
    left: -15px; 
    top: 20px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--orange-color);
    border-radius: 50%;
}

.title {
    color: var(--orange-color);
    font-size: 1.4em; 
    margin-bottom: 8px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section p {
    font-size: 1em;
    color: var(--text-muted);
}

/* ------------------------------------------- */
/* SEÇÃO VALORES (CORREÇÃO) */
/* ------------------------------------------- */

/* Garante que o container da lista seja um bloco e não flex */
.value-list {
    display: block; 
    margin-top: 10px;
}

.values ul {
    list-style: none; /* Remove o estilo padrão da lista */
    padding-left: 0;
    width: 100%; /* Garante que a lista ocupe toda a largura disponível */
}

.values li {
    font-size: 1em;
    margin-bottom: 12px; 
    position: relative;
    padding-left: 25px; /* Mais espaço para o novo bullet quadrado */
    color: var(--text-light);
}

/* **NOVO MARCADOR: QUADRADO PREENCHIDO LARANJA** */
.values li::before {
    content: ""; /* Conteúdo vazio para criar o quadrado com CSS */
    background-color: var(--orange-color); /* Fundo laranja */
    width: 12px; /* Largura do quadrado */
    height: 12px; /* Altura do quadrado */
    position: absolute;
    left: 0;
    top: 5px; /* Alinha o quadrado verticalmente */
    border-radius: 2px; /* Bordas levemente arredondadas */
}

/* ------------------------------------------- */
/* MEDIA QUERIES (RESPONSIVIDADE) */
/* ------------------------------------------- */

@media (max-width: 768px) {
    
    .container {
        padding: 0; 
    }

    /* As fontes já estão responsivas com clamp(), mas podemos ajustar os paddings */
    .header-content {
        padding: 30px 5% 15px 5%;
    }

    .content-columns {
        padding: 0 5% 20px 5%;
    }

    .section {
        padding: 15px 0;
        padding-left: 20px;
        margin-bottom: 15px;
    }

    /* Ajuste para ícones menores no mobile */
    .icon-box {
        left: -10px; 
        top: 15px;
        width: 20px;
        height: 20px;
    }
}

/* ------------------------------------------- */
/* Ícones Puros CSS (mantidos) */
/* ------------------------------------------- */

.icon {
    width: 15px; height: 15px; background-color: var(--surface-dark);
    position: relative; box-shadow: 0 0 0 2px var(--surface-dark);
}
.target { border-radius: 50%; border: 2px solid var(--orange-color); }
.target::after {
    content: '';
    position: absolute; width: 6px; height: 6px; top: 4px; left: 4px;
    background-color: var(--orange-color); border-radius: 50%;
}
.eye {
    transform: rotate(45deg); border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    border: 2px solid var(--orange-color); background-color: transparent;
}
.eye::before {
    content: ''; position: absolute; width: 4px; height: 4px; border-radius: 50%;
    background-color: var(--orange-color); top: 5px; left: 5px;
}
.diamond {
    background: transparent; border: none; transform: rotate(45deg);
    border-top: 2px solid var(--orange-color); border-right: 2px solid var(--orange-color);
}
.diamond::before {
    content: ''; position: absolute; width: 15px; height: 15px; background: transparent; border: none;
    border-bottom: 2px solid var(--orange-color); border-left: 2px solid var(--orange-color);
    top: 0; left: 0; transform: rotate(180deg);
}/* End custom CSS */