/* =========================================================
   FREEDOM LANGUAGE SCHOOL — CSS COMPLETO
   Arquivo preparado para colar no campo de CSS.

   Observação:
   O JavaScript do menu mobile que estava no início do arquivo
   original NÃO foi incluído aqui, pois JavaScript não deve ser
   colado dentro de um campo de CSS.
   ========================================================= */

/* FREEDOM - Column Service */
.gdlr-core-column-service-media {
    width: 80px !important;
    max-width: 80px !important;
}

.gdlr-core-column-service-media img {
    width: 80px !important;
    max-width: 80px !important;
    height: auto !important;
}


/* FREEDOM - Planejamento para cada estudante */

.freedom-planejamento {
    margin: 0;
}

.freedom-plan-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    line-height: 1.55;
}

.freedom-check {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    border-radius: 50%;
    background: #1557d6;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    line-height: 20px;
}

.freedom-plan-item > span:last-child {
    flex: 1;
}



/* ================================
   FREEDOM - VISIBILIDADE RESPONSIVA
   ================================ */

/* Desktop / Tablet */
.freedom-desktop-only {
    display: block !important;
}

.freedom-mobile-only {
    display: none !important;
}


/* Celular */
@media only screen and (max-width: 767px) {

    .freedom-desktop-only {
        display: none !important;
    }

    .freedom-mobile-only {
        display: block !important;
    }

}

/* =========================================
   FREEDOM - FACULDADE
   Ajuste do topo somente no celular
   ========================================= */

@media only screen and (max-width: 767px) {

    body.postid-401 .freedom-top-title {
        margin-top: -180px !important;
    }

}



/* =========================================================
   ALUNOS DA FREEDOM NAS UNIVERSIDADES
   CSS FINAL - DESKTOP, TABLET E MOBILE
   ========================================================= */

.freedom-alunos-section {
    width: 100%;
    max-width: 1320px;
    margin: 42px auto;
    padding: 0 20px;
    box-sizing: border-box;
}


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

.freedom-alunos-header {
    text-align: center;
    margin-bottom: 28px;
}

.freedom-alunos-header h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0;

    color: #173f7a !important;
    font-size: 36px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
}

.freedom-alunos-header h2::before,
.freedom-alunos-header h2::after {
    content: "";
    width: 55px;
    height: 3px;
    background: #e30613;
    border-radius: 10px;
    flex: 0 0 55px;
}

.freedom-alunos-header p {
    margin: 8px 0 0;
    color: #26385e;
    font-size: 18px;
    line-height: 1.5;
}


/* =========================================================
   CARROSSEL
   ========================================================= */

.freedom-alunos-carousel {
    display: flex;
    align-items: stretch;
    gap: 22px;
    width: 100%;
    box-sizing: border-box;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;

    padding-bottom: 10px;

    scrollbar-width: none;
}

.freedom-alunos-carousel::-webkit-scrollbar {
    display: none;
}


/* =========================================================
   CARDS
   ========================================================= */

.freedom-aluno-card {
    flex: 0 0 300px;
    min-width: 300px;

    display: flex;
    flex-direction: column;

    background: #ffffff;

    border: 1px solid #dfe5ef;
    border-radius: 14px;

    overflow: hidden;

    box-shadow: 0 5px 16px rgba(23, 63, 122, 0.10);

    box-sizing: border-box;
}


/* =========================================================
   FOTOS
   ========================================================= */

.freedom-aluno-foto {
    display: block;

    width: 100% !important;
    aspect-ratio: 1 / 1;
    height: auto !important;

    object-fit: cover !important;
    object-position: center center;

    margin: 0 !important;

    flex: 0 0 auto;
}


/* =========================================================
   ENQUADRAMENTOS INDIVIDUAIS DAS FOTOS
   ========================================================= */

.aluno-emanuelle .freedom-aluno-foto {
    object-position: center 30%;
}

.aluno-daniel .freedom-aluno-foto {
    object-position: center 28%;
}

.aluno-felipe-goto .freedom-aluno-foto {
    object-position: center 38%;
}

.aluno-amandha .freedom-aluno-foto {
    object-fit: contain !important;
    object-position: center center !important;
    background: #ffffff;
}

.aluno-rafa .freedom-aluno-foto {
    object-position: center center;
}

.aluno-daniel-tsutomu .freedom-aluno-foto {
    object-position: center center;
}

.aluno-stephanie .freedom-aluno-foto {
    object-position: center center;
}

.aluno-leticia .freedom-aluno-foto {
    object-position: center center;
}

.aluno-enzo .freedom-aluno-foto {
    object-position: center center;
}

.aluno-dylan .freedom-aluno-foto {
    object-position: center center;
}

.aluno-matheus .freedom-aluno-foto {
    object-position: center center;
}


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

.freedom-aluno-info {
    flex: 1;

    display: flex;
    flex-direction: column;

    padding: 20px 18px 24px;

    text-align: center;

    box-sizing: border-box;
}


/* =========================================================
   NOME DO ALUNO
   ========================================================= */

.freedom-aluno-nome {
    margin: 0 0 16px;

    color: #173f7a;

    font-size: 21px;
    line-height: 1.3;
    font-weight: 800;
}


/* =========================================================
   ÁREA DOS LOGOS
   ========================================================= */

.freedom-logo-area {
    width: 100%;
    height: 125px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 0 14px;

    box-sizing: border-box;
}

.freedom-aluno-logo {
    display: block;

    width: 98% !important;
    max-width: 98% !important;

    height: 115px !important;
    max-height: 115px !important;

    object-fit: contain !important;

    margin: 0 auto !important;
}


/* =========================================================
   AJUSTES INDIVIDUAIS DOS LOGOS
   ========================================================= */

/* TOKYO INTERNATIONAL UNIVERSITY */
.aluno-dylan .freedom-logo-area {
    height: 135px;
}

.aluno-dylan .freedom-aluno-logo {
    width: 115% !important;
    max-width: 115% !important;
    height: 130px !important;
    max-height: 130px !important;
}


/* YAMANASHI GAKUIN UNIVERSITY */
.aluno-matheus .freedom-logo-area {
    height: 135px;
}

.aluno-matheus .freedom-aluno-logo {
    width: 118% !important;
    max-width: 118% !important;
    height: 130px !important;
    max-height: 130px !important;
}


/* =========================================================
   NOME DA UNIVERSIDADE
   ========================================================= */

.freedom-aluno-info h3 {
    margin: 0 0 14px;

    color: #173f7a !important;

    font-size: 20px !important;
    line-height: 1.3 !important;

    font-weight: 800 !important;

    min-height: 52px;
}


/* =========================================================
   TEXTO
   ========================================================= */

.freedom-aluno-info p {
    margin: 0;

    color: #24345a;

    font-size: 17px !important;
    line-height: 1.6 !important;

    font-weight: 400;

    flex-grow: 1;
}


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

@media (max-width: 1024px) {

    .freedom-aluno-card {
        flex: 0 0 46%;
        min-width: 46%;
    }

    .freedom-alunos-header h2 {
        font-size: 32px !important;
    }

    .freedom-aluno-nome {
        font-size: 22px;
    }

    .freedom-logo-area {
        height: 135px;
    }

    .freedom-aluno-logo {
        height: 125px !important;
        max-height: 125px !important;
    }

    .freedom-aluno-info h3 {
        font-size: 21px !important;
    }

    .freedom-aluno-info p {
        font-size: 18px !important;
        line-height: 1.65 !important;
    }


    /* Tokyo International */
    .aluno-dylan .freedom-aluno-logo {
        width: 115% !important;
        max-width: 115% !important;
        height: 135px !important;
        max-height: 135px !important;
    }


    /* Yamanashi Gakuin */
    .aluno-matheus .freedom-aluno-logo {
        width: 118% !important;
        max-width: 118% !important;
        height: 135px !important;
        max-height: 135px !important;
    }
}


/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 767px) {

    .freedom-alunos-section {
        padding: 0 14px;
        margin: 30px auto;
    }

    .freedom-alunos-header {
        margin-bottom: 20px;
    }

    .freedom-alunos-header h2 {
        display: block;

        font-size: 29px !important;
        line-height: 1.22 !important;
    }

    .freedom-alunos-header h2::before,
    .freedom-alunos-header h2::after {
        display: none;
    }

    .freedom-alunos-header p {
        margin-top: 8px;

        font-size: 17px;
        line-height: 1.45;
    }


    /* CARROSSEL MOBILE */

    .freedom-alunos-carousel {
        display: flex;
        flex-wrap: nowrap;
        align-items: stretch;

        gap: 14px;

        overflow-x: auto;
        overflow-y: hidden;

        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;

        -webkit-overflow-scrolling: touch;

        padding: 2px 8% 10px 0;

        scrollbar-width: none;
    }

    .freedom-alunos-carousel::-webkit-scrollbar {
        display: none;
    }


    /* CARD MOBILE */

    .freedom-aluno-card {
        flex: 0 0 90%;
        min-width: 90%;

        scroll-snap-align: start;
    }


    /* CONTEÚDO */

    .freedom-aluno-info {
        padding: 18px 18px 22px;
    }


    /* NOME */

    .freedom-aluno-nome {
        font-size: 23px;
        line-height: 1.25;
        margin: 0 0 4px !important;
    }


/* LOGOS */

.freedom-logo-area {
    height: 155px !important;
    margin-bottom: 6px !important;
}

.freedom-aluno-logo {
    width: 100% !important;
    max-width: 100% !important;

    height: 150px !important;
    max-height: 150px !important;

    object-fit: contain !important;
}


/* =========================================================
   AJUSTES INDIVIDUAIS DOS LOGOS - MOBILE
   ========================================================= */

/* UAL - UNIVERSITY OF THE ARTS LONDON */
.aluno-felipe-goto .freedom-logo-area {
    height: 170px !important;
}

.aluno-felipe-goto .freedom-aluno-logo {
    width: 115% !important;
    max-width: 115% !important;
    height: 165px !important;
    max-height: 165px !important;
}


/* TEMPLE UNIVERSITY JAPAN CAMPUS
   Mantemos as duas classes para funcionar mesmo se o card
   ainda estiver usando a classe antiga da Amandha. */
.aluno-amandha .freedom-logo-area,
.aluno-ana .freedom-logo-area {
    height: 175px !important;
}

.aluno-amandha .freedom-aluno-logo,
.aluno-ana .freedom-aluno-logo {
    width: 115% !important;
    max-width: 115% !important;
    height: 170px !important;
    max-height: 170px !important;
}


/* NUCB */
.aluno-daniel-tsutomu .freedom-logo-area {
    height: 175px !important;
}

.aluno-daniel-tsutomu .freedom-aluno-logo {
    width: 118% !important;
    max-width: 118% !important;
    height: 170px !important;
    max-height: 170px !important;
}


/* MEIJO UNIVERSITY */
.aluno-stephanie .freedom-logo-area {
    height: 170px !important;
}

.aluno-stephanie .freedom-aluno-logo {
    width: 118% !important;
    max-width: 118% !important;
    height: 165px !important;
    max-height: 165px !important;
}


/* UNOH - UNIVERSITY OF NORTHWESTERN OHIO */
.aluno-enzo .freedom-logo-area {
    height: 175px !important;
}

.aluno-enzo .freedom-aluno-logo {
    width: 118% !important;
    max-width: 118% !important;
    height: 170px !important;
    max-height: 170px !important;
}


/* TOKYO INTERNATIONAL - MOBILE */
.aluno-dylan .freedom-logo-area {
    height: 170px !important;
}

.aluno-dylan .freedom-aluno-logo {
    width: 118% !important;
    max-width: 118% !important;
    height: 165px !important;
    max-height: 165px !important;
}


/* YAMANASHI GAKUIN - MOBILE */
.aluno-matheus .freedom-logo-area,
.aluno-matheus-stsuyoshi .freedom-logo-area {
    height: 170px !important;
}

.aluno-matheus .freedom-aluno-logo,
.aluno-matheus-stsuyoshi .freedom-aluno-logo {
    width: 118% !important;
    max-width: 118% !important;
    height: 165px !important;
    max-height: 165px !important;
}


    /* UNIVERSIDADE */

    .freedom-aluno-info h3 {
        min-height: 0;

        font-size: 21px !important;
        line-height: 1.3 !important;

        margin: 0 0 10px;
    }


    /* TEXTO */

    .freedom-aluno-info p {
        font-size: 18px !important;
        line-height: 1.55 !important;

        margin: 0;
    }
}


/* =========================================================
   AJUSTE EXTRA - TEMPLE, NARIBI E TOKYO INTERNATIONAL
   SOMENTE CELULAR
   ========================================================= */

@media (max-width: 767px) {

    /* TEMPLE UNIVERSITY - ANA KORESSAWA */
    .aluno-amandha .freedom-logo-area,
    .aluno-ana .freedom-logo-area {
        height: 185px !important;
    }

    .aluno-amandha .freedom-aluno-logo,
    .aluno-ana .freedom-aluno-logo {
        width: 115% !important;
        max-width: 115% !important;
        height: 180px !important;
        max-height: 180px !important;
    }

    /* NARIBI SENMON GAKKO - LETICIA */
    .aluno-leticia .freedom-logo-area {
        height: 185px !important;
    }

    .aluno-leticia .freedom-aluno-logo {
        width: 120% !important;
        max-width: 120% !important;
        height: 180px !important;
        max-height: 180px !important;
    }

    /* TOKYO INTERNATIONAL UNIVERSITY - DYLAN */
    .aluno-dylan .freedom-logo-area {
        height: 185px !important;
    }

    .aluno-dylan .freedom-aluno-logo {
        width: 125% !important;
        max-width: 125% !important;
        height: 180px !important;
        max-height: 180px !important;
    }
}

/* =========================================================
   CARROSSEL COM SETAS - POSIÇÃO CORRIGIDA
   ========================================================= */

.freedom-carousel-wrapper {
    position: relative;
    width: 100%;
    box-sizing: border-box;
}


/* =========================================================
   CARROSSEL
   ========================================================= */

.freedom-carousel-wrapper .freedom-alunos-carousel {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;

    gap: 22px;

    width: 100%;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;

    -webkit-overflow-scrolling: touch;

    padding: 2px 0 12px;

    box-sizing: border-box;

    scrollbar-width: none;
}

.freedom-carousel-wrapper .freedom-alunos-carousel::-webkit-scrollbar {
    display: none;
}


/* =========================================================
   DESKTOP - 4 CARDS COMPLETOS
   ========================================================= */

.freedom-carousel-wrapper .freedom-aluno-card {
    flex: 0 0 calc((100% - 66px) / 4) !important;
    min-width: calc((100% - 66px) / 4) !important;

    scroll-snap-align: start;
}


/* =========================================================
   SETAS
   ========================================================= */

.freedom-carousel-arrow {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    z-index: 50;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

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

    border: 1px solid #dfe5ef !important;
    border-radius: 50% !important;

    background: #ffffff !important;
    color: #173f7a !important;

    font-size: 27px !important;
    font-weight: 700 !important;
    line-height: 1 !important;

    box-shadow: 0 4px 14px rgba(23, 63, 122, 0.18);

    cursor: pointer;
}


/* SETA ESQUERDA - FORA DOS CARDS */

.freedom-arrow-left {
    left: -58px;
}


/* SETA DIREITA - FORA DOS CARDS */

.freedom-arrow-right {
    right: -58px;
}


/* HOVER */

.freedom-carousel-arrow:hover {
    background: #173f7a !important;
    color: #ffffff !important;
}


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

@media (max-width: 1024px) {

    .freedom-carousel-wrapper .freedom-alunos-carousel {
        gap: 18px;
    }

    .freedom-carousel-wrapper .freedom-aluno-card {
        flex: 0 0 calc((100% - 18px) / 2) !important;
        min-width: calc((100% - 18px) / 2) !important;
    }

    .freedom-carousel-arrow {
        width: 42px;
        height: 42px;
        font-size: 24px !important;
    }

    .freedom-arrow-left {
        left: -18px;
    }

    .freedom-arrow-right {
        right: -18px;
    }
}


/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 767px) {

    .freedom-carousel-wrapper .freedom-alunos-carousel {
        gap: 14px;
        padding: 2px 8% 10px 0;
    }

    .freedom-carousel-wrapper .freedom-aluno-card {
        flex: 0 0 90% !important;
        min-width: 90% !important;
    }

    .freedom-carousel-arrow {
        width: 38px;
        height: 38px;
        font-size: 21px !important;
        opacity: 0.92;
    }

    .freedom-arrow-left {
        left: 4px;
    }

    .freedom-arrow-right {
        right: 4px;
    }
}


/* CORREÇÃO FINAL - POSIÇÃO DAS SETAS */

