/*
 * Gianthi 1.0.0 — estilos versionados extraídos do custom_css do Elementor.
 * Mantém o visual aprovado sem depender de CSS embutido no JSON.
 */

/* Elementor source: 3c40ec0 */
/* ==========================================================
   TIMELINE ALTERNADA
   01 começa pela esquerda
========================================================== */


/* ==========================================================
   CONTAINER PRINCIPAL
========================================================== */

.hlx-timeline-processo {
    position: relative;

    display: flex !important;
    flex-direction: column !important;

    width: 100%;
    max-width: 1100px;

    margin: 0 auto;
    padding: 15px 0 !important;

    gap: 0 !important;
    overflow: visible !important;
}


/* ==========================================================
   LINHA CENTRAL
========================================================== */

.hlx-timeline-processo::before {
    content: "";

    position: absolute;
    top: 15px;
    bottom: 15px;
    left: 50%;

    width: 1px;

    background-color: #DEDAD2;

    transform: translateX(-50%);

    z-index: 1;
}


/* ==========================================================
   CADA PASSO
========================================================== */

.hlx-timeline-passo {
    position: relative;

    display: grid !important;
    grid-template-columns: 1fr 1fr !important;

    width: 100%;

    /* Controla a distância entre os passos */
    min-height: 165px;

    margin: 0 !important;
    padding: 0 !important;

    gap: 0 !important;
    overflow: visible !important;

    z-index: 2;
}


/* ==========================================================
   CÍRCULOS
========================================================== */

