/* =========================================================
   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;
    }
}