.freedom-carousel-arrow {
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.freedom-arrow-left {
    left: 0 !important;
}

.freedom-arrow-right {
    right: 0 !important;
}

/* POSIÇÃO FINAL DAS SETAS - NA ALTURA DAS FOTOS */

.freedom-carousel-arrow {
    top: 240px !important;
    transform: translateY(-50%) !important;
}

.freedom-arrow-left {
    left: 0 !important;
}

.freedom-arrow-right {
    right: 0 !important;
}

/* CENTRALIZAR O SÍMBOLO DENTRO DO CÍRCULO */

.freedom-carousel-arrow {
    line-height: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding-bottom: 5px !important;
    box-sizing: border-box !important;
}

/* AJUSTE FINO - SUBIR AS SETAS */

.freedom-carousel-arrow {
    top: 215px !important;
}

/* FORÇAR AS DUAS SETAS PARA CIMA */

body .freedom-alunos-section
.freedom-carousel-wrapper
.freedom-carousel-arrow {
    top: 205px !important;
    transform: translateY(-50%) !important;
}

/* LOGO — SHIZUOKA INSTITUTE OF TECHNOLOGY */

.aluno-matheus-stsuyoshi .freedom-aluno-logo {
    width: 120% !important;
    max-width: 330px !important;
}


/* =========================================================
   CARLETON UNIVERSITY — LOGO MAIOR E CENTRALIZADO
   ========================================================= */

.freedom-logo-area .freedom-logo-carleton {
    width: 190% !important;
    max-width: none !important;
    height: auto !important;

    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}






/* =========================================================
   CURSO DE ALFABETIZAÇÃO EM PORTUGUÊS
   TOPO DA PÁGINA
   ========================================================= */

/* HERO / TÍTULO PRINCIPAL */

.freedom-alfabetizacao-hero {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 24px;
    padding: 0 20px;
    box-sizing: border-box;
}

.freedom-alfabetizacao-hero h1 {
    margin: 0 0 12px;
    font-size: 46px;
    line-height: 1.12;
    font-weight: 800;
    color: #173f7a;
}

.freedom-alfabetizacao-hero h1 span {
    color: #173f7a;
}

.freedom-alfabetizacao-hero p {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    color: #555555;
}


/* =========================================================
   CURSO DE ALFABETIZAÇÃO EM PORTUGUÊS
   TOPO DA PÁGINA
   ========================================================= */


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

.freedom-alfabetizacao-hero {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 24px;
    padding: 0 20px;
    box-sizing: border-box;
}

.freedom-alfabetizacao-hero h1 {
    margin: 0 0 12px;
    font-size: 46px;
    line-height: 1.12;
    font-weight: 800;
    color: #173f7a;
}

.freedom-alfabetizacao-hero h1 span {
    color: #173f7a;
}

.freedom-alfabetizacao-hero p {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    color: #555555;
}


/* =========================================================
   BLOCO "SEU FILHO ESTUDA EM ESCOLA JAPONESA?"
   ========================================================= */

.freedom-alfabetizacao-intro {
    width: 100%;
    max-width: 1100px;
    margin: 28px auto 10px;
    padding: 0 20px;
    box-sizing: border-box;
}

.freedom-alfabetizacao-intro h2 {
    margin: 0 0 18px;
    font-size: 38px;
    line-height: 1.18;
    font-weight: 800;
    color: #173f7a;
}

.freedom-alfabetizacao-intro p {
    margin: 0 0 16px;
    font-size: 18px;
    line-height: 1.65;
    color: #555555;
}

.freedom-alfabetizacao-intro strong {
    font-weight: 700;
    color: #333333;
}


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

@media screen and (max-width: 1024px) {

    .freedom-alfabetizacao-hero h1 {
        font-size: 40px;
    }

    .freedom-alfabetizacao-hero p {
        font-size: 17px;
    }

    .freedom-alfabetizacao-intro h2 {
        font-size: 34px;
    }

    .freedom-alfabetizacao-intro p {
        font-size: 17px;
    }
}


/* =========================================================
   CELULAR
   ========================================================= */

@media screen and (max-width: 767px) {

    .freedom-alfabetizacao-hero {
        margin: 0 auto 10px;
        padding: 0 14px;
        text-align: center;
    }

    .freedom-alfabetizacao-hero h1 {
        margin: 0 0 7px;
        font-size: 28px;
        line-height: 1.12;
        font-weight: 800;
    }

    .freedom-alfabetizacao-hero p {
        margin: 0;
        font-size: 15px;
        line-height: 1.4;
    }

    .freedom-alfabetizacao-intro {
        margin: 18px auto 8px;
        padding: 0 14px;
    }

    .freedom-alfabetizacao-intro h2 {
        margin: 0 0 13px;
        font-size: 27px;
        line-height: 1.16;
        font-weight: 800;
    }

    .freedom-alfabetizacao-intro p {
        margin: 0 0 13px;
        font-size: 16px;
        line-height: 1.5;
    }
}


/* =========================================================
   CELULARES MENORES
   ========================================================= */

@media screen and (max-width: 420px) {

    .freedom-alfabetizacao-hero {
        padding: 0 12px;
    }

    .freedom-alfabetizacao-hero h1 {
        font-size: 27px;
        line-height: 1.1;
    }

    .freedom-alfabetizacao-hero p {
        font-size: 15px;
    }

    .freedom-alfabetizacao-intro {
        padding: 0 12px;
    }

    .freedom-alfabetizacao-intro h2 {
        font-size: 26px;
    }

    .freedom-alfabetizacao-intro p {
        font-size: 16px;
        line-height: 1.48;
    }
}



/* =========================================================
   FREEDOM 2026 - COMO DESENVOLVEMOS O PORTUGUÊS
   ========================================================= */

.freedom-metodo2026 {
    width: 100%;
    max-width: 1100px;
    margin: 48px auto 38px;
    padding: 0 20px;
    box-sizing: border-box;
}

.freedom-metodo2026-header {
    text-align: center;
    margin-bottom: 34px;
}

.freedom-metodo2026-header h2 {
    margin: 0 0 10px;
    color: #173f7a;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 800;
}

.freedom-metodo2026-header p {
    max-width: 760px;
    margin: 0 auto;
    color: #666;
    font-size: 17px;
    line-height: 1.55;
}


/* ETAPAS */

.freedom-metodo2026-etapas {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    margin: 0 auto 32px;
}

.freedom-metodo2026-item {
    width: 150px;
    text-align: center;
    flex: 0 0 auto;
}

.freedom-metodo2026-numero {
    width: 70px;
    height: 70px;
    margin: 0 auto 13px;
    border-radius: 50%;
    background: #eef5ff;
    border: 2px solid #dce8f7;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #173f7a;
    font-size: 25px;
    line-height: 1;
    font-weight: 800;

    box-sizing: border-box;
}

.freedom-metodo2026-item h3 {
    margin: 0;
    color: #173f7a;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 800;
}

.freedom-metodo2026-seta {
    padding-top: 23px;
    color: #b3bfcc;
    font-size: 27px;
    line-height: 1;
    font-weight: 700;
}


/* FAIXA FINAL */

.freedom-metodo2026-faixa {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 24px;

    background: #eef5ff;
    border: 1px solid #dce8f7;
    border-radius: 14px;

    text-align: center;
    box-sizing: border-box;
}

.freedom-metodo2026-faixa strong {
    display: block;
    margin-bottom: 7px;
    color: #173f7a;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 800;
}

.freedom-metodo2026-faixa span {
    display: block;
    color: #555;
    font-size: 16px;
    line-height: 1.5;
}


/* TABLET */

@media screen and (max-width: 900px) {

    .freedom-metodo2026-etapas {
        flex-wrap: wrap;
        gap: 22px 12px;
    }

    .freedom-metodo2026-seta {
        display: none;
    }
}


/* CELULAR */

@media screen and (max-width: 767px) {

    .freedom-metodo2026 {
        margin: 38px auto 30px;
        padding: 0 16px;
    }

    .freedom-metodo2026-header {
        margin-bottom: 28px;
    }

    .freedom-metodo2026-header h2 {
        font-size: 32px;
        line-height: 1.18;
    }

    .freedom-metodo2026-header p {
        font-size: 18px;
        line-height: 1.5;
    }

    .freedom-metodo2026-etapas {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 14px;
        margin-bottom: 28px;
    }

    .freedom-metodo2026-item {
        width: auto;
    }

    .freedom-metodo2026-item:last-of-type {
        grid-column: 1 / -1;
        width: 100%;
        max-width: 190px;
        justify-self: center;
    }

    .freedom-metodo2026-numero {
        width: 72px;
        height: 72px;
        margin-bottom: 12px;
        font-size: 25px;
    }

    .freedom-metodo2026-item h3 {
        font-size: 19px;
    }

    .freedom-metodo2026-seta {
        display: none;
    }

    .freedom-metodo2026-faixa {
        padding: 20px 18px;
    }

    .freedom-metodo2026-faixa strong {
        font-size: 20px;
        line-height: 1.35;
    }

    .freedom-metodo2026-faixa span {
        font-size: 17px;
        line-height: 1.5;
    }
}


/* CELULARES MENORES */

@media screen and (max-width: 420px) {

    .freedom-metodo2026 {
        padding: 0 12px;
    }

    .freedom-metodo2026-header h2 {
        font-size: 30px;
    }

    .freedom-metodo2026-header p {
        font-size: 17px;
    }

    .freedom-metodo2026-item h3 {
        font-size: 18px;
    }
}

/* 
 * 
 * 
 * =========================================================
   CURSO DE ALFABETIZAÇÃO EM PORTUGUÊS
   BENEFÍCIOS / DESENVOLVIMENTO
   ========================================================= */

.freedom-alfabetizacao-beneficios {
    width: 100%;
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.freedom-alfabetizacao-beneficios-header {
    text-align: center;
    margin-bottom: 28px;
}

.freedom-alfabetizacao-beneficios-header h2 {
    margin: 0 0 10px;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 800;
    color: #173f7a;
}

.freedom-alfabetizacao-beneficios-header p {
    margin: 0 auto;
    max-width: 760px;
    font-size: 17px;
    line-height: 1.55;
    color: #666666;
}

.freedom-alfabetizacao-beneficios-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.freedom-alfabetizacao-beneficio-card {
    background: #ffffff;
    border: 1px solid #e3e8ef;
    border-radius: 14px;
    padding: 24px 18px;
    text-align: center;
    box-sizing: border-box;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.freedom-alfabetizacao-beneficio-icon {
    margin-bottom: 12px;
    font-size: 38px;
    line-height: 1;
}

.freedom-alfabetizacao-beneficio-card h3 {
    margin: 0 0 9px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
    color: #173f7a;
}

.freedom-alfabetizacao-beneficio-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #555555;
}


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

@media screen and (max-width: 900px) {

    .freedom-alfabetizacao-beneficios-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   CELULAR
   ========================================================= */

@media screen and (max-width: 767px) {

    .freedom-alfabetizacao-beneficios {
        margin: 30px auto;
        padding: 0 14px;
    }

    .freedom-alfabetizacao-beneficios-header {
        margin-bottom: 20px;
    }

    .freedom-alfabetizacao-beneficios-header h2 {
        font-size: 27px;
        line-height: 1.18;
    }

    .freedom-alfabetizacao-beneficios-header p {
        font-size: 15px;
        line-height: 1.45;
    }

    .freedom-alfabetizacao-beneficios-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .freedom-alfabetizacao-beneficio-card {
        padding: 18px 10px;
        border-radius: 12px;
    }

    .freedom-alfabetizacao-beneficio-icon {
        margin-bottom: 9px;
        font-size: 31px;
    }

    .freedom-alfabetizacao-beneficio-card h3 {
        margin-bottom: 7px;
        font-size: 18px;
    }

    .freedom-alfabetizacao-beneficio-card p {
        font-size: 14px;
        line-height: 1.4;
    }
}


/* =========================================================
   CELULARES MENORES
   ========================================================= */

@media screen and (max-width: 420px) {

    .freedom-alfabetizacao-beneficios {
        padding: 0 12px;
    }

    .freedom-alfabetizacao-beneficios-grid {
        gap: 10px;
    }

    .freedom-alfabetizacao-beneficio-card {
        padding: 16px 8px;
    }

    .freedom-alfabetizacao-beneficio-card h3 {
        font-size: 17px;
    }

    .freedom-alfabetizacao-beneficio-card p {
        font-size: 13px;
        line-height: 1.38;
    }
}

/* =========================================================
   AJUSTES DE LEGIBILIDADE NO CELULAR
   CURSO DE ALFABETIZAÇÃO
   ========================================================= */

@media screen and (max-width: 767px) {

    /* TEXTO INTRODUTÓRIO */
    .freedom-alfabetizacao-intro {
        padding-left: 10px;
        padding-right: 10px;
    }

    .freedom-alfabetizacao-intro p {
        font-size: 19px;
        line-height: 1.55;
    }


    /* SUBTÍTULO DA SEÇÃO DE BENEFÍCIOS */
    .freedom-alfabetizacao-beneficios-header p {
        font-size: 18px;
        line-height: 1.5;
    }

    /* TEXTO DOS CARDS */
    .freedom-alfabetizacao-beneficio-card p {
        font-size: 17px;
        line-height: 1.45;
    }


    /* SUBTÍTULO "COMO DESENVOLVEMOS O PORTUGUÊS" */
    .freedom-alfabetizacao-metodo-header p {
        font-size: 18px;
        line-height: 1.5;
    }

    /* NOMES DAS ETAPAS */
    .freedom-alfabetizacao-metodo-item h3 {
        font-size: 18px;
        line-height: 1.3;
    }

    /* FAIXA FINAL */
    .freedom-alfabetizacao-metodo-faixa strong {
        font-size: 19px;
        line-height: 1.4;
    }

    .freedom-alfabetizacao-metodo-faixa span {
        font-size: 18px;
        line-height: 1.5;
    }
}


/* =========================================================
   CELULARES MENORES
   ========================================================= */

@media screen and (max-width: 420px) {

    .freedom-alfabetizacao-intro p {
        font-size: 18px;
    }

    .freedom-alfabetizacao-beneficios-header p {
        font-size: 17px;
    }

    .freedom-alfabetizacao-beneficio-card p {
        font-size: 16px;
    }

    .freedom-alfabetizacao-metodo-header p {
        font-size: 17px;
    }

    .freedom-alfabetizacao-metodo-item h3 {
        font-size: 17px;
    }

    .freedom-alfabetizacao-metodo-faixa strong {
        font-size: 18px;
    }

    .freedom-alfabetizacao-metodo-faixa span {
        font-size: 17px;
    }
}


/* =========================================================
   ESCOLA JAPONESA / PORTUGUÊS - 3 CARDS
   ========================================================= */

.freedom-escola-japonesa-cards {
    width: 100%;
    max-width: 1100px;
    margin: 32px auto 38px;
    padding: 0 20px;
    box-sizing: border-box;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.freedom-escola-card {
    background: #ffffff;
    border: 1px solid #e3e8ef;
    border-radius: 14px;
    padding: 26px 22px;
    text-align: center;
    box-sizing: border-box;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.freedom-escola-icon {
    min-height: 58px;
    margin-bottom: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;
    line-height: 1.1;
    font-weight: 800;
    color: #173f7a;
}

.freedom-escola-card h3 {
    margin: 0 0 12px;
    font-size: 21px;
    line-height: 1.25;
    font-weight: 800;
    color: #173f7a;
}

.freedom-escola-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
    color: #555555;
}


/* TABLET */

@media screen and (max-width: 900px) {

    .freedom-escola-japonesa-cards {
        gap: 12px;
    }

    .freedom-escola-card {
        padding: 22px 16px;
    }

    .freedom-escola-card h3 {
        font-size: 19px;
    }
}


/* CELULAR */

@media screen and (max-width: 767px) {

    .freedom-escola-japonesa-cards {
        grid-template-columns: 1fr;
        margin: 26px auto 32px;
        padding: 0 14px;
        gap: 14px;
    }

    .freedom-escola-card {
        padding: 24px 20px;
    }

    .freedom-escola-icon {
        font-size: 31px;
        min-height: auto;
        margin-bottom: 12px;
    }

    .freedom-escola-card h3 {
        font-size: 21px;
        line-height: 1.25;
    }

    .freedom-escola-card p {
        font-size: 18px;
        line-height: 1.5;
    }
}


/* =========================================================
   REALIDADE DAS CRIANÇAS BRASILEIRAS NO JAPÃO
   ========================================================= */

.freedom-realidade-japao {
    max-width: 1060px;
    margin: 52px auto;
    padding: 38px 42px;
    box-sizing: border-box;

    background: #eef5ff;
    border-radius: 16px;
    border-left: 5px solid #173f7a;
}

.freedom-realidade-selo {
    display: inline-block;
    margin-bottom: 14px;

    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
    color: #173f7a;
}

.freedom-realidade-japao h2 {
    margin: 0 0 20px;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    color: #173f7a;
}

.freedom-realidade-japao p {
    max-width: 850px;
    margin: 0 0 15px;
    font-size: 17px;
    line-height: 1.65;
    color: #444;
}

.freedom-realidade-japao p:last-child {
    margin-bottom: 0;
}


/* CELULAR */

@media screen and (max-width: 767px) {

    .freedom-realidade-japao {
        margin: 34px 14px;
        padding: 28px 22px;
        border-radius: 14px;
        border-left-width: 4px;
    }

    .freedom-realidade-selo {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .freedom-realidade-japao h2 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 18px;
    }

    .freedom-realidade-japao p {
        font-size: 18px;
        line-height: 1.6;
    }
}





/* =========================================================
   INFORMAÇÕES DO CURSO DE PORTUGUÊS
   ========================================================= */

.freedom-info-curso {
    width: 100% !important;
    max-width: 1100px !important;
    margin: 35px auto !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
}

.freedom-info-curso-box {
    width: 100% !important;
    background: #eef5ff !important;
    border: 1px solid #dce8f7 !important;
    border-radius: 14px !important;
    padding: 28px !important;
    box-sizing: border-box !important;
    text-align: center !important;
}


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

.freedom-info-curso-box h2 {
    color: #173f7a !important;
    font-size: 34px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    text-align: center !important;
    margin: 0 0 24px 0 !important;
    padding: 0 !important;
}


/* =========================================================
   LINHA COM AS 4 INFORMAÇÕES
   ========================================================= */

.freedom-info-curso-linha {
    width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: stretch !important;
    gap: 14px !important;
    box-sizing: border-box !important;
}


/* =========================================================
   CADA CARD
   ========================================================= */

.freedom-info-curso-item {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;

    flex: 1 1 0 !important;
    width: 25% !important;
    min-width: 0 !important;
    min-height: 220px !important;

    background: #ffffff !important;
    border-radius: 10px !important;

    padding: 18px 14px 20px !important;
    margin: 0 !important;

    text-align: center !important;
    box-sizing: border-box !important;
}

.freedom-info-curso-item span {
    display: block !important;
    text-align: center !important;
}


/* =========================================================
   IMAGENS / ÍCONES
   ========================================================= */

.freedom-info-curso-img {
    display: block !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    margin: 0 auto 14px !important;
}


/* CALENDÁRIO */

.freedom-info-calendario {
    width: 78px !important;
    max-width: 78px !important;
    max-height: 78px !important;
}


/* RELÓGIO */

.freedom-info-relogio {
    width: 78px !important;
    max-width: 78px !important;
    max-height: 78px !important;
}


/* ESCOLA / FREEDOM EM ANJO */

.freedom-info-escola {
    width: 112px !important;
    max-width: 112px !important;
    max-height: 82px !important;
}


/* CRIANÇAS */

.freedom-info-criancas {
    width: 112px !important;
    max-width: 112px !important;
    max-height: 84px !important;
}


/* =========================================================
   DIA / HORÁRIO / MODALIDADE / PÚBLICO
   ========================================================= */

.freedom-info-curso-label {
    color: #173f7a !important;
    font-size: 16px !important;
    line-height: 1.3 !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    margin: 0 0 9px 0 !important;
}


/* =========================================================
   TEXTO PRINCIPAL DOS CARDS
   ========================================================= */

.freedom-info-curso-texto {
    color: #333333 !important;
    font-size: 20px !important;
    line-height: 1.4 !important;
    font-weight: 700 !important;
    margin: 0 !important;
}


/* =========================================================
   FOCO
   ========================================================= */

.freedom-info-curso-foco {
    display: block !important;
    width: 100% !important;

    color: #444444 !important;
    font-size: 18px !important;
    line-height: 1.6 !important;

    text-align: center !important;

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

.freedom-info-curso-foco strong {
    color: #173f7a !important;
    font-size: 18px !important;
    font-weight: 800 !important;
}


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

@media screen and (max-width: 1024px) {

    .freedom-info-curso {
        padding: 0 18px !important;
    }

    .freedom-info-curso-box {
        padding: 24px 20px !important;
    }

    .freedom-info-curso-linha {
        gap: 12px !important;
    }

    .freedom-info-curso-item {
        min-height: 215px !important;
        padding: 18px 10px !important;
    }

    .freedom-info-curso-texto {
        font-size: 19px !important;
    }
}


/* =========================================================
   CELULAR
   ========================================================= */

@media screen and (max-width: 767px) {

    .freedom-info-curso {
        margin: 28px auto !important;
        padding: 0 14px !important;
    }

    .freedom-info-curso-box {
        padding: 22px 14px !important;
        border-radius: 12px !important;
    }

    .freedom-info-curso-box h2 {
        font-size: 30px !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
    }


    /* 2 CARDS POR LINHA */

    .freedom-info-curso-linha {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }

    .freedom-info-curso-item {
        width: 100% !important;
        min-width: 0 !important;
        min-height: 205px !important;

        padding: 16px 10px 18px !important;

        border-radius: 10px !important;
    }


    /* ÍCONES */

    .freedom-info-calendario {
        width: 70px !important;
        max-width: 70px !important;
        max-height: 70px !important;
    }

    .freedom-info-relogio {
        width: 70px !important;
        max-width: 70px !important;
        max-height: 70px !important;
    }

    .freedom-info-escola {
        width: 102px !important;
        max-width: 102px !important;
        max-height: 76px !important;
    }

    .freedom-info-criancas {
        width: 102px !important;
        max-width: 102px !important;
        max-height: 78px !important;
    }


    /* TÍTULOS DOS CARDS */

    .freedom-info-curso-label {
        font-size: 15px !important;
        line-height: 1.3 !important;
        margin-bottom: 8px !important;
    }


    /* TEXTO DOS CARDS */

    .freedom-info-curso-texto {
        font-size: 19px !important;
        line-height: 1.4 !important;
    }


    /* FOCO */

    .freedom-info-curso-foco {
        font-size: 18px !important;
        line-height: 1.55 !important;
        margin-top: 18px !important;
    }

    .freedom-info-curso-foco strong {
        font-size: 18px !important;
    }
}


/* =========================================================
   CELULARES PEQUENOS
   ========================================================= */

@media screen and (max-width: 400px) {

    .freedom-info-curso {
        padding: 0 10px !important;
    }

    .freedom-info-curso-box {
        padding: 20px 10px !important;
    }

    .freedom-info-curso-box h2 {
        font-size: 28px !important;
    }

    .freedom-info-curso-linha {
        gap: 9px !important;
    }

    .freedom-info-curso-item {
        min-height: 195px !important;
        padding: 15px 7px 17px !important;
    }

    .freedom-info-calendario,
    .freedom-info-relogio {
        width: 65px !important;
        max-width: 65px !important;
    }

    .freedom-info-escola,
    .freedom-info-criancas {
        width: 94px !important;
        max-width: 94px !important;
    }

    .freedom-info-curso-label {
        font-size: 14px !important;
    }

    .freedom-info-curso-texto {
        font-size: 18px !important;
        line-height: 1.35 !important;
    }

    .freedom-info-curso-foco {
        font-size: 17px !important;
    }

    .freedom-info-curso-foco strong {
        font-size: 17px !important;
    }
}

/* =========================================================
   OCULTAR ELEMENTOS DE POST NO FINAL DA PÁGINA
   ========================================================= */

/* Compartilhamento */
.single-post .share-post,
.single-post .post-share,
.single-post .social-share,
.single-post .post-sharing,
.single-post .sharing {
    display: none !important;
}

/* Navegação PREV / NEXT */
.single-post .post-navigation,
.single-post .navigation-post,
.single-post .single-post-navigation,
.single-post .posts-navigation,
.single-post .post-nav {
    display: none !important;
}

/* Comentários / Leave a Reply */
.single-post #comments,
.single-post .comments-area,
.single-post .comment-respond,
.single-post #respond {
    display: none !important;
}



/* =========================================================
   POST 306 - LIMPAR RODAPÉ DO POST
   ========================================================= */

body.postid-306 .gdlr-core-blog-info-wrapper,
body.postid-306 .gdlr-core-blog-info,
body.postid-306 .gdlr-core-social-share-item,
body.postid-306 .gdlr-core-blog-info-social-share,
body.postid-306 .gdlr-core-pagination,
body.postid-306 .gdlr-core-blog-navigation,
body.postid-306 .gdlr-core-blog-post-navigation,
body.postid-306 .gdlr-core-post-navigation,
body.postid-306 .gdlr-core-post-nav,
body.postid-306 .navigation.post-navigation {
    display: none !important;
}


/* =========================================================
   POST 306 - REMOVER PREV / NEXT
   ========================================================= */

body.postid-306 .kingster-single-nav-area,
body.postid-306 .kingster-single-nav,
body.postid-306 .kingster-single-nav-left,
body.postid-306 .kingster-single-nav-right,
body.postid-306 .gdlr-core-post-navigation,
body.postid-306 .navigation.post-navigation,
body.postid-306 .nav-links {
    display: none !important;
}


/* =========================================================
   TÍTULO - OUTROS CURSOS DE PORTUGUÊS
   ========================================================= */

.freedom-outros-cursos-titulo {
    width: 100%;
    text-align: center;
    margin: 0 0 10px 0;
    padding: 0;
}

.freedom-outros-cursos-titulo h2 {
    color: #173f7a !important;
    font-size: 30px !important;
    line-height: 1.25 !important;
    font-weight: 800 !important;
    text-align: center !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* CELULAR */
@media screen and (max-width: 767px) {

    .freedom-outros-cursos-titulo {
        margin-bottom: 22px !important;
    }

    .freedom-outros-cursos-titulo h2 {
        font-size: 26px !important;
        line-height: 1.3 !important;
    }
}

/* =========================================================
   REMOVER ELEMENTOS DE POST DAS PÁGINAS DO SITE
   Compartilhamento + navegação PREV/NEXT
   ========================================================= */

/* 0 SHARES / redes sociais */
.gdlr-core-social-share-item,
.gdlr-core-blog-info-social-share,
.gdlr-core-blog-info-wrapper {
    display: none !important;
}

/* PREV / NEXT */
.kingster-single-nav-area,
.kingster-single-nav,
.kingster-single-nav-left,
.kingster-single-nav-right,
.gdlr-core-post-navigation,
.gdlr-core-blog-post-navigation,
.gdlr-core-blog-navigation,
.navigation.post-navigation,
.nav-links {
    display: none !important;
}






/* =========================================
   CURSO DE INGLÊS - BLOCO INICIAL
========================================= */

.freedom-ingles-intro {
    max-width: 1000px;
    margin: 0 auto;
    padding: 35px 20px 30px;
    text-align: center !important;
    box-sizing: border-box;
}

.freedom-ingles-intro h1 {
    color: #173f7a !important;
    font-size: 42px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    text-align: center !important;
    margin: 0 0 18px !important;
}

.freedom-ingles-intro .freedom-ingles-subtitulo {
    max-width: 800px;
    margin: 0 auto 22px !important;
    color: #333333 !important;
    font-size: 22px !important;
    line-height: 1.5 !important;
    text-align: center !important;
}

.freedom-ingles-intro .freedom-ingles-subtitulo strong {
    color: #173f7a !important;
    font-weight: 700 !important;
}

.freedom-ingles-intro .freedom-ingles-descricao {
    max-width: 850px;
    margin: 0 auto !important;
    color: #555555 !important;
    font-size: 18px !important;
    line-height: 1.7 !important;
    text-align: center !important;
}


/* CELULAR */

@media screen and (max-width: 767px) {

    .freedom-ingles-intro {
        padding: 25px 16px 22px;
    }

    .freedom-ingles-intro h1 {
        font-size: 32px !important;
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
    }

    .freedom-ingles-intro .freedom-ingles-subtitulo {
        font-size: 20px !important;
        line-height: 1.5 !important;
        margin-bottom: 18px !important;
    }

    .freedom-ingles-intro .freedom-ingles-descricao {
        font-size: 18px !important;
        line-height: 1.65 !important;
    }
}


/* =========================================
   CURSO DE INGLÊS - VÍDEO
========================================= */

.freedom-ingles-video-titulo {
    max-width: 850px;
    margin: 0 auto;
    padding: 5px 20px 18px;
    text-align: center;
}

.freedom-ingles-video-titulo h2 {
    color: #173f7a !important;
    font-size: 32px !important;
    line-height: 1.25 !important;
    font-weight: 800 !important;
    margin: 0 0 10px !important;
}

.freedom-ingles-video-titulo p {
    color: #555555 !important;
    font-size: 18px !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* CELULAR */
@media screen and (max-width: 767px) {

    .freedom-ingles-video-titulo {
        padding: 5px 16px 15px;
    }

    .freedom-ingles-video-titulo h2 {
        font-size: 27px !important;
        line-height: 1.3 !important;
        margin-bottom: 8px !important;
    }

    .freedom-ingles-video-titulo p {
        font-size: 18px !important;
        line-height: 1.6 !important;
    }
}


/* =========================================
   CURSO DE INGLÊS - BENEFÍCIOS
========================================= */

.freedom-ingles-beneficios {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 55px 20px 50px;
    box-sizing: border-box;
}

.freedom-ingles-beneficios > h2 {
    color: #173f7a !important;
    font-size: 36px !important;
    line-height: 1.25 !important;
    font-weight: 800 !important;
    text-align: center !important;
    margin: 0 0 12px !important;
}

.freedom-beneficios-subtitulo {
    max-width: 760px;
    margin: 0 auto 32px !important;
    color: #555555 !important;
    font-size: 18px !important;
    line-height: 1.6 !important;
    text-align: center !important;
}


/* =========================================
   GRID - 4 CARDS EM UMA LINHA
========================================= */

.freedom-beneficios-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 18px !important;
    align-items: stretch;
    width: 100%;
}


/* =========================================
   CARDS
========================================= */

.freedom-beneficio-card {
    min-width: 0 !important;
    width: auto !important;

    background: #ffffff;
    border: 1px solid #e1e7ef;
    border-radius: 14px;

    padding: 28px 20px 26px;

    text-align: center;
    box-sizing: border-box;

    box-shadow: 0 4px 14px rgba(23, 63, 122, 0.07);
}


/* =========================================
   ÍCONES
========================================= */

.freedom-beneficio-icone {
    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 16px;

    border-radius: 50%;
    border: 1px solid #d8e5f5;

    background: #eef5ff;

    color: #173f7a;
}

.freedom-beneficio-icone svg {
    display: block;

    width: 32px;
    height: 32px;

    fill: none;
    stroke: #173f7a;

    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


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

.freedom-beneficio-card h3 {
    color: #173f7a !important;
    font-size: 20px !important;
    line-height: 1.3 !important;
    font-weight: 800 !important;

    margin: 0 0 10px !important;

    text-align: center !important;
}


/* =========================================
   TEXTOS
========================================= */

.freedom-beneficio-card p {
    color: #555555 !important;

    font-size: 16px !important;
    line-height: 1.6 !important;

    margin: 0 !important;

    text-align: center !important;
}


/* =========================================
   CELULAR
========================================= */

@media screen and (max-width: 767px) {

    .freedom-ingles-beneficios {
        padding: 40px 16px 35px;
    }

    .freedom-ingles-beneficios > h2 {
        font-size: 30px !important;
        line-height: 1.25 !important;
    }

    .freedom-beneficios-subtitulo {
        font-size: 18px !important;
        line-height: 1.6 !important;
        margin-bottom: 25px !important;
    }

    .freedom-beneficios-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;

        max-width: 440px;
        margin: 0 auto;
    }

    .freedom-beneficio-card {
        padding: 24px 18px;
    }

    .freedom-beneficio-icone {
        width: 68px;
        height: 68px;

        margin-bottom: 13px;
    }

    .freedom-beneficio-icone svg {
        width: 34px;
        height: 34px;
    }

    .freedom-beneficio-card h3 {
        font-size: 21px !important;
    }

    .freedom-beneficio-card p {
        font-size: 17px !important;
        line-height: 1.6 !important;
    }
}

/* =========================================
   CURSO DE INGLÊS - NÍVEIS
========================================= */

.freedom-ingles-niveis {
    max-width: 1100px;
    margin: 0 auto;
    padding: 45px 20px 50px;
    box-sizing: border-box;
}

.freedom-ingles-niveis-header {
    text-align: center;
    margin-bottom: 32px;
}

.freedom-ingles-niveis-header h2 {
    margin: 0 0 10px !important;
    color: #173f7a !important;
    font-size: 36px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    text-align: center !important;
}

.freedom-ingles-niveis-header p {
    max-width: 760px;
    margin: 0 auto !important;
    color: #555555 !important;
    font-size: 18px !important;
    line-height: 1.6 !important;
    text-align: center !important;
}

.freedom-ingles-niveis-lista {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: nowrap;
}

.freedom-ingles-nivel {
    min-width: 135px;
    text-align: center;
}

.freedom-ingles-nivel span {
    width: 54px;
    height: 54px;
    margin: 0 auto 12px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #173f7a;
    color: #ffffff;

    font-size: 23px;
    line-height: 1;
    font-weight: 800;

    box-sizing: border-box;
}

.freedom-ingles-nivel strong {
    display: block;
    color: #173f7a;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 800;
}

.freedom-ingles-seta {
    color: #aebbc9;
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
    margin-top: -20px;
}

.freedom-ingles-nivel-final span {
    background: #e30613;
}

.freedom-ingles-nivel-final strong {
    color: #e30613;
}


/* TABLET */

@media screen and (max-width: 950px) {

    .freedom-ingles-niveis-lista {
        flex-wrap: wrap;
        gap: 22px 12px;
    }

    .freedom-ingles-seta {
        display: none;
    }

    .freedom-ingles-nivel {
        width: calc(33.333% - 12px);
        min-width: 0;
    }
}


/* CELULAR */

@media screen and (max-width: 767px) {

    .freedom-ingles-niveis {
        padding: 38px 16px 40px;
    }

    .freedom-ingles-niveis-header {
        margin-bottom: 26px;
    }

    .freedom-ingles-niveis-header h2 {
        font-size: 30px !important;
        line-height: 1.25 !important;
    }

    .freedom-ingles-niveis-header p {
        font-size: 18px !important;
        line-height: 1.6 !important;
    }

    .freedom-ingles-niveis-lista {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 14px;
    }

    .freedom-ingles-nivel {
        width: auto;
        min-width: 0;
    }

    .freedom-ingles-nivel-final {
        grid-column: 1 / -1;
        max-width: 220px;
        width: 100%;
        justify-self: center;
    }

    .freedom-ingles-nivel span {
        width: 58px;
        height: 58px;
        font-size: 24px;
        margin-bottom: 10px;
    }

    .freedom-ingles-nivel strong {
        font-size: 17px;
    }

    .freedom-ingles-seta {
        display: none;
    }
}

/* =========================================================
   CURSO DE INGLÊS - HERO PRINCIPAL
   ========================================================= */

.freedom-ingles-hero {
    width: 100%;
    max-width: 1180px;
    margin: 25px auto 45px;
    padding: 42px 46px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 46px;

    box-sizing: border-box;

    background:
        linear-gradient(
            120deg,
            #ffffff 0%,
            #ffffff 54%,
            #f0f6fd 100%
        );

    border-radius: 18px;

    box-shadow:
        0 8px 28px rgba(23, 63, 122, 0.10);

    overflow: hidden;
}


/* =========================================================
   COLUNAS
   ========================================================= */

.freedom-ingles-hero-col {
    min-width: 0;
}


/* =========================================================
   SELO
   ========================================================= */

.freedom-ingles-hero-selo {
    display: inline-block;

    margin-bottom: 12px;

    color: #e30613;

    font-size: 14px;
    line-height: 1.3;
    font-weight: 800;

    letter-spacing: 1px;
}


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

.freedom-ingles-hero h1 {
    margin: 0 0 18px !important;

    color: #173f7a !important;

    font-size: 48px !important;
    line-height: 1.08 !important;

    font-weight: 800 !important;

    text-align: left !important;
}


/* =========================================================
   SUBTÍTULO
   ========================================================= */

.freedom-ingles-hero-subtitulo {
    max-width: 520px;

    margin: 0 0 24px !important;

    color: #333333 !important;

    font-size: 20px !important;
    line-height: 1.55 !important;

    text-align: left !important;
}


.freedom-ingles-hero-subtitulo strong {
    color: #173f7a !important;
    font-weight: 800 !important;
}


/* =========================================================
   BENEFÍCIOS
   ========================================================= */

.freedom-ingles-hero-beneficios {
    margin-bottom: 28px;
}


.freedom-ingles-hero-beneficios > div {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 10px;

    color: #26385e;

    font-size: 17px;
    line-height: 1.45;

    font-weight: 600;
}


.freedom-ingles-hero-beneficios span {
    flex: 0 0 24px;

    width: 24px;
    height: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #173f7a;
    color: #ffffff;

    font-size: 14px;
    line-height: 1;

    font-weight: 800;
}


/* =========================================================
   BOTÃO
   ========================================================= */

.freedom-ingles-hero-botao {
    display: inline-block;

    padding: 15px 24px;

    background: #e30613 !important;
    color: #ffffff !important;

    border-radius: 8px;

    font-size: 15px;
    line-height: 1.3;

    font-weight: 800;

    text-decoration: none !important;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}


.freedom-ingles-hero-botao:hover {
    background: #bd0711 !important;
    color: #ffffff !important;

    transform: translateY(-2px);
}


/* =========================================================
   ÁREA DO VÍDEO
   ========================================================= */

.freedom-ingles-video-box {
    width: 100%;

    padding: 10px;

    background: #ffffff;

    border-radius: 16px;

    box-sizing: border-box;

    box-shadow:
        0 8px 25px rgba(23, 63, 122, 0.16);
}


.freedom-ingles-video-placeholder {
    width: 100%;
    aspect-ratio: 16 / 10;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 20px;

    box-sizing: border-box;

    border-radius: 12px;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #e9f0f9,
            #cfdced
        );

    color: #173f7a;
}


.freedom-ingles-video-play {
    width: 68px;
    height: 68px;

    margin-bottom: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding-left: 4px;

    border-radius: 50%;

    background: #e30613;
    color: #ffffff;

    font-size: 29px;

    box-shadow:
        0 5px 18px rgba(227, 6, 19, 0.24);
}


.freedom-ingles-video-placeholder strong {
    display: block;

    margin-bottom: 5px;

    color: #173f7a;

    font-size: 20px;
    line-height: 1.35;

    font-weight: 800;
}


.freedom-ingles-video-placeholder > span {
    display: block;

    color: #65748a;

    font-size: 15px;
    line-height: 1.4;
}


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

@media screen and (max-width: 950px) {

    .freedom-ingles-hero {
        padding: 36px 30px;

        grid-template-columns: 1fr 1fr;

        gap: 30px;
    }


    .freedom-ingles-hero h1 {
        font-size: 40px !important;
    }


    .freedom-ingles-hero-subtitulo {
        font-size: 18px !important;
    }


    .freedom-ingles-hero-beneficios > div {
        font-size: 16px;
    }

}


/* =========================================================
   CELULAR
   ========================================================= */

@media screen and (max-width: 767px) {

    .freedom-ingles-hero {
        margin: 15px auto 32px;

        padding: 30px 18px;

        grid-template-columns: 1fr;

        gap: 30px;

        border-radius: 14px;

        text-align: center;
    }


    .freedom-ingles-hero-texto {
        text-align: center;
    }


    .freedom-ingles-hero-selo {
        margin-bottom: 10px;

        font-size: 13px;
    }


    .freedom-ingles-hero h1 {
        font-size: 34px !important;
        line-height: 1.15 !important;

        text-align: center !important;
    }


    .freedom-ingles-hero-subtitulo {
        max-width: 100%;

        margin-bottom: 24px !important;

        font-size: 19px !important;
        line-height: 1.55 !important;

        text-align: center !important;
    }


    .freedom-ingles-hero-beneficios {
        max-width: 430px;

        margin: 0 auto 26px;

        text-align: left;
    }


    .freedom-ingles-hero-beneficios > div {
        align-items: flex-start;

        font-size: 17px;
        line-height: 1.45;
    }


    .freedom-ingles-hero-beneficios span {
        margin-top: 1px;
    }


    .freedom-ingles-hero-botao {
        padding: 15px 21px;

        font-size: 15px;
    }


    .freedom-ingles-video-box {
        max-width: 520px;

        margin: 0 auto;
    }


    .freedom-ingles-video-placeholder strong {
        font-size: 19px;
    }


    .freedom-ingles-video-placeholder > span {
        font-size: 15px;
    }

}


/* =========================================================
   CELULARES MENORES
   ========================================================= */

@media screen and (max-width: 420px) {

    .freedom-ingles-hero {
        padding: 27px 14px;
    }


    .freedom-ingles-hero h1 {
        font-size: 31px !important;
    }


    .freedom-ingles-hero-subtitulo {
        font-size: 18px !important;
    }


    .freedom-ingles-hero-beneficios > div {
        font-size: 16px;
    }

}




/* =========================================================
   CURSO DE INGLÊS
   INGLÊS PARA CADA ETAPA DA SUA VIDA
   ========================================================= */

.freedom-ingles-objetivos {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 48px 28px 52px;
    box-sizing: border-box;

    background: #f5f9ff;
    border-radius: 16px;
}


/* =========================================================
   CABEÇALHO
   ========================================================= */

.freedom-ingles-objetivos-header {
    text-align: center;
    margin-bottom: 38px;
}

.freedom-ingles-objetivos-header h2 {
    margin: 0 0 10px !important;

    color: #173f7a !important;

    font-size: 36px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;

    text-align: center !important;
}

.freedom-ingles-objetivos-header p {
    max-width: 720px;

    margin: 0 auto !important;

    color: #555555 !important;

    font-size: 18px !important;
    line-height: 1.55 !important;

    text-align: center !important;
}


/* =========================================================
   GRID - 4 COLUNAS NO DESKTOP E TABLET
   ========================================================= */

.freedom-ingles-objetivos-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 0 !important;
    width: 100% !important;
}


/* =========================================================
   CADA OBJETIVO
   ========================================================= */

.freedom-ingles-objetivo {
    position: relative;

    min-width: 0;

    padding: 8px 26px 10px;

    text-align: center;

    box-sizing: border-box;
}


/* =========================================================
   DIVISÓRIAS VERTICAIS
   ========================================================= */

.freedom-ingles-objetivo:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 10%;

    width: 1px;
    height: 80%;

    background: #cbd9ea;
}


/* =========================================================
   IMAGENS
   ========================================================= */

.freedom-ingles-objetivo-icon {
    width: 155px !important;
    height: 120px !important;

    margin: 0 auto 12px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;

    box-shadow: none !important;

    overflow: visible !important;
}

.freedom-ingles-objetivo-icon img {
    display: block !important;

    width: 155px !important;
    max-width: 100% !important;

    height: 120px !important;
    max-height: 120px !important;

    object-fit: contain !important;

    margin: 0 auto !important;
}


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

.freedom-ingles-objetivo h3 {
    margin: 0 0 9px !important;

    color: #173f7a !important;

    font-size: 19px !important;
    line-height: 1.25 !important;

    font-weight: 800 !important;

    text-align: center !important;
}


/* =========================================================
   TEXTO
   ========================================================= */

.freedom-ingles-objetivo p {
    max-width: 220px;

    margin: 0 auto !important;

    color: #555555 !important;

    font-size: 16px !important;
    line-height: 1.5 !important;

    text-align: center !important;
}


/* =========================================================
   TABLET
   CONTINUA COM 4 COLUNAS
   ========================================================= */

@media screen and (max-width: 1024px) and (min-width: 768px) {

    .freedom-ingles-objetivos {
        padding: 42px 18px 46px;
    }

    .freedom-ingles-objetivos-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }

    .freedom-ingles-objetivo {
        padding: 8px 14px 10px;
    }

    .freedom-ingles-objetivo-icon {
        width: 125px !important;
        height: 105px !important;
    }

    .freedom-ingles-objetivo-icon img {
        width: 125px !important;
        height: 105px !important;
    }

    .freedom-ingles-objetivo h3 {
        font-size: 17px !important;
    }

    .freedom-ingles-objetivo p {
        font-size: 15px !important;
    }
}


/* =========================================================
   CELULAR - 2 x 2
   ========================================================= */

@media screen and (max-width: 600px) {

    .freedom-ingles-objetivos {
        padding: 36px 14px 38px;

        border-radius: 14px;
    }

    .freedom-ingles-objetivos-header {
        margin-bottom: 28px;
    }

    .freedom-ingles-objetivos-header h2 {
        font-size: 29px !important;
        line-height: 1.2 !important;
    }

    .freedom-ingles-objetivos-header p {
        font-size: 18px !important;
        line-height: 1.5 !important;
    }

    .freedom-ingles-objetivos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 30px 0 !important;
    }

    .freedom-ingles-objetivo {
        padding: 6px 14px 10px;
    }

    /* divisória entre as duas colunas */
    .freedom-ingles-objetivo::after {
        display: none !important;
    }

    .freedom-ingles-objetivo:nth-child(odd)::after {
        content: "";
        display: block !important;

        position: absolute;

        right: 0;
        top: 8%;

        width: 1px;
        height: 84%;

        background: #cbd9ea;
    }

    .freedom-ingles-objetivo-icon {
        width: 125px !important;
        height: 100px !important;

        margin-bottom: 10px !important;
    }

    .freedom-ingles-objetivo-icon img {
        width: 125px !important;
        height: 100px !important;
    }

    .freedom-ingles-objetivo h3 {
        font-size: 18px !important;
    }

    .freedom-ingles-objetivo p {
        font-size: 17px !important;
        line-height: 1.45 !important;
    }
}


/* =========================================================
   CELULARES PEQUENOS
   ========================================================= */

@media screen and (max-width: 420px) {

    .freedom-ingles-objetivos {
        padding-left: 10px;
        padding-right: 10px;
    }

    .freedom-ingles-objetivo {
        padding-left: 8px;
        padding-right: 8px;
    }

    .freedom-ingles-objetivo-icon {
        width: 110px !important;
        height: 90px !important;
    }

    .freedom-ingles-objetivo-icon img {
        width: 110px !important;
        height: 90px !important;
    }

    .freedom-ingles-objetivo p {
        font-size: 16px !important;
    }
}


/* =========================================================
   CURSO DE INGLÊS - ÍCONES DOS BENEFÍCIOS
   ========================================================= */
.freedom-icone-svg {
    width: 78px;
    height: 78px;

    margin: 0 auto 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eef5ff;

    border: 1px solid #dbe7f5;

    box-sizing: border-box;

    color: #173f7a;

    box-shadow: 0 4px 14px rgba(23, 63, 122, 0.08);
}

.freedom-icone-svg svg {
    width: 40px;
    height: 40px;

    display: block;

    fill: none;
    stroke: #173f7a;

    stroke-width: 2.3;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   CELULAR
   ========================================================= */

@media screen and (max-width: 767px) {

    .freedom-icone-svg {
        width: 72px;
        height: 72px;

        margin-bottom: 14px;
    }

    .freedom-icone-svg svg {
        width: 36px;
        height: 36px;
    }

}

/* =========================================================
   FREEDOM - INGLÊS QUE VOCÊ REALMENTE USA
   ========================================================= */

.freedom-ingles-beneficios {
    width: 100%;
    max-width: 1100px;
    margin: 55px auto 70px;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
}

.freedom-ingles-beneficios h2 {
    margin: 0 0 10px;
    color: #173f7a;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 800;
}

.freedom-beneficios-subtitulo {
    max-width: 720px;
    margin: 0 auto 32px;
    color: #666666;
    font-size: 17px;
    line-height: 1.55;
}


/* =========================================================
   GRID DOS 4 CARDS
   ========================================================= */

.freedom-beneficios-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    width: 100%;
}


/* =========================================================
   CARDS
   ========================================================= */

.freedom-beneficio-card {
    display: flex;
    flex-direction: column;
    align-items: center;

    min-width: 0;
    min-height: 245px;

    padding: 26px 18px 24px;

    background: #ffffff;
    border: 1px solid #dfe7f1;
    border-radius: 12px;

    box-sizing: border-box;
    text-align: center;

    box-shadow: 0 5px 16px rgba(23, 63, 122, 0.07);
}


/* =========================================================
   CÍRCULO DOS ÍCONES
   ========================================================= */

.freedom-beneficio-icone {
    width: 64px;
    height: 64px;

    flex: 0 0 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 17px;

    border-radius: 50%;
    border: 1px solid #d8e5f5;

    background: #eef5ff;

    color: #173f7a;
}


/* SVG */

.freedom-beneficio-icone svg {
    display: block;

    width: 31px;
    height: 31px;

    stroke: #173f7a;
    stroke-width: 1.8;

    fill: none;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   TÍTULO DOS CARDS
   ========================================================= */

.freedom-beneficio-card h3 {
    margin: 0 0 10px;

    color: #173f7a;

    font-size: 19px;
    line-height: 1.25;
    font-weight: 800;
}


/* =========================================================
   TEXTO DOS CARDS
   ========================================================= */

.freedom-beneficio-card p {
    margin: 0;

    color: #555555;

    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
}


/* =========================================================
   TABLET
   Mantém os 4 cards lado a lado
   ========================================================= */

@media screen and (min-width: 768px) and (max-width: 1024px) {

    .freedom-ingles-beneficios {
        padding: 0 16px;
    }

    .freedom-beneficios-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 12px;
    }

    .freedom-beneficio-card {
        padding: 22px 12px;
        min-height: 245px;
    }

    .freedom-beneficio-card h3 {
        font-size: 18px;
    }

    .freedom-beneficio-card p {
        font-size: 14px;
    }
}


/* =========================================================
   CELULAR
   1 CARD POR LINHA
   ========================================================= */

@media screen and (max-width: 767px) {

    .freedom-ingles-beneficios {
        margin: 40px auto 48px;
        padding: 0 16px;
    }

    .freedom-ingles-beneficios h2 {
        font-size: 29px;
        line-height: 1.2;
    }

    .freedom-beneficios-subtitulo {
        margin-bottom: 24px;
        font-size: 17px;
        line-height: 1.5;
    }

    .freedom-beneficios-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        max-width: 440px;
        margin: 0 auto;
    }

    .freedom-beneficio-card {
        min-height: 0;
        padding: 24px 20px;
    }

    .freedom-beneficio-icone {
        width: 68px;
        height: 68px;
        flex-basis: 68px;
        margin-bottom: 14px;
    }

    .freedom-beneficio-icone svg {
        width: 32px;
        height: 32px;
    }

    .freedom-beneficio-card h3 {
        font-size: 21px;
    }

    .freedom-beneficio-card p {
        font-size: 17px;
        line-height: 1.5;
    }
}


/* =========================================================
   CELULARES PEQUENOS
   ========================================================= */

@media screen and (max-width: 420px) {

    .freedom-ingles-beneficios {
        padding: 0 12px;
    }

    .freedom-ingles-beneficios h2 {
        font-size: 27px;
    }

    .freedom-beneficio-card {
        padding: 22px 18px;
    }
}


/* =========================================================
   CORREÇÃO FINAL - 4 CARDS INGLÊS NO DESKTOP/TABLET
   ========================================================= */

@media screen and (min-width: 768px) {

    .freedom-ingles-beneficios .freedom-beneficios-grid {
        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 18px !important;
        width: 100% !important;
    }

    .freedom-ingles-beneficios .freedom-beneficio-card {
        width: auto !important;
        min-width: 0 !important;
    }
}


/* CELULAR - 1 CARD POR LINHA */

@media screen and (max-width: 767px) {

    .freedom-ingles-beneficios .freedom-beneficios-grid {
        grid-template-columns: 1fr !important;
    }
}

/* =========================================================
   CORREÇÃO FINAL — INGLÊS PARA CADA ETAPA DA SUA VIDA
   O editor do WordPress pode inserir <p> / <br> entre os cards.
   Esses elementos viram itens extras do CSS Grid e fazem os
   quatro cards aparecerem visualmente em 2 x 2 no desktop.
   ========================================================= */

/* Remove somente elementos automáticos que sejam filhos DIRETOS do grid.
   Os <p> que ficam dentro de cada card continuam normais. */
.freedom-ingles-objetivos-grid > p,
.freedom-ingles-objetivos-grid > br {
    display: none !important;
}

/* DESKTOP — 4 cards na mesma linha */
@media screen and (min-width: 768px) {

    .freedom-ingles-objetivos-grid {
        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        grid-auto-flow: row !important;
        gap: 0 !important;
        width: 100% !important;
    }

    .freedom-ingles-objetivos-grid > .freedom-ingles-objetivo {
        display: block !important;
        grid-column: auto !important;
        grid-row: auto !important;
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
}

/* CELULAR — mantém 2 x 2 */
@media screen and (max-width: 600px) {

    .freedom-ingles-objetivos-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 30px 0 !important;
    }
}



/* ===== AJUSTE TÍTULO HERO INGLÊS - CELULAR ===== */
@media screen and (max-width: 767px) {

    .freedom-ingles-hero-texto h1 {
        font-size: 38px !important;
        line-height: 1.08 !important;
        font-weight: 800 !important;
        letter-spacing: -0.5px !important;
        margin-bottom: 22px !important;
			color: #173f7a !important;
			
    }

}

@media only screen and (min-width: 768px) {
  .freedom-escola-japonesa-cards {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: stretch !important;
    gap: 22px !important;
  }

  .freedom-escola-card {
    flex: 0 1 31% !important;
    width: 31% !important;
    max-width: 330px !important;
    margin: 0 !important;
  }
}


/* =========================================================
   AJUSTE FINAL - MÉTODO DE PORTUGUÊS
   ========================================================= */

/* Aproxima a seção "Como desenvolvemos" dos cards anteriores */
.freedom-metodo2026 {
    margin-top: 20px;
}

/* Deixa a faixa final mais compacta */
.freedom-metodo2026-faixa {
    padding-top: 15px;
    padding-bottom: 15px;
}

/* Mantém bom espaçamento no celular */
@media screen and (max-width: 767px) {

    .freedom-metodo2026 {
        margin-top: 26px;
    }

    .freedom-metodo2026-faixa {
        padding: 17px 16px;
    }
}

/* =========================================================
   AJUSTE DE LEGIBILIDADE - COMO DESENVOLVEMOS
   ========================================================= */

/* Subtítulo */
.freedom-metodo2026-header p {
    font-size: 19px;
    line-height: 1.55;
}

/* Nomes das etapas */
.freedom-metodo2026-item h3 {
    font-size: 20px;
    line-height: 1.3;
}

/* Título da faixa azul */
.freedom-metodo2026-faixa strong {
    font-size: 21px;
    line-height: 1.35;
}

/* Texto explicativo da faixa */
.freedom-metodo2026-faixa span {
    font-size: 18px;
    line-height: 1.5;
}


/* CELULAR */
@media screen and (max-width: 767px) {

    .freedom-metodo2026-header h2 {
        font-size: 32px;
    }

    .freedom-metodo2026-header p {
        font-size: 18px;
        line-height: 1.5;
    }

    .freedom-metodo2026-item h3 {
        font-size: 20px;
    }

    .freedom-metodo2026-faixa strong {
        font-size: 20px;
    }

    .freedom-metodo2026-faixa span {
        font-size: 18px;
        line-height: 1.5;
    }
}

/* COMPACTAÇÃO DO MÉTODO NO CELULAR */
@media screen and (max-width: 767px) {

    .freedom-metodo2026-header {
        margin-bottom: 20px;
    }

    .freedom-metodo2026-etapas {
        gap: 16px 12px;
        margin-bottom: 22px;
    }

    .freedom-metodo2026-numero {
        width: 66px;
        height: 66px;
        margin-bottom: 8px;
    }

    .freedom-metodo2026-item h3 {
        margin-top: 0;
        font-size: 20px;
        line-height: 1.25;
    }

    .freedom-metodo2026-item:last-of-type {
        margin-top: -2px;
    }
}


/* =========================================================
   COMO DESENVOLVEMOS O PORTUGUÊS
   MOBILE - LINHA DE PROGRESSÃO VERTICAL
   ========================================================= */