.hlx-timeline-passo::before {
    content: "";

    position: absolute;
    top: 5px;
    left: 50%;

    width: 17px;
    height: 17px;

    background-color: #FFFFFF;

    border: 2px solid #a65a14;
    border-radius: 50%;

    box-sizing: border-box;

    transform: translateX(-50%);

    z-index: 3;

    transition:
        background-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

/* Hover do círculo */
.hlx-timeline-passo:hover::before {
    background-color: #a65a14;

    box-shadow:
        0 0 0 5px rgba(166, 90, 20, 0.10);

    transform: translateX(-50%) scale(1.08);
}


/* ==========================================================
   CONTAINER DO CONTEÚDO
========================================================== */

.hlx-timeline-conteudo {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;

    width: 100%;
    max-width: 500px;

    margin: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;

    gap: 0 !important;
    overflow: visible !important;
}


/* ==========================================================
   PASSOS DA ESQUERDA
   01, 03 E 05
========================================================== */

.hlx-timeline-passo.hlx-timeline-esquerda
.hlx-timeline-conteudo {
    grid-column: 1 !important;

    justify-self: end !important;

    padding-left: 0 !important;
    padding-right: 70px !important;
}


/* ==========================================================
   PASSOS DA DIREITA
   02, 04 E 06
========================================================== */

.hlx-timeline-passo.hlx-timeline-direita
.hlx-timeline-conteudo {
    grid-column: 2 !important;

    justify-self: start !important;

    padding-left: 70px !important;
    padding-right: 0 !important;
}


/* ==========================================================
   NÚMEROS
========================================================== */

.hlx-timeline-numero,
.hlx-timeline-numero.elementor-widget {
    width: 100%;

    margin: 0 0 8px 0 !important;
    padding: 0 !important;
}

.hlx-timeline-numero .elementor-heading-title {
    margin: 0;
    padding: 0;

    font-family: "Inter", Arial, sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;

    color: #a65a14;
}


/* ==========================================================
   TÍTULOS
========================================================== */

.hlx-timeline-titulo,
.hlx-timeline-titulo.elementor-widget {
    width: 100%;

    margin: 0 0 8px 0 !important;
    padding: 0 !important;
}

.hlx-timeline-titulo .elementor-heading-title {
    margin: 0;
    padding: 0;

    font-family: "Inter", Arial, sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.25;

    color: #111111;
}


/* ==========================================================
   DESCRIÇÕES
========================================================== */

.hlx-timeline-texto,
.hlx-timeline-texto.elementor-widget {
    width: 100%;

    margin: 0 !important;
    padding: 0 !important;
}

.hlx-timeline-texto p {
    margin: 0 !important;
    padding: 0;

    font-family: "Inter", Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;

    color: #65615B;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1024px) {

    .hlx-timeline-processo {
        max-width: 900px;
    }

    /* Espaçamento entre os passos no tablet */
    .hlx-timeline-passo {
        min-height: 155px;
    }

    .hlx-timeline-passo.hlx-timeline-esquerda
    .hlx-timeline-conteudo {
        padding-right: 50px !important;
    }

    .hlx-timeline-passo.hlx-timeline-direita
    .hlx-timeline-conteudo {
        padding-left: 50px !important;
    }

    .hlx-timeline-numero .elementor-heading-title {
        font-size: 36px;
    }

    .hlx-timeline-titulo .elementor-heading-title {
        font-size: 22px;
    }
}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .hlx-timeline-processo {
        width: 100%;

        padding: 5px 0 !important;
    }

    /* Linha à esquerda */
    .hlx-timeline-processo::before {
        top: 5px;
        bottom: 5px;
        left: 8px;

        transform: none;
    }

    /* Cada passo passa para uma coluna */
    .hlx-timeline-passo {
        display: grid !important;
        grid-template-columns: 1fr !important;

        min-height: 0 !important;

        /* Espaçamento entre os passos no celular */
        padding: 0 0 35px 0 !important;
    }

    .hlx-timeline-passo:last-child {
        padding-bottom: 5px !important;
    }

    /* Círculo à esquerda */
    .hlx-timeline-passo::before {
        top: 4px;
        left: 0;

        width: 17px;
        height: 17px;

        transform: none;
    }

    .hlx-timeline-passo:hover::before {
        transform: scale(1.08);
    }

    /* Todos os conteúdos ficam à direita da linha */
    .hlx-timeline-passo.hlx-timeline-esquerda
    .hlx-timeline-conteudo,

    .hlx-timeline-passo.hlx-timeline-direita
    .hlx-timeline-conteudo {
        grid-column: 1 !important;

        width: 100%;
        max-width: none;

        justify-self: stretch !important;

        padding-left: 40px !important;
        padding-right: 0 !important;
    }

    .hlx-timeline-numero,
    .hlx-timeline-numero.elementor-widget {
        margin-bottom: 6px !important;
    }

    .hlx-timeline-numero .elementor-heading-title {
        font-size: 30px;
    }

    .hlx-timeline-titulo,
    .hlx-timeline-titulo.elementor-widget {
        margin-bottom: 7px !important;
    }

    .hlx-timeline-titulo .elementor-heading-title {
        font-size: 20px;
    }

    .hlx-timeline-texto p {
        font-size: 14px;
        line-height: 1.55;
    }
}

/* Elementor source: 7e59c91 */
/* ==========================================================
   BLOCO DE CAMINHOS
   Classe principal: hlx-caminhos-grid
========================================================== */


/* ==========================================================
   CONTAINER PRINCIPAL
========================================================== */

.hlx-caminhos-grid {
    position: relative !important;

    display: grid !important;
    grid-template-columns:
        repeat(2, minmax(0, 1fr)) !important;
    grid-template-rows:
        repeat(2, minmax(255px, auto)) !important;

    width: 100%;

    margin: 0;
    padding: 0 !important;

    gap: 0 !important;

    background-color: #FFFFFF;

    border: 1px solid #DEDAD2;
    border-radius: 18px;

    overflow: hidden !important;
}


/* ==========================================================
   DIVISOR VERTICAL FINO
========================================================== */

.hlx-caminhos-grid::before {
    content: "";

    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;

    width: 0.5px;

    background-color: #DEDAD2;

    pointer-events: none;

    z-index: 5;
}