@media screen and (max-width: 767px) {

    .freedom-alfabetizacao-metodo-etapas {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;
        max-width: 520px;
        margin: 0 auto 28px !important;
        position: relative;
    }

    /* Linha vertical */
    .freedom-alfabetizacao-metodo-etapas::before {
        content: "";
        position: absolute;
        left: 46px;
        top: 48px;
        bottom: 48px;
        width: 3px;
        background: #d5e5f8;
        z-index: 0;
    }

    .freedom-alfabetizacao-metodo-item {
        width: 100% !important;
        max-width: none !important;
        display: grid !important;
        grid-template-columns: 94px 1fr;
        grid-template-rows: auto auto;
        column-gap: 18px;
        align-items: center;
        text-align: left !important;
        position: relative;
        padding: 18px 0;
        box-sizing: border-box;
        z-index: 1;
    }

    /* Anula a regra antiga do último item */
    .freedom-alfabetizacao-metodo-item:last-of-type {
        grid-column: auto !important;
        width: 100% !important;
        max-width: none !important;
        justify-self: auto !important;
    }

    /* Círculo */
    .freedom-alfabetizacao-metodo-icon {
        grid-column: 1;
        grid-row: 1 / 3;

        width: 78px !important;
        height: 78px !important;
        margin: 0 auto !important;

        border: 3px solid #d5e5f8;
        border-radius: 50%;
        background: #ffffff;

        display: flex !important;
        align-items: center;
        justify-content: center;

        font-size: 27px !important;
        font-weight: 800;
        color: #173f7a;

        position: relative;
        z-index: 2;
    }

    /* Número de cada etapa */
    .freedom-alfabetizacao-metodo-item::before {
        position: absolute;
        left: -4px;
        top: 42px;

        width: 30px;
        height: 30px;
        border-radius: 50%;

        background: #173f7a;
        color: #ffffff;

        display: flex;
        align-items: center;
        justify-content: center;

        font-size: 16px;
        line-height: 1;
        font-weight: 800;

        z-index: 3;
    }

    .freedom-alfabetizacao-metodo-item:nth-of-type(1)::before {
        content: "1";
    }

    .freedom-alfabetizacao-metodo-item:nth-of-type(3)::before {
        content: "2";
    }

    .freedom-alfabetizacao-metodo-item:nth-of-type(5)::before {
        content: "3";
    }

    .freedom-alfabetizacao-metodo-item:nth-of-type(7)::before {
        content: "4";
    }

    .freedom-alfabetizacao-metodo-item:nth-of-type(9)::before {
        content: "5";
    }

    /* Títulos */
    .freedom-alfabetizacao-metodo-item h3 {
        grid-column: 2;
        grid-row: 1;

        margin: 0 !important;

        font-size: 23px !important;
        line-height: 1.25 !important;
        font-weight: 800 !important;
        color: #173f7a !important;

        text-align: left !important;
    }

    /* As setas horizontais desaparecem no celular */
    .freedom-alfabetizacao-metodo-seta {
        display: none !important;
    }

    /* Faixa final */
    .freedom-alfabetizacao-metodo-faixa {
        margin-top: 20px !important;
        padding: 24px 20px !important;
        border-radius: 14px !important;
    }

    .freedom-alfabetizacao-metodo-faixa strong {
        font-size: 21px !important;
        line-height: 1.35 !important;
    }

    .freedom-alfabetizacao-metodo-faixa span {
        font-size: 17px !important;
        line-height: 1.55 !important;
    }
}


/* =========================================================
   FREEDOM 2026
   COMO DESENVOLVEMOS O PORTUGUÊS
   ========================================================= */

.freedom-metodo2026 {
    width: 100%;
    max-width: 1050px;
    margin: 70px auto 55px;
    padding: 0 20px;
    box-sizing: border-box;
}

.freedom-metodo2026-header {
    text-align: center;
    margin-bottom: 42px;
}

.freedom-metodo2026-header h2 {
    margin: 0 0 12px;
    color: #173f7a;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
}

.freedom-metodo2026-header p {
    max-width: 760px;
    margin: 0 auto;
    color: #626262;
    font-size: 18px;
    line-height: 1.55;
}


/* DESKTOP */

.freedom-metodo2026-lista {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    margin-bottom: 38px;
}

.freedom-metodo2026-lista::before {
    content: "";
    position: absolute;
    top: 46px;
    left: 9%;
    right: 9%;
    height: 3px;
    background: #d7e5f5;
    z-index: 0;
}

.freedom-metodo2026-passo {
    position: relative;
    z-index: 1;
    width: 19%;
    text-align: center;
}

.freedom-metodo2026-numero {
    display: none;
}

.freedom-metodo2026-icone {
    width: 92px;
    height: 92px;
    margin: 0 auto 16px;
    border: 3px solid #d7e5f5;
    border-radius: 50%;
    background: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #173f7a;
    font-size: 29px;
    line-height: 1;
    font-weight: 800;

    box-sizing: border-box;
}

.freedom-metodo2026-conteudo h3 {
    margin: 0 0 8px;
    color: #173f7a;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 800;
}

.freedom-metodo2026-conteudo p {
    margin: 0;
    color: #5d5d5d;
    font-size: 15px;
    line-height: 1.5;
}


/* FAIXA FINAL */

.freedom-metodo2026-final {
    max-width: 920px;
    margin: 0 auto;
    padding: 25px 30px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;

    background: #eef5ff;
    border: 1px solid #d7e5f5;
    border-radius: 16px;

    box-sizing: border-box;
}

.freedom-metodo2026-capelo {
    flex: 0 0 auto;
    font-size: 48px;
    line-height: 1;
}

.freedom-metodo2026-final h3 {
    margin: 0 0 7px;
    color: #173f7a;
    font-size: 21px;
    line-height: 1.35;
    font-weight: 800;
}

.freedom-metodo2026-final p {
    margin: 0;
    color: #555555;
    font-size: 16px;
    line-height: 1.5;
}


/* =========================================================
   CELULAR
   ========================================================= */

@media screen and (max-width: 767px) {

    .freedom-metodo2026 {
        margin: 42px auto 38px;
        padding: 0 18px;
    }

    .freedom-metodo2026-header {
        margin-bottom: 34px;
    }

    .freedom-metodo2026-header h2 {
        font-size: 32px;
        line-height: 1.18;
    }

    .freedom-metodo2026-header p {
        font-size: 19px;
        line-height: 1.5;
    }


    /* LINHA VERTICAL */

    .freedom-metodo2026-lista {
        display: block;
        margin: 0 auto 32px;
        padding: 0;
    }

    .freedom-metodo2026-lista::before {
        display: none;
    }

    .freedom-metodo2026-passo {
        width: 100%;
        min-height: 132px;

        display: grid;
        grid-template-columns: 38px 88px 1fr;
        column-gap: 13px;
        align-items: center;

        position: relative;
        padding: 10px 0 22px;
        text-align: left;

        box-sizing: border-box;
    }

    /* Linha ligando os números */

    .freedom-metodo2026-passo:not(:last-child)::after {
        content: "";
        position: absolute;

        left: 18px;
        top: 72px;
        bottom: -14px;

        width: 2px;

        background-image:
            linear-gradient(
                to bottom,
                #3972b8 50%,
                transparent 50%
            );

        background-size: 2px 10px;
        background-repeat: repeat-y;
    }


    /* NÚMEROS */

    .freedom-metodo2026-numero {
        width: 36px;
        height: 36px;

        display: flex;
        align-items: center;
        justify-content: center;

        position: relative;
        z-index: 3;

        background: #173f7a;
        border-radius: 50%;

        color: #ffffff;
        font-size: 18px;
        line-height: 1;
        font-weight: 800;
    }


    /* ÍCONES */

    .freedom-metodo2026-icone {
        width: 82px;
        height: 82px;
        margin: 0;

        border: 3px solid #d7e5f5;
        background: #ffffff;

        font-size: 27px;
    }


    /* TEXTO */

    .freedom-metodo2026-conteudo {
        min-width: 0;
    }

    .freedom-metodo2026-conteudo h3 {
        margin: 0 0 5px;

        font-size: 22px;
        line-height: 1.25;

        text-align: left;
    }

    .freedom-metodo2026-conteudo p {
        margin: 0;

        font-size: 17px;
        line-height: 1.48;

        text-align: left;
    }


    /* FAIXA FINAL */

    .freedom-metodo2026-final {
        padding: 24px 20px;
        gap: 16px;

        align-items: center;

        border-radius: 15px;
    }

    .freedom-metodo2026-capelo {
        font-size: 42px;
    }

    .freedom-metodo2026-final h3 {
        font-size: 21px;
        line-height: 1.3;
    }

    .freedom-metodo2026-final p {
        font-size: 17px;
        line-height: 1.5;
    }
}


/* CELULARES ESTREITOS */

@media screen and (max-width: 390px) {

    .freedom-metodo2026 {
        padding: 0 14px;
    }

    .freedom-metodo2026-passo {
        grid-template-columns: 34px 76px 1fr;
        column-gap: 10px;
    }

    .freedom-metodo2026-numero {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .freedom-metodo2026-passo:not(:last-child)::after {
        left: 15px;
    }

    .freedom-metodo2026-icone {
        width: 72px;
        height: 72px;
        font-size: 24px;
    }

    .freedom-metodo2026-conteudo h3 {
        font-size: 20px;
    }

    .freedom-metodo2026-conteudo p {
        font-size: 16px;
    }
}


/* =========================================================
   AJUSTE FINAL MOBILE - COMO DESENVOLVEMOS O PORTUGUÊS
   ========================================================= */

@media screen and (max-width: 767px) {

    .freedom-metodo2026-passo {
        min-height: 112px;
        grid-template-columns: 34px 78px 1fr;
        column-gap: 11px;
        padding: 8px 0 16px;
    }

    .freedom-metodo2026-passo:not(:last-child)::after {
        left: 16px;
        top: 62px;
        bottom: -10px;
    }

    .freedom-metodo2026-numero {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .freedom-metodo2026-icone {
        width: 72px;
        height: 72px;
        font-size: 24px;
    }

    .freedom-metodo2026-conteudo h3 {
        margin: 0 0 4px;
        font-size: 20px;
        line-height: 1.2;
    }

    .freedom-metodo2026-conteudo p {
        font-size: 16px;
        line-height: 1.42;
    }

    .freedom-metodo2026-final {
        margin-top: 18px;
        padding: 20px 18px;
        gap: 14px;
    }

    .freedom-metodo2026-capelo {
        font-size: 38px;
    }

    .freedom-metodo2026-final h3 {
        font-size: 20px;
        line-height: 1.28;
    }

    .freedom-metodo2026-final p {
        font-size: 16px;
        line-height: 1.45;
    }
}

@media screen and (max-width: 767px) {

    .freedom-metodo2026-passo:not(:last-child)::after {
        left: 16px;
        top: 36px;
        bottom: -4px;
    }
}


/* =========================================================
   AJUSTE MOBILE - LINHA + COMPACTAÇÃO DO MÉTODO
   ========================================================= */

@media screen and (max-width: 767px) {

    /* Aproxima a linha pontilhada do número */
    .freedom-metodo2026-passo:not(:last-child)::after {
        left: 16px;
        top: 34px;
        bottom: 0;
    }

    /* Reduz a altura geral de cada etapa */
    .freedom-metodo2026-passo {
        min-height: 104px;
        padding: 6px 0 12px;
    }

    /* Mantém o texto legível */
    .freedom-metodo2026-conteudo h3 {
        margin-bottom: 3px;
    }

    /* Aproxima um pouco as etapas */
    .freedom-metodo2026-lista {
        margin-bottom: 24px;
    }

    /* Mantém uma separação agradável antes da caixa final */
    .freedom-metodo2026-final {
        margin-top: 12px;
    }
}

/* =========================================================
   MOBILE - LINHA VERTICAL CONTÍNUA
   ========================================================= */

@media screen and (max-width: 767px) {

    /* A lista passa a ser a referência da linha */
    .freedom-metodo2026-lista {
        position: relative;
    }

    /* UMA única linha contínua */
    .freedom-metodo2026-lista::before {
        content: "";
        position: absolute;
        left: 16px;
        top: 22px;
        bottom: 22px;
        width: 2px;

        background: repeating-linear-gradient(
            to bottom,
            #2f6fbd 0,
            #2f6fbd 6px,
            transparent 6px,
            transparent 11px
        );

        z-index: 0;
    }

    /* Desativa os pedaços antigos de linha */
    .freedom-metodo2026-passo::after,
    .freedom-metodo2026-passo:not(:last-child)::after {
        display: none !important;
        content: none !important;
    }

    /* Mantém cada etapa acima da linha */
    .freedom-metodo2026-passo {
        position: relative;
        z-index: 1;
        min-height: 104px;
        padding: 6px 0 12px;
    }

    /* Número fica por cima da linha */
    .freedom-metodo2026-numero {
        position: relative;
        z-index: 2;
        background: #173f7a;
    }
}

@media screen and (max-width: 767px) {

    .freedom-metodo2026-lista {
        position: relative !important;
    }

    .freedom-metodo2026-lista::before {
        content: "" !important;
        display: block !important;

        position: absolute !important;
        left: 16px !important;
        top: 24px !important;
        bottom: 24px !important;

        width: 2px !important;

        background-image: repeating-linear-gradient(
            to bottom,
            #2f6fbd 0,
            #2f6fbd 6px,
            transparent 6px,
            transparent 11px
        ) !important;

        z-index: 0 !important;
    }

    .freedom-metodo2026-passo::after {
        display: none !important;
        content: none !important;
    }

    .freedom-metodo2026-passo {
        position: relative !important;
        z-index: 1 !important;
    }

    .freedom-metodo2026-numero {
        position: relative !important;
        z-index: 3 !important;
        background: #173f7a !important;
    }
}


/* =========================================================
   MOBILE - LINHA PONTILHADA CONTÍNUA DEFINITIVA
   ========================================================= */

@media screen and (max-width: 767px) {

    /* Remove todas as linhas criadas anteriormente */
    .freedom-metodo2026-lista::before,
    .freedom-metodo2026-lista::after,
    .freedom-metodo2026-passo::before,
    .freedom-metodo2026-passo::after {
        content: none !important;
        display: none !important;
    }

    /* A linha passa a ser o próprio fundo da lista */
    .freedom-metodo2026-lista {
        position: relative !important;

        background-image: repeating-linear-gradient(
            to bottom,
            #2f6fbd 0px,
            #2f6fbd 6px,
            transparent 6px,
            transparent 11px
        ) !important;

        background-size: 2px 11px !important;
        background-repeat: repeat-y !important;
        background-position: 16px 16px !important;
    }

    /* Mantém os passos sobre a linha */
    .freedom-metodo2026-passo {
        position: relative !important;
        z-index: 1 !important;
    }

    /* Os números cobrem a linha por trás */
    .freedom-metodo2026-numero {
        position: relative !important;
        z-index: 3 !important;

        width: 32px !important;
        height: 32px !important;

        background: #173f7a !important;
        border-radius: 50% !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        color: #ffffff !important;
    }
}


/* =========================================================
   FREEDOM - DO BÁSICO À PROFICIÊNCIA
   BLOCO ÚNICO E LIMPO
   ========================================================= */

.freedom-ingles-niveis {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 50px;
    padding: 70px 20px 20px;
    box-sizing: border-box;
}

.freedom-ingles-niveis-header {
    text-align: center;
    margin-bottom: 34px;
}

.freedom-ingles-niveis-header h2 {
    margin: 0 0 12px;
    color: #173f7a;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
}

.freedom-ingles-niveis-header p {
    max-width: 760px;
    margin: 0 auto;
    color: #5d5d5d;
    font-size: 18px;
    line-height: 1.55;
}

/* =========================================================
   DESKTOP
   ========================================================= */

@media screen and (min-width: 768px) {

    .freedom-ingles-niveis-lista {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        width: 100%;
        max-width: 900px;
        margin: 34px auto 0;
        padding: 0;
        gap: 0;
    }

    .freedom-ingles-niveis-lista::before {
        content: "";
        position: absolute;
        top: 23px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: #d4e2f3;
        z-index: 0;
    }

    .freedom-ingles-seta {
        display: none;
    }

    .freedom-ingles-nivel {
        position: relative;
        z-index: 2;
        width: 20%;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        font-size: 0;
        color: transparent;
    }

    .freedom-ingles-nivel::before {
        width: 46px;
        height: 46px;
        min-width: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 14px;
        background: #173f7a;
        border: 4px solid #ffffff;
        border-radius: 50%;
        box-shadow: 0 0 0 2px #d4e2f3;
        color: #ffffff;
        font-size: 17px;
        line-height: 1;
        font-weight: 800;
        box-sizing: border-box;
    }

    .freedom-ingles-nivel:nth-of-type(1)::before {
        content: "1";
    }

    .freedom-ingles-nivel:nth-of-type(3)::before {
        content: "2";
    }

    .freedom-ingles-nivel:nth-of-type(5)::before {
        content: "3";
    }

    .freedom-ingles-nivel:nth-of-type(7)::before {
        content: "4";
    }

    .freedom-ingles-nivel-final::before {
        content: "✓";
        background: #28a745;
        box-shadow: 0 0 0 2px #bfe7c8;
    }

    .freedom-ingles-nivel strong {
        display: block;
        margin: 0;
        padding: 0 6px;
        color: #173f7a;
        font-size: 16px;
        line-height: 1.25;
        font-weight: 800;
        text-align: center;
        white-space: nowrap;
    }
}

/* =========================================================
   CELULAR
   ========================================================= */

@media screen and (max-width: 767px) {

    .freedom-ingles-niveis {
        margin: 0 auto 38px;
        padding: 48px 18px 10px;
    }

    .freedom-ingles-niveis-header {
        margin-bottom: 26px;
    }

    .freedom-ingles-niveis-header h2 {
        font-size: 31px;
        line-height: 1.18;
    }

    .freedom-ingles-niveis-header p {
        max-width: 350px;
        font-size: 18px;
        line-height: 1.5;
    }

    .freedom-ingles-niveis-lista {
        position: relative;
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 340px;
        margin: 34px auto 0;
        padding: 0;
        gap: 26px;
    }

    .freedom-ingles-niveis-lista::before {
        content: "";
        position: absolute;
        left: 22px;
        top: 23px;
        bottom: 23px;
        width: 2px;
        background: repeating-linear-gradient(
            to bottom,
            #3273bd 0,
            #3273bd 7px,
            transparent 7px,
            transparent 13px
        );
        z-index: 0;
    }

    .freedom-ingles-seta {
        display: none;
    }

    .freedom-ingles-nivel {
        position: relative;
        z-index: 2;
        width: 100%;
        display: grid;
        grid-template-columns: 46px minmax(0, 1fr);
        column-gap: 18px;
        align-items: center;
        margin: 0;
        padding: 0;
        font-size: 0;
        color: transparent;
    }

    .freedom-ingles-nivel::before {
        width: 46px;
        height: 46px;
        min-width: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        background: #173f7a;
        border: 4px solid #ffffff;
        border-radius: 50%;
        box-shadow: 0 0 0 2px #d4e2f3;
        color: #ffffff;
        font-size: 17px;
        line-height: 1;
        font-weight: 800;
        box-sizing: border-box;
        position: relative;
        z-index: 3;
    }

    .freedom-ingles-nivel:nth-of-type(1)::before {
        content: "1";
    }

    .freedom-ingles-nivel:nth-of-type(3)::before {
        content: "2";
    }

    .freedom-ingles-nivel:nth-of-type(5)::before {
        content: "3";
    }

    .freedom-ingles-nivel:nth-of-type(7)::before {
        content: "4";
    }

    .freedom-ingles-nivel-final::before {
        content: "✓";
        background: #28a745;
        box-shadow: 0 0 0 2px #bfe7c8;
    }

    .freedom-ingles-nivel strong {
        display: block;
        margin: 0;
        padding: 0;
        color: #173f7a;
        font-size: 20px;
        line-height: 1.25;
        font-weight: 800;
        text-align: left;
        white-space: normal;
    }
}

/* =========================================================
   MOBILE - DO BÁSICO À PROFICIÊNCIA
   LAYOUT CORRETO
   ========================================================= */

@media screen and (max-width: 767px) {

    .freedom-ingles-niveis-lista {
        position: relative;
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 360px;
        margin: 32px auto 0;
        padding: 0;
        gap: 28px;
    }

    /* linha vertical */
    .freedom-ingles-niveis-lista::before {
        content: "";
        position: absolute;
        left: 23px;
        top: 23px;
        bottom: 23px;
        width: 2px;
        background: repeating-linear-gradient(
            to bottom,
            #3273bd 0,
            #3273bd 7px,
            transparent 7px,
            transparent 13px
        );
        z-index: 0;
    }

    .freedom-ingles-nivel {
        position: relative;
        z-index: 2;

        width: 100%;

        display: grid;
        grid-template-columns: 46px 1fr;
        column-gap: 24px;
        align-items: center;

        margin: 0;
        padding: 0;

        font-size: 0;
        color: transparent;
        text-align: left;
    }

    .freedom-ingles-nivel::before {
        width: 46px;
        height: 46px;
        min-width: 46px;

        display: flex;
        align-items: center;
        justify-content: center;

        margin: 0;

        background: #173f7a;
        border: 4px solid #ffffff;
        border-radius: 50%;
        box-shadow: 0 0 0 2px #d4e2f3;

        color: #ffffff;
        font-size: 17px;
        line-height: 1;
        font-weight: 800;

        box-sizing: border-box;
        position: relative;
        z-index: 3;
    }

    .freedom-ingles-nivel:nth-of-type(1)::before {
        content: "1";
    }

    .freedom-ingles-nivel:nth-of-type(3)::before {
        content: "2";
    }

    .freedom-ingles-nivel:nth-of-type(5)::before {
        content: "3";
    }

    .freedom-ingles-nivel:nth-of-type(7)::before {
        content: "4";
    }

    .freedom-ingles-nivel-final::before {
        content: "✓";
        background: #28a745;
        box-shadow: 0 0 0 2px #bfe7c8;
    }

    .freedom-ingles-nivel strong {
        display: block;

        width: 100%;
        margin: 0;
        padding: 0;

        color: #173f7a;

        font-size: 19px;
        line-height: 1.2;
        font-weight: 800;

        text-align: left;

        white-space: normal;
        word-break: normal;
        overflow-wrap: normal;
    }

    .freedom-ingles-nivel-final strong {
        font-size: 17px;
        line-height: 1.25;
    }
}

/* =========================================================
   MOBILE DEFINITIVO - DO BÁSICO À PROFICIÊNCIA
   ========================================================= */

@media screen and (max-width: 767px) {

    /* elimina definitivamente os números antigos do HTML */
    .freedom-ingles-niveis .freedom-ingles-numero {
        display: none !important;
    }

    .freedom-ingles-niveis-lista {
        position: relative !important;
        display: block !important;

        width: 100% !important;
        max-width: 360px !important;

        margin: 34px auto 0 !important;
        padding: 0 !important;
    }

    /* linha pontilhada */
    .freedom-ingles-niveis-lista::before {
        content: "" !important;

        position: absolute !important;
        left: 22px !important;
        top: 23px !important;
        bottom: 23px !important;

        width: 2px !important;

        background: repeating-linear-gradient(
            to bottom,
            #3273bd 0,
            #3273bd 7px,
            transparent 7px,
            transparent 13px
        ) !important;

        z-index: 0 !important;
    }

    .freedom-ingles-seta {
        display: none !important;
    }

    /* cada nível */
    .freedom-ingles-nivel,
    .freedom-ingles-nivel-final {
        position: relative !important;

        display: flex !important;
        align-items: center !important;

        width: 100% !important;
        min-height: 46px !important;

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

        box-sizing: border-box !important;

        font-size: 0 !important;
        color: transparent !important;
    }

    /* TODOS os círculos ficam exatamente em left:0 */
    .freedom-ingles-nivel::before,
    .freedom-ingles-nivel-final::before {
        position: absolute !important;

        left: 0 !important;
        top: 50% !important;
        transform: translateY(-50%) !important;

        width: 46px !important;
        height: 46px !important;
        min-width: 46px !important;

        margin: 0 !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        background: #173f7a !important;

        border: 4px solid #ffffff !important;
        border-radius: 50% !important;

        box-shadow: 0 0 0 2px #d4e2f3 !important;

        color: #ffffff !important;

        font-size: 17px !important;
        line-height: 1 !important;
        font-weight: 800 !important;

        box-sizing: border-box !important;
        z-index: 3 !important;
    }

    .freedom-ingles-nivel:nth-of-type(1)::before {
        content: "1" !important;
    }

    .freedom-ingles-nivel:nth-of-type(3)::before {
        content: "2" !important;
    }

    .freedom-ingles-nivel:nth-of-type(5)::before {
        content: "3" !important;
    }

    .freedom-ingles-nivel:nth-of-type(7)::before {
        content: "4" !important;
    }

    /* verde: muda SOMENTE a cor */
    .freedom-ingles-nivel-final::before {
        content: "✓" !important;
        background: #28a745 !important;
        box-shadow: 0 0 0 2px #bfe7c8 !important;
    }

    /* textos */
    .freedom-ingles-nivel strong,
    .freedom-ingles-nivel-final strong {
        display: block !important;

        width: 100% !important;

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

        color: #173f7a !important;

        font-size: 19px !important;
        line-height: 1.2 !important;
        font-weight: 800 !important;

        text-align: left !important;

        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
    }

    .freedom-ingles-nivel-final strong {
        font-size: 17px !important;
    }
}

/* =========================================================
   FREEDOM — PÁGINA DE PREÇOS
   BLOCO 1 — HERO / TRANSPARÊNCIA
   ========================================================= */

.freedom-precos-hero {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 68px 30px 62px !important;
    text-align: center !important;

    background:
        radial-gradient(
            circle at 8% 20%,
            rgba(23, 63, 122, 0.07) 0%,
            rgba(23, 63, 122, 0) 27%
        ),
        radial-gradient(
            circle at 92% 25%,
            rgba(23, 63, 122, 0.07) 0%,
            rgba(23, 63, 122, 0) 27%
        ),
        linear-gradient(
            135deg,
            #eef5ff 0%,
            #ffffff 52%,
            #eef5ff 100%
        ) !important;

    border-bottom: 1px solid #dce8f7 !important;
}

.freedom-precos-hero-inner {
    width: 100% !important;
    max-width: 900px !important;
    margin: 0 auto !important;
}

.freedom-precos-selo {
    display: inline-block !important;

    margin: 0 0 22px 0 !important;
    padding: 10px 22px !important;

    background: #173f7a !important;
    color: #ffffff !important;

    border-radius: 30px !important;

    font-size: 14px !important;
    line-height: 1.3 !important;
    font-weight: 800 !important;
    letter-spacing: 0.7px !important;

    text-transform: uppercase !important;
}

.freedom-precos-hero h1 {
    margin: 0 0 22px 0 !important;
    padding: 0 !important;

    color: #173f7a !important;

    font-size: 46px !important;
    line-height: 1.12 !important;
    font-weight: 800 !important;

    text-align: center !important;
}

.freedom-precos-intro {
    width: 100% !important;
    max-width: 760px !important;

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

    color: #43566d !important;

    font-size: 18px !important;
    line-height: 1.72 !important;
    font-weight: 400 !important;

    text-align: center !important;
}

.freedom-precos-intro strong {
    color: #173f7a !important;
    font-weight: 800 !important;
}

.freedom-precos-destaque {
    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 12px !important;

    margin: 30px auto 0 auto !important;

    color: #173f7a !important;

    font-size: 21px !important;
    line-height: 1.35 !important;
    font-weight: 800 !important;

    text-align: center !important;
}

.freedom-precos-check {
    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;

    border: 2px solid #173f7a !important;
    border-radius: 50% !important;

    color: #173f7a !important;

    font-size: 21px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
}


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

@media screen and (max-width: 767px) {

    .freedom-precos-hero {
        padding: 46px 18px 44px !important;
    }

    .freedom-precos-selo {
        margin-bottom: 19px !important;
        padding: 9px 16px !important;

        font-size: 12px !important;
        line-height: 1.35 !important;
        letter-spacing: 0.45px !important;
    }

    .freedom-precos-hero h1 {
        margin-bottom: 19px !important;

        font-size: 34px !important;
        line-height: 1.14 !important;
    }

    .freedom-precos-intro {
        max-width: 100% !important;

        font-size: 17px !important;
        line-height: 1.65 !important;
    }

    .freedom-precos-destaque {
        gap: 10px !important;

        margin-top: 27px !important;

        font-size: 18px !important;
        line-height: 1.35 !important;
    }

    .freedom-precos-check {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;

        font-size: 19px !important;
    }
}


@media screen and (max-width: 400px) {

    .freedom-precos-hero {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .freedom-precos-hero h1 {
        font-size: 31px !important;
    }

    .freedom-precos-intro {
        font-size: 16.5px !important;
    }

    .freedom-precos-destaque {
        font-size: 17px !important;
    }

}


/* =========================================================
   FREEDOM — PÁGINA DE PREÇOS
   BLOCO 2 — SELEÇÃO DE IDIOMAS
   ========================================================= */

.freedom-precos-idiomas {
    width: 100% !important;
    box-sizing: border-box !important;

    padding: 42px 30px 48px !important;

    background: #ffffff !important;
}

.freedom-precos-idiomas-inner {
    width: 100% !important;
    max-width: 1040px !important;

    margin: 0 auto !important;

    text-align: center !important;
}

.freedom-precos-idiomas h2 {
    margin: 0 0 9px 0 !important;
    padding: 0 !important;

    color: #173f7a !important;

    font-size: 30px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;

    text-align: center !important;
}

.freedom-precos-idiomas p {
    max-width: 680px !important;

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

    color: #53667c !important;

    font-size: 17px !important;
    line-height: 1.6 !important;

    text-align: center !important;
}

.freedom-precos-idiomas p strong {
    color: #173f7a !important;
    font-weight: 800 !important;
}


/* GRID */

.freedom-precos-idiomas-grid {
    display: grid !important;

    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;

    gap: 14px !important;

    width: 100% !important;
}


/* BOTÕES */

.freedom-precos-idioma {
    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 11px !important;

    min-height: 64px !important;

    padding: 12px 15px !important;

    box-sizing: border-box !important;

    background: #ffffff !important;

    border: 1px solid #d8e4f2 !important;
    border-radius: 10px !important;

    color: #173f7a !important;

    font-size: 16px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;

    text-decoration: none !important;

    box-shadow: 0 4px 14px rgba(23, 63, 122, 0.08) !important;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease !important;
}

.freedom-precos-idioma:hover {
    transform: translateY(-2px) !important;

    box-shadow: 0 7px 18px rgba(23, 63, 122, 0.13) !important;

    color: #173f7a !important;
}


/* INGLÊS EM DESTAQUE */

.freedom-precos-idioma-ativo {
    background: #173f7a !important;
    border-color: #173f7a !important;

    color: #ffffff !important;
}

.freedom-precos-idioma-ativo:hover {
    color: #ffffff !important;
}


/* BANDEIRAS */

.freedom-precos-bandeira {
    display: inline-block !important;

    font-size: 25px !important;
    line-height: 1 !important;
}


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

@media screen and (max-width: 767px) {

    .freedom-precos-idiomas {
        padding: 35px 18px 40px !important;
    }

    .freedom-precos-idiomas h2 {
        font-size: 27px !important;
    }

    .freedom-precos-idiomas p {
        margin-bottom: 24px !important;

        font-size: 16.5px !important;
        line-height: 1.55 !important;
    }

    .freedom-precos-idiomas-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;

        gap: 11px !important;
    }

    .freedom-precos-idioma {
        min-height: 58px !important;

        padding: 10px 8px !important;

        gap: 8px !important;

        font-size: 14px !important;
    }

    .freedom-precos-bandeira {
        font-size: 22px !important;
    }
}


@media screen and (max-width: 380px) {

    .freedom-precos-idioma {
        font-size: 13px !important;
    }

    .freedom-precos-bandeira {
        font-size: 20px !important;
    }

}


/* =========================================================
   FREEDOM — PÁGINA DE PREÇOS
   BLOCO 3 — CURSO DE INGLÊS
   ========================================================= */

.freedom-precos-curso {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 54px 30px 58px !important;
    background: #ffffff !important;
}

.freedom-precos-curso-inner {
    width: 100% !important;
    max-width: 1040px !important;
    margin: 0 auto !important;
}

.freedom-precos-curso-header {
    margin-bottom: 26px !important;
}

.freedom-precos-curso-titulo-linha {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 8px !important;
}

.freedom-precos-curso-bandeira {
    font-size: 30px !important;
    line-height: 1 !important;
}

.freedom-precos-curso h2 {
    margin: 0 !important;
    padding: 0 !important;
    color: #173f7a !important;
    font-size: 32px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
}

.freedom-precos-curso-header p {
    margin: 0 !important;
    padding: 0 !important;
    color: #53667c !important;
    font-size: 17px !important;
    line-height: 1.6 !important;
}

.freedom-precos-curso-header p strong {
    color: #173f7a !important;
    font-weight: 800 !important;
}


/* TABELA DESKTOP */

.freedom-precos-tabela {
    width: 100% !important;
    overflow: hidden !important;
    border: 1px solid #d8e4f2 !important;
    border-radius: 12px !important;
}

.freedom-precos-tabela-head,
.freedom-precos-tabela-row {
    display: grid !important;
    grid-template-columns: 1.2fr 1fr 1fr !important;
}

.freedom-precos-tabela-head {
    background: #173f7a !important;
    color: #ffffff !important;
}

.freedom-precos-tabela-head > div {
    padding: 16px 18px !important;
    border-right: 1px solid rgba(255,255,255,0.22) !important;
    font-size: 15px !important;
    line-height: 1.25 !important;
    font-weight: 800 !important;
    text-align: center !important;
}

.freedom-precos-tabela-head > div:first-child {
    text-align: left !important;
}

.freedom-precos-tabela-head > div:last-child {
    border-right: 0 !important;
}

.freedom-precos-tabela-head span {
    display: block !important;
    margin-top: 3px !important;
    font-size: 11px !important;
    line-height: 1.3 !important;
    font-weight: 400 !important;
    opacity: 0.9 !important;
}

.freedom-precos-tabela-row {
    background: #ffffff !important;
    border-top: 1px solid #e3ebf5 !important;
}

.freedom-precos-tabela-row:nth-child(odd) {
    background: #f8fbff !important;
}

.freedom-precos-tabela-row > div {
    padding: 16px 18px !important;
    border-right: 1px solid #e3ebf5 !important;
    color: #34485f !important;
    font-size: 16px !important;
    line-height: 1.4 !important;
    text-align: center !important;
}

.freedom-precos-tabela-row > div:first-child {
    color: #173f7a !important;
    font-weight: 700 !important;
    text-align: left !important;
}

.freedom-precos-tabela-row > div:last-child {
    border-right: 0 !important;
}

.freedom-precos-tabela-row strong {
    color: #173f7a !important;
    font-size: 17px !important;
    font-weight: 800 !important;
}


/* MOBILE CARDS */

.freedom-precos-cards-mobile {
    display: none !important;
}


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

@media screen and (max-width: 767px) {

    .freedom-precos-curso {
        padding: 42px 18px 46px !important;
    }

    .freedom-precos-curso-titulo-linha {
        gap: 10px !important;
    }

    .freedom-precos-curso-bandeira {
        font-size: 27px !important;
    }

    .freedom-precos-curso h2 {
        font-size: 28px !important;
    }

    .freedom-precos-curso-header p {
        font-size: 16.5px !important;
        line-height: 1.55 !important;
    }

    .freedom-precos-tabela-desktop {
        display: none !important;
    }

    .freedom-precos-cards-mobile {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .freedom-precos-card-mobile {
        padding: 20px !important;
        background: #ffffff !important;
        border: 1px solid #d8e4f2 !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 14px rgba(23, 63, 122, 0.07) !important;
    }

    .freedom-precos-card-mobile h3 {
        margin: 0 0 16px 0 !important;
        padding: 0 0 12px 0 !important;
        border-bottom: 1px solid #e3ebf5 !important;

        color: #173f7a !important;
        font-size: 20px !important;
        line-height: 1.3 !important;
        font-weight: 800 !important;
    }

    .freedom-precos-card-linha {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 15px !important;

        padding: 7px 0 !important;

        color: #53667c !important;
        font-size: 15px !important;
        line-height: 1.4 !important;
    }

    .freedom-precos-card-linha strong {
        color: #34485f !important;
        font-size: 18px !important;
        font-weight: 800 !important;
        white-space: nowrap !important;
    }

    .freedom-precos-card-mensal {
        margin-top: 5px !important;
        padding-top: 12px !important;
        border-top: 1px dashed #d8e4f2 !important;
    }

    .freedom-precos-card-mensal strong {
        color: #173f7a !important;
        font-size: 21px !important;
    }

}


/* =========================================================
   FREEDOM — PREÇOS
   AJUSTES FINAIS MOBILE
   ========================================================= */

@media screen and (max-width: 767px) {

    /* HERO — aproveitar melhor a largura do celular */

    .freedom-precos-hero {
        padding: 38px 12px 38px !important;
    }

    .freedom-precos-hero-inner {
        max-width: 100% !important;
    }

    .freedom-precos-selo {
        max-width: 92% !important;
        box-sizing: border-box !important;

        margin-bottom: 17px !important;
        padding: 8px 14px !important;

        font-size: 11px !important;
        line-height: 1.3 !important;
    }

    .freedom-precos-hero h1 {
        max-width: 330px !important;
        margin: 0 auto 17px auto !important;

        font-size: 31px !important;
        line-height: 1.08 !important;
    }

    .freedom-precos-intro {
        max-width: 340px !important;

        margin-left: auto !important;
        margin-right: auto !important;
        margin-bottom: 12px !important;

        font-size: 16.5px !important;
        line-height: 1.52 !important;
    }

    .freedom-precos-destaque {
        margin-top: 23px !important;
        gap: 10px !important;

        font-size: 17px !important;
    }


    /* CARDS DOS PREÇOS */

    .freedom-precos-card-mobile {
        padding: 18px 17px !important;
    }

    .freedom-precos-card-mobile h3 {
        margin-bottom: 13px !important;
        padding-bottom: 11px !important;

        font-size: 19px !important;
    }

    .freedom-precos-card-linha {
        display: grid !important;

        grid-template-columns: minmax(115px, 1fr) auto !important;

        align-items: center !important;

        gap: 12px !important;

        padding: 8px 0 !important;

        font-size: 15px !important;
    }

    .freedom-precos-card-linha > span {
        display: block !important;

        line-height: 1.3 !important;

        text-align: left !important;

        white-space: normal !important;
    }

    .freedom-precos-card-linha > strong {
        text-align: right !important;

        white-space: nowrap !important;
    }

    .freedom-precos-card-mensal strong {
        font-size: 20px !important;
    }

}


/* Celulares mais estreitos */

@media screen and (max-width: 400px) {

    .freedom-precos-hero {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .freedom-precos-hero h1 {
        max-width: 310px !important;

        font-size: 29px !important;
    }

    .freedom-precos-intro {
        max-width: 315px !important;

        font-size: 16px !important;
    }

    .freedom-precos-card-linha {
        grid-template-columns: minmax(105px, 1fr) auto !important;
    }

}


/* =========================================================
   FREEDOM — PÁGINA DE PREÇOS
   BLOCO 7 — O QUE ESTÁ INCLUÍDO
   ========================================================= */

.freedom-precos-incluso {
    width: 100% !important;
    box-sizing: border-box !important;

    padding: 58px 30px !important;

    background: #eef5ff !important;

    border-top: 1px solid #dce8f7 !important;
    border-bottom: 1px solid #dce8f7 !important;
}

.freedom-precos-incluso-inner {
    display: grid !important;

    grid-template-columns: 100px minmax(0, 1fr) !important;

    gap: 34px !important;

    width: 100% !important;
    max-width: 1040px !important;

    margin: 0 auto !important;

    align-items: start !important;
}


/* ÍCONE */

.freedom-precos-incluso-icon {
    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    width: 86px !important;
    height: 86px !important;

    margin-top: 3px !important;

    background: #173f7a !important;
    color: #ffffff !important;

    border-radius: 50% !important;

    font-size: 38px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
}


/* TÍTULO E INTRODUÇÃO */

.freedom-precos-incluso-conteudo h2 {
    margin: 0 0 12px 0 !important;
    padding: 0 !important;

    color: #173f7a !important;

    font-size: 32px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
}

.freedom-precos-incluso-intro {
    max-width: 760px !important;

    margin: 0 0 28px 0 !important;
    padding: 0 !important;

    color: #53667c !important;

    font-size: 17px !important;
    line-height: 1.65 !important;
}

.freedom-precos-incluso-intro strong {
    color: #173f7a !important;
    font-weight: 800 !important;
}


/* 4 ITENS */

.freedom-precos-incluso-grid {
    display: grid !important;

    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;

    gap: 12px !important;

    width: 100% !important;
}

.freedom-precos-incluso-item {
    display: flex !important;
    flex-direction: column !important;

    align-items: flex-start !important;

    gap: 11px !important;

    min-width: 0 !important;

    padding: 19px 17px !important;

    background: #ffffff !important;

    border: 1px solid #d8e4f2 !important;
    border-radius: 12px !important;

    box-sizing: border-box !important;
}

.freedom-precos-incluso-numero {
    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;

    background: #173f7a !important;
    color: #ffffff !important;

    border-radius: 50% !important;

    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
}

.freedom-precos-incluso-item > div {
    min-width: 0 !important;
}

.freedom-precos-incluso-item strong {
    display: block !important;

    margin-bottom: 5px !important;

    color: #173f7a !important;

    font-size: 16px !important;
    line-height: 1.35 !important;
    font-weight: 800 !important;
}

.freedom-precos-incluso-item div span {
    display: block !important;

    color: #617286 !important;

    font-size: 14px !important;
    line-height: 1.5 !important;
}


/* OBSERVAÇÃO */

.freedom-precos-incluso-observacao {
    margin-top: 20px !important;
    padding: 16px 20px !important;

    background: rgba(255, 255, 255, 0.78) !important;

    border-left: 4px solid #173f7a !important;
    border-radius: 6px !important;

    color: #53667c !important;

    font-size: 16px !important;
    line-height: 1.55 !important;
}

.freedom-precos-incluso-observacao strong {
    color: #173f7a !important;
    font-weight: 800 !important;
}


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

@media screen and (max-width: 767px) {

    .freedom-precos-incluso {
        padding: 42px 18px !important;
    }

    .freedom-precos-incluso-inner {
        display: block !important;
    }

    .freedom-precos-incluso-icon {
        width: 64px !important;
        height: 64px !important;

        margin: 0 auto 20px auto !important;

        font-size: 29px !important;
    }

    .freedom-precos-incluso-conteudo {
        text-align: center !important;
    }

    .freedom-precos-incluso-conteudo h2 {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }

    .freedom-precos-incluso-intro {
        margin: 0 auto 24px auto !important;

        font-size: 16.5px !important;
        line-height: 1.55 !important;
    }

    .freedom-precos-incluso-grid {
        grid-template-columns: 1fr !important;

        gap: 11px !important;

        text-align: left !important;
    }

    .freedom-precos-incluso-item {
        display: grid !important;

        grid-template-columns: 38px minmax(0, 1fr) !important;

        gap: 12px !important;

        padding: 17px !important;
    }

    .freedom-precos-incluso-item strong {
        font-size: 16px !important;
    }

    .freedom-precos-incluso-item div span {
        font-size: 14.5px !important;
    }

    .freedom-precos-incluso-observacao {
        margin-top: 17px !important;

        padding: 15px 16px !important;

        font-size: 15.5px !important;

        text-align: left !important;
    }

}

/* =========================================================
   FREEDOM — PÁGINA DE PREÇOS
   BLOCO 8 — CONDIÇÕES, PACOTES E DESCONTOS
   ========================================================= */

.freedom-precos-vantagens {
    width: 100% !important;
    box-sizing: border-box !important;

    padding: 58px 30px 62px !important;

    background: #ffffff !important;
}

.freedom-precos-vantagens-inner {
    width: 100% !important;
    max-width: 1040px !important;

    margin: 0 auto !important;
}


/* CABEÇALHO */

.freedom-precos-vantagens-header {
    text-align: center !important;

    margin-bottom: 30px !important;
}

.freedom-precos-vantagens-header h2 {
    margin: 0 0 10px 0 !important;
    padding: 0 !important;

    color: #173f7a !important;

    font-size: 32px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;

    text-align: center !important;
}

.freedom-precos-vantagens-header p {
    max-width: 720px !important;

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

    color: #53667c !important;

    font-size: 17px !important;
    line-height: 1.6 !important;

    text-align: center !important;
}

.freedom-precos-vantagens-header strong {
    color: #173f7a !important;
    font-weight: 800 !important;
}


/* GRID */

.freedom-precos-vantagens-grid {
    display: grid !important;

    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;

    gap: 16px !important;

    width: 100% !important;
}


/* CARDS */

.freedom-precos-vantagem-card {
    min-width: 0 !important;

    padding: 24px 21px !important;

    box-sizing: border-box !important;

    background: #ffffff !important;

    border: 1px solid #d8e4f2 !important;
    border-radius: 13px !important;

    box-shadow: 0 4px 14px rgba(23,63,122,0.06) !important;

    text-align: center !important;
}

.freedom-precos-vantagem-icon {
    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    width: 58px !important;
    height: 58px !important;

    margin: 0 auto 15px auto !important;

    background: #eef5ff !important;
    color: #173f7a !important;

    border-radius: 50% !important;

    font-size: 24px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
}

.freedom-precos-vantagem-card h3 {
    margin: 0 0 9px 0 !important;
    padding: 0 !important;

    color: #173f7a !important;

    font-size: 18px !important;
    line-height: 1.3 !important;
    font-weight: 800 !important;

    text-align: center !important;
}

.freedom-precos-vantagem-card p {
    margin: 0 !important;
    padding: 0 !important;

    color: #617286 !important;

    font-size: 14.5px !important;
    line-height: 1.55 !important;

    text-align: center !important;
}

.freedom-precos-vantagem-card p strong {
    color: #173f7a !important;
    font-weight: 800 !important;
}


/* OBSERVAÇÃO */

.freedom-precos-vantagens-observacao {
    margin-top: 22px !important;

    padding: 16px 20px !important;

    background: #f8fbff !important;

    border-left: 4px solid #173f7a !important;
    border-radius: 7px !important;

    color: #53667c !important;

    font-size: 15.5px !important;
    line-height: 1.55 !important;

    text-align: center !important;
}


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

@media screen and (max-width: 767px) {

    .freedom-precos-vantagens {
        padding: 42px 18px 46px !important;
    }

    .freedom-precos-vantagens-header {
        margin-bottom: 24px !important;
    }

    .freedom-precos-vantagens-header h2 {
        font-size: 28px !important;
    }

    .freedom-precos-vantagens-header p {
        font-size: 16.5px !important;
        line-height: 1.55 !important;
    }

    .freedom-precos-vantagens-grid {
        grid-template-columns: 1fr !important;

        gap: 12px !important;
    }

    .freedom-precos-vantagem-card {
        padding: 20px 18px !important;
    }

    .freedom-precos-vantagem-icon {
        width: 54px !important;
        height: 54px !important;

        margin-bottom: 13px !important;

        font-size: 22px !important;
    }

    .freedom-precos-vantagem-card h3 {
        font-size: 18px !important;
    }

    .freedom-precos-vantagem-card p {
        font-size: 14.5px !important;
    }

    .freedom-precos-vantagens-observacao {
        margin-top: 17px !important;

        padding: 15px 16px !important;

        font-size: 15px !important;

        text-align: left !important;
    }

}

/* =========================================================
   FREEDOM — PÁGINA DE PREÇOS
   BLOCO 9 — FORMAS DE PAGAMENTO
   ========================================================= */

.freedom-precos-pagamento {
    width: 100% !important;
    box-sizing: border-box !important;

    padding: 58px 30px 62px !important;

    background: #eef5ff !important;

    border-top: 1px solid #dce8f7 !important;
    border-bottom: 1px solid #dce8f7 !important;
}

.freedom-precos-pagamento-inner {
    width: 100% !important;
    max-width: 1100px !important;

    margin: 0 auto !important;
}

.freedom-precos-pagamento-header {
    margin-bottom: 28px !important;

    text-align: center !important;
}

.freedom-precos-pagamento-header h2 {
    margin: 0 0 10px 0 !important;
    padding: 0 !important;

    color: #173f7a !important;

    font-size: 32px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;

    text-align: center !important;
}

.freedom-precos-pagamento-header p {
    max-width: 680px !important;

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

    color: #53667c !important;

    font-size: 17px !important;
    line-height: 1.6 !important;

    text-align: center !important;
}

.freedom-precos-pagamento-header strong {
    color: #173f7a !important;
    font-weight: 800 !important;
}

.freedom-precos-pagamento-picture {
    display: block !important;

    width: 100% !important;
}

.freedom-precos-pagamento-img {
    display: block !important;

    width: 100% !important;
    height: auto !important;

    margin: 0 auto !important;

    border-radius: 14px !important;

    box-shadow: 0 5px 18px rgba(23, 63, 122, 0.08) !important;
}


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

@media screen and (max-width: 767px) {

    .freedom-precos-pagamento {
        padding: 42px 14px 46px !important;
    }

    .freedom-precos-pagamento-header {
        margin-bottom: 22px !important;
    }

    .freedom-precos-pagamento-header h2 {
        font-size: 28px !important;
    }

    .freedom-precos-pagamento-header p {
        max-width: 340px !important;

        font-size: 16.5px !important;
        line-height: 1.55 !important;
    }

    .freedom-precos-pagamento-img {
        width: 100% !important;

        border-radius: 10px !important;
    }

}

/* =========================================================
   CORREÇÃO MOBILE — BLOCO 7
   O QUE ESTÁ INCLUÍDO NO PRIMEIRO MÊS
   ========================================================= */

@media screen and (max-width: 767px) {

    .freedom-precos-incluso-inner {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .freedom-precos-incluso-conteudo {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .freedom-precos-incluso-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 12px !important;
    }

    .freedom-precos-incluso-card {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        height: auto !important;
        min-height: 0 !important;
        box-sizing: border-box !important;
        padding: 20px !important;
    }

    .freedom-precos-incluso-card h3 {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;

        margin: 12px 0 7px 0 !important;

        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: normal !important;

        font-size: 18px !important;
        line-height: 1.3 !important;
    }

    .freedom-precos-incluso-card p {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;

        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: normal !important;

        font-size: 15px !important;
        line-height: 1.5 !important;
    }

}


/* =========================================================
   CORREÇÃO DEFINITIVA MOBILE — BLOCO 7
   ========================================================= */

@media screen and (max-width: 767px) {

    .freedom-precos-incluso-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;

        width: 100% !important;
        max-width: 100% !important;
    }

    .freedom-precos-incluso-item {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        height: auto !important;
        min-height: 0 !important;

        padding: 20px !important;

        box-sizing: border-box !important;

        text-align: left !important;
    }

    .freedom-precos-incluso-numero {
        display: flex !important;

        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;

        margin: 0 0 14px 0 !important;
    }

    .freedom-precos-incluso-item > div {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

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

    .freedom-precos-incluso-item strong {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 0 7px 0 !important;
        padding: 0 !important;

        color: #173f7a !important;

        font-size: 18px !important;
        line-height: 1.3 !important;
        font-weight: 800 !important;

        text-align: left !important;

        white-space: normal !important;
        word-break: keep-all !important;
        overflow-wrap: normal !important;
        hyphens: none !important;
    }

    .freedom-precos-incluso-item div span {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

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

        color: #617286 !important;

        font-size: 15.5px !important;
        line-height: 1.5 !important;

        text-align: left !important;

        white-space: normal !important;
        word-break: keep-all !important;
        overflow-wrap: normal !important;
        hyphens: none !important;
    }

}


/* =========================================================
   FREEDOM — CORREÇÃO FINAL FORMAS DE PAGAMENTO MOBILE
   ========================================================= */

@media screen and (max-width: 767px) {

    /* Esconde definitivamente a imagem horizontal */
    .freedom-precos-pagamento .freedom-pagamento-desktop {
        display: none !important;
        visibility: hidden !important;
        width: 0 !important;
        height: 0 !important;
        max-width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        opacity: 0 !important;
        overflow: hidden !important;
    }

    /* Mantém somente a imagem criada para celular */
    .freedom-precos-pagamento .freedom-pagamento-mobile {
        display: block !important;
        visibility: visible !important;

        width: 100% !important;
        max-width: 430px !important;
        height: auto !important;

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

        opacity: 1 !important;
    }

}


/* =========================================================
   FREEDOM — FORMAS DE PAGAMENTO
   EXIBIÇÃO CORRETA DESKTOP / MOBILE
   ========================================================= */

/* DESKTOP E TABLET */
@media screen and (min-width: 768px) {

    .freedom-precos-pagamento .freedom-pagamento-desktop {
        display: block !important;
        visibility: visible !important;

        width: 100% !important;
        max-width: 1100px !important;
        height: auto !important;

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

        opacity: 1 !important;
    }

    .freedom-precos-pagamento .freedom-pagamento-mobile {
        display: none !important;
        visibility: hidden !important;

        width: 0 !important;
        height: 0 !important;
        max-width: 0 !important;

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

        opacity: 0 !important;
        overflow: hidden !important;
    }

}


/* CELULAR */
@media screen and (max-width: 767px) {

    .freedom-precos-pagamento .freedom-pagamento-desktop {
        display: none !important;
        visibility: hidden !important;

        width: 0 !important;
        height: 0 !important;
        max-width: 0 !important;

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

        opacity: 0 !important;
        overflow: hidden !important;
    }

    .freedom-precos-pagamento .freedom-pagamento-mobile {
        display: block !important;
        visibility: visible !important;

        width: 100% !important;
        max-width: 430px !important;
        height: auto !important;

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

        opacity: 1 !important;
    }

}



/* =========================================================
   FREEDOM — BLOCO 1
   CORREÇÃO DEFINITIVA DESKTOP / MOBILE
   ========================================================= */

/* DESKTOP */
@media screen and (min-width: 768px) {

    .freedom-precos-abertura
    img.freedom-precos-abertura-desktop {
        display: block !important;
        visibility: visible !important;
        width: 100% !important;
        max-width: 1200px !important;
        height: auto !important;
        margin: 0 auto !important;
        opacity: 1 !important;
    }

    .freedom-precos-abertura
    img.freedom-precos-abertura-mobile {
        display: none !important;
        visibility: hidden !important;
        width: 0 !important;
        height: 0 !important;
        max-width: 0 !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        opacity: 0 !important;
        overflow: hidden !important;
    }
}


/* CELULAR */
@media screen and (max-width: 767px) {

    .freedom-precos-abertura
    img.freedom-precos-abertura-desktop {
        display: none !important;
        visibility: hidden !important;
        width: 0 !important;
        height: 0 !important;
        max-width: 0 !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        opacity: 0 !important;
        overflow: hidden !important;
    }

    .freedom-precos-abertura
    img.freedom-precos-abertura-mobile {
        display: block !important;
        visibility: visible !important;
        width: 100% !important;
        max-width: 430px !important;
        height: auto !important;
        margin: 0 auto !important;
        padding: 0 !important;
        opacity: 1 !important;
    }
}


/* =========================================================
   FREEDOM — NOVA ÁREA INTERATIVA DE PREÇOS
   ========================================================= */

.freedom-price-switcher {
    width: 100% !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
    padding: 45px 25px 55px !important;
    box-sizing: border-box !important;
}

/* ESCONDE OS RADIOS */

.freedom-price-switcher > input {
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
}


/* CABEÇALHO */

.freedom-price-switcher-header {
    text-align: center !important;
    margin-bottom: 38px !important;
}

.freedom-price-switcher-header h2 {
    margin: 0 0 8px !important;
    color: #173f7a !important;
    font-size: 32px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
}

.freedom-price-switcher-header p {
    margin: 0 auto 27px !important;
    max-width: 700px !important;
    color: #53667c !important;
    font-size: 17px !important;
    line-height: 1.6 !important;
}

.freedom-price-switcher-header strong {
    color: #173f7a !important;
}


/* BOTÕES */

.freedom-price-tabs {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 14px !important;
}

.freedom-price-tab {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;

    min-height: 78px !important;
    padding: 8px 15px !important;

    background: #ffffff !important;
    border: 1px solid #d8e4f2 !important;
    border-radius: 12px !important;

    color: #173f7a !important;
    font-size: 15px !important;
    font-weight: 800 !important;

    cursor: pointer !important;

    box-shadow: 0 4px 14px rgba(23,63,122,.07) !important;
}

.freedom-price-tab img {
    width: 60px !important;
    height: 50px !important;
    object-fit: contain !important;
}


/* BOTÃO ATIVO */

#freedom-tab-ingles:checked ~ .freedom-price-switcher-header .freedom-tab-ingles,
#freedom-tab-japones:checked ~ .freedom-price-switcher-header .freedom-tab-japones,
#freedom-tab-portugues:checked ~ .freedom-price-switcher-header .freedom-tab-portugues,
#freedom-tab-espanhol:checked ~ .freedom-price-switcher-header .freedom-tab-espanhol {
    background: #173f7a !important;
    color: #ffffff !important;
    border-color: #173f7a !important;
}


/* PAINÉIS */

.freedom-price-panel {
    display: none !important;
}

#freedom-tab-ingles:checked ~ .freedom-panel-ingles {
    display: block !important;
}

#freedom-tab-japones:checked ~ .freedom-panel-japones {
    display: block !important;
}

#freedom-tab-portugues:checked ~ .freedom-panel-portugues {
    display: block !important;
}

#freedom-tab-espanhol:checked ~ .freedom-panel-espanhol {
    display: block !important;
}


/* TÍTULO */

.freedom-price-panel-title {
    margin-bottom: 24px !important;
}

.freedom-price-panel-title h2 {
    margin: 0 0 7px !important;
    color: #173f7a !important;
    font-size: 30px !important;
    font-weight: 800 !important;
}

.freedom-price-panel-title p {
    margin: 0 !important;
    color: #53667c !important;
    font-size: 16.5px !important;
}


/* CARDS PRINCIPAIS */

.freedom-price-feature-card {
    display: grid !important;
    grid-template-columns: 190px minmax(0,1fr) 210px !important;
    align-items: center !important;

    gap: 25px !important;

    margin-bottom: 18px !important;
    padding: 22px 25px !important;

    background: #ffffff !important;
    border: 1px solid #d8e4f2 !important;
    border-radius: 16px !important;

    box-shadow: 0 5px 18px rgba(23,63,122,.07) !important;
}

.freedom-price-feature-image img {
    display: block !important;
    width: 100% !important;
    max-height: 170px !important;
    object-fit: contain !important;
}

.freedom-price-type {
    display: inline-block !important;
    margin-bottom: 6px !important;

    color: #d73333 !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: .8px !important;
}

.freedom-price-feature-info h3 {
    margin: 0 0 8px !important;
    color: #173f7a !important;
    font-size: 22px !important;
    font-weight: 800 !important;
}

.freedom-price-feature-info p {
    margin: 0 !important;
    color: #617286 !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
}


/* PREÇOS */

.freedom-price-feature-values {
    border-left: 1px solid #dce8f7 !important;
    padding-left: 24px !important;
}

.freedom-price-feature-values span {
    display: block !important;
    color: #66778a !important;
    font-size: 13px !important;
}

.freedom-price-first {
    margin-bottom: 14px !important;
}

.freedom-price-first strong {
    display: block !important;
    margin-top: 2px !important;

    color: #34485f !important;
    font-size: 20px !important;
}

.freedom-price-monthly {
    padding-top: 12px !important;
    border-top: 1px dashed #d8e4f2 !important;
}

.freedom-price-monthly strong {
    display: inline-block !important;
    margin-top: 3px !important;

    color: #173f7a !important;
    font-size: 28px !important;
    font-weight: 800 !important;
}

.freedom-price-monthly small {
    color: #66778a !important;
    font-size: 13px !important;
}


/* OUTRAS MODALIDADES */

.freedom-price-other-title {
    margin: 35px 0 18px !important;
}

.freedom-price-other-title h3 {
    color: #173f7a !important;
    font-size: 23px !important;
    font-weight: 800 !important;
}

.freedom-price-other-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
    gap: 14px !important;
}

.freedom-price-small-card {
    padding: 20px !important;

    background: #f8fbff !important;
    border: 1px solid #d8e4f2 !important;
    border-radius: 12px !important;
}

.freedom-price-small-card h4 {
    margin: 0 0 15px !important;
    color: #173f7a !important;
    font-size: 18px !important;
    font-weight: 800 !important;
}

.freedom-price-small-card > div {
    display: flex !important;
    justify-content: space-between !important;
    gap: 15px !important;

    padding: 7px 0 !important;

    color: #617286 !important;
    font-size: 14px !important;
}

.freedom-price-small-card strong {
    color: #34485f !important;
    white-space: nowrap !important;
}

.freedom-small-monthly {
    margin-top: 5px !important;
    padding-top: 12px !important;
    border-top: 1px dashed #d8e4f2 !important;
}

.freedom-small-monthly strong {
    color: #173f7a !important;
    font-size: 17px !important;
}


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

@media screen and (max-width:767px) {

    .freedom-price-switcher {
        padding: 35px 14px 42px !important;
    }

    .freedom-price-switcher-header h2 {
        font-size: 27px !important;
    }

    .freedom-price-switcher-header p {
        font-size: 16px !important;
    }

    .freedom-price-tabs {
        grid-template-columns: repeat(2,1fr) !important;
        gap: 10px !important;
    }

    .freedom-price-tab {
        min-height: 68px !important;
        padding: 7px 8px !important;
        gap: 7px !important;

        font-size: 13px !important;
    }

    .freedom-price-tab img {
        width: 46px !important;
        height: 42px !important;
    }

    .freedom-price-panel-title h2 {
        font-size: 27px !important;
    }


    /* PRINCIPAIS */

    .freedom-price-feature-card {
        display: block !important;

        padding: 20px 17px !important;
        margin-bottom: 15px !important;

        text-align: center !important;
    }

    .freedom-price-feature-image img {
        max-width: 190px !important;
        max-height: 165px !important;

        margin: 0 auto 15px !important;
    }

    .freedom-price-feature-info h3 {
        font-size: 21px !important;
    }

    .freedom-price-feature-info p {
        font-size: 15px !important;
        line-height: 1.5 !important;
    }

    .freedom-price-feature-values {
        margin-top: 18px !important;
        padding: 16px 0 0 !important;

        border-left: 0 !important;
        border-top: 1px solid #dce8f7 !important;
    }

    .freedom-price-first strong {
        font-size: 20px !important;
    }

    .freedom-price-monthly strong {
        font-size: 27px !important;
    }


    /* OUTRAS */

    .freedom-price-other-grid {
        grid-template-columns: 1fr !important;
        gap: 11px !important;
    }

    .freedom-price-small-card {
        padding: 18px !important;
    }

}


/* =========================================================
   FREEDOM — ESCONDER RADIOS DO SELETOR DE IDIOMAS
   ========================================================= */

.freedom-price-switcher > input[type="radio"] {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    overflow: hidden !important;
    pointer-events: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
}

/* impede que o tema crie espaço para os radios */
.freedom-price-switcher > input[type="radio"]::before,
.freedom-price-switcher > input[type="radio"]::after {
    display: none !important;
    content: none !important;
}


/* =========================================================
   FREEDOM — CORREÇÃO NOVO SELETOR DE PREÇOS
   ========================================================= */


/* BOTÕES */

.freedom-price-switcher .freedom-price-tab {
    appearance: none !important;
    -webkit-appearance: none !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 12px !important;

    width: 100% !important;
    min-height: 82px !important;

    padding: 10px 15px !important;

    background: #ffffff !important;

    border: 1px solid #d8e4f2 !important;
    border-radius: 12px !important;

    color: #173f7a !important;

    font-family: inherit !important;
    font-size: 15px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;

    cursor: pointer !important;

    box-shadow: 0 4px 14px rgba(23,63,122,0.07) !important;
}


/* BANDEIRAS */