/* ==========================================================
   DIVISOR HORIZONTAL FINO
========================================================== */

.hlx-caminhos-grid::after {
    content: "";

    position: absolute;
    top: 50%;
    left: 0;
    right: 0;

    height: 0.5px;

    background-color: #DEDAD2;

    pointer-events: none;

    z-index: 5;
}


/* ==========================================================
   CADA ITEM
========================================================== */

.hlx-caminho-item {
    position: relative;

    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;

    width: 100%;
    min-width: 0;
    min-height: 255px;

    margin: 0 !important;
    padding: 40px 32px !important;

    gap: 0 !important;

    background-color: #FFFFFF;

    border: none !important;

    box-sizing: border-box;

    transition: background-color 0.3s ease;

    z-index: 1;
}


/* ==========================================================
   CAMINHO 01, CAMINHO 02...
========================================================== */

.hlx-caminho-label,
.hlx-caminho-label.elementor-widget {
    width: 100%;

    margin: 0 0 44px 0 !important;
    padding: 0 !important;
}

.hlx-caminho-label .elementor-heading-title {
    margin: 0;
    padding: 0;

    font-family: "Inter", Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;

    color: #79531D;

    text-transform: uppercase;
    letter-spacing: 1.8px;
}


/* ==========================================================
   TÍTULO PRINCIPAL
========================================================== */

.hlx-caminho-titulo,
.hlx-caminho-titulo.elementor-widget {
    width: 100%;

    margin: 0 0 11px 0 !important;
    padding: 0 !important;
}

.hlx-caminho-titulo .elementor-heading-title {
    margin: 0;
    padding: 0;

    font-family: "Inter", Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;

    color: #111111;
}


/* ==========================================================
   DESCRIÇÃO
========================================================== */

.hlx-caminho-texto,
.hlx-caminho-texto.elementor-widget {
    width: 100%;

    margin: 0 !important;
    padding: 0 !important;
}

.hlx-caminho-texto p {
    margin: 0 !important;
    padding: 0;

    font-family: "Inter", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;

    color: #65615B;
}


/* ==========================================================
   HOVER
========================================================== */

.hlx-caminho-item:hover {
    background-color: #FFFFFF;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1024px) {

    .hlx-caminhos-grid {
        grid-template-rows:
            repeat(2, minmax(230px, auto)) !important;
    }

    .hlx-caminho-item {
        min-height: 230px;

        padding: 34px 26px !important;
    }

    .hlx-caminho-label,
    .hlx-caminho-label.elementor-widget {
        margin-bottom: 35px !important;
    }

    .hlx-caminho-titulo .elementor-heading-title {
        font-size: 17px;
    }

    .hlx-caminho-texto p {
        font-size: 15px;
    }
}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .hlx-caminhos-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: none !important;

        border-radius: 15px;
    }

    /* Remove os divisores centrais do desktop */
    .hlx-caminhos-grid::before,
    .hlx-caminhos-grid::after {
        display: none !important;
        content: none !important;
    }

    .hlx-caminho-item {
        min-height: 0;

        padding: 28px 22px 30px !important;

        border: none !important;
        border-bottom: 0.5px solid #DEDAD2 !important;
    }

    /* Remove o divisor do último item */
    .hlx-caminho-item:last-child {
        border-bottom: none !important;
    }

    .hlx-caminho-label,
    .hlx-caminho-label.elementor-widget {
        margin-bottom: 26px !important;
    }

    .hlx-caminho-titulo,
    .hlx-caminho-titulo.elementor-widget {
        margin-bottom: 9px !important;
    }

    .hlx-caminho-label .elementor-heading-title {
        font-size: 11px;
        letter-spacing: 1.6px;
    }

    .hlx-caminho-titulo .elementor-heading-title {
        font-size: 17px;
    }

    .hlx-caminho-texto p {
        font-size: 15px;
        line-height: 1.55;
    }
}