.freedom-price-switcher .freedom-price-tab img {
    display: block !important;

    width: 62px !important;
    height: 50px !important;

    object-fit: contain !important;

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


/* BOTÃO SELECIONADO */

.freedom-price-switcher
.freedom-price-tab.freedom-tab-ativo {
    background: #173f7a !important;
    border-color: #173f7a !important;
    color: #ffffff !important;
}


/* PAINÉIS */

.freedom-price-switcher .freedom-price-panel {
    display: none !important;

    width: 100% !important;

    margin-top: 0 !important;
}


/* INGLÊS VISÍVEL COMO SEGURANÇA ANTES DO JS */

.freedom-price-switcher .freedom-panel-ingles {
    display: block !important;
}


/* =========================================================
   CARDS PRINCIPAIS
   ========================================================= */

.freedom-price-switcher .freedom-price-feature-card {
    display: grid !important;

    grid-template-columns:
        190px minmax(0, 1fr) 220px !important;

    align-items: center !important;

    gap: 26px !important;

    width: 100% !important;

    margin: 0 0 18px 0 !important;
    padding: 22px 25px !important;

    box-sizing: border-box !important;

    background: #ffffff !important;

    border: 1px solid #d8e4f2 !important;
    border-radius: 16px !important;

    box-shadow:
        0 5px 18px rgba(23,63,122,0.07) !important;
}


/* IMAGEM */

.freedom-price-switcher
.freedom-price-feature-image {
    width: 100% !important;
    min-width: 0 !important;

    text-align: center !important;
}

.freedom-price-switcher
.freedom-price-feature-image img {
    display: block !important;

    width: 100% !important;
    max-width: 180px !important;
    max-height: 175px !important;

    margin: 0 auto !important;

    object-fit: contain !important;
}


/* DESCRIÇÃO */

.freedom-price-switcher
.freedom-price-type {
    display: block !important;

    margin: 0 0 5px 0 !important;

    color: #d53030 !important;

    font-size: 12px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    letter-spacing: 0.7px !important;
}

.freedom-price-switcher
.freedom-price-feature-info h3 {
    margin: 0 0 8px 0 !important;

    color: #173f7a !important;

    font-size: 23px !important;
    line-height: 1.25 !important;
    font-weight: 800 !important;
}

.freedom-price-switcher
.freedom-price-feature-info p {
    margin: 0 !important;

    color: #53667c !important;

    font-size: 15.5px !important;
    line-height: 1.55 !important;
}


/* PREÇOS */

.freedom-price-switcher
.freedom-price-feature-values {
    width: 100% !important;

    padding-left: 24px !important;

    box-sizing: border-box !important;

    border-left: 1px solid #dce8f7 !important;
}

.freedom-price-switcher
.freedom-price-feature-values span {
    display: block !important;

    color: #66778a !important;

    font-size: 13px !important;
    line-height: 1.3 !important;
}

.freedom-price-switcher
.freedom-price-first {
    margin: 0 0 14px 0 !important;
}

.freedom-price-switcher
.freedom-price-first strong {
    display: block !important;

    margin-top: 3px !important;

    color: #34485f !important;

    font-size: 21px !important;
    font-weight: 800 !important;
}

.freedom-price-switcher
.freedom-price-monthly {
    padding-top: 13px !important;

    border-top: 1px dashed #d8e4f2 !important;
}

.freedom-price-switcher
.freedom-price-monthly strong {
    display: inline-block !important;

    margin-top: 3px !important;

    color: #173f7a !important;

    font-size: 29px !important;
    line-height: 1.1 !important;
    font-weight: 800 !important;
}


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

@media screen and (max-width: 767px) {

    .freedom-price-switcher .freedom-price-tabs {
        display: grid !important;

        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        gap: 10px !important;
    }

    .freedom-price-switcher .freedom-price-tab {
        min-height: 67px !important;

        padding: 8px 6px !important;

        gap: 6px !important;

        font-size: 13px !important;
    }

    .freedom-price-switcher
    .freedom-price-tab img {
        width: 44px !important;
        height: 40px !important;
    }


    /* CARDS */

    .freedom-price-switcher
    .freedom-price-feature-card {
        display: block !important;

        width: 100% !important;

        padding: 20px 17px !important;

        text-align: center !important;
    }

    .freedom-price-switcher
    .freedom-price-feature-image img {
        width: auto !important;
        max-width: 200px !important;
        max-height: 180px !important;

        margin: 0 auto 15px auto !important;
    }

    .freedom-price-switcher
    .freedom-price-feature-info h3 {
        font-size: 21px !important;
    }

    .freedom-price-switcher
    .freedom-price-feature-info p {
        font-size: 15.5px !important;
        line-height: 1.5 !important;
    }

    .freedom-price-switcher
    .freedom-price-feature-values {
        margin-top: 18px !important;

        padding: 16px 0 0 0 !important;

        border-left: 0 !important;
        border-top: 1px solid #dce8f7 !important;

        text-align: center !important;
    }

    .freedom-price-switcher
    .freedom-price-monthly strong {
        font-size: 28px !important;
    }

}


/* =========================================================
   FREEDOM — OUTRAS MODALIDADES
   CORREÇÃO DE LARGURA / ALINHAMENTO
   ========================================================= */

.freedom-price-switcher .freedom-price-other-title {
    width: 100% !important;
    margin: 30px 0 18px 0 !important;
}

.freedom-price-switcher .freedom-price-other-title h3 {
    margin: 0 !important;
    padding: 0 !important;

    color: #173f7a !important;

    font-size: 22px !important;
    line-height: 1.3 !important;
    font-weight: 800 !important;
}

.freedom-price-switcher .freedom-price-other-grid {
    display: grid !important;

    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;

    width: 100% !important;
    max-width: 100% !important;

    gap: 14px !important;

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

.freedom-price-switcher .freedom-price-small-card {
    display: block !important;

    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;

    margin: 0 !important;
    padding: 20px !important;

    box-sizing: border-box !important;

    background: #f8fbff !important;

    border: 1px solid #d8e4f2 !important;
    border-radius: 12px !important;
}


/* MOBILE */

@media screen and (max-width: 767px) {

    .freedom-price-switcher .freedom-price-other-grid {
        grid-template-columns: 1fr !important;

        gap: 11px !important;
    }

}


/* =========================================================
   FREEDOM — OUTRAS MODALIDADES DE INGLÊS
   CORREÇÃO FINAL DESKTOP / MOBILE
   ========================================================= */

.freedom-price-switcher .freedom-price-other-title {
    width: 100% !important;
    max-width: 100% !important;

    margin: 30px 0 18px 0 !important;
    padding: 0 !important;

    box-sizing: border-box !important;
}

.freedom-price-switcher .freedom-price-other-title h3 {
    margin: 0 !important;
    padding: 0 !important;

    color: #173f7a !important;

    font-size: 22px !important;
    line-height: 1.3 !important;
    font-weight: 800 !important;
}


/* =========================================================
   GRID DESKTOP
   ========================================================= */

.freedom-price-switcher .freedom-price-other-grid {
    display: grid !important;

    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;

    gap: 16px !important;

    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;

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

    box-sizing: border-box !important;

    float: none !important;
    clear: both !important;

    position: static !important;
    left: auto !important;
    right: auto !important;
}


/* =========================================================
   CARDS
   ========================================================= */

.freedom-price-switcher .freedom-price-small-card {
    display: block !important;

    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;

    margin: 0 !important;
    padding: 22px 24px !important;

    box-sizing: border-box !important;

    background: #f8fbff !important;

    border: 1px solid #d8e4f2 !important;
    border-radius: 13px !important;

    box-shadow: 0 4px 14px rgba(23, 63, 122, 0.05) !important;

    float: none !important;
    position: static !important;
}

.freedom-price-switcher .freedom-price-small-card h4 {
    margin: 0 0 15px 0 !important;
    padding: 0 !important;

    color: #173f7a !important;

    font-size: 18px !important;
    line-height: 1.3 !important;
    font-weight: 800 !important;
}

.freedom-price-switcher .freedom-price-small-card > div {
    display: flex !important;

    align-items: center !important;
    justify-content: space-between !important;

    gap: 18px !important;

    width: 100% !important;

    padding: 8px 0 !important;

    box-sizing: border-box !important;

    color: #617286 !important;

    font-size: 14px !important;
    line-height: 1.4 !important;
}

.freedom-price-switcher .freedom-price-small-card > div span {
    min-width: 0 !important;

    white-space: normal !important;
}

.freedom-price-switcher .freedom-price-small-card > div strong {
    color: #34485f !important;

    font-size: 16px !important;
    line-height: 1.3 !important;
    font-weight: 800 !important;

    text-align: right !important;

    white-space: nowrap !important;
}

.freedom-price-switcher .freedom-price-small-card .freedom-small-monthly {
    margin-top: 5px !important;
    padding-top: 13px !important;

    border-top: 1px dashed #d8e4f2 !important;
}

.freedom-price-switcher .freedom-price-small-card .freedom-small-monthly strong {
    color: #173f7a !important;

    font-size: 18px !important;
}


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

@media screen and (max-width: 767px) {

    .freedom-price-switcher .freedom-price-other-title {
        margin-top: 26px !important;
        margin-bottom: 14px !important;
    }

    .freedom-price-switcher .freedom-price-other-title h3 {
        font-size: 21px !important;
    }

    .freedom-price-switcher .freedom-price-other-grid {
        grid-template-columns: 1fr !important;

        gap: 11px !important;
    }

    .freedom-price-switcher .freedom-price-small-card {
        padding: 18px 17px !important;
    }

    .freedom-price-switcher .freedom-price-small-card h4 {
        font-size: 18px !important;
    }

    .freedom-price-switcher .freedom-price-small-card > div {
        font-size: 14.5px !important;
    }

    .freedom-price-switcher .freedom-price-small-card > div strong {
        font-size: 16px !important;
    }

    .freedom-price-switcher .freedom-price-small-card .freedom-small-monthly strong {
        font-size: 18px !important;
    }

}



/* =========================================================
   FREEDOM — PREÇOS
   CSS FINAL DE SOBRESCRITA
   NÃO APAGAR O CSS ANTIGO
   COLE ESTE BLOCO NO FINAL DE TUDO
   ========================================================= */


/* =========================================================
   ESTRUTURA PRINCIPAL
   ========================================================= */

.freedom-price-switcher {
    display: block !important;
    width: 100% !important;
    max-width: 1160px !important;
    margin: 0 auto !important;
    padding: 44px 22px 56px !important;
    box-sizing: border-box !important;
    float: none !important;
    clear: both !important;
    position: relative !important;
}


/* =========================================================
   CABEÇALHO
   ========================================================= */

.freedom-price-switcher .freedom-price-switcher-header {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 38px 0 !important;
    padding: 0 !important;
    text-align: center !important;
}

.freedom-price-switcher .freedom-price-switcher-header h2 {
    display: block !important;
    width: 100% !important;
    margin: 0 0 10px 0 !important;
    padding: 0 !important;

    color: #173f7a !important;

    font-size: 35px !important;
    line-height: 1.18 !important;
    font-weight: 800 !important;

    text-align: center !important;
}

.freedom-price-switcher .freedom-price-switcher-header p {
    display: block !important;
    width: 100% !important;
    max-width: 760px !important;

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

    color: #53667c !important;

    font-size: 19px !important;
    line-height: 1.6 !important;

    text-align: center !important;
}

.freedom-price-switcher .freedom-price-switcher-header strong {
    color: #173f7a !important;
    font-weight: 800 !important;
}


/* =========================================================
   BOTÕES DOS IDIOMAS
   ========================================================= */

.freedom-price-switcher .freedom-price-tabs {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 14px !important;

    width: 100% !important;
    max-width: 100% !important;

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

    float: none !important;
    clear: both !important;
}

.freedom-price-switcher .freedom-price-tab {
    appearance: none !important;
    -webkit-appearance: none !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 100% !important;
    min-width: 0 !important;
    min-height: 86px !important;

    gap: 11px !important;

    margin: 0 !important;
    padding: 10px 14px !important;

    box-sizing: border-box !important;

    background: #ffffff !important;
    color: #173f7a !important;

    border: 1px solid #d6e2f0 !important;
    border-radius: 13px !important;

    font-family: inherit !important;
    font-size: 17px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;

    text-align: center !important;
    text-decoration: none !important;

    cursor: pointer !important;

    box-shadow: 0 4px 14px rgba(23, 63, 122, 0.07) !important;

    float: none !important;
    position: relative !important;
}

.freedom-price-switcher .freedom-price-tab img {
    display: block !important;

    width: 62px !important;
    height: 52px !important;
    max-width: 62px !important;
    max-height: 52px !important;

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

    object-fit: contain !important;

    flex: 0 0 auto !important;
}

.freedom-price-switcher .freedom-price-tab span {
    display: inline-block !important;

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

    color: inherit !important;

    font-size: inherit !important;
    line-height: inherit !important;
    font-weight: 800 !important;
}

.freedom-price-switcher .freedom-price-tab.freedom-tab-ativo {
    background: #173f7a !important;
    border-color: #173f7a !important;
    color: #ffffff !important;
}


/* =========================================================
   PAINÉIS
   ========================================================= */

.freedom-price-switcher .freedom-price-panel {
    display: none !important;

    width: 100% !important;
    max-width: 100% !important;

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

    float: none !important;
    clear: both !important;

    box-sizing: border-box !important;
}

.freedom-price-switcher .freedom-panel-ingles {
    display: block !important;
}


/* =========================================================
   TÍTULO DO IDIOMA
   ========================================================= */

.freedom-price-switcher .freedom-price-panel-title {
    display: block !important;

    width: 100% !important;

    margin: 38px 0 24px 0 !important;
    padding: 0 !important;

    text-align: left !important;
}

.freedom-price-switcher .freedom-price-panel-title h2 {
    display: block !important;

    margin: 0 0 7px 0 !important;
    padding: 0 !important;

    color: #173f7a !important;

    font-size: 32px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;

    text-align: left !important;
}

.freedom-price-switcher .freedom-price-panel-title p {
    display: block !important;

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

    color: #53667c !important;

    font-size: 18.5px !important;
    line-height: 1.55 !important;

    text-align: left !important;
}


/* =========================================================
   CARD PRINCIPAL
   ========================================================= */

.freedom-price-switcher .freedom-price-card {
    display: grid !important;

    grid-template-columns:
        220px minmax(0, 1fr) 245px !important;

    align-items: center !important;

    gap: 30px !important;

    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;

    margin: 0 0 18px 0 !important;
    padding: 24px 28px !important;

    box-sizing: border-box !important;

    background: #ffffff !important;

    border: 1px solid #d8e4f2 !important;
    border-radius: 16px !important;

    box-shadow: 0 5px 18px rgba(23, 63, 122, 0.07) !important;

    float: none !important;
    clear: both !important;

    position: static !important;
    left: auto !important;
    right: auto !important;
}


/* =========================================================
   IMAGEM DO CARD
   ========================================================= */

.freedom-price-switcher .freedom-price-card-image {
    display: block !important;

    width: 100% !important;
    min-width: 0 !important;

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

    text-align: center !important;

    float: none !important;
}

.freedom-price-switcher .freedom-price-card-image img {
    display: block !important;

    width: 100% !important;
    max-width: 205px !important;
    height: auto !important;
    max-height: 190px !important;

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

    object-fit: contain !important;

    float: none !important;
}


/* =========================================================
   TEXTO DO CARD
   ========================================================= */

.freedom-price-switcher .freedom-price-card-content {
    display: block !important;

    width: 100% !important;
    min-width: 0 !important;

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

    text-align: left !important;

    float: none !important;
}

.freedom-price-switcher .freedom-price-label {
    display: block !important;

    width: 100% !important;

    margin: 0 0 7px 0 !important;
    padding: 0 !important;

    color: #d42e2e !important;

    font-size: 14px !important;
    line-height: 1.25 !important;
    font-weight: 800 !important;
    letter-spacing: 0.7px !important;

    text-align: left !important;
}

.freedom-price-switcher .freedom-price-card-content h3 {
    display: block !important;

    width: 100% !important;

    margin: 0 0 10px 0 !important;
    padding: 0 !important;

    color: #173f7a !important;

    font-size: 27px !important;
    line-height: 1.24 !important;
    font-weight: 800 !important;

    text-align: left !important;
}

.freedom-price-switcher .freedom-price-card-content p {
    display: block !important;

    width: 100% !important;

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

    color: #53667c !important;

    font-size: 18.5px !important;
    line-height: 1.58 !important;

    text-align: left !important;

    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
}


/* =========================================================
   PREÇOS
   ========================================================= */

.freedom-price-switcher .freedom-price-card-values {
    display: block !important;

    width: 100% !important;
    min-width: 0 !important;

    margin: 0 !important;
    padding: 0 0 0 27px !important;

    box-sizing: border-box !important;

    border-left: 1px solid #dce8f7 !important;

    text-align: left !important;

    float: none !important;
}

.freedom-price-switcher .freedom-price-card-values span {
    display: block !important;

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

    color: #5d6f83 !important;

    font-size: 16.5px !important;
    line-height: 1.35 !important;
    font-weight: 500 !important;
}

.freedom-price-switcher .freedom-price-value-first {
    display: block !important;

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

.freedom-price-switcher .freedom-price-value-first strong {
    display: block !important;

    margin: 4px 0 0 0 !important;
    padding: 0 !important;

    color: #34485f !important;

    font-size: 26px !important;
    line-height: 1.18 !important;
    font-weight: 800 !important;
}

.freedom-price-switcher .freedom-price-value-monthly {
    display: block !important;

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

    border-top: 1px dashed #d8e4f2 !important;
}

.freedom-price-switcher .freedom-price-value-monthly strong {
    display: inline-block !important;

    margin: 4px 2px 0 0 !important;
    padding: 0 !important;

    color: #173f7a !important;

    font-size: 33px !important;
    line-height: 1.1 !important;
    font-weight: 800 !important;
}

.freedom-price-switcher .freedom-price-value-monthly small {
    display: inline-block !important;

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

    color: #5d6f83 !important;

    font-size: 16px !important;
    line-height: 1.2 !important;
}


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

@media screen and (min-width: 768px) and (max-width: 1024px) {

    .freedom-price-switcher {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .freedom-price-switcher .freedom-price-card {
        grid-template-columns:
            180px minmax(0, 1fr) 210px !important;

        gap: 22px !important;

        padding: 22px !important;
    }

    .freedom-price-switcher .freedom-price-card-image img {
        max-width: 175px !important;
    }

    .freedom-price-switcher .freedom-price-card-content h3 {
        font-size: 24px !important;
    }

    .freedom-price-switcher .freedom-price-card-content p {
        font-size: 17px !important;
    }

    .freedom-price-switcher .freedom-price-card-values {
        padding-left: 20px !important;
    }
}


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

@media screen and (max-width: 767px) {

    .freedom-price-switcher {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 auto !important;
        padding: 34px 12px 44px !important;

        box-sizing: border-box !important;
    }


    /* CABEÇALHO */

    .freedom-price-switcher .freedom-price-switcher-header {
        margin-bottom: 30px !important;
    }

    .freedom-price-switcher .freedom-price-switcher-header h2 {
        font-size: 30px !important;
        line-height: 1.18 !important;
    }

    .freedom-price-switcher .freedom-price-switcher-header p {
        max-width: 350px !important;

        margin-bottom: 24px !important;

        font-size: 18px !important;
        line-height: 1.55 !important;
    }


    /* BOTÕES */

    .freedom-price-switcher .freedom-price-tabs {
        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        gap: 10px !important;
    }

    .freedom-price-switcher .freedom-price-tab {
        min-height: 74px !important;

        padding: 8px 6px !important;

        gap: 6px !important;

        font-size: 15px !important;
    }

    .freedom-price-switcher .freedom-price-tab img {
        width: 48px !important;
        height: 43px !important;
        max-width: 48px !important;
        max-height: 43px !important;
    }


    /* TÍTULO DO IDIOMA */

    .freedom-price-switcher .freedom-price-panel-title {
        margin: 30px 0 18px 0 !important;

        text-align: center !important;
    }

    .freedom-price-switcher .freedom-price-panel-title h2 {
        font-size: 28px !important;
        line-height: 1.2 !important;

        text-align: center !important;
    }

    .freedom-price-switcher .freedom-price-panel-title p {
        max-width: 340px !important;

        margin: 0 auto !important;

        font-size: 17.5px !important;
        line-height: 1.5 !important;

        text-align: center !important;
    }


    /* CARD */

    .freedom-price-switcher .freedom-price-card {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 0 15px 0 !important;
        padding: 21px 16px 23px !important;

        box-sizing: border-box !important;

        text-align: center !important;
    }


    /* IMAGEM */

    .freedom-price-switcher .freedom-price-card-image img {
        width: auto !important;
        max-width: 215px !important;
        max-height: 195px !important;

        margin: 0 auto 17px auto !important;
    }


    /* CONTEÚDO */

    .freedom-price-switcher .freedom-price-card-content {
        text-align: center !important;
    }

    .freedom-price-switcher .freedom-price-label {
        font-size: 14px !important;

        text-align: center !important;
    }

    .freedom-price-switcher .freedom-price-card-content h3 {
        font-size: 25px !important;
        line-height: 1.25 !important;

        text-align: center !important;
    }

    .freedom-price-switcher .freedom-price-card-content p {
        max-width: 350px !important;

        margin: 0 auto !important;

        font-size: 18px !important;
        line-height: 1.55 !important;

        text-align: center !important;
    }


    /* PREÇOS */

    .freedom-price-switcher .freedom-price-card-values {
        width: 100% !important;

        margin: 20px 0 0 0 !important;
        padding: 18px 0 0 0 !important;

        border-left: 0 !important;
        border-top: 1px solid #dce8f7 !important;

        text-align: center !important;
    }

    .freedom-price-switcher .freedom-price-card-values span {
        font-size: 17px !important;

        text-align: center !important;
    }

    .freedom-price-switcher .freedom-price-value-first strong {
        font-size: 26px !important;

        text-align: center !important;
    }

    .freedom-price-switcher .freedom-price-value-monthly {
        width: 100% !important;
        max-width: 310px !important;

        margin: 16px auto 0 auto !important;
        padding-top: 16px !important;

        text-align: center !important;
    }

    .freedom-price-switcher .freedom-price-value-monthly strong {
        font-size: 32px !important;
    }

    .freedom-price-switcher .freedom-price-value-monthly small {
        font-size: 16px !important;
    }

}


/* =========================================================
   CELULARES PEQUENOS
   ========================================================= */

@media screen and (max-width: 390px) {

    .freedom-price-switcher {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .freedom-price-switcher .freedom-price-switcher-header h2 {
        font-size: 28px !important;
    }

    .freedom-price-switcher .freedom-price-tab {
        font-size: 14px !important;
    }

    .freedom-price-switcher .freedom-price-tab img {
        width: 43px !important;
        height: 39px !important;
    }

    .freedom-price-switcher .freedom-price-card-content h3 {
        font-size: 23px !important;
    }

    .freedom-price-switcher .freedom-price-card-content p {
        font-size: 17.5px !important;
    }

}


/* =========================================================
   FREEDOM — CORREÇÃO FINAL DOS BOTÕES DE IDIOMA
   ========================================================= */

/* TEXTO DO BOTÃO ATIVO */
.freedom-price-switcher
.freedom-price-tab.freedom-tab-ativo,
.freedom-price-switcher
.freedom-price-tab.freedom-tab-ativo span {
    color: #ffffff !important;
}


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

@media screen and (max-width: 767px) {

    /* 4 BOTÕES, UM EMBAIXO DO OUTRO */
    .freedom-price-switcher .freedom-price-tabs {
        display: grid !important;
        grid-template-columns: 1fr !important;

        width: 100% !important;
        max-width: 360px !important;

        gap: 10px !important;

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

    /* CADA BOTÃO */
    .freedom-price-switcher .freedom-price-tab {
        display: flex !important;

        flex-direction: row !important;
        flex-wrap: nowrap !important;

        align-items: center !important;
        justify-content: flex-start !important;

        width: 100% !important;
        min-width: 0 !important;
        min-height: 76px !important;

        gap: 18px !important;

        margin: 0 !important;
        padding: 9px 24px !important;

        box-sizing: border-box !important;

        text-align: left !important;
    }

    /* BANDEIRA */
    .freedom-price-switcher .freedom-price-tab img {
        display: block !important;

        width: 68px !important;
        height: 55px !important;

        min-width: 68px !important;
        max-width: 68px !important;

        margin: 0 !important;

        object-fit: contain !important;

        flex: 0 0 68px !important;
    }

    /* NOME DO IDIOMA */
    .freedom-price-switcher .freedom-price-tab span {
        display: block !important;

        width: auto !important;
        min-width: 0 !important;

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

        font-size: 19px !important;
        line-height: 1.2 !important;
        font-weight: 800 !important;

        text-align: left !important;

        white-space: nowrap !important;
        word-break: keep-all !important;
        overflow-wrap: normal !important;

        flex: 1 1 auto !important;
    }

}


/* =========================================================
   FREEDOM — NOMES DOS IDIOMAS EM UMA LINHA NO DESKTOP
   ========================================================= */

@media screen and (min-width: 768px) {

    .freedom-price-switcher .freedom-price-tab {
        gap: 10px !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .freedom-price-switcher .freedom-price-tab span {
        white-space: nowrap !important;
        word-break: keep-all !important;
        overflow-wrap: normal !important;

        font-size: 16px !important;
        line-height: 1.2 !important;

        width: auto !important;
        min-width: max-content !important;
    }

    .freedom-price-switcher .freedom-price-tab img {
        width: 55px !important;
        height: 47px !important;
        max-width: 55px !important;
        max-height: 47px !important;
        flex: 0 0 55px !important;
    }

}


/* =========================================================
   FREEDOM — AUMENTAR BLOCO "CONSULTE OS VALORES"
   ========================================================= */

/* TÍTULO */
.freedom-price-switcher-header h2 {
    font-size: 38px !important;
    line-height: 1.18 !important;
    font-weight: 800 !important;
    margin-bottom: 14px !important;
}

/* TEXTO EXPLICATIVO */
.freedom-price-switcher-header > p {
    max-width: 760px !important;
    margin-left: auto !important;
    margin-right: auto !important;

    font-size: 19px !important;
    line-height: 1.55 !important;
}

/* ESPAÇO ENTRE TEXTO E BOTÕES */
.freedom-price-switcher .freedom-price-tabs {
    margin-top: 30px !important;
}

/* BOTÕES NO DESKTOP */
@media screen and (min-width: 768px) {

    .freedom-price-switcher .freedom-price-tab {
        min-height: 92px !important;
        padding: 14px 18px !important;
    }

    .freedom-price-switcher .freedom-price-tab span {
        font-size: 17px !important;
        font-weight: 800 !important;
        white-space: nowrap !important;
    }

    .freedom-price-switcher .freedom-price-tab img {
        width: 62px !important;
        height: 54px !important;
        max-width: 62px !important;
        object-fit: contain !important;
    }
}


/* =========================================================
   CELULAR
   ========================================================= */

@media screen and (max-width: 767px) {

    .freedom-price-switcher-header h2 {
        font-size: 31px !important;
        line-height: 1.15 !important;
        margin-bottom: 16px !important;
    }

    .freedom-price-switcher-header > p {
        max-width: 350px !important;

        font-size: 18px !important;
        line-height: 1.5 !important;

        margin-left: auto !important;
        margin-right: auto !important;
    }

    .freedom-price-switcher .freedom-price-tabs {
        margin-top: 26px !important;
    }

    .freedom-price-switcher .freedom-price-tab span {
        font-size: 19px !important;
        line-height: 1.2 !important;
    }
}


/* =========================================================
   DESTAQUE DO TÍTULO "CONSULTE OS VALORES POR IDIOMA"
   ========================================================= */

.freedom-precos-header {
    text-align: center;
    margin: 56px 0 42px;
}

.freedom-precos-header h1 {
    margin: 0 0 16px;
    color: #173f7a;
    font-size: 48px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.freedom-precos-header p {
    max-width: 850px;
    margin: 0 auto;
    color: #586c88;
    font-size: 23px;
    line-height: 1.5;
    font-weight: 400;
}

.freedom-precos-header strong {
    color: #173f7a;
    font-weight: 800;
}

/* MOBILE */
@media screen and (max-width: 767px) {

    .freedom-precos-header {
        margin: 38px 0 30px;
        padding: 0 8px;
    }

    .freedom-precos-header h1 {
        font-size: 34px;
        line-height: 1.15;
        margin-bottom: 14px;
    }

    .freedom-precos-header p {
        font-size: 18px;
        line-height: 1.5;
    }
}



/* =========================================================
   FREEDOM — INFORMAÇÕES IMPORTANTES / VALORES E CONDIÇÕES
   ========================================================= */

.freedom-info-valores{
    --azul:#173f7a;
    --azul-claro:#eef5ff;
    --borda:#d8e5f3;
    --texto:#536986;

    width:100%;
    max-width:1460px;
    margin:0 auto;
    padding:34px 24px;
    background:var(--azul-claro);
    border:1px solid var(--borda);
    border-radius:18px;
    font-family:Arial,Helvetica,sans-serif;
    box-sizing:border-box;
}

.freedom-info-valores *{
    box-sizing:border-box;
}

.freedom-info-valores-header{
    text-align:center;
    max-width:900px;
    margin:0 auto 30px;
}

.freedom-info-valores-header h2{
    margin:0 0 12px;
    color:var(--azul);
    font-size:34px;
    line-height:1.2;
    font-weight:800;
}

.freedom-info-valores-header p{
    margin:0;
    color:var(--texto);
    font-size:18px;
    line-height:1.6;
}

.freedom-info-valores-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
}

.freedom-info-card{
    background:#fff;
    border:1px solid var(--borda);
    border-radius:14px;
    padding:24px;
}

.freedom-info-numero{
    width:40px;
    height:40px;
    border-radius:50%;
    background:var(--azul);
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:14px;
    font-weight:800;
    margin-bottom:15px;
}

.freedom-info-card h3{
    margin:0 0 15px;
    color:var(--azul);
    font-size:22px;
    line-height:1.3;
    font-weight:800;
}

.freedom-info-card ul{
    margin:0;
    padding-left:21px;
}

.freedom-info-card li{
    margin:0 0 11px;
    color:var(--texto);
    font-size:16px;
    line-height:1.65;
}

.freedom-info-card li:last-child{
    margin-bottom:0;
}

.freedom-info-card strong{
    color:var(--azul);
    font-weight:800;
}

.freedom-info-aviso{
    margin-top:20px;
    padding:18px 20px;
    background:#fff;
    border-left:4px solid var(--azul);
    border-radius:8px;
    color:var(--texto);
    font-size:17px;
    line-height:1.6;
}

.freedom-info-aviso strong{
    color:var(--azul);
    font-weight:800;
}

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

@media screen and (max-width:767px){

    .freedom-info-valores{
        padding:26px 17px;
        border-radius:16px;
    }

    .freedom-info-valores-header{
        margin-bottom:24px;
    }

    .freedom-info-valores-header h2{
        font-size:30px;
        line-height:1.2;
        margin-bottom:13px;
    }

    .freedom-info-valores-header p{
        font-size:18px;
        line-height:1.7;
    }

    .freedom-info-valores-grid{
        grid-template-columns:1fr;
        gap:15px;
    }

    .freedom-info-card{
        padding:23px 20px;
        border-radius:14px;
    }

    .freedom-info-numero{
        width:42px;
        height:42px;
        font-size:15px;
        margin-bottom:15px;
    }

    .freedom-info-card h3{
        font-size:24px;
        line-height:1.3;
        margin-bottom:17px;
    }

    .freedom-info-card li{
        font-size:18px;
        line-height:1.7;
        margin-bottom:14px;
    }

    .freedom-info-aviso{
        margin-top:16px;
        padding:19px;
        font-size:18px;
        line-height:1.7;
    }
}

/* =========================================================
   CELULARES MENORES
   ========================================================= */

@media screen and (max-width:430px){

    .freedom-info-valores{
        padding:24px 15px;
    }

    .freedom-info-valores-header h2{
        font-size:28px;
    }

    .freedom-info-valores-header p{
        font-size:18px;
    }

    .freedom-info-card{
        padding:22px 18px;
    }

    .freedom-info-card h3{
        font-size:23px;
    }

    .freedom-info-card li{
        font-size:18px;
        line-height:1.7;
    }

    .freedom-info-aviso{
        font-size:18px;
        line-height:1.7;
    }
}


/* =========================================================
   FREEDOM — BLOCO DE PREÇOS
   CSS SEPARADO DO TEXT BOX
   ========================================================= */

.freedom-precos{
    --azul:#173f7a;
    --azul2:#245493;
    --claro:#eef5ff;
    --borda:#d2e1f2;
    --texto:#536986;
    --vermelho:#e53935;

    position:relative;
    width:calc(100vw - 48px);
    max-width:1460px;
    left:50%;
    transform:translateX(-50%);
    margin:0 auto;
    padding:46px 26px 60px;
    font-family:Arial,Helvetica,sans-serif;
    color:var(--texto);
    box-sizing:border-box;
}

.freedom-precos *{
    box-sizing:border-box;
}

.freedom-precos-header{
    text-align:center;
    max-width:950px;
    margin:0 auto 40px;
}

.freedom-precos-header h2{
    margin:0 0 14px!important;
    padding:0!important;
    color:var(--azul)!important;
    font-size:48px!important;
    line-height:1.1!important;
    font-weight:800!important;
    letter-spacing:-.8px;
}

.freedom-precos-header p{
    max-width:820px;
    margin:0 auto!important;
    padding:0!important;
    color:var(--texto)!important;
    font-size:21px!important;
    line-height:1.5!important;
}

.freedom-precos-header strong{
    color:var(--azul)!important;
    font-weight:800!important;
}

.freedom-precos-header:after{
    content:"";
    display:block;
    width:66px;
    height:4px;
    margin:20px auto 0;
    background:var(--azul);
    border-radius:20px;
}

.freedom-idiomas{
    display:grid!important;
    grid-template-columns:repeat(4,minmax(0,1fr))!important;
    width:100%!important;
    gap:18px!important;
    margin:0 0 54px!important;
}

.freedom-idioma-btn{
    -webkit-appearance:none!important;
    appearance:none!important;
    width:100%!important;
    min-width:0!important;
    min-height:112px!important;
    margin:0!important;
    padding:18px 16px!important;
    border:1.5px solid var(--borda)!important;
    border-radius:16px!important;
    background:#fff!important;
    color:var(--azul)!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    gap:17px!important;
    font-family:Arial,Helvetica,sans-serif!important;
    font-size:20px!important;
    line-height:1.2!important;
    font-weight:800!important;
    cursor:pointer!important;
    text-transform:none!important;
    white-space:nowrap!important;
    box-shadow:0 4px 14px rgba(23,63,122,.045)!important;
}

.freedom-idioma-btn span{
    white-space:nowrap!important;
    word-break:keep-all!important;
}

.freedom-idioma-btn.ativo{
    background:var(--azul2)!important;
    border-color:var(--azul2)!important;
    color:#fff!important;
}

.freedom-bandeira-img{
    display:block!important;
    width:62px!important;
    height:42px!important;
    object-fit:cover!important;
    flex:0 0 auto!important;
    border-radius:4px!important;
    box-shadow:0 2px 5px rgba(0,0,0,.10)!important;
}

.freedom-curso-secao{
    display:none!important;
    width:100%!important;
}

.freedom-curso-secao.ativo{
    display:block!important;
}

.freedom-secao-header{
    margin:0 0 27px!important;
}

.freedom-secao-header h2{
    margin:0 0 8px!important;
    padding:0!important;
    color:var(--azul)!important;
    font-size:38px!important;
    line-height:1.15!important;
    font-weight:800!important;
}

.freedom-secao-header p{
    margin:0!important;
    padding:0!important;
    color:var(--texto)!important;
    font-size:20px!important;
    line-height:1.5!important;
}

.freedom-cursos-lista{
    width:100%!important;
    display:flex!important;
    flex-direction:column!important;
    gap:20px!important;
}

.freedom-curso-card{
    width:100%!important;
    display:grid!important;
    grid-template-columns:300px minmax(0,1fr) 320px!important;
    align-items:center!important;
    min-height:235px!important;
    margin:0!important;
    padding:0!important;
    background:#fff!important;
    border:1.5px solid var(--borda)!important;
    border-radius:17px!important;
    overflow:hidden!important;
    box-shadow:0 4px 14px rgba(23,63,122,.035)!important;
}

.freedom-curso-imagem{
    min-height:225px!important;
    padding:20px 24px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
}

.freedom-curso-imagem img{
    display:block!important;
    width:100%!important;
    max-width:270px!important;
    max-height:205px!important;
    height:auto!important;
    object-fit:contain!important;
    border:0!important;
    box-shadow:none!important;
}

.freedom-curso-conteudo{
    min-width:0!important;
    padding:30px 34px 30px 12px!important;
}

.freedom-curso-tipo{
    display:block!important;
    margin:0 0 9px!important;
    color:var(--vermelho)!important;
    font-size:15px!important;
    line-height:1.3!important;
    font-weight:800!important;
    text-transform:uppercase!important;
}

.freedom-curso-conteudo h3{
    margin:0 0 13px!important;
    padding:0!important;
    color:var(--azul)!important;
    font-size:31px!important;
    line-height:1.17!important;
    font-weight:800!important;
}

.freedom-curso-conteudo p{
    margin:0!important;
    padding:0!important;
    color:var(--texto)!important;
    font-size:18.5px!important;
    line-height:1.55!important;
}

.freedom-curso-preco{
    align-self:stretch!important;
    padding:28px 34px!important;
    display:flex!important;
    flex-direction:column!important;
    justify-content:center!important;
    border-left:1.5px solid var(--borda)!important;
}

.freedom-preco-bloco + .freedom-preco-bloco{
    margin-top:19px!important;
    padding-top:19px!important;
    border-top:1px dashed #cbdced!important;
}

.freedom-preco-label{
    display:block!important;
    margin:0 0 5px!important;
    color:#777!important;
    font-size:17px!important;
    line-height:1.35!important;
}

.freedom-preco-valor{
    display:block!important;
    color:var(--azul)!important;
    font-size:34px!important;
    line-height:1.1!important;
    font-weight:800!important;
}

.freedom-preco-mes{
    display:block!important;
    margin-top:4px!important;
    color:var(--texto)!important;
    font-size:16px!important;
}

@media(max-width:1100px){

    .freedom-precos{
        width:calc(100vw - 30px);
    }

    .freedom-idioma-btn{
        min-height:100px!important;
        font-size:17px!important;
    }

    .freedom-bandeira-img{
        width:52px!important;
        height:35px!important;
    }

    .freedom-curso-card{
        grid-template-columns:230px minmax(0,1fr) 270px!important;
    }

    .freedom-curso-conteudo h3{
        font-size:27px!important;
    }

    .freedom-curso-conteudo p{
        font-size:17px!important;
    }

    .freedom-preco-valor{
        font-size:30px!important;
    }
}

@media(max-width:767px){

    .freedom-precos{
        width:100%!important;
        max-width:100%!important;
        left:auto!important;
        transform:none!important;
        margin:0!important;
        padding:28px 12px 36px!important;
    }

    .freedom-precos-header{
        margin-bottom:24px!important;
    }

    .freedom-precos-header h2{
        font-size:33px!important;
        line-height:1.15!important;
    }

    .freedom-precos-header p{
        font-size:17px!important;
        line-height:1.5!important;
    }

    .freedom-idiomas{
        grid-template-columns:repeat(2,minmax(0,1fr))!important;
        gap:9px!important;
        margin-bottom:30px!important;
    }

    .freedom-idioma-btn{
        min-height:76px!important;
        padding:9px 6px!important;
        gap:7px!important;
        font-size:13px!important;
        white-space:nowrap!important;
    }

    .freedom-bandeira-img{
        width:36px!important;
        height:25px!important;
    }

    .freedom-secao-header h2{
        font-size:29px!important;
    }

    .freedom-secao-header p{
        font-size:17px!important;
    }

    .freedom-cursos-lista{
        gap:14px!important;
    }

    .freedom-curso-card{
        display:block!important;
        min-height:0!important;
        border-radius:14px!important;
    }

    .freedom-curso-imagem{
        min-height:0!important;
        padding:17px 18px 0!important;
    }

    .freedom-curso-imagem img{
        max-width:245px!important;
        max-height:185px!important;
    }

    .freedom-curso-conteudo{
        padding:12px 20px 18px!important;
        text-align:center!important;
    }

    .freedom-curso-tipo{
        font-size:13px!important;
    }

    .freedom-curso-conteudo h3{
        font-size:24px!important;
    }

    .freedom-curso-conteudo p{
        font-size:17px!important;
        line-height:1.5!important;
    }

    .freedom-curso-preco{
        padding:18px 20px!important;
        display:grid!important;
        grid-template-columns:repeat(2,minmax(0,1fr))!important;
        gap:16px!important;
        border-left:0!important;
        border-top:1.5px solid var(--borda)!important;
    }

    .freedom-preco-bloco + .freedom-preco-bloco{
        margin:0!important;
        padding:0 0 0 16px!important;
        border-top:0!important;
        border-left:1px dashed #cbdced!important;
    }

    .freedom-preco-label{
        font-size:15px!important;
    }

    .freedom-preco-valor{
        font-size:27px!important;
    }

    .freedom-preco-mes{
        font-size:15px!important;
    }
}

@media(max-width:430px){

    .freedom-precos{
        padding:26px 10px 34px!important;
    }

    .freedom-precos-header h2{
        font-size:30px!important;
    }

    .freedom-idioma-btn{
        min-height:72px!important;
        font-size:12px!important;
        gap:5px!important;
        padding:8px 4px!important;
    }

    .freedom-bandeira-img{
        width:32px!important;
        height:22px!important;
    }

    .freedom-curso-imagem img{
        max-width:230px!important;
        max-height:175px!important;
    }

    .freedom-curso-conteudo h3{
        font-size:23px!important;
    }

    .freedom-curso-conteudo p{
        font-size:16.5px!important;
    }

    .freedom-curso-preco{
        grid-template-columns:1fr!important;
        padding:17px 18px!important;
    }

    .freedom-preco-bloco + .freedom-preco-bloco{
        margin-top:15px!important;
        padding:15px 0 0!important;
        border-left:0!important;
        border-top:1px dashed #cbdced!important;
    }
}


/* =========================================================
   FREEDOM - INFORMAÇÕES SOBRE VALORES E CONDIÇÕES
   VERSÃO MAIS LEGÍVEL
   ========================================================= */

.freedom-info-valores{
    max-width:1460px;
    margin:38px auto 46px;
    padding:38px 40px;
    background:#eef5ff;
    border:1px solid #d5e4f7;
    border-radius:16px;
    box-sizing:border-box;
    font-family:inherit;
}

.freedom-info-header{
    text-align:center;
    max-width:880px;
    margin:0 auto 30px;
}

.freedom-info-header h2{
    margin:0 0 12px!important;
    color:#173f7a!important;
    font-size:30px!important;
    line-height:1.2!important;
    font-weight:800!important;
}

.freedom-info-header p{
    margin:0 auto!important;
    color:#536b8c!important;
    font-size:17px!important;
    line-height:1.65!important;
}

.freedom-info-grid{
    display:grid!important;
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
    gap:20px!important;
}

.freedom-info-card{
    background:#fff;
    border:1px solid #d5e4f7;
    border-radius:14px;
    padding:26px 24px;
    box-sizing:border-box;
}

.freedom-info-numero{
    display:flex;
    align-items:center;
    justify-content:center;
    width:40px;
    height:40px;
    margin-bottom:16px;
    border-radius:50%;
    background:#173f7a;
    color:#fff;
    font-size:14px;
    font-weight:800;
}

.freedom-info-card h3{
    margin:0 0 16px!important;
    color:#173f7a!important;
    font-size:20px!important;
    line-height:1.3!important;
    font-weight:800!important;
}

.freedom-info-card ul{
    margin:0!important;
    padding-left:21px!important;
}

.freedom-info-card li{
    margin:0 0 12px!important;
    color:#435a78!important;
    font-size:16px!important;
    line-height:1.65!important;
}

.freedom-info-card li:last-child{
    margin-bottom:0!important;
}

.freedom-info-card strong{
    color:#173f7a!important;
    font-weight:800!important;
}

.freedom-segundo-mes{
    margin-top:22px;
    padding:18px 20px;
    background:#fff;
    border-left:4px solid #173f7a;
    border-radius:8px;
    color:#435a78;
    font-size:17px;
    line-height:1.65;
}

.freedom-segundo-mes strong{
    color:#173f7a;
    font-weight:800;
}


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

@media screen and (max-width:1000px){

    .freedom-info-valores{
        max-width:100%;
        padding:32px 24px;
    }

    .freedom-info-grid{
        grid-template-columns:1fr!important;
    }

    .freedom-info-card{
        padding:24px 22px;
    }
}


/* =========================================================
   CELULAR
   ========================================================= */

@media screen and (max-width:767px){

    .freedom-info-valores{
        margin:26px 12px 38px!important;
        padding:28px 16px!important;
        border-radius:14px!important;
    }

    .freedom-info-header{
        margin-bottom:24px!important;
    }

    .freedom-info-header h2{
        font-size:27px!important;
        line-height:1.22!important;
        margin-bottom:13px!important;
    }

    .freedom-info-header p{
        font-size:18px!important;
        line-height:1.7!important;
    }

    .freedom-info-grid{
        grid-template-columns:1fr!important;
        gap:15px!important;
    }

    .freedom-info-card{
        padding:23px 20px!important;
    }

    .freedom-info-numero{
        width:42px!important;
        height:42px!important;
        font-size:15px!important;
        margin-bottom:16px!important;
    }

    .freedom-info-card h3{
        font-size:22px!important;
        line-height:1.3!important;
        margin-bottom:17px!important;
    }

    .freedom-info-card li{
        font-size:18px!important;
        line-height:1.7!important;
        margin-bottom:14px!important;
    }

    .freedom-segundo-mes{
        margin-top:16px!important;
        padding:19px!important;
        font-size:18px!important;
        line-height:1.7!important;
    }
}


/* =========================================================
   CELULAR PEQUENO
   ========================================================= */

@media screen and (max-width:430px){

    .freedom-info-valores{
        margin-left:10px!important;
        margin-right:10px!important;
        padding:24px 15px!important;
    }

    .freedom-info-header h2{
        font-size:26px!important;
    }

    .freedom-info-header p{
        font-size:18px!important;
    }

    .freedom-info-card{
        padding:22px 18px!important;
    }

    .freedom-info-card h3{
        font-size:21px!important;
    }

    .freedom-info-card li{
        font-size:18px!important;
        line-height:1.7!important;
    }

    .freedom-segundo-mes{
        font-size:18px!important;
        line-height:1.7!important;
    }
}


.freedom-info-valores{
    max-width:1100px!important;
    margin:38px auto 46px!important;
    padding:38px 34px!important;
}

.freedom-info-grid{
    display:grid!important;
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
    gap:18px!important;
    align-items:stretch!important;
}

.freedom-info-card{
    width:100%!important;
    min-width:0!important;
}

@media screen and (max-width:900px){

    .freedom-info-grid{
        grid-template-columns:1fr!important;
    }

}


/* =========================================================
   AJUSTE FINAL - BLOCO INFORMAÇÕES / FREEDOM
   COLE NO FINAL DO CSS ADICIONAL
   ========================================================= */

.freedom-info-valores{
    width:calc(100vw - 48px) !important;
    max-width:1460px !important;
    position:relative !important;
    left:50% !important;
    transform:translateX(-50%) !important;

    margin:38px 0 46px !important;
    padding:38px 36px !important;

    background:#eef5ff !important;
    border:1px solid #d5e4f7 !important;
    border-radius:16px !important;

    box-sizing:border-box !important;
}

.freedom-info-header{
    max-width:900px !important;
    margin:0 auto 30px !important;

    text-align:center !important;

    color:#536986 !important;
    font-size:18px !important;
    line-height:1.65 !important;
}

.freedom-info-header h2{
    margin:0 0 12px !important;

    color:#173f7a !important;

    font-size:32px !important;
    line-height:1.2 !important;
    font-weight:800 !important;
}

.freedom-info-grid{
    display:grid !important;

    grid-template-columns:
        repeat(3,minmax(0,1fr)) !important;

    gap:20px !important;

    width:100% !important;

    align-items:stretch !important;
}

.freedom-info-card{
    display:block !important;

    width:100% !important;
    min-width:0 !important;

    margin:0 !important;
    padding:26px 24px !important;

    background:#fff !important;

    border:1px solid #d5e4f7 !important;
    border-radius:14px !important;
}

.freedom-info-numero{
    display:flex !important;

    align-items:center !important;
    justify-content:center !important;

    width:40px !important;
    height:40px !important;

    margin:0 0 16px !important;

    border-radius:50% !important;

    background:#173f7a !important;
    color:#fff !important;

    font-size:14px !important;
    font-weight:800 !important;
}

.freedom-info-card h3{
    margin:0 0 16px !important;

    color:#173f7a !important;

    font-size:22px !important;
    line-height:1.3 !important;
    font-weight:800 !important;
}

.freedom-info-card ul{
    margin:0 !important;
    padding-left:22px !important;
}

.freedom-info-card li{
    margin:0 0 12px !important;

    color:#435a78 !important;

    font-size:17px !important;
    line-height:1.65 !important;
}

.freedom-info-card strong{
    color:#173f7a !important;
    font-weight:800 !important;
}

.freedom-segundo-mes{
    margin-top:20px !important;

    padding:18px 20px !important;

    background:#fff !important;

    border-left:4px solid #173f7a !important;
    border-radius:8px !important;

    color:#435a78 !important;

    font-size:17px !important;
    line-height:1.65 !important;
}

.freedom-segundo-mes strong{
    color:#173f7a !important;
}


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

@media screen and (max-width:767px){

    .freedom-info-valores{
        position:relative !important;

        width:100% !important;
        max-width:100% !important;

        left:auto !important;
        transform:none !important;

        margin:26px 0 38px !important;

        padding:28px 16px !important;

        border-radius:14px !important;
    }

    .freedom-info-header{
        margin-bottom:24px !important;

        font-size:18px !important;
        line-height:1.7 !important;
    }

    .freedom-info-header h2{
        font-size:28px !important;
        line-height:1.2 !important;

        margin-bottom:14px !important;
    }

    .freedom-info-grid{
        display:grid !important;

        grid-template-columns:1fr !important;

        gap:15px !important;
    }

    .freedom-info-card{
        width:100% !important;

        padding:23px 20px !important;
    }

    .freedom-info-numero{
        width:42px !important;
        height:42px !important;

        font-size:15px !important;
    }

    .freedom-info-card h3{
        font-size:23px !important;
        line-height:1.3 !important;
    }

    .freedom-info-card li{
        font-size:18px !important;
        line-height:1.7 !important;

        margin-bottom:14px !important;
    }

    .freedom-segundo-mes{
        margin-top:16px !important;

        padding:19px !important;

        font-size:18px !important;
        line-height:1.7 !important;
    }
}


/* =========================================================
   CORREÇÃO DEFINITIVA — 3 CARDS INFORMAÇÕES
   NÃO ALTERAR O HTML
   ========================================================= */

body .freedom-info-valores .freedom-info-grid{
    display:grid !important;
    grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
    grid-template-rows:auto !important;
    gap:20px !important;

    width:100% !important;
    max-width:none !important;

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

    align-items:stretch !important;
    justify-items:stretch !important;
}

body .freedom-info-valores .freedom-info-card{
    display:block !important;

    position:relative !important;
    float:none !important;
    clear:none !important;

    width:auto !important;
    max-width:none !important;
    min-width:0 !important;

    height:auto !important;

    margin:0 !important;

    padding:26px 24px !important;

    grid-column:auto !important;
    grid-row:auto !important;

    transform:none !important;

    background:#ffffff !important;
    border:1px solid #d5e4f7 !important;
    border-radius:14px !important;
}

/* força cada card para a coluna correta */

body .freedom-info-valores .freedom-info-card:nth-child(1){
    grid-column:1 !important;
    grid-row:1 !important;
}

body .freedom-info-valores .freedom-info-card:nth-child(2){
    grid-column:2 !important;
    grid-row:1 !important;
}

body .freedom-info-valores .freedom-info-card:nth-child(3){
    grid-column:3 !important;
    grid-row:1 !important;
}


/* =========================================================
   CELULAR
   ========================================================= */

@media screen and (max-width:767px){

    body .freedom-info-valores .freedom-info-grid{
        grid-template-columns:1fr !important;
        gap:15px !important;
    }

    body .freedom-info-valores .freedom-info-card:nth-child(1),
    body .freedom-info-valores .freedom-info-card:nth-child(2),
    body .freedom-info-valores .freedom-info-card:nth-child(3){
        grid-column:1 !important;
        grid-row:auto !important;
    }

    body .freedom-info-valores .freedom-info-card{
        width:100% !important;
        padding:23px 20px !important;
    }

    body .freedom-info-valores .freedom-info-card h3{
        font-size:23px !important;
        line-height:1.3 !important;
    }

    body .freedom-info-valores .freedom-info-card li{
        font-size:18px !important;
        line-height:1.7 !important;
        margin-bottom:14px !important;
    }
}

/* =========================================================
   FREEDOM — CORREÇÃO ATUAL DOS 3 CARDS
   COLE NO FINAL DE TODO O CSS ADICIONAL
   ========================================================= */

body .freedom-info-valores .freedom-info-row{
    display:flex !important;
    flex-direction:row !important;
    flex-wrap:nowrap !important;
    align-items:stretch !important;
    justify-content:space-between !important;
    gap:18px !important;

    width:100% !important;
    margin:0 !important;
    padding:0 !important;
}

body .freedom-info-valores .freedom-info-row > .freedom-info-card{
    display:block !important;

    flex:1 1 0 !important;

    width:calc((100% - 36px) / 3) !important;
    max-width:calc((100% - 36px) / 3) !important;
    min-width:0 !important;

    margin:0 !important;

    float:none !important;
    clear:none !important;

    position:relative !important;
    left:auto !important;
    right:auto !important;
    top:auto !important;

    transform:none !important;
}


/* CELULAR */

@media screen and (max-width:767px){

    body .freedom-info-valores .freedom-info-row{
        flex-direction:column !important;
        flex-wrap:nowrap !important;
        gap:15px !important;
    }

    body .freedom-info-valores .freedom-info-row > .freedom-info-card{
        flex:none !important;

        width:100% !important;
        max-width:100% !important;

        margin:0 !important;
    }

}



/* =========================================================
   FREEDOM — FORMAS DE PAGAMENTO
   DESKTOP + MOBILE
   ========================================================= */

.freedom-formas-pagamento{
    width:100%;
    max-width:1460px;
    margin:38px auto 50px;
    padding:0 24px;
    box-sizing:border-box;
}

.freedom-formas-pagamento picture{
    display:block;
    width:100%;
}

.freedom-formas-pagamento img{
    display:block;
    width:100%;
    height:auto;
    margin:0 auto;
    border:0;
    box-shadow:none;
}


/* CELULAR */

@media screen and (max-width:767px){

    .freedom-formas-pagamento{
        width:100%;
        max-width:100%;
        margin:28px auto 38px;
        padding:0 10px;
    }

    .freedom-formas-pagamento img{
        width:100%;
        height:auto;
    }

}


/* =========================================================
   FREEDOM - FORMAS DE PAGAMENTO
   DESKTOP / MOBILE
   ========================================================= */

.freedom-paywrap-20260826{
    width:100% !important;
    max-width:1460px !important;
    margin:38px auto 50px !important;
    padding:0 !important;
    box-sizing:border-box !important;
}

.freedom-paywrap-20260826 img{
    width:100% !important;
    max-width:100% !important;
    height:auto !important;
    margin:0 auto !important;
    border:0 !important;
    box-shadow:none !important;
}

/* DESKTOP */
.freedom-paydesk-20260826{
    display:block !important;
}

.freedom-paymob-20260826{
    display:none !important;
}


/* CELULAR */
@media screen and (max-width:767px){

    .freedom-paydesk-20260826{
        display:none !important;
    }

    .freedom-paymob-20260826{
        display:block !important;
        width:100% !important;
        max-width:100% !important;
        height:auto !important;
    }

    .freedom-paywrap-20260826{
        margin:28px auto 38px !important;
    }

}


/* =========================================================
   FREEDOM — PÁGINA DE FEEDBACK
   CSS CONSOLIDADO
   ========================================================= */

#freedom-feedback,
#freedom-feedback * {
    box-sizing: border-box !important;
}

#freedom-feedback {
    width: min(1320px, calc(100vw - 40px)) !important;
    max-width: 1320px !important;
    margin: 0 !important;
    padding: 45px 28px 65px !important;
    color: #333333 !important;
    font-family: inherit !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}


/* =========================================================
   INTRODUÇÃO
   ========================================================= */

#freedom-feedback .freedom-feedback-intro {
    width: 100% !important;
    max-width: 920px !important;
    margin: 0 auto 42px !important;
    text-align: center !important;
}

#freedom-feedback .freedom-feedback-selo {
    display: inline-block !important;
    margin: 0 0 15px !important;
    padding: 8px 17px !important;

    background: #eef5ff !important;
    color: #173f7a !important;

    border: 1px solid #dbe8f7 !important;
    border-radius: 30px !important;

    font-size: 14px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    letter-spacing: .7px !important;
}

#freedom-feedback .freedom-feedback-intro h1 {
    margin: 0 0 16px !important;
    padding: 0 !important;

    color: #173f7a !important;

    font-size: 46px !important;
    line-height: 1.18 !important;
    font-weight: 800 !important;
}

#freedom-feedback .freedom-feedback-intro p {
    width: 100% !important;
    max-width: 820px !important;
    margin: 0 auto !important;

    color: #555555 !important;

    font-size: 21px !important;
    line-height: 1.7 !important;
}


/* =========================================================
   FILTROS / CATEGORIAS COM ÍCONES 3D
   ========================================================= */

#freedom-feedback .freedom-feedback-filtros {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;

    width: 100% !important;
    max-width: 1080px !important;

    gap: 18px !important;

    margin: 0 auto 48px !important;
    padding: 0 !important;
}

#freedom-feedback .freedom-feedback-filtro {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 205px !important;

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

    gap: 10px !important;

    margin: 0 !important;
    padding: 15px 12px 16px !important;

    background: #ffffff !important;
    color: #173f7a !important;

    border: 1px solid #d9e5f3 !important;
    border-radius: 18px !important;

    box-shadow: 0 7px 20px rgba(23, 63, 122, 0.09) !important;

    font-family: inherit !important;
    text-transform: none !important;

    cursor: pointer !important;
    overflow: hidden !important;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease !important;
}


/* ÍCONES */

#freedom-feedback .freedom-feedback-filtro img {
    display: block !important;

    width: 135px !important;
    height: 135px !important;

    min-width: 135px !important;
    max-width: 135px !important;

    min-height: 135px !important;
    max-height: 135px !important;

    object-fit: contain !important;

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

    float: none !important;
    position: static !important;

    border: 0 !important;
    border-radius: 0 !important;

    box-shadow: none !important;
    transform: none !important;
}


/* TEXTO DAS CATEGORIAS */

#freedom-feedback .freedom-feedback-filtro span {
    display: block !important;
    width: 100% !important;

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

    color: #173f7a !important;

    font-size: 19px !important;
    line-height: 1.25 !important;
    font-weight: 800 !important;

    text-align: center !important;
}


/* HOVER */

#freedom-feedback .freedom-feedback-filtro:hover {
    background: #ffffff !important;
    border-color: #173f7a !important;

    transform: translateY(-4px) !important;

    box-shadow:
        0 11px 27px rgba(23, 63, 122, 0.15) !important;
}


/* ATIVO */

#freedom-feedback .freedom-feedback-filtro.ativo {
    background: #eef5ff !important;

    border: 2px solid #173f7a !important;

    box-shadow:
        0 9px 24px rgba(23, 63, 122, 0.14) !important;
}

#freedom-feedback .freedom-feedback-filtro.ativo span {
    color: #173f7a !important;
}


/* =========================================================
   TÍTULO DA SEÇÃO
   ========================================================= */

#freedom-feedback .freedom-feedback-titulo {
    width: 100% !important;
    max-width: 900px !important;

    margin: 0 auto 30px !important;

    text-align: center !important;
}

#freedom-feedback .freedom-feedback-titulo h2 {
    margin: 0 0 9px !important;
    padding: 0 !important;

    color: #173f7a !important;

    font-size: 38px !important;
    line-height: 1.22 !important;
    font-weight: 800 !important;
}

#freedom-feedback .freedom-feedback-titulo p {
    margin: 0 !important;

    color: #666666 !important;

    font-size: 18px !important;
    line-height: 1.6 !important;
}


/* =========================================================
   REMOVE QUEBRAS AUTOMÁTICAS DO WORDPRESS
   ========================================================= */

#freedom-feedback .freedom-feedback-grid > p,
#freedom-feedback .freedom-feedback-grid > br {
    display: none !important;
}

#freedom-feedback .freedom-feedback-card[hidden],
#freedom-feedback #freedom-feedback-ver-mais[hidden] {
    display: none !important;
}


/* =========================================================
   GRID DOS DEPOIMENTOS
   ========================================================= */

#freedom-feedback .freedom-feedback-grid {
    display: grid !important;

    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;

    width: 100% !important;
    max-width: 1240px !important;

    gap: 30px !important;

    margin: 0 auto !important;

    align-items: stretch !important;
}


/* =========================================================
   CARDS
   ========================================================= */

#freedom-feedback .freedom-feedback-grid > .freedom-feedback-card {
    display: flex !important;
    flex-direction: column !important;

    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;

    min-height: 315px !important;

    margin: 0 !important;
    padding: 32px 30px 28px !important;

    background: #ffffff !important;

    border: 1px solid #dce7f3 !important;
    border-radius: 17px !important;

    box-shadow:
        0 7px 24px rgba(23, 63, 122, 0.09) !important;

    float: none !important;
    clear: none !important;

    position: relative !important;

    left: auto !important;
    right: auto !important;
    top: auto !important;

    transform: none !important;
}


/* CARD DE DESTAQUE */

#freedom-feedback .freedom-feedback-card.destaque {
    background: #173f7a !important;
    border-color: #173f7a !important;

    grid-column: auto !important;
    grid-row: auto !important;
}


/* =========================================================
   ASPAS
   ========================================================= */

#freedom-feedback .freedom-feedback-aspas {
    display: block !important;

    margin: 0 0 17px !important;
    padding: 0 !important;

    color: #173f7a !important;

    font-family: Georgia, serif !important;
    font-size: 50px !important;
    line-height: .75 !important;
    font-weight: 700 !important;
}

#freedom-feedback
.freedom-feedback-card.destaque
.freedom-feedback-aspas {
    color: #ffffff !important;
}


/* =========================================================
   TEXTO DO DEPOIMENTO
   ========================================================= */

#freedom-feedback .freedom-feedback-texto {
    display: block !important;

    flex: 1 1 auto !important;

    margin: 0 0 23px !important;
    padding: 0 !important;

    background: transparent !important;
    border: 0 !important;

    color: #333333 !important;

    font-family: inherit !important;
    font-size: 21px !important;
    line-height: 1.68 !important;
    font-style: normal !important;
    font-weight: 400 !important;
}

#freedom-feedback
.freedom-feedback-card.destaque
.freedom-feedback-texto {
    color: #ffffff !important;
}


/* =========================================================
   NOME
   ========================================================= */

#freedom-feedback .freedom-feedback-pessoa {
    margin-top: auto !important;

    padding-top: 17px !important;

    border-top: 1px solid #e4ebf3 !important;
}

#freedom-feedback .freedom-feedback-pessoa strong {
    display: block !important;

    margin: 0 0 8px !important;

    color: #173f7a !important;

    font-size: 19px !important;
    line-height: 1.35 !important;
    font-weight: 800 !important;
}

#freedom-feedback
.freedom-feedback-card.destaque
.freedom-feedback-pessoa {
    border-color: rgba(255,255,255,.22) !important;
}

#freedom-feedback
.freedom-feedback-card.destaque
.freedom-feedback-pessoa strong {
    color: #ffffff !important;
}


/* =========================================================
   CATEGORIA E ORIGEM
   ========================================================= */

#freedom-feedback .freedom-feedback-meta {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 7px !important;
}

#freedom-feedback .freedom-feedback-tag,
#freedom-feedback .freedom-feedback-origem {
    display: inline-block !important;

    padding: 6px 10px !important;

    border-radius: 20px !important;

    font-size: 14.5px !important;
    line-height: 1.3 !important;
}

#freedom-feedback .freedom-feedback-tag {
    background: #eef5ff !important;
    color: #173f7a !important;
}

#freedom-feedback .freedom-feedback-origem {
    background: #f3f3f3 !important;
    color: #666666 !important;
}

#freedom-feedback
.freedom-feedback-card.destaque
.freedom-feedback-tag,

#freedom-feedback
.freedom-feedback-card.destaque
.freedom-feedback-origem {
    background: rgba(255,255,255,.14) !important;
    color: #ffffff !important;
}


/* =========================================================
   VER MAIS
   ========================================================= */

#freedom-feedback .freedom-feedback-mais {
    width: 100% !important;

    margin-top: 34px !important;

    text-align: center !important;
}

#freedom-feedback #freedom-feedback-ver-mais {
    display: inline-block !important;

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

    background: #173f7a !important;
    color: #ffffff !important;

    border: 0 !important;
    border-radius: 9px !important;

    box-shadow: none !important;

    font-family: inherit !important;
    font-size: 16px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;

    cursor: pointer !important;
}


/* =========================================================
   CTA
   ========================================================= */

#freedom-feedback .freedom-feedback-cta {
    width: 100% !important;

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

    background: #eef5ff !important;

    border: 1px solid #dce8f7 !important;
    border-radius: 18px !important;

    text-align: center !important;
}

#freedom-feedback .freedom-feedback-cta h2 {
    margin: 0 0 11px !important;

    color: #173f7a !important;

    font-size: 34px !important;
    line-height: 1.25 !important;
    font-weight: 800 !important;
}

#freedom-feedback .freedom-feedback-cta p {
    width: 100% !important;
    max-width: 720px !important;

    margin: 0 auto 23px !important;

    color: #555555 !important;

    font-size: 18px !important;
    line-height: 1.65 !important;
}

#freedom-feedback .freedom-feedback-cta a {
    display: inline-block !important;

    padding: 15px 28px !important;

    background: #173f7a !important;
    color: #ffffff !important;

    border-radius: 9px !important;

    text-decoration: none !important;

    font-size: 16px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
}


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

@media screen and (max-width: 1000px) {

    #freedom-feedback {
        width: calc(100vw - 28px) !important;
        padding: 38px 22px 55px !important;
    }

    #freedom-feedback .freedom-feedback-filtros {
        grid-template-columns: repeat(3, minmax(0,1fr)) !important;

        max-width: 800px !important;
        gap: 15px !important;
    }

    #freedom-feedback .freedom-feedback-filtro {
        min-height: 190px !important;
    }

    #freedom-feedback .freedom-feedback-filtro img {
        width: 120px !important;
        height: 120px !important;

        min-width: 120px !important;
        max-width: 120px !important;

        min-height: 120px !important;
        max-height: 120px !important;
    }

    #freedom-feedback .freedom-feedback-grid {
        grid-template-columns: repeat(2, minmax(0,1fr)) !important;
        gap: 22px !important;
    }
}


/* =========================================================
   CELULAR
   ========================================================= */

@media screen and (max-width: 767px) {

    #freedom-feedback {
        width: calc(100vw - 16px) !important;
        max-width: none !important;
        padding: 30px 15px 48px !important;
    }


    /* INTRO */

    #freedom-feedback .freedom-feedback-intro {
        margin-bottom: 32px !important;
    }

    #freedom-feedback .freedom-feedback-selo {
        font-size: 13px !important;
    }

    #freedom-feedback .freedom-feedback-intro h1 {
        font-size: 34px !important;
        line-height: 1.2 !important;
    }

    #freedom-feedback .freedom-feedback-intro p {
        font-size: 18px !important;
        line-height: 1.68 !important;
    }


    /* FILTROS */

    #freedom-feedback .freedom-feedback-filtros {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;

        width: 100% !important;
        max-width: 100% !important;

        gap: 12px !important;

        margin-bottom: 40px !important;
    }

    #freedom-feedback .freedom-feedback-filtro {
        width: 100% !important;

        min-height: 185px !important;

        padding: 13px 9px 14px !important;
    }

    #freedom-feedback .freedom-feedback-filtro img {
        width: 115px !important;
        height: 115px !important;

        min-width: 115px !important;
        max-width: 115px !important;

        min-height: 115px !important;
        max-height: 115px !important;
    }

    #freedom-feedback .freedom-feedback-filtro span {
        font-size: 18px !important;
    }

    #freedom-feedback .freedom-feedback-filtro:last-child {
        grid-column: 1 / -1 !important;

        width: calc(50% - 6px) !important;

        justify-self: center !important;
    }


    /* TÍTULO */

    #freedom-feedback .freedom-feedback-titulo h2 {
        font-size: 30px !important;
        line-height: 1.25 !important;
    }

    #freedom-feedback .freedom-feedback-titulo p {
        font-size: 17px !important;
        line-height: 1.6 !important;
    }


    /* DEPOIMENTOS */

    #freedom-feedback .freedom-feedback-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    #freedom-feedback .freedom-feedback-grid
    > .freedom-feedback-card {
        width: 100% !important;

        min-height: 0 !important;

        padding: 27px 22px 24px !important;

        border-radius: 15px !important;
    }

    #freedom-feedback .freedom-feedback-texto {
        font-size: 19px !important;
        line-height: 1.72 !important;
    }

    #freedom-feedback .freedom-feedback-pessoa strong {
        font-size: 19px !important;
    }

    #freedom-feedback .freedom-feedback-tag,
    #freedom-feedback .freedom-feedback-origem {
        font-size: 14px !important;
    }


    /* VER MAIS */

    #freedom-feedback #freedom-feedback-ver-mais {
        width: 100% !important;
        max-width: 320px !important;

        font-size: 16px !important;
    }


    /* CTA */

    #freedom-feedback .freedom-feedback-cta {
        margin-top: 40px !important;
        padding: 31px 20px !important;
    }

    #freedom-feedback .freedom-feedback-cta h2 {
        font-size: 29px !important;
    }

    #freedom-feedback .freedom-feedback-cta p {
        font-size: 18px !important;
        line-height: 1.68 !important;
    }

    #freedom-feedback .freedom-feedback-cta a {
        font-size: 16px !important;
    }
}


/* =========================================================
   FREEDOM — NOVA PÁGINA DE INTERCÂMBIO
   ========================================================= */

#freedom-intercambio {
  --fi-blue: #173f7a;
  --fi-blue-dark: #0b2854;
  --fi-blue-light: #2f68a9;
  --fi-red: #d9292a;
  --fi-white: #ffffff;
  --fi-text: #1e2b3d;
  --fi-muted: #64748b;
  --fi-border: #dce5f0;
  --fi-light: #f4f7fb;
  --fi-shadow: 0 18px 50px rgba(8, 34, 73, 0.16);

  position: relative;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  color: var(--fi-text);
  background: #ffffff;
  font-family: inherit;
  line-height: 1.5;
}

#freedom-intercambio,
#freedom-intercambio *,
#freedom-intercambio *::before,
#freedom-intercambio *::after {
  box-sizing: border-box;
}

#freedom-intercambio a {
  text-decoration: none;
}

#freedom-intercambio img {
  display: block;
  max-width: 100%;
}

/* Biblioteca vetorial FREEDOM: azul, vermelho e branco */
#freedom-intercambio .fi-icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

#freedom-intercambio .fi-svg-soft {
  fill: #edf4fc;
}

#freedom-intercambio .fi-svg-blue {
  fill: var(--fi-blue);
}

#freedom-intercambio .fi-svg-red {
  fill: var(--fi-red);
}

#freedom-intercambio .fi-svg-white {
  fill: #ffffff;
}

#freedom-intercambio .fi-svg-outline {
  fill: none;
  stroke: var(--fi-blue);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#freedom-intercambio .fi-country-icon {
  width: 84px;
  height: 84px;
  flex: 0 0 84px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 15px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(3, 20, 45, 0.24);
}

#freedom-intercambio .fi-country-icon svg {
  width: 76px;
  height: 76px;
  overflow: visible;
}

#freedom-intercambio .fi-country-icon img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  display: block;
}

#freedom-intercambio .fi-country-icon-table {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  margin: 0 11px 0 0;
  border-radius: 12px;
  vertical-align: middle;
  background: #eef4fb;
  box-shadow: none;
}

#freedom-intercambio .fi-country-icon-table svg {
  width: 38px;
  height: 38px;
}

#freedom-intercambio .fi-country-icon-table img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
}

#freedom-intercambio .fi-container {
  position: relative;
  z-index: 4;
  width: min(1480px, calc(100% - 64px));
  margin: 0 auto;
}


/* =========================================================
   ITENS INCLUÍDOS NOS VALORES
   ========================================================= */

#freedom-intercambio .fi-included {
  margin-top: 48px;
  padding: 42px 34px 36px;
  border: 1px solid #d5e0ed;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(15, 50, 91, 0.09);
}

#freedom-intercambio .fi-included-heading {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

#freedom-intercambio .fi-included-heading h3 {
  margin: 0;
  color: var(--fi-blue);
  font-size: clamp(30px, 2.6vw, 40px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.7px;
}

#freedom-intercambio .fi-included-heading > p:last-child {
  margin: 12px 0 0;
  color: var(--fi-muted);
  font-size: 19px;
  line-height: 1.55;
}

#freedom-intercambio .fi-included-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px;
}

#freedom-intercambio .fi-included-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 25px 17px 22px;
  border: 1px solid var(--fi-border);
  border-top: 4px solid var(--fi-red);
  border-radius: 14px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
}

#freedom-intercambio .fi-included-icon {
  position: relative;
  width: 82px;
  height: 82px;
  flex: 0 0 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 17px;
  border-radius: 50%;
  color: var(--fi-blue);
  background: #edf4fc;
}

#freedom-intercambio .fi-included-icon::after {
  display: none;
}

#freedom-intercambio .fi-included-icon svg {
  width: 62px;
  height: 62px;
  overflow: visible;
}

#freedom-intercambio .fi-included-icon img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  display: block;
}

#freedom-intercambio .fi-included-card h4 {
  margin: 0;
  color: var(--fi-blue-dark);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.25;
}

#freedom-intercambio .fi-included-card p {
  margin: 10px 0 0;
  color: var(--fi-muted);
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 1180px) {

  #freedom-intercambio .fi-included-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}

@media (max-width: 767px) {

  #freedom-intercambio .fi-included {
    margin-top: 34px;
    padding: 31px 16px 22px;
    border-radius: 15px;
  }

  #freedom-intercambio .fi-included-heading {
    margin-bottom: 23px;
  }

  #freedom-intercambio .fi-included-heading h3 {
    font-size: 30px;
  }

  #freedom-intercambio .fi-included-heading > p:last-child {
    font-size: 17px;
  }

  #freedom-intercambio .fi-included-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
  }

  #freedom-intercambio .fi-included-card {
    min-height: 225px;
    padding: 22px 12px 19px;
  }

  #freedom-intercambio .fi-included-card:last-child {
    grid-column: 1 / -1;
    min-height: 205px;
  }

  #freedom-intercambio .fi-included-card h4 {
    font-size: 19px;
  }

  #freedom-intercambio .fi-included-card p {
    font-size: 14px;
  }

}

/* =========================================================
   V17 — TABELA MEIO PERÍODO, CABEÇALHO E MAPA REFORÇADOS
   ========================================================= */

/* Remove o título/espaço automático do tema acima do hero. */
body:has(#freedom-intercambio) .gdlr-page-title-wrapper,
body:has(#freedom-intercambio) .gdlr-page-title-area,
body:has(#freedom-intercambio) .gdlr-page-title-container,
body:has(#freedom-intercambio) .gdlr-page-title-background,
body:has(#freedom-intercambio) .page-title-wrapper,
body:has(#freedom-intercambio) .gdlr-page-title {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

body:has(#freedom-intercambio) .gdlr-page-wrapper,
body:has(#freedom-intercambio) .gdlr-page-content,
body:has(#freedom-intercambio) .gdlr-page-content-wrap,
body:has(#freedom-intercambio) .gdlr-content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

#freedom-intercambio,
#freedom-intercambio .fi-hero {
  margin-top: 0 !important;
}

/* O WordPress envolve o HTML colado em vários contêineres do construtor.
   Zere esses espaçamentos e o parágrafo vazio criado antes do <main>. */
body:has(#freedom-intercambio) .gdlr-core-pbf-wrapper:has(#freedom-intercambio),
body:has(#freedom-intercambio) .gdlr-core-pbf-wrapper-content:has(#freedom-intercambio),
body:has(#freedom-intercambio) .gdlr-core-pbf-wrapper-container:has(#freedom-intercambio),
body:has(#freedom-intercambio) .gdlr-core-text-box-item:has(#freedom-intercambio),
body:has(#freedom-intercambio) .gdlr-core-text-box-item-content:has(#freedom-intercambio) {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body:has(#freedom-intercambio) .gdlr-core-text-box-item-content > p:empty {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Fallback específico da página 9657 caso o navegador não use :has(). */
body.page-id-9657 .gdlr-core-page-builder-body > .gdlr-core-pbf-wrapper:first-child,
body.page-id-9657 .gdlr-core-page-builder-body > .gdlr-core-pbf-wrapper:first-child > .gdlr-core-pbf-wrapper-content,
body.page-id-9657 .gdlr-core-page-builder-body > .gdlr-core-pbf-wrapper:first-child .gdlr-core-pbf-wrapper-container {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Mapa com contorno mais legível e avião discreto. */
#freedom-intercambio .fi-world-map {
  opacity: 0.22 !important;
  filter: drop-shadow(0 0 5px rgba(255,255,255,.20));
}

#freedom-intercambio .fi-world-map::after {
  content: "✈";
  position: absolute;
  top: 40%;
  left: 54%;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 38px;
  line-height: 1;
  text-shadow: 0 0 10px rgba(255,255,255,.65);
  transform: rotate(-18deg);
  opacity: .95;
}

/* Os três passos permanecem lado a lado no desktop. */
@media (min-width: 768px) {
  #freedom-intercambio .fi-steps {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
  }

  #freedom-intercambio .fi-step {
    min-width: 0 !important;
    padding: 13px 11px !important;
  }
}

#freedom-intercambio .fi-step strong {
  font-size: 20px !important;
}

#freedom-intercambio .fi-step small {
  font-size: 17px !important;
}

#freedom-intercambio .fi-hero-actions {
  justify-content: center !important;
}

@media (max-width: 767px) {
  #freedom-intercambio .fi-world-map {
    opacity: .16 !important;
  }

  #freedom-intercambio .fi-world-map::after {
    font-size: 27px;
  }

  #freedom-intercambio .fi-steps {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  #freedom-intercambio .fi-hero-actions {
    justify-items: center !important;
  }
}

@media (max-width: 390px) {

  #freedom-intercambio .fi-included-grid {
    grid-template-columns: 1fr;
  }

  #freedom-intercambio .fi-included-card,
  #freedom-intercambio .fi-included-card:last-child {
    grid-column: auto;
    min-height: 0;
  }

}

/* =========================================================
   AJUSTE FINAL — ÍCONES E LEITURA NO CELULAR
   ========================================================= */

#freedom-intercambio .fi-icon::after {
  display: none !important;
}

#freedom-intercambio .fi-icon {
  width: 88px;
  height: 88px;
}

#freedom-intercambio .fi-icon img {
  width: 70px;
  height: 70px;
}

#freedom-intercambio .fi-support-card h3 {
  font-size: 21px;
}

#freedom-intercambio .fi-support-card p {
  font-size: 16px;
}

@media (max-width: 767px) {
  #freedom-intercambio .fi-support-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  #freedom-intercambio .fi-support-card {
    min-height: 0;
    padding: 30px 22px 28px;
  }

  #freedom-intercambio .fi-icon {
    width: 122px;
    height: 122px;
    margin-bottom: 23px;
  }

  #freedom-intercambio .fi-icon img {
    width: 100px;
    height: 100px;
  }

  #freedom-intercambio .fi-support-card h3 {
    font-size: 24px;
    line-height: 1.25;
  }

#freedom-intercambio .fi-support-card p {
  font-size: 18px;
  line-height: 1.55;
 }

/* =========================================================
   V20 — AJUSTES APROVADOS NAS IMAGENS DE REVISÃO
   ========================================================= */

body.page-id-9657 #kingster-page-wrapper,
body:has(#freedom-intercambio) #kingster-page-wrapper,
body.page-id-9657 .gdlr-core-page-builder-body,
body:has(#freedom-intercambio) .gdlr-core-page-builder-body {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body.page-id-9657 .gdlr-core-pbf-wrapper:has(#freedom-intercambio),
body:has(#freedom-intercambio) .gdlr-core-pbf-wrapper:has(#freedom-intercambio),
body.page-id-9657 .gdlr-core-pbf-wrapper-content:has(#freedom-intercambio),
body:has(#freedom-intercambio) .gdlr-core-pbf-wrapper-content:has(#freedom-intercambio),
body.page-id-9657 .gdlr-core-pbf-wrapper-container:has(#freedom-intercambio),
body:has(#freedom-intercambio) .gdlr-core-pbf-wrapper-container:has(#freedom-intercambio),
body.page-id-9657 .gdlr-core-text-box-item:has(#freedom-intercambio),
body:has(#freedom-intercambio) .gdlr-core-text-box-item:has(#freedom-intercambio),
body.page-id-9657 .gdlr-core-text-box-item-content:has(#freedom-intercambio),
body:has(#freedom-intercambio) .gdlr-core-text-box-item-content:has(#freedom-intercambio) {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

#freedom-intercambio .fi-world-map {
  opacity: .24 !important;
  filter: drop-shadow(0 0 6px rgba(255,255,255,.24));
  background-image: url("data:image/svg+xml,%3Csvg width='1000' height='520' viewBox='0 0 1000 520' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M42 145L72 106L132 78L198 82L252 108L300 101L348 128L333 158L290 170L265 198L225 190L205 217L158 202L129 181L90 186L63 166Z'/%3E%3Cpath d='M255 235L296 250L312 291L300 333L282 369L270 420L244 391L223 343L219 297L233 264Z'/%3E%3Cpath d='M430 130L468 103L512 110L538 133L522 154L487 151L463 170L433 160Z'/%3E%3Cpath d='M455 178L520 169L566 205L558 263L530 334L494 364L461 329L442 275L421 223Z'/%3E%3Cpath d='M525 124L585 90L668 82L730 104L792 112L850 140L900 176L870 203L820 193L779 214L723 190L674 207L625 183L575 175L540 160Z'/%3E%3Cpath d='M758 312L810 292L865 304L900 338L879 374L825 387L783 365Z'/%3E%3Cpath d='M310 54L352 30L400 43L420 72L397 97L352 91L326 76Z'/%3E%3Cpath d='M330 442L450 433L565 446L690 438L802 454L850 477L350 477Z'/%3E%3C/g%3E%3C/svg%3E") !important;
}

#freedom-intercambio .fi-world-map::after {
  content: "✈";
  position: absolute;
  top: 39%;
  left: 55%;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 42px;
  line-height: 1;
  text-shadow: 0 0 12px rgba(255,255,255,.8);
  transform: rotate(-18deg);
  opacity: .98;
}

/* Números dos cards de experiências e do processo com o mesmo padrão. */
#freedom-intercambio .fi-experience-benefits article > span,
#freedom-intercambio .fi-process-list li > span {
  width: 68px !important;
  height: 68px !important;
  flex: 0 0 68px !important;
  font-size: 22px !important;
  font-weight: 800 !important;
}

#freedom-intercambio .fi-experience-benefits article {
  align-items: center !important;
  min-height: 126px;
}

#freedom-intercambio .fi-experience-benefits h3,
#freedom-intercambio .fi-process-list strong {
  font-size: 20px !important;
  line-height: 1.3 !important;
}

#freedom-intercambio .fi-experience-benefits p,
#freedom-intercambio .fi-process-list p {
  font-size: 17px !important;
  line-height: 1.5 !important;
}
}

/* =========================================================
   AJUSTE FINAL — CABEÇALHO, BOTÕES E PASSOS
   ========================================================= */

body.page-id-9657 .gdlr-page-title-wrapper,
body.page-id-9657 .gdlr-page-title-container,
body.page-id-9657 .gdlr-page-title,
body.page-id-9657 .gdlr-page-title-background,
body:has(#freedom-intercambio) .gdlr-page-title-wrapper,
body:has(#freedom-intercambio) .gdlr-page-title-container,
body:has(#freedom-intercambio) .gdlr-page-title,
body:has(#freedom-intercambio) .gdlr-page-title-background {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.page-id-9657 .gdlr-page-content,
body.page-id-9657 .gdlr-content,
body:has(#freedom-intercambio) .gdlr-page-content,
body:has(#freedom-intercambio) .gdlr-content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

#freedom-intercambio .fi-hero-description {
  text-align: left !important;
  text-align-last: left !important;
  word-spacing: normal !important;
  letter-spacing: normal !important;
}

#freedom-intercambio .fi-hero-actions {
  justify-content: center !important;
}

#freedom-intercambio .fi-hero-actions > .fi-button {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

#freedom-intercambio .fi-step small {
  font-size: 16px !important;
}

#freedom-intercambio .fi-step strong {
  font-size: 19px !important;
}

#freedom-intercambio .fi-photo-sydney img {
  object-position: center 42% !important;
}

@media (max-width: 767px) {
  #freedom-intercambio .fi-hero-actions {
    justify-items: center !important;
  }

  #freedom-intercambio .fi-hero-actions > .fi-button {
    width: min(100%, 360px) !important;
  }

  #freedom-intercambio .fi-step small {
    font-size: 17px !important;
  }

  #freedom-intercambio .fi-step strong {
    font-size: 20px !important;
  }
}

/* =========================================================
   CORREÇÃO FINAL — NÚMEROS, BOTÕES, MAPA E ESPAÇAMENTOS
   ========================================================= */

/* Remove os parágrafos automáticos criados pelo WordPress ao redor do main. */
body.page-id-9657 .gdlr-core-text-box-item-content > p:has(> #freedom-intercambio),
body:has(#freedom-intercambio) .gdlr-core-text-box-item-content > p:has(> #freedom-intercambio) {
  display: contents !important;
  margin: 0 !important;
  padding: 0 !important;
}

#freedom-intercambio > p:empty {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Impede que quebras automáticas deixem palavras isoladas. */
#freedom-intercambio .fi-hero-description br,
#freedom-intercambio .fi-experience-intro > p br,
#freedom-intercambio .fi-faq-intro > p:last-child br,
#freedom-intercambio .fi-testimonials .fi-section-heading > p:last-child br,
#freedom-intercambio .fi-price-information br,
#freedom-intercambio .fi-button br {
  display: none !important;
}

/* Todos os números principais usam exatamente o mesmo círculo. */
#freedom-intercambio .fi-experience-benefits article > span,
#freedom-intercambio .fi-process-list li > span {
  box-sizing: border-box !important;
  width: 68px !important;
  min-width: 68px !important;
  height: 68px !important;
  min-height: 68px !important;
  flex: 0 0 68px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  font-size: 22px !important;
  line-height: 1 !important;
}

/* O avião e o contorno ficam visíveis sobre o fundo do hero. */
#freedom-intercambio .fi-world-map {
  z-index: 2 !important;
  display: block !important;
  opacity: .34 !important;
  filter: drop-shadow(0 0 7px rgba(255,255,255,.3)) !important;
}

#freedom-intercambio .fi-world-map::after {
  z-index: 3 !important;
  display: block !important;
  content: "✈" !important;
  font-size: 46px !important;
  opacity: 1 !important;
}

/* Remove o espaço irregular causado por <br> dentro dos links. */
#freedom-intercambio .fi-button {
  box-sizing: border-box !important;
  line-height: 1.2 !important;
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

/* Caixa de valores centralizada nos dois eixos, inclusive com o ícone. */
#freedom-intercambio .fi-price-information {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  gap: 14px !important;
}

#freedom-intercambio .fi-price-information > p:has(.fi-price-information-icon),
#freedom-intercambio .fi-price-information .fi-price-information-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto !important;
}

#freedom-intercambio .fi-price-information > p,
#freedom-intercambio .fi-price-information p {
  width: min(100%, 980px) !important;
  max-width: 980px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

@media (max-width: 767px) {
  #freedom-intercambio .fi-world-map {
    opacity: .28 !important;
  }

  #freedom-intercambio .fi-world-map::after {
    font-size: 32px !important;
  }

  #freedom-intercambio .fi-button {
    min-height: 60px !important;
  }
}

/* =========================================================
   AJUSTE FINAL — CABEÇALHO, BOTÕES E PASSOS
   ========================================================= */

/* Remove o título vazio do tema e a faixa branca acima do hero. */
body.page-id-9657 .gdlr-page-title-wrapper,
body.page-id-9657 .gdlr-page-title-container,
body.page-id-9657 .gdlr-page-title,
body.page-id-9657 .gdlr-page-title-background,
body:has(#freedom-intercambio) .gdlr-page-title-wrapper,
body:has(#freedom-intercambio) .gdlr-page-title-container,
body:has(#freedom-intercambio) .gdlr-page-title,
body:has(#freedom-intercambio) .gdlr-page-title-background {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.page-id-9657 .gdlr-page-content,
body.page-id-9657 .gdlr-content,
body:has(#freedom-intercambio) .gdlr-page-content,
body:has(#freedom-intercambio) .gdlr-content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

#freedom-intercambio .fi-hero-description {
  text-align: left !important;
  text-align-last: left !important;
  word-spacing: normal !important;
  letter-spacing: normal !important;
}

#freedom-intercambio .fi-hero-actions {
  justify-content: center;
}

#freedom-intercambio .fi-hero-actions > .fi-button {
  margin-left: auto;
  margin-right: auto;
}

#freedom-intercambio .fi-step small {
  font-size: 16px;
}

#freedom-intercambio .fi-step strong {
  font-size: 19px;
}

/* Reequilibra o recorte para manter a Opera House e a faixa visíveis. */
#freedom-intercambio .fi-photo-sydney img {
  object-position: center 42% !important;
}

@media (max-width: 767px) {
  #freedom-intercambio .fi-hero-actions {
    justify-items: center;
  }

  #freedom-intercambio .fi-hero-actions > .fi-button {
    width: min(100%, 360px);
  }

  #freedom-intercambio .fi-step small {
    font-size: 17px;
  }

  #freedom-intercambio .fi-step strong {
    font-size: 20px;
  }
}

/* =========================================================
   AJUSTE FINAL — TÍTULOS, TEXTOS E CAIXA DE INFORMAÇÃO
   ========================================================= */

#freedom-intercambio .fi-section-kicker {
  font-size: 22px !important;
  letter-spacing: 2px;
}

#freedom-intercambio .fi-included-card p {
  font-size: 18px !important;
  line-height: 1.55;
}

#freedom-intercambio .fi-price-information {
  width: 100%;
  max-width: 1400px;
}

#freedom-intercambio .fi-price-information p {
  width: 100%;
  max-width: none;
  font-size: 18px;
  line-height: 1.6;
}

@media (max-width: 767px) {
  #freedom-intercambio .fi-section-kicker {
    font-size: 19px !important;
    letter-spacing: 1.6px;
  }

  #freedom-intercambio .fi-included-card p {
    font-size: 17px !important;
  }

  #freedom-intercambio .fi-price-information p {
    font-size: 16px;
    line-height: 1.55;
  }
}

/* =========================================================
   AJUSTE FINAL — ÍCONES E LEITURA NO CELULAR
   ========================================================= */

#freedom-intercambio .fi-icon::after {
  display: none !important;
}

#freedom-intercambio .fi-icon {
  width: 88px;
  height: 88px;
}

#freedom-intercambio .fi-icon img {
  width: 70px;
  height: 70px;
}

#freedom-intercambio .fi-support-card h3 {
  font-size: 21px;
}

#freedom-intercambio .fi-support-card p {
  font-size: 16px;
}

@media (max-width: 767px) {

  #freedom-intercambio .fi-support-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  #freedom-intercambio .fi-support-card {
    min-height: 0;
    padding: 30px 22px 28px;
  }

  #freedom-intercambio .fi-icon {
    width: 122px;
    height: 122px;
    margin-bottom: 23px;
  }

  #freedom-intercambio .fi-icon img {
    width: 100px;
    height: 100px;
  }

  #freedom-intercambio .fi-support-card h3 {
    font-size: 24px;
    line-height: 1.25;
  }

  #freedom-intercambio .fi-support-card p {
    font-size: 18px;
    line-height: 1.55;
  }
}

/* V20 FINAL — regras de prioridade para os ajustes aprovados */
body.page-id-9657 #kingster-page-wrapper,
body:has(#freedom-intercambio) #kingster-page-wrapper,
body.page-id-9657 .gdlr-core-page-builder-body,
body:has(#freedom-intercambio) .gdlr-core-page-builder-body,
body.page-id-9657 .gdlr-core-pbf-wrapper:has(#freedom-intercambio),
body:has(#freedom-intercambio) .gdlr-core-pbf-wrapper:has(#freedom-intercambio),
body.page-id-9657 .gdlr-core-pbf-wrapper-content:has(#freedom-intercambio),
body:has(#freedom-intercambio) .gdlr-core-pbf-wrapper-content:has(#freedom-intercambio),
body.page-id-9657 .gdlr-core-pbf-wrapper-container:has(#freedom-intercambio),
body:has(#freedom-intercambio) .gdlr-core-pbf-wrapper-container:has(#freedom-intercambio),
body.page-id-9657 .gdlr-core-text-box-item:has(#freedom-intercambio),
body:has(#freedom-intercambio) .gdlr-core-text-box-item:has(#freedom-intercambio),
body.page-id-9657 .gdlr-core-text-box-item-content:has(#freedom-intercambio),
body:has(#freedom-intercambio) .gdlr-core-text-box-item-content:has(#freedom-intercambio) {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

#freedom-intercambio .fi-world-map {
  opacity: .24 !important;
  filter: drop-shadow(0 0 6px rgba(255,255,255,.24));
  background-image: url("data:image/svg+xml,%3Csvg width='1000' height='520' viewBox='0 0 1000 520' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M42 145L72 106L132 78L198 82L252 108L300 101L348 128L333 158L290 170L265 198L225 190L205 217L158 202L129 181L90 186L63 166Z'/%3E%3Cpath d='M255 235L296 250L312 291L300 333L282 369L270 420L244 391L223 343L219 297L233 264Z'/%3E%3Cpath d='M430 130L468 103L512 110L538 133L522 154L487 151L463 170L433 160Z'/%3E%3Cpath d='M455 178L520 169L566 205L558 263L530 334L494 364L461 329L442 275L421 223Z'/%3E%3Cpath d='M525 124L585 90L668 82L730 104L792 112L850 140L900 176L870 203L820 193L779 214L723 190L674 207L625 183L575 175L540 160Z'/%3E%3Cpath d='M758 312L810 292L865 304L900 338L879 374L825 387L783 365Z'/%3E%3Cpath d='M310 54L352 30L400 43L420 72L397 97L352 91L326 76Z'/%3E%3Cpath d='M330 442L450 433L565 446L690 438L802 454L850 477L350 477Z'/%3E%3C/g%3E%3C/svg%3E") !important;
}

#freedom-intercambio .fi-world-map::after {
  content: "✈";
  position: absolute;
  top: 39%;
  left: 55%;
  color: #fff;
  font: 42px/1 Arial, sans-serif;
  text-shadow: 0 0 12px rgba(255,255,255,.8);
  transform: rotate(-18deg);
  opacity: .98;
}

#freedom-intercambio .fi-experience-benefits article > span,
#freedom-intercambio .fi-process-list li > span {
  width: 68px !important;
  height: 68px !important;
  flex-basis: 68px !important;
  font-size: 22px !important;
}

#freedom-intercambio .fi-experience-benefits article { align-items: center !important; min-height: 126px; }
#freedom-intercambio .fi-experience-benefits h3,
#freedom-intercambio .fi-process-list strong { font-size: 20px !important; line-height: 1.3 !important; }
#freedom-intercambio .fi-experience-benefits p,
#freedom-intercambio .fi-process-list p { font-size: 17px !important; line-height: 1.5 !important; }

#freedom-intercambio .fi-icon,
#freedom-intercambio .fi-included-icon { width: 120px !important; height: 120px !important; }
#freedom-intercambio .fi-icon img,
#freedom-intercambio .fi-included-icon img { width: 96px !important; height: 96px !important; }

#freedom-intercambio .fi-button,
#freedom-intercambio .fi-compare-link,
#freedom-intercambio .fi-table-action a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  vertical-align: middle !important;
}

#freedom-intercambio .fi-final-actions,
#freedom-intercambio .fi-testimonial-actions { align-items: center !important; justify-items: center !important; }
#freedom-intercambio .fi-final-actions .fi-button,
#freedom-intercambio .fi-testimonial-actions .fi-button { width: 100% !important; text-align: center !important; }

#freedom-intercambio .fi-hero-description { max-width: 680px !important; font-size: 21px !important; text-wrap: pretty; }
#freedom-intercambio .fi-faq-intro > p:last-child { max-width: 640px !important; text-wrap: pretty; }

#freedom-intercambio .fi-price-information {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  padding: 26px 34px !important;
  text-align: center !important;
}
#freedom-intercambio .fi-price-information p { width: min(100%,980px) !important; max-width: 980px !important; margin: 0 auto !important; text-align: center !important; }
#freedom-intercambio .fi-photo-sydney img { object-position: center 28% !important; }

@media (max-width: 767px) {
  #freedom-intercambio .fi-world-map { opacity: .18 !important; }
  #freedom-intercambio .fi-world-map::after { top: 39%; left: 56%; font-size: 29px; }
  #freedom-intercambio .fi-experience-benefits article > span,
  #freedom-intercambio .fi-process-list li > span { width: 68px !important; height: 68px !important; flex-basis: 68px !important; font-size: 22px !important; }
  #freedom-intercambio .fi-experience-benefits article { min-height: 150px; padding: 20px !important; }
  #freedom-intercambio .fi-icon,
  #freedom-intercambio .fi-included-icon { width: 128px !important; height: 128px !important; }
  #freedom-intercambio .fi-icon img,
  #freedom-intercambio .fi-included-icon img { width: 104px !important; height: 104px !important; }
  #freedom-intercambio .fi-hero-description { max-width: none !important; font-size: 19px !important; }
  #freedom-intercambio .fi-price-information { padding: 24px 18px !important; }
  #freedom-intercambio .fi-price-information p { width: 100% !important; font-size: 17px !important; }
  #freedom-intercambio .fi-final-actions .fi-button,
  #freedom-intercambio .fi-testimonial-actions .fi-button { min-height: 60px !important; }
}

/* =========================================================
   AJUSTE FINAL — CABEÇALHO, BOTÕES E PASSOS (ÚLTIMA SOBRESCRIÇÃO)
   ========================================================= */

body.page-id-9657 .gdlr-page-title-wrapper,
body.page-id-9657 .gdlr-page-title-container,
body.page-id-9657 .gdlr-page-title,
body.page-id-9657 .gdlr-page-title-background,
body:has(#freedom-intercambio) .gdlr-page-title-wrapper,
body:has(#freedom-intercambio) .gdlr-page-title-container,
body:has(#freedom-intercambio) .gdlr-page-title,
body:has(#freedom-intercambio) .gdlr-page-title-background {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.page-id-9657 .gdlr-page-content,
body.page-id-9657 .gdlr-content,
body:has(#freedom-intercambio) .gdlr-page-content,
body:has(#freedom-intercambio) .gdlr-content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

#freedom-intercambio .fi-hero-description {
  text-align: left !important;
  text-align-last: left !important;
  word-spacing: normal !important;
  letter-spacing: normal !important;
}

#freedom-intercambio .fi-hero-actions {
  justify-content: center !important;
}

#freedom-intercambio .fi-hero-actions > .fi-button {
  margin-left: auto !important;
  margin-right: auto !important;
}

#freedom-intercambio .fi-step small {
  font-size: 16px !important;
}

#freedom-intercambio .fi-step strong {
  font-size: 19px !important;
}

#freedom-intercambio .fi-photo-sydney img {
  object-position: center 42% !important;
}

@media (max-width: 767px) {
  #freedom-intercambio .fi-hero-actions {
    justify-items: center !important;
  }

  #freedom-intercambio .fi-hero-actions > .fi-button {
    width: min(100%, 360px) !important;
  }

  #freedom-intercambio .fi-step small {
    font-size: 17px !important;
  }

  #freedom-intercambio .fi-step strong {
    font-size: 20px !important;
  }
}

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

#freedom-intercambio .fi-section-heading {
  max-width: 790px;
  margin: 0 auto 42px;
  text-align: center;
}

#freedom-intercambio .fi-section-kicker {
  margin: 0 0 13px;
  color: var(--fi-red);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

#freedom-intercambio .fi-section-heading h2,
#freedom-intercambio .fi-experience-intro h2,
#freedom-intercambio .fi-faq-intro h2,
#freedom-intercambio .fi-final-cta h2 {
  margin: 0;
  color: var(--fi-blue);
  font-size: clamp(34px, 3.2vw, 50px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.2px;
}

#freedom-intercambio .fi-section-heading > p:last-child {
  max-width: 780px;
  margin: 14px auto 0;
  color: var(--fi-muted);
  font-size: 21px;
  line-height: 1.58;
}

#freedom-intercambio .fi-section-heading-light h2 {
  color: #ffffff;
}

#freedom-intercambio .fi-section-heading-light > p:last-child {
  color: rgba(255, 255, 255, 0.8);
}


/* =========================================================
   BOTÕES
   ========================================================= */

#freedom-intercambio .fi-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 26px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.35px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

#freedom-intercambio .fi-button:hover {
  transform: translateY(-2px);
}

#freedom-intercambio .fi-button-primary {
  color: #ffffff;
  background: var(--fi-red);
  box-shadow: 0 10px 24px rgba(156, 18, 22, 0.28);
}

#freedom-intercambio .fi-button-primary:hover {
  color: #ffffff;
  background: #bb1f22;
  box-shadow: 0 14px 30px rgba(156, 18, 22, 0.35);
}

#freedom-intercambio .fi-button-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(8, 36, 76, 0.28);
  backdrop-filter: blur(7px);
}

#freedom-intercambio .fi-button-secondary:hover {
  color: var(--fi-blue-dark);
  background: #ffffff;
}


/* =========================================================
   ABERTURA
   ========================================================= */

#freedom-intercambio .fi-hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--fi-blue-dark);
}

#freedom-intercambio .fi-hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

#freedom-intercambio .fi-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(10, 39, 82, 0.98) 0%,
      rgba(18, 57, 107, 0.94) 30%,
      rgba(23, 63, 122, 0.78) 49%,
      rgba(23, 63, 122, 0.26) 68%,
      rgba(23, 63, 122, 0.02) 100%
    ),
    linear-gradient(
      180deg,
      rgba(9, 31, 65, 0.08) 0%,
      rgba(9, 31, 65, 0.05) 65%,
      rgba(9, 31, 65, 0.38) 100%
    );
}

#freedom-intercambio .fi-world-map {
  position: absolute;
  z-index: 2;
  top: 40px;
  left: -60px;
  width: 780px;
  height: 440px;
  opacity: 0.11;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg width='1000' height='520' viewBox='0 0 1000 520' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M73 155L119 106 190 80 253 101 286 139 258 174 219 180 194 210 151 197 128 168 91 177Z'/%3E%3Cpath d='M210 226L257 235 279 271 265 319 240 355 226 411 200 369 183 315 174 267Z'/%3E%3Cpath d='M424 127L462 105 499 111 520 135 502 157 466 153 447 177 415 165Z'/%3E%3Cpath d='M449 181L507 176 544 214 536 266 507 329 470 315 446 262 425 211Z'/%3E%3Cpath d='M517 132L581 91 669 83 730 108 795 116 862 158 829 191 765 184 724 210 671 187 623 205 574 173 531 171Z'/%3E%3Cpath d='M759 293L814 280 858 306 850 345 802 356 769 331Z'/%3E%3Cpath d='M885 364L918 352 934 372 913 393 887 385Z'/%3E%3C/g%3E%3C/svg%3E");
}

#freedom-intercambio .fi-hero-grid {
  display: grid;
  grid-template-columns: minmax(430px, 1fr) 285px minmax(270px, 0.72fr);
  gap: 42px;
  align-items: center;
  padding-top: 62px;
  padding-bottom: 62px;
}

#freedom-intercambio .fi-hero-content {
  grid-column: 1;
  max-width: 650px;
}

#freedom-intercambio .fi-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1.4px;
  backdrop-filter: blur(7px);
}

#freedom-intercambio .fi-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--fi-red);
  box-shadow: 0 0 0 5px rgba(217, 41, 42, 0.17);
}

#freedom-intercambio .fi-hero h1 {
  max-width: 650px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(44px, 3.55vw, 62px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -1.8px;
  text-shadow: 0 3px 22px rgba(5, 24, 52, 0.25);
}

#freedom-intercambio .fi-hero h1 span {
  display: block;
  margin-top: 9px;
  color: #ffffff;
}

#freedom-intercambio .fi-hero h1 span::after {
  content: "";
  display: block;
  width: 94px;
  height: 5px;
  margin-top: 18px;
  border-radius: 999px;
  background: var(--fi-red);
  box-shadow:
    0 0 8px rgba(255, 255, 255, 0.85),
    0 0 20px rgba(217, 41, 42, 0.65);
}

#freedom-intercambio .fi-hero-description {
  max-width: 580px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.93);
  font-size: 19px;
  line-height: 1.58;
  text-shadow: 0 2px 12px rgba(5, 24, 52, 0.2);
}

#freedom-intercambio .fi-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 28px;
}

#freedom-intercambio .fi-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 29px;
}

#freedom-intercambio .fi-step {
  min-width: 174px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  color: #ffffff;
  background: rgba(8, 34, 73, 0.34);
  backdrop-filter: blur(8px);
}

#freedom-intercambio .fi-step-number {
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--fi-red);
  font-size: 14px;
  font-weight: 800;
}

#freedom-intercambio .fi-step strong,
#freedom-intercambio .fi-step small {
  display: block;
}

#freedom-intercambio .fi-step strong {
  font-size: 18px;
  line-height: 1.15;
}

#freedom-intercambio .fi-step small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.35;
}


/* =========================================================
   VÍDEO VERTICAL
   ========================================================= */

#freedom-intercambio .fi-video-area {
  grid-column: 2;
  width: 100%;
  max-width: 285px;
  justify-self: center;
}

#freedom-intercambio .fi-video-heading {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 10px;
  color: #ffffff;
  background: rgba(8, 34, 73, 0.5);
  backdrop-filter: blur(10px);
}

#freedom-intercambio .fi-video-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 2px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--fi-red);
  font-size: 13px;
}

#freedom-intercambio .fi-video-heading strong,
#freedom-intercambio .fi-video-heading small {
  display: block;
}

#freedom-intercambio .fi-video-heading strong {
  font-size: 14px;
  line-height: 1.2;
}

#freedom-intercambio .fi-video-heading small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  line-height: 1.3;
}

#freedom-intercambio .fi-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.97);
  border-radius: 20px;
  background: #081d3d;
  box-shadow:
    0 26px 60px rgba(3, 18, 42, 0.38),
    0 0 0 1px rgba(23, 63, 122, 0.15);
}

#freedom-intercambio .fi-video-frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -6px;
  left: 50%;
  width: 72px;
  height: 13px;
  border-radius: 0 0 11px 11px;
  background: rgba(255, 255, 255, 0.97);
  transform: translateX(-50%);
  pointer-events: none;
}

#freedom-intercambio .fi-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


/* =========================================================
   SUPORTE
   ========================================================= */

#freedom-intercambio .fi-support {
  position: relative;
  padding: 86px 0 92px;
  background:
    radial-gradient(circle at 50% 0%, rgba(47, 104, 169, 0.08), transparent 40%),
    #ffffff;
}

#freedom-intercambio .fi-support-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 17px;
}

#freedom-intercambio .fi-support-card {
  min-height: 220px;
  margin: 0;
  padding: 27px 17px 23px;
  border: 1px solid var(--fi-border);
  border-radius: 14px;
  text-align: center;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 50, 91, 0.07);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

#freedom-intercambio .fi-support-card:hover {
  transform: translateY(-5px);
  border-color: rgba(23, 63, 122, 0.3);
  box-shadow: 0 18px 38px rgba(15, 50, 91, 0.13);
}

#freedom-intercambio .fi-icon {
  position: relative;
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--fi-blue);
  background: #edf4fc;
}

#freedom-intercambio .fi-icon::after {
  display: none;
}

#freedom-intercambio .fi-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#freedom-intercambio .fi-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}

#freedom-intercambio .fi-support-card h3 {
  margin: 0;
  color: var(--fi-blue);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
}

#freedom-intercambio .fi-support-card p {
  margin: 10px 0 0;
  color: var(--fi-muted);
  font-size: 16px;
  line-height: 1.55;
}

/* O editor visual do WordPress pode inserir <br> após imagens inline. */
#freedom-intercambio .fi-support-card > br,
#freedom-intercambio .fi-destination-card > br,
#freedom-intercambio .fi-included-card > br {
  display: none !important;
}


/* =========================================================
   DESTINOS
   ========================================================= */

#freedom-intercambio .fi-destinations {
  position: relative;
  padding: 86px 0 94px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 30%, rgba(70, 137, 207, 0.32), transparent 30%),
    radial-gradient(circle at 88% 78%, rgba(217, 41, 42, 0.14), transparent 25%),
    linear-gradient(135deg, #0c2d5f 0%, #173f7a 55%, #0b2854 100%);
}

#freedom-intercambio .fi-destinations::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1050px auto;
  background-image: url("data:image/svg+xml,%3Csvg width='1000' height='520' viewBox='0 0 1000 520' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M73 155L119 106 190 80 253 101 286 139 258 174 219 180 194 210 151 197 128 168 91 177Z'/%3E%3Cpath d='M210 226L257 235 279 271 265 319 240 355 226 411 200 369 183 315 174 267Z'/%3E%3Cpath d='M424 127L462 105 499 111 520 135 502 157 466 153 447 177 415 165Z'/%3E%3Cpath d='M449 181L507 176 544 214 536 266 507 329 470 315 446 262 425 211Z'/%3E%3Cpath d='M517 132L581 91 669 83 730 108 795 116 862 158 829 191 765 184 724 210 671 187 623 205 574 173 531 171Z'/%3E%3Cpath d='M759 293L814 280 858 306 850 345 802 356 769 331Z'/%3E%3Cpath d='M885 364L918 352 934 372 913 393 887 385Z'/%3E%3C/g%3E%3C/svg%3E");
}

#freedom-intercambio .fi-destination-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 17px;
}

#freedom-intercambio .fi-hero-actions > p,
#freedom-intercambio .fi-destination-grid > p,
#freedom-intercambio .fi-testimonial-actions > p,
#freedom-intercambio .fi-final-actions > p {
  display: contents !important;
}

#freedom-intercambio .fi-destination-card {
  position: relative;
  min-height: 188px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 16px;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.17),
    rgba(255, 255, 255, 0.06)
  );
  box-shadow: 0 15px 38px rgba(3, 20, 45, 0.22);
  backdrop-filter: blur(8px);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease;
}

#freedom-intercambio .fi-destination-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--fi-red);
  box-shadow:
    0 0 8px rgba(255, 255, 255, 0.9),
    0 0 17px rgba(217, 41, 42, 0.75);
}

#freedom-intercambio .fi-destination-card:hover {
  color: #ffffff;
  transform: translateY(-7px);
  border-color: rgba(255, 255, 255, 0.55);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0.1)
  );
}

#freedom-intercambio .fi-flag {
  display: block;
  margin-bottom: 13px;
  font-size: 46px;
  line-height: 1;
  filter: drop-shadow(0 5px 9px rgba(0, 0, 0, 0.18));
}

#freedom-intercambio .fi-destination-card strong {
  display: block;
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
}

#freedom-intercambio .fi-destination-card small {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  font-weight: 600;
}

#freedom-intercambio .fi-compare-link {
  width: fit-content;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 34px auto 0;
  padding: 15px 26px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--fi-red);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.4px;
  box-shadow: 0 12px 30px rgba(112, 12, 17, 0.28);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

#freedom-intercambio .fi-compare-link:hover {
  color: #ffffff;
  background: #bb1f22;
  transform: translateY(-2px);
}

#freedom-intercambio .fi-compare-link span {
  font-size: 21px;
}


/* =========================================================
   EXPERIÊNCIAS REAIS
   ========================================================= */

#freedom-intercambio .fi-experiences {
  padding: 94px 0;
  background: #ffffff;
}

#freedom-intercambio .fi-experience-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 43px;
}

#freedom-intercambio .fi-experience-intro > p {
  margin: 0 0 5px;
  color: var(--fi-muted);
  font-size: 18px;
  line-height: 1.65;
}

#freedom-intercambio .fi-photo-mosaic {
  display: grid;
  grid-template-columns: 1.45fr 0.9fr 0.9fr;
  grid-template-rows: 245px 245px;
  gap: 16px;
}

#freedom-intercambio .fi-photo {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: var(--fi-blue-dark);
  box-shadow: var(--fi-shadow);
}

#freedom-intercambio .fi-photo-large {
  grid-column: 1;
  grid-row: 1 / 3;
}

#freedom-intercambio .fi-photo-tall {
  grid-column: 2;
  grid-row: 1 / 3;
}

#freedom-intercambio .fi-photo-small {
  grid-column: 3;
}

#freedom-intercambio .fi-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

#freedom-intercambio .fi-photo:hover img {
  transform: scale(1.035);
}

#freedom-intercambio .fi-photo::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(5, 24, 52, 0.88)
  );
  pointer-events: none;
}

#freedom-intercambio .fi-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  left: 22px;
  color: #ffffff;
}

#freedom-intercambio .fi-photo figcaption strong,
#freedom-intercambio .fi-photo figcaption span {
  display: block;
}

#freedom-intercambio .fi-photo figcaption strong {
  font-size: 22px;
  font-weight: 800;
}

#freedom-intercambio .fi-photo figcaption span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

#freedom-intercambio .fi-experience-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
  margin-top: 30px;
}

#freedom-intercambio .fi-experience-benefits article {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 21px;
  border: 1px solid var(--fi-border);
  border-radius: 13px;
  background: var(--fi-light);
}

#freedom-intercambio .fi-experience-benefits article > span {
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--fi-red);
  font-size: 12px;
  font-weight: 800;
}

#freedom-intercambio .fi-experience-benefits h3 {
  margin: 0;
  color: var(--fi-blue);
  font-size: 17px;
  font-weight: 800;
}

#freedom-intercambio .fi-experience-benefits p {
  margin: 6px 0 0;
  color: var(--fi-muted);
  font-size: 13px;
  line-height: 1.5;
}


/* =========================================================
   PREÇOS
   ========================================================= */

#freedom-intercambio .fi-prices {
  padding: 92px 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(47, 104, 169, 0.1), transparent 35%),
    #f5f8fc;
}

#freedom-intercambio .fi-price-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px;
}

#freedom-intercambio .fi-price-card {
  position: relative;
  padding: 25px 20px 22px;
  border: 1px solid var(--fi-border);
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 13px 34px rgba(15, 50, 91, 0.08);
}

#freedom-intercambio .fi-price-featured {
  border: 2px solid var(--fi-red);
  box-shadow: 0 17px 40px rgba(217, 41, 42, 0.14);
}

#freedom-intercambio .fi-price-featured::before {
  content: "MENOR VALOR";
  position: absolute;
  top: -14px;
  left: 50%;
  padding: 6px 13px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--fi-red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  transform: translateX(-50%);
  white-space: nowrap;
}

#freedom-intercambio .fi-price-country {
  display: flex;
  align-items: center;
  gap: 11px;
}

#freedom-intercambio .fi-price-country > span {
  font-size: 34px;
  line-height: 1;
}

#freedom-intercambio .fi-price-country strong,
#freedom-intercambio .fi-price-country small {
  display: block;
}

#freedom-intercambio .fi-price-country strong {
  color: var(--fi-blue);
  font-size: 17px;
  font-weight: 800;
}

#freedom-intercambio .fi-price-country small {
  margin-top: 2px;
  color: var(--fi-muted);
  font-size: 11px;
}

#freedom-intercambio .fi-price-value {
  margin: 24px 0 2px;
  color: var(--fi-blue-dark);
  font-size: 33px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
}

#freedom-intercambio .fi-price-value small {
  margin-right: 3px;
  color: var(--fi-red);
  font-size: 18px;
}

#freedom-intercambio .fi-price-period {
  margin: 8px 0 20px;
  color: var(--fi-muted);
  font-size: 12px;
}

#freedom-intercambio .fi-price-card > a {
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--fi-blue);
  border-radius: 7px;
  color: var(--fi-blue);
  font-size: 12px;
  font-weight: 800;
  transition: color 0.2s ease, background-color 0.2s ease;
}

#freedom-intercambio .fi-price-card > a:hover {
  color: #ffffff;
  background: var(--fi-blue);
}

#freedom-intercambio .fi-price-note {
  max-width: 920px;
  margin: 25px auto 0;
  color: var(--fi-muted);
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
}


/* =========================================================
   DEPOIMENTOS
   ========================================================= */

#freedom-intercambio .fi-testimonials {
  position: relative;
  padding: 92px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(55, 121, 190, 0.3), transparent 31%),
    linear-gradient(135deg, #0b2854, #173f7a 55%, #0a234a);
}

#freedom-intercambio .fi-testimonial-status {
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.83);
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
}

#freedom-intercambio .fi-testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

#freedom-intercambio .fi-testimonial-card {
  position: relative;
  min-height: 285px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 42px rgba(3, 18, 42, 0.2);
  backdrop-filter: blur(9px);
}

#freedom-intercambio .fi-testimonial-card::before {
  content: "“";
  position: absolute;
  top: 12px;
  right: 23px;
  color: rgba(255, 255, 255, 0.15);
  font-family: Georgia, serif;
  font-size: 72px;
  line-height: 1;
}

#freedom-intercambio .fi-testimonial-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.7;
}

#freedom-intercambio .fi-testimonial-person {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 23px;
}

#freedom-intercambio .fi-testimonial-person img {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
}

#freedom-intercambio .fi-testimonial-person strong,
#freedom-intercambio .fi-testimonial-person small {
  display: block;
}

#freedom-intercambio .fi-testimonial-person strong {
  color: #ffffff;
  font-size: 15px;
}

#freedom-intercambio .fi-testimonial-person small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
}

#freedom-intercambio .fi-testimonial-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-top: 30px;
}

#freedom-intercambio .fi-slider-button {
  width: 49px;
  height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  font-size: 31px;
  line-height: 1;
  cursor: pointer;
}

#freedom-intercambio .fi-slider-button:hover {
  background: rgba(255, 255, 255, 0.2);
}


/* =========================================================
   PROCESSO
   ========================================================= */

#freedom-intercambio .fi-process {
  padding: 92px 0;
  background: #ffffff;
}

#freedom-intercambio .fi-process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 17px;
  margin: 0;
  padding: 0;
  list-style: none;
}

#freedom-intercambio .fi-process-list::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 30px;
  right: 9%;
  left: 9%;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--fi-blue),
    var(--fi-red),
    var(--fi-blue)
  );
}

#freedom-intercambio .fi-process-list li {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 13px;
  text-align: center;
}

#freedom-intercambio .fi-process-list li > span {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 6px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  background: var(--fi-red);
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 7px 20px rgba(217, 41, 42, 0.2);
}

#freedom-intercambio .fi-process-list strong {
  display: block;
  color: var(--fi-blue);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
}

#freedom-intercambio .fi-process-list p {
  margin: 9px 0 0;
  color: var(--fi-muted);
  font-size: 13px;
  line-height: 1.55;
}


/* =========================================================
   PERGUNTAS FREQUENTES
   ========================================================= */

#freedom-intercambio .fi-faq {
  padding: 90px 0;
  background: var(--fi-light);
}

#freedom-intercambio .fi-faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 75px;
  align-items: start;
}

#freedom-intercambio .fi-faq-intro {
  position: sticky;
  top: 35px;
}

#freedom-intercambio .fi-faq-intro > p:last-child {
  margin: 17px 0 0;
  color: var(--fi-muted);
  font-size: 17px;
  line-height: 1.65;
}

#freedom-intercambio .fi-faq-list {
  display: grid;
  gap: 12px;
}

#freedom-intercambio .fi-faq-list details {
  border: 1px solid var(--fi-border);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 50, 91, 0.06);
}

#freedom-intercambio .fi-faq-list summary {
  position: relative;
  padding: 21px 58px 21px 22px;
  color: var(--fi-blue);
  font-size: 16px;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

#freedom-intercambio .fi-faq-list summary::-webkit-details-marker {
  display: none;
}

#freedom-intercambio .fi-faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 29px;
  height: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--fi-red);
  font-size: 21px;
  font-weight: 400;
  transform: translateY(-50%);
}

#freedom-intercambio .fi-faq-list details[open] summary::after {
  content: "−";
}

#freedom-intercambio .fi-faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--fi-muted);
  font-size: 15px;
  line-height: 1.65;
}


/* =========================================================
   CTA FINAL
   ========================================================= */

#freedom-intercambio .fi-final-cta {
  position: relative;
  padding: 76px 0;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 85% 25%, rgba(67, 134, 204, 0.38), transparent 30%),
    linear-gradient(125deg, #0a2855, #173f7a);
}

#freedom-intercambio .fi-final-cta::before,
#freedom-intercambio .fi-final-cta::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--fi-red);
  box-shadow:
    0 0 8px rgba(255, 255, 255, 0.9),
    0 0 18px rgba(217, 41, 42, 0.85);
}

#freedom-intercambio .fi-final-cta::before {
  top: 0;
}

#freedom-intercambio .fi-final-cta::after {
  bottom: 0;
}

#freedom-intercambio .fi-final-cta-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 55px;
  align-items: center;
}

#freedom-intercambio .fi-final-cta h2 {
  color: #ffffff;
}

#freedom-intercambio .fi-final-cta p:not(.fi-section-kicker) {
  max-width: 720px;
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.6;
}

#freedom-intercambio .fi-final-actions {
  display: grid;
  gap: 11px;
  min-width: 285px;
}


/* =========================================================
   TABLETS
   ========================================================= */

@media (max-width: 1180px) {

  #freedom-intercambio .fi-container {
    width: min(100% - 44px, 1100px);
  }

  #freedom-intercambio .fi-hero-grid {
    grid-template-columns: minmax(0, 1fr) 275px;
    gap: 34px;
  }

  #freedom-intercambio .fi-video-area {
    grid-column: 2;
  }

  #freedom-intercambio .fi-hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(10, 39, 82, 0.97) 0%,
      rgba(18, 57, 107, 0.88) 49%,
      rgba(23, 63, 122, 0.3) 78%,
      rgba(23, 63, 122, 0.08) 100%
    );
  }

  #freedom-intercambio .fi-support-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  #freedom-intercambio .fi-destination-grid,
  #freedom-intercambio .fi-price-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  #freedom-intercambio .fi-experience-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #freedom-intercambio .fi-process-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 34px;
  }

  #freedom-intercambio .fi-process-list::before {
    display: none;
  }

}


/* =========================================================
   CELULARES
   ========================================================= */

@media (max-width: 767px) {

  #freedom-intercambio .fi-container {
    width: calc(100% - 34px);
  }

  #freedom-intercambio .fi-hero {
    min-height: 0;
    align-items: stretch;
  }

  #freedom-intercambio .fi-hero-background {
    height: 520px;
    object-position: 67% center;
  }

  #freedom-intercambio .fi-hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(10, 39, 82, 0.9) 0%,
        rgba(17, 55, 105, 0.8) 290px,
        rgba(10, 39, 82, 0.98) 520px,
        #0b2854 760px,
        #0b2854 100%
      );
  }

  #freedom-intercambio .fi-world-map {
    top: 20px;
    left: -230px;
    width: 650px;
    height: 350px;
    opacity: 0.09;
  }

  #freedom-intercambio .fi-hero-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 46px;
    padding-bottom: 55px;
  }

  #freedom-intercambio .fi-hero-content {
    width: 100%;
    max-width: none;
  }

  #freedom-intercambio .fi-eyebrow {
    margin-bottom: 17px;
    padding: 8px 12px;
    font-size: 13px;
    letter-spacing: 1px;
  }

  #freedom-intercambio .fi-hero h1 {
    max-width: 370px;
    font-size: clamp(36px, 10.5vw, 47px);
    line-height: 1.04;
    letter-spacing: -1.3px;
  }

  #freedom-intercambio .fi-hero h1 span {
    margin-top: 8px;
  }

  #freedom-intercambio .fi-hero h1 span::after {
    width: 74px;
    height: 4px;
    margin-top: 15px;
  }

  #freedom-intercambio .fi-hero-description {
    max-width: 365px;
    margin-top: 20px;
    font-size: 17px;
    line-height: 1.52;
  }

  #freedom-intercambio .fi-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 26px;
  }

  #freedom-intercambio .fi-button {
    width: 100%;
    min-height: 55px;
    padding: 14px 15px;
    font-size: 16px;
  }

  #freedom-intercambio .fi-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 26px;
  }

  #freedom-intercambio .fi-step {
    width: 100%;
    min-width: 0;
    padding: 12px 14px;
  }

  #freedom-intercambio .fi-step strong {
    font-size: 18px;
  }

  #freedom-intercambio .fi-step small {
    font-size: 14px;
  }

  #freedom-intercambio .fi-video-area {
    width: 100%;
    max-width: 305px;
    margin: 0 auto;
  }

  #freedom-intercambio .fi-video-frame {
    border-width: 5px;
    border-radius: 18px;
  }

  #freedom-intercambio .fi-support,
  #freedom-intercambio .fi-destinations,
  #freedom-intercambio .fi-experiences,
  #freedom-intercambio .fi-prices,
  #freedom-intercambio .fi-testimonials,
  #freedom-intercambio .fi-process,
  #freedom-intercambio .fi-faq {
    padding-top: 65px;
    padding-bottom: 70px;
  }

  #freedom-intercambio .fi-section-heading {
    margin-bottom: 31px;
  }

  #freedom-intercambio .fi-section-kicker {
    font-size: 15px;
    letter-spacing: 1.5px;
  }

  #freedom-intercambio .fi-section-heading h2,
  #freedom-intercambio .fi-experience-intro h2,
  #freedom-intercambio .fi-faq-intro h2,
  #freedom-intercambio .fi-final-cta h2 {
    font-size: 34px;
    letter-spacing: -0.8px;
  }

  #freedom-intercambio .fi-section-heading > p:last-child {
    margin-top: 12px;
    font-size: 18px;
    line-height: 1.55;
  }

  #freedom-intercambio .fi-support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
  }

  #freedom-intercambio .fi-support-card {
    min-height: 205px;
    padding: 23px 12px 19px;
    border-radius: 12px;
  }

  #freedom-intercambio .fi-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  #freedom-intercambio .fi-icon svg {
    width: 31px;
    height: 31px;
  }

  #freedom-intercambio .fi-icon img {
    width: 43px;
    height: 43px;
  }

  #freedom-intercambio .fi-support-card h3 {
    font-size: 17px;
  }

  #freedom-intercambio .fi-support-card p {
    font-size: 14px;
  }

  #freedom-intercambio .fi-support-card p {
    font-size: 12px;
    line-height: 1.45;
  }

  #freedom-intercambio .fi-destination-grid,
  #freedom-intercambio .fi-price-grid {
    width: calc(100vw - 17px);
    display: flex;
    gap: 13px;
    margin-right: -17px;
    padding: 14px 38px 10px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  #freedom-intercambio .fi-destination-grid::-webkit-scrollbar,
  #freedom-intercambio .fi-price-grid::-webkit-scrollbar {
    display: none;
  }

  #freedom-intercambio .fi-destination-card {
    min-width: 232px;
    min-height: 176px;
    flex: 0 0 232px;
    scroll-snap-align: start;
  }

  #freedom-intercambio .fi-compare-link {
    width: 100%;
    min-height: 55px;
    margin-top: 27px;
    font-size: 16px;
  }

  #freedom-intercambio .fi-experience-intro {
    grid-template-columns: 1fr;
    gap: 17px;
    margin-bottom: 30px;
  }

  #freedom-intercambio .fi-experience-intro > p {
    font-size: 16px;
    line-height: 1.55;
  }

  #freedom-intercambio .fi-photo-mosaic {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 12px;
  }

  #freedom-intercambio .fi-photo-large,
  #freedom-intercambio .fi-photo-tall,
  #freedom-intercambio .fi-photo-small {
    grid-column: auto;
    grid-row: auto;
    height: 280px;
  }

  #freedom-intercambio .fi-photo-large {
    height: 360px;
  }

  #freedom-intercambio .fi-photo figcaption {
    right: 17px;
    bottom: 16px;
    left: 17px;
  }

  #freedom-intercambio .fi-photo figcaption strong {
    font-size: 20px;
  }

  #freedom-intercambio .fi-experience-benefits {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  #freedom-intercambio .fi-experience-benefits article {
    padding: 17px;
  }

  #freedom-intercambio .fi-price-card {
    min-width: 255px;
    flex: 0 0 255px;
    scroll-snap-align: start;
  }

  #freedom-intercambio .fi-price-note {
    margin-top: 19px;
    text-align: left;
  }

  #freedom-intercambio .fi-testimonial-track {
    display: flex;
    gap: 13px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  #freedom-intercambio .fi-testimonial-track::-webkit-scrollbar {
    display: none;
  }

  #freedom-intercambio .fi-testimonial-card {
    min-width: 86%;
    flex: 0 0 86%;
    scroll-snap-align: center;
  }

  #freedom-intercambio .fi-testimonial-actions {
    gap: 8px;
  }

  #freedom-intercambio .fi-slider-button {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
  }

  #freedom-intercambio .fi-testimonial-actions .fi-button {
    min-width: 0;
    font-size: 16px;
  }

  #freedom-intercambio .fi-process-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  #freedom-intercambio .fi-process-list li {
    display: grid;
    grid-template-columns: 54px 1fr;
    column-gap: 15px;
    padding: 18px;
    border: 1px solid var(--fi-border);
    border-radius: 12px;
    text-align: left;
    background: var(--fi-light);
  }

  #freedom-intercambio .fi-process-list li > span {
    grid-row: 1 / 3;
    width: 54px;
    height: 54px;
    margin: 0;
    border-width: 4px;
  }

  #freedom-intercambio .fi-process-list strong {
    align-self: end;
    font-size: 16px;
  }

  #freedom-intercambio .fi-process-list p {
    margin-top: 5px;
  }

  #freedom-intercambio .fi-faq-layout {
    grid-template-columns: 1fr;
    gap: 29px;
  }

  #freedom-intercambio .fi-faq-intro {
    position: static;
  }

  #freedom-intercambio .fi-faq-intro > p:last-child {
    font-size: 16px;
  }

  #freedom-intercambio .fi-faq-list summary {
    padding: 19px 53px 19px 18px;
    font-size: 15px;
  }

  #freedom-intercambio .fi-faq-list details p {
    padding: 0 18px 19px;
    font-size: 14px;
  }

  #freedom-intercambio .fi-final-cta {
    padding: 62px 0;
  }

  #freedom-intercambio .fi-final-cta-content {
    grid-template-columns: 1fr;
    gap: 27px;
  }

  #freedom-intercambio .fi-final-cta p:not(.fi-section-kicker) {
    font-size: 16px;
  }

  #freedom-intercambio .fi-final-actions {
    min-width: 0;
  }

}


/* =========================================================
   CELULARES PEQUENOS
   ========================================================= */

@media (max-width: 390px) {

  #freedom-intercambio .fi-container {
    width: calc(100% - 26px);
  }

  #freedom-intercambio .fi-hero h1 {
    font-size: 35px;
  }

  #freedom-intercambio .fi-support-grid {
    grid-template-columns: 1fr;
  }

  #freedom-intercambio .fi-support-card {
    min-height: 0;
  }

}


/* =========================================================
   ATUALIZAÇÃO FINAL — LEITURA, ESPAÇOS E NOVA TABELA
   ========================================================= */

/* O editor clássico pode inserir parágrafos vazios ao redor dos links.
   Eles não devem ocupar posições próprias nas grades ou nos botões. */
#freedom-intercambio .fi-hero-actions > p,
#freedom-intercambio .fi-destination-grid > p,
#freedom-intercambio .fi-testimonial-actions > p,
#freedom-intercambio .fi-final-actions > p {
  display: contents !important;
}

#freedom-intercambio .fi-section-kicker {
  margin-bottom: 13px;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: 1.7px;
}

#freedom-intercambio .fi-section-heading > p:last-child {
  max-width: 780px;
  font-size: 21px;
  line-height: 1.58;
}

#freedom-intercambio .fi-eyebrow {
  font-size: 15px;
  line-height: 1.35;
}

#freedom-intercambio .fi-button,
#freedom-intercambio .fi-compare-link {
  min-height: 58px;
  padding: 15px 26px;
  font-size: 17px;
  line-height: 1.25;
}

#freedom-intercambio .fi-step {
  min-width: 174px;
  padding: 13px 15px;
}

#freedom-intercambio .fi-step strong {
  font-size: 18px;
}

#freedom-intercambio .fi-step small {
  font-size: 14px;
  line-height: 1.35;
}

#freedom-intercambio .fi-destination-card small {
  font-size: 16px;
  line-height: 1.4;
}

/* Sete colunas: destino, cidade, modalidade, horário, dois valores e detalhes. */
#freedom-intercambio .fi-price-table {
  min-width: 1380px;
}

#freedom-intercambio .fi-price-table thead th:first-child {
  width: 17%;
}

#freedom-intercambio .fi-price-table thead th:nth-child(2) {
  width: 11%;
}

#freedom-intercambio .fi-price-table thead th:nth-child(3) {
  width: 15%;
}

#freedom-intercambio .fi-price-table thead th:nth-child(4) {
  width: 13%;
}

#freedom-intercambio .fi-price-table thead th:nth-child(5),
#freedom-intercambio .fi-price-table thead th:nth-child(6) {
  width: 16%;
}

#freedom-intercambio .fi-price-table thead th:last-child {
  width: 12%;
}

#freedom-intercambio .fi-price-table thead th {
  padding: 20px 15px;
  font-size: 15px;
}

#freedom-intercambio .fi-price-table tbody td {
  padding: 17px 15px;
  font-size: 16px;
}

#freedom-intercambio .fi-price-table tbody td:nth-child(3) strong {
  display: block;
  color: var(--fi-blue-dark);
  font-size: 17px;
  line-height: 1.3;
  white-space: normal;
}

#freedom-intercambio .fi-price-table tbody td:nth-child(3) small {
  display: block;
  margin-top: 5px;
  color: var(--fi-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

#freedom-intercambio .fi-price-table tbody td:nth-child(4) {
  font-weight: 700;
  white-space: nowrap;
}

#freedom-intercambio .fi-price-table tbody td:nth-child(5) strong,
#freedom-intercambio .fi-price-table tbody td:nth-child(6) strong {
  color: var(--fi-blue);
  font-size: 20px;
  font-weight: 800;
  white-space: nowrap;
}

#freedom-intercambio .fi-price-table tbody tr.fi-country-start td {
  border-top: 3px solid #b8cade;
}

#freedom-intercambio .fi-price-table tbody tr.fi-country-start:first-child td {
  border-top: 0;
}

#freedom-intercambio .fi-table-action a {
  min-height: 50px;
  padding: 12px 16px;
  font-size: 15px;
  line-height: 1.25;
  white-space: nowrap;
}

@media (max-width: 767px) {

  #freedom-intercambio .fi-section-kicker {
    margin-bottom: 11px;
    font-size: 15px;
    line-height: 1.35;
    letter-spacing: 1.25px;
  }

  #freedom-intercambio .fi-section-heading > p:last-child {
    font-size: 18px;
    line-height: 1.55;
  }

  #freedom-intercambio .fi-eyebrow {
    padding: 9px 13px;
    font-size: 13px;
    line-height: 1.35;
  }

  #freedom-intercambio .fi-button,
  #freedom-intercambio .fi-compare-link,
  #freedom-intercambio .fi-testimonial-actions .fi-button {
    min-height: 57px;
    padding: 15px 16px;
    font-size: 16px;
    line-height: 1.3;
  }

  #freedom-intercambio .fi-step strong {
    font-size: 18px;
  }

  #freedom-intercambio .fi-step small {
    font-size: 14px;
  }

  #freedom-intercambio .fi-destination-card small {
    font-size: 15px;
  }

  #freedom-intercambio .fi-price-table {
    min-width: 1260px;
  }

  #freedom-intercambio .fi-price-table thead th {
    padding: 17px 13px;
    font-size: 14px;
  }

  #freedom-intercambio .fi-price-table tbody td {
    padding: 16px 13px;
    font-size: 16px;
  }

  #freedom-intercambio .fi-price-table tbody td:nth-child(3) strong {
    font-size: 16px;
  }

  #freedom-intercambio .fi-price-table tbody td:nth-child(3) small {
    font-size: 13px;
  }

  #freedom-intercambio .fi-price-table tbody td:nth-child(5) strong,
  #freedom-intercambio .fi-price-table tbody td:nth-child(6) strong {
    font-size: 19px;
  }

  #freedom-intercambio .fi-table-action a {
    min-height: 48px;
    font-size: 15px;
  }

}


/* =========================================================
   ACESSIBILIDADE
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  #freedom-intercambio *,
  #freedom-intercambio *::before,
  #freedom-intercambio *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

}


/* =========================================================
   ATUALIZAÇÃO — TABELA, LEGIBILIDADE E FOTOGRAFIAS
   ========================================================= */

/* Textos gerais maiores */

#freedom-intercambio .fi-section-kicker {
  font-size: 18px;
  line-height: 1.35;
}

#freedom-intercambio .fi-section-heading > p:last-child,
#freedom-intercambio .fi-experience-intro > p {
  font-size: 20px;
  line-height: 1.65;
}

#freedom-intercambio .fi-step {
  min-width: 170px;
  padding: 14px 16px;
}

#freedom-intercambio .fi-step-number {
  width: 36px;
  height: 36px;
  flex-basis: 36px;
  font-size: 16px;
}

#freedom-intercambio .fi-step strong {
  font-size: 18px;
}

#freedom-intercambio .fi-step small {
  font-size: 14px;
  line-height: 1.35;
}

#freedom-intercambio .fi-video-heading strong {
  font-size: 17px;
}

#freedom-intercambio .fi-video-heading small {
  font-size: 13px;
}

#freedom-intercambio .fi-support-card {
  min-height: 250px;
  padding: 29px 19px 25px;
}

#freedom-intercambio .fi-support-card h3 {
  font-size: 19px;
}

#freedom-intercambio .fi-support-card p {
  font-size: 15px;
  line-height: 1.55;
}

#freedom-intercambio .fi-destination-card {
  min-height: 210px;
}

#freedom-intercambio .fi-destination-card strong {
  font-size: 26px;
}

#freedom-intercambio .fi-destination-card small {
  font-size: 15px;
}

#freedom-intercambio .fi-compare-link {
  font-size: 16px;
}

/* Fotografias e legendas */

#freedom-intercambio .fi-photo-london img {
  object-position: center center;
}

#freedom-intercambio .fi-photo-liberty img {
  object-position: center top !important;
}

#freedom-intercambio .fi-photo-paris img,
#freedom-intercambio .fi-photo-sydney img {
  object-position: center center;
}

#freedom-intercambio .fi-photo figcaption strong {
  font-size: 28px;
  line-height: 1.18;
}

#freedom-intercambio .fi-photo figcaption span {
  margin-top: 7px;
  font-size: 16px;
  line-height: 1.4;
}

#freedom-intercambio .fi-experience-benefits h3 {
  font-size: 20px;
  line-height: 1.3;
}

#freedom-intercambio .fi-experience-benefits p {
  font-size: 15px;
  line-height: 1.55;
}

/* Tabela de comparação */

#freedom-intercambio .fi-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

#freedom-intercambio .fi-price-table-wrap {
  position: relative;
  width: 100%;
  overflow-x: auto;
  border: 1px solid #d5e0ed;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(15, 50, 91, 0.12);
  scrollbar-color: var(--fi-blue) #e7edf5;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

#freedom-intercambio .fi-price-table-wrap:focus {
  outline: 3px solid rgba(23, 63, 122, 0.24);
  outline-offset: 4px;
}

#freedom-intercambio .fi-price-table {
  width: 100%;
  min-width: 1240px;
  margin: 0;
  border: 0;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  background: #ffffff;
}

#freedom-intercambio .fi-price-table th,
#freedom-intercambio .fi-price-table td {
  border: 0;
  border-right: 1px solid #e0e8f2;
  border-bottom: 1px solid #e0e8f2;
  vertical-align: middle;
}

#freedom-intercambio .fi-price-table th:last-child,
#freedom-intercambio .fi-price-table td:last-child {
  border-right: 0;
}

#freedom-intercambio .fi-price-table tbody tr:last-child td {
  border-bottom: 0;
}

#freedom-intercambio .fi-price-table thead th {
  padding: 19px 18px;
  color: var(--fi-blue-dark);
  background: #edf3fa;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.35px;
  text-align: center;
  text-transform: uppercase;
}

#freedom-intercambio .fi-price-table thead th:first-child {
  width: 17%;
  text-align: left;
}

#freedom-intercambio .fi-price-table thead th:nth-child(2) {
  width: 11%;
}

#freedom-intercambio .fi-price-table thead th:nth-child(3) {
  width: 15%;
}

#freedom-intercambio .fi-price-table thead th:nth-child(4) {
  width: 13%;
}

#freedom-intercambio .fi-price-table thead th:nth-child(5),
#freedom-intercambio .fi-price-table thead th:nth-child(6) {
  width: 16%;
}

#freedom-intercambio .fi-price-table thead th:last-child {
  width: 12%;
}

#freedom-intercambio .fi-price-table tbody td {
  padding: 18px;
  color: var(--fi-text);
  background: #ffffff;
  font-size: 17px;
  line-height: 1.4;
  text-align: center;
  transition: background-color 0.18s ease;
}

#freedom-intercambio .fi-price-table tbody td:first-child {
  text-align: left;
  white-space: nowrap;
}

#freedom-intercambio .fi-price-table tbody tr:hover td {
  background: #f6f9fd;
}

#freedom-intercambio .fi-price-table tbody tr.fi-best-price td {
  background: #eef6ff;
}

#freedom-intercambio .fi-price-table tbody tr.fi-best-price td:first-child {
  box-shadow: inset 5px 0 0 var(--fi-red);
}

#freedom-intercambio .fi-price-table tbody td:nth-child(3) strong {
  display: block;
  color: var(--fi-blue-dark);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
}

#freedom-intercambio .fi-price-table tbody td:nth-child(3) small {
  display: block;
  margin-top: 5px;
  color: var(--fi-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

#freedom-intercambio .fi-price-table tbody td:nth-child(4) {
  font-weight: 700;
  white-space: nowrap;
}

#freedom-intercambio .fi-price-table tbody td:nth-child(5) strong,
#freedom-intercambio .fi-price-table tbody td:nth-child(6) strong {
  color: var(--fi-blue);
  font-size: 20px;
  font-weight: 800;
  white-space: nowrap;
}

#freedom-intercambio .fi-price-table tbody tr.fi-country-start td {
  border-top: 3px solid #b8cade;
}

#freedom-intercambio .fi-price-table tbody tr.fi-country-start:first-child td {
  border-top: 0;
}

#freedom-intercambio .fi-table-flag {
  display: inline-block;
  margin-right: 12px;
  font-size: 30px;
  line-height: 1;
  vertical-align: middle;
}

#freedom-intercambio .fi-price-table td:first-child strong {
  color: var(--fi-blue-dark);
  font-size: 18px;
  vertical-align: middle;
}

#freedom-intercambio .fi-table-action {
  padding-right: 15px !important;
  padding-left: 15px !important;
}

#freedom-intercambio .fi-table-action a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border: 2px solid var(--fi-red);
  border-radius: 8px;
  color: var(--fi-red);
  background: #ffffff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.25px;
  white-space: nowrap;
  transition: color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

#freedom-intercambio .fi-table-action a:hover {
  color: #ffffff;
  background: var(--fi-red);
  transform: translateY(-2px);
}

#freedom-intercambio .fi-price-information {
  max-width: 1120px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 26px auto 0;
  padding: 20px 22px;
  border: 1px solid #d7e2ef;
  border-radius: 13px;
  background: #ffffff;
}

#freedom-intercambio .fi-price-information-icon {
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--fi-blue);
  border-radius: 50%;
  color: var(--fi-blue);
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

#freedom-intercambio .fi-price-information p {
  margin: 0;
  color: var(--fi-muted);
  font-size: 16px;
  line-height: 1.65;
}

#freedom-intercambio .fi-price-information strong {
  color: var(--fi-blue-dark);
}

/* Textos das seções finais maiores */

#freedom-intercambio .fi-testimonial-status,
#freedom-intercambio .fi-testimonial-card p {
  font-size: 17px;
}

#freedom-intercambio .fi-testimonial-person strong {
  font-size: 17px;
}

#freedom-intercambio .fi-testimonial-person small {
  font-size: 13px;
}

#freedom-intercambio .fi-process-list strong {
  font-size: 19px;
}

#freedom-intercambio .fi-process-list p {
  font-size: 15px;
}

#freedom-intercambio .fi-faq-list summary {
  font-size: 18px;
}

#freedom-intercambio .fi-faq-list details p {
  font-size: 17px;
}


/* =========================================================
   ATUALIZAÇÃO — TABLETS
   ========================================================= */

@media (max-width: 1180px) {

  #freedom-intercambio .fi-support-card {
    min-height: 230px;
  }

  #freedom-intercambio .fi-price-table {
    min-width: 1240px;
  }

}


/* =========================================================
   ATUALIZAÇÃO — CELULARES
   ========================================================= */

@media (max-width: 767px) {

  #freedom-intercambio .fi-section-kicker {
    font-size: 15px;
    letter-spacing: 1.35px;
  }

  #freedom-intercambio .fi-section-heading > p:last-child,
  #freedom-intercambio .fi-experience-intro > p {
    font-size: 18px;
    line-height: 1.58;
  }

  #freedom-intercambio .fi-step {
    padding: 14px 16px;
  }

  #freedom-intercambio .fi-step strong {
    font-size: 18px;
  }

  #freedom-intercambio .fi-step small {
    font-size: 14px;
  }

  #freedom-intercambio .fi-video-heading {
    padding: 12px 14px;
  }

  #freedom-intercambio .fi-video-heading strong {
    font-size: 17px;
  }

  #freedom-intercambio .fi-video-heading small {
    font-size: 13px;
  }

  #freedom-intercambio .fi-support-card {
    min-height: 235px;
    padding: 24px 14px 21px;
  }

  #freedom-intercambio .fi-support-card h3 {
    font-size: 17px;
  }

  #freedom-intercambio .fi-support-card p {
    font-size: 14px;
    line-height: 1.5;
  }

  #freedom-intercambio .fi-destination-card strong {
    font-size: 25px;
  }

  #freedom-intercambio .fi-destination-card small {
    font-size: 15px;
  }

  #freedom-intercambio .fi-photo-large,
  #freedom-intercambio .fi-photo-tall,
  #freedom-intercambio .fi-photo-small {
    height: 330px;
  }

  #freedom-intercambio .fi-photo-large {
    height: 390px;
  }

  #freedom-intercambio .fi-photo-liberty {
    height: 470px;
  }

  #freedom-intercambio .fi-photo-liberty img {
    object-position: center top !important;
  }

  #freedom-intercambio .fi-photo figcaption strong {
    font-size: 25px;
  }

  #freedom-intercambio .fi-photo figcaption span {
    font-size: 15px;
  }

  #freedom-intercambio .fi-experience-benefits h3 {
    font-size: 20px;
  }

  #freedom-intercambio .fi-experience-benefits p {
    font-size: 16px;
  }

  #freedom-intercambio .fi-price-table-wrap {
    width: calc(100vw - 17px);
    margin-right: -17px;
    border-radius: 13px 0 0 13px;
  }

  #freedom-intercambio .fi-price-table {
    min-width: 1260px;
  }

  #freedom-intercambio .fi-price-table thead th {
    padding: 16px 13px;
    font-size: 14px;
  }

  #freedom-intercambio .fi-price-table tbody td {
    padding: 15px 13px;
    font-size: 16px;
  }

  #freedom-intercambio .fi-price-table thead th:first-child,
  #freedom-intercambio .fi-price-table tbody td:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
  }

  #freedom-intercambio .fi-price-table thead th:first-child {
    z-index: 3;
    background: #e7eff8;
  }

  #freedom-intercambio .fi-price-table tbody td:first-child {
    background: #ffffff;
    box-shadow: 4px 0 10px rgba(15, 50, 91, 0.08);
  }

  #freedom-intercambio .fi-price-table tbody tr.fi-best-price td:first-child {
    background: #eef6ff;
    box-shadow:
      inset 5px 0 0 var(--fi-red),
      4px 0 10px rgba(15, 50, 91, 0.08);
  }

  #freedom-intercambio .fi-price-table tbody td:nth-child(3) strong {
    font-size: 16px;
  }

  #freedom-intercambio .fi-price-table tbody td:nth-child(3) small {
    font-size: 13px;
  }

  #freedom-intercambio .fi-price-table tbody td:nth-child(5) strong,
  #freedom-intercambio .fi-price-table tbody td:nth-child(6) strong {
    font-size: 19px;
  }

  #freedom-intercambio .fi-table-flag {
    margin-right: 8px;
    font-size: 26px;
  }

  #freedom-intercambio .fi-price-table td:first-child strong {
    font-size: 16px;
  }

  #freedom-intercambio .fi-table-action a {
    min-height: 44px;
    padding: 10px 15px;
    font-size: 15px;
  }

  #freedom-intercambio .fi-price-information {
    gap: 11px;
    margin-top: 21px;
    padding: 17px 16px;
  }

  #freedom-intercambio .fi-price-information p {
    font-size: 15px;
    line-height: 1.6;
  }

  #freedom-intercambio .fi-process-list strong {
    font-size: 18px;
  }

  #freedom-intercambio .fi-process-list p {
    font-size: 15px;
  }

  #freedom-intercambio .fi-faq-list summary {
    font-size: 17px;
    line-height: 1.4;
  }

  #freedom-intercambio .fi-faq-list details p {
    font-size: 16px;
  }

}


/* =========================================================
   ATUALIZAÇÃO — CELULARES PEQUENOS
   ========================================================= */

@media (max-width: 390px) {

  #freedom-intercambio .fi-support-grid {
    grid-template-columns: 1fr;
  }

  #freedom-intercambio .fi-support-card {
    min-height: 0;
  }

  #freedom-intercambio .fi-price-table-wrap {
    width: calc(100vw - 13px);
    margin-right: -13px;
  }

}

/* =========================================================
   AJUSTE FINAL — FEEDBACK CENTRALIZADO E FAIXA SUPERIOR REMOVIDA
   ========================================================= */

@media (max-width: 767px) {
  /* No celular, removemos o título vazio do tema que cria a faixa branca. */
  body.page-id-9657 .gdlr-page-title-wrapper,
  body.page-id-9657 .gdlr-page-title-container,
  body.page-id-9657 .gdlr-page-title,
  body.page-id-9657 .gdlr-page-title-background,
  body:has(#freedom-intercambio) .gdlr-page-title-wrapper,
  body:has(#freedom-intercambio) .gdlr-page-title-container,
  body:has(#freedom-intercambio) .gdlr-page-title,
  body:has(#freedom-intercambio) .gdlr-page-title-background {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  body.page-id-9657 .gdlr-page-content,
  body.page-id-9657 .gdlr-content,
  body:has(#freedom-intercambio) .gdlr-page-content,
  body:has(#freedom-intercambio) .gdlr-content {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  #freedom-intercambio .fi-testimonials .fi-container {
    width: calc(100% - 28px);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  #freedom-intercambio .fi-testimonial-track {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 14px;
    padding: 0;
    margin: 0;
    overflow-x: auto;
    scroll-padding-inline: 4px;
  }

  #freedom-intercambio .fi-testimonial-card {
    box-sizing: border-box;
    min-width: calc(100% - 8px);
    flex: 0 0 calc(100% - 8px);
    margin: 0 4px;
    scroll-snap-align: center;
  }

  #freedom-intercambio .fi-testimonial-actions {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: 45px minmax(0, 1fr) 45px;
    align-items: center;
    gap: 10px;
    margin: 28px auto 0;
    padding: 0;
  }

  #freedom-intercambio .fi-testimonial-actions .fi-button {
    width: 100%;
    min-width: 0;
    margin: 0;
    text-align: center;
    font-size: 16px;
  }
}

/* =========================================================
   AJUSTE FINAL — EXPERIÊNCIAS SEM ESPAÇO EXCESSIVO
   ========================================================= */

#freedom-intercambio .fi-experience-intro {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 32px !important;
}

#freedom-intercambio .fi-experience-intro > p {
  width: 100%;
  max-width: none;
}

#freedom-intercambio .fi-price-information {
  justify-content: center !important;
  align-items: center !important;
  flex-direction: column !important;
  text-align: center !important;
}

#freedom-intercambio .fi-price-information p {
  width: min(100%, 980px) !important;
  max-width: 980px !important;
  min-width: 0;
  flex: 0 1 auto;
  margin: 0 !important;
  text-align: center !important;
}

#freedom-intercambio .fi-photo-sydney img {
  object-position: center 28% !important;
}

@media (max-width: 767px) {
  #freedom-intercambio .fi-experience-intro {
    grid-template-columns: 1fr !important;
    gap: 17px !important;
  }
}

/* =========================================================
   AJUSTE FINAL — TÍTULOS, TEXTOS E CAIXA DE INFORMAÇÃO
   ========================================================= */

#freedom-intercambio .fi-section-kicker {
  font-size: 22px !important;
  letter-spacing: 2px;
}

#freedom-intercambio .fi-included-card p {
  font-size: 18px !important;
  line-height: 1.55;
}

#freedom-intercambio .fi-price-information {
  width: 100%;
  max-width: 1400px;
}

#freedom-intercambio .fi-price-information p {
  width: 100%;
  max-width: none;
  font-size: 18px;
  line-height: 1.6;
}

@media (max-width: 767px) {
  #freedom-intercambio .fi-section-kicker {
    font-size: 19px !important;
    letter-spacing: 1.6px;
  }

  #freedom-intercambio .fi-included-card p {
    font-size: 17px !important;
  }

  #freedom-intercambio .fi-price-information p {
    font-size: 16px;
    line-height: 1.55;
  }
}

/* =========================================================
   AJUSTE FINAL — ÍCONES E LEITURA NO CELULAR
   ========================================================= */

#freedom-intercambio .fi-icon::after {
  display: none !important;
}

#freedom-intercambio .fi-icon {
  width: 88px;
  height: 88px;
}

#freedom-intercambio .fi-icon img {
  width: 70px;
  height: 70px;
}

#freedom-intercambio .fi-support-card h3 {
  font-size: 21px;
}

#freedom-intercambio .fi-support-card p {
  font-size: 16px;
}

@media (max-width: 767px) {
  #freedom-intercambio .fi-support-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  #freedom-intercambio .fi-support-card {
    min-height: 0;
    padding: 30px 22px 28px;
  }

  #freedom-intercambio .fi-icon {
    width: 122px;
    height: 122px;
    margin-bottom: 23px;
  }

  #freedom-intercambio .fi-icon img {
    width: 100px;
    height: 100px;
  }

  #freedom-intercambio .fi-support-card h3 {
    font-size: 24px;
    line-height: 1.25;
  }

  #freedom-intercambio .fi-support-card p {
    font-size: 18px;
    line-height: 1.55;
  }
}

/* Sydney */
@media (min-width: 768px) {
  #freedom-intercambio .fi-photo-sydney img {
    object-position: center 65% !important;
  }
}

@media (max-width: 767px) {
  #freedom-intercambio .fi-photo-sydney img {
    object-position: center 28% !important;
  }

  #freedom-intercambio .fi-destination-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 18px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
  }

  #freedom-intercambio .fi-destination-card {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }
}

/* Números padronizados */
#freedom-intercambio .fi-step-number,
#freedom-intercambio .fi-experience-benefits article > span,
#freedom-intercambio .fi-process-list li > span {
  box-sizing: border-box !important;
  width: 68px !important;
  min-width: 68px !important;
  height: 68px !important;
  min-height: 68px !important;
  flex: 0 0 68px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 22px !important;
  line-height: 1 !important;
}

/* Botões centralizados */
#freedom-intercambio .fi-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  line-height: 1.2 !important;
  box-sizing: border-box !important;
}

#freedom-intercambio .fi-button br {
  display: none !important;
}

/* Texto de preços */
#freedom-intercambio .fi-prices .fi-section-heading > p {
  white-space: normal !important;
  text-wrap: pretty !important;
}

#freedom-intercambio .fi-prices .fi-section-heading > p br {
  display: none !important;
}

/* Caixa de valores-base */
#freedom-intercambio .fi-price-information {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

#freedom-intercambio .fi-price-information p,
#freedom-intercambio .fi-price-information strong {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

/* Mapa e avião */
#freedom-intercambio .fi-world-map {
  display: block !important;
  opacity: .34 !important;
  z-index: 2 !important;
  pointer-events: none !important;
}

#freedom-intercambio .fi-world-map::after {
  content: "✈" !important;
  display: block !important;
  position: absolute !important;
  left: 48% !important;
  top: 38% !important;
  color: #fff !important;
  font-size: 46px !important;
  line-height: 1 !important;
  opacity: .9 !important;
  transform: rotate(-18deg) !important;
}

/* Remove espaços vazios */
#freedom-intercambio > p:empty,
#freedom-intercambio > br {
  display: none !important;
}

#freedom-intercambio .fi-compare-link > span {
  display: none !important;
}

#freedom-intercambio .fi-compare-link {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  line-height: 1 !important;
}

@media (max-width: 767px) {
  #freedom-intercambio .fi-destination-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  #freedom-intercambio .fi-country-icon {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  #freedom-intercambio .fi-destination-card strong,
  #freedom-intercambio .fi-destination-card small {
    width: 100% !important;
    text-align: center !important;
  }
}

Sim, pode ser isso. O botão está largo demais no celular. Use este ajuste:

```css
@media (max-width: 767px) {
  #freedom-intercambio .fi-compare-link {
    width: auto !important;
    max-width: 88% !important;
    margin: 28px auto 0 !important;
    padding: 0 24px !important;
    min-height: 68px !important;
    height: 68px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 767px) {
  #freedom-intercambio .fi-destinations .fi-compare-link {
    display: flex !important;
    align-self: center !important;
    flex: 0 0 auto !important;
    width: fit-content !important;
    max-width: calc(100% - 48px) !important;
    height: 64px !important;
    min-height: 64px !important;
    margin: 24px auto !important;
    padding: 0 22px !important;
    font-size: 16px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

@media (max-width: 767px) {
  #freedom-intercambio .fi-destinations .fi-container {
    width: 100% !important;
    max-width: none !important;
    margin: 0 auto !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
  }

  #freedom-intercambio .fi-destination-grid {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    justify-items: center !important;
  }

  #freedom-intercambio .fi-destination-card {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

Entendi. Então vamos centralizar a própria grade usando a largura real da tela do celular. Cole este bloco no final do CSS:

```css
@media (max-width: 767px) {
  #freedom-intercambio .fi-destination-grid {
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  #freedom-intercambio .fi-destination-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }
}

O problema provavelmente é que a página não está usando o elemento pai `#freedom-intercambio` como esperado. Vamos usar diretamente o ID da seção de destinos.

Cole este bloco no final:

```css
@media (max-width: 767px) {
  #fi-destinos,
  #fi-destinos .fi-container,
  #fi-destinos .fi-destination-grid {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
  }

  #fi-destinos .fi-destination-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    transform: none !important;
    left: auto !important;
  }

  #fi-destinos .fi-destination-card {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}