@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500&family=Open+Sans:wght@300;400;500;600&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif!important;
}

.loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(255, 255, 255) url('../assets/img/loader.gif') no-repeat center center;
}

/* General */
.asterisk{
    color: red;
}

.card-header,
.card-footer {
    background-color: transparent !important;
    border: none !important;
}

.card-title {
    font-weight: bold;
}

.card-text {
    font-size: 0.9rem;
    color: #000;
}

section h2 {
    color: #34398a;
}

/* Navbar */
.navbar {
    transition: background-color 0.3s;
}

/* Estilo para os ícones do navbar-toggler */
.navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler:focus,
.navbar-toggler:active {
    outline: 0;
}

/* hide close when burger shown */
.navbar-toggler.collapsed .close-icon {
    display: none;
    color: #fff !important;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
    display: inline;
}

.close-icon {
    color: #fff !important;
}

.navbar-transparent {
    background-color: transparent;
    color: #fff !important;
}

.navbar-transparent .nav-item .nav-link {
    color: #fff !important;
}

.navbar-colored {
    background-color: #34398a;
    color: #fff !important;
}

.navbar-colored .nav-link {
    color: #fff !important;
}

.navbar-colored .nav-link.active {
    color: #ff6505 !important;
}

/* Estilo para a navbar quando está aberta em dispositivos menores */
.navbar.open {
    background-color: #34398a !important; /* Cor azul quando o menu está aberto */
    color: #fff !important;
}

.navbar.open .nav-link {
    color: #fff !important;
}

/* * @media (max-width: 992px) {
    .navbar {
        background-color: #34398a !important;
        color: #fff !important;
    }

    .navbar .nav-link.active {
        color: #ff6505 !important;
    }
} 
*/

/* Hero video para desktops */
.hero-section {
    height: 80vh;
}

.hero-section .home {
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Escurece o vídeo com um overlay */
.hero-section .home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Ajuste a opacidade para escurecimento */
    z-index: 1;
}

.hero-section video,
.hero-section iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: fill; /* cover */
    z-index: 0;
}

.hero-section .home-content {
    position: relative;
    z-index: 2;
    padding-top: 150px;
    color: #fff;
    text-align: center;
}

/* Ajustes para dispositivos móveis */
@media (max-width: 768px) {
    .hero-section {
        height: 65vh; /* Define a altura da seção como 60% da altura da viewport */
    }

    .hero-section .home {
        height: 100%; /* Garante que o vídeo se ajuste à nova altura */
    }

    .hero-section video,
    .hero-section iframe {
        object-fit: cover; /* cover */
        width: 100%;
        height: 100%;
    }

    .hero-section .home-content {
        padding-top: 100px; /* Ajuste o espaçamento para conteúdo no mobile */
    }
}
/* Termina aqui o home video hero section */

.hero-section .thumbnail {
    position: relative;
    background: url('../assets/img/about.webp') no-repeat center center;
    background-size: cover;
    height: 100%; /* Troquei, antes era 75vh */
    color: #fff;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-section .content {
    position: relative;
    z-index: 2;
}

.hero-section .hero-text {
    max-width: 500px;
}

.hero-section .play-icon button {
    cursor: pointer;
}

.hero-section .play-icon button:hover {
    transform: scale(1.1);
}

.books-section #container {
    height: 25vh; /* Ajusta a altura para ocupar toda a viewport */
    display: flex;
    justify-content: center;
    align-items: center;
}

.books-section .books-box {
    width: fit-content;
    height: fit-content;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.hero-section-modal .modal-dialog {
    width: 90% !important;
    margin: 30px auto;
}

.hero-section-modal .modal-body {
    position: relative;
    padding: 0px;
}

.hero-section-modal .close {
    background: none;
    border: none;
    position: absolute;
    right: -3rem;
    top: 0;
    z-index: 999;
    font-size: 2rem;
    font-weight: normal;
    color: #fff;
    opacity: 1;
}

/* Programas */
.programs-section {
    background-color: #f8f9fa;
}

.programs-section .card {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease-in-out;
    text-align: start !important;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.programs-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.programs-section .img-fluid {
    width: 80px;
    height: 80px;
}

.programs-section .card-footer {
    background: none;
    border: none;
}

/* who-can */

.who-can-section {
    background-color: #f8f9fa;
}

.who-can-section .card,
.why-us .card {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease-in-out;
    background: none;
}

.who-can-section .img-fluid {
    width: 100%;
    height: auto;
}

.who-can-section .text-container {
    position: relative;
    display: inline-block;
}

.who-can-section .card-title {
    position: relative;
    z-index: 1;
}

.who-can-section .bar {
    position: absolute;
    bottom: 20%;
    left: 0;
    width: 100% !important;
    height: 30%;
    background-color: #3e97f69a;
    transition: width 0.5s ease;
}

.who-can-section .card:hover .bar {
    width: 0px !important;
}

/* why us */
.why-us {
    background-color: #ff6501;
    color: #fff;
}

.why-us .c {
    width: 250px;
}

.why-us .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.why-us .card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 300px;
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease-in-out;
}

.why-us .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-grow: 1;
}

.why-us .img-fluid {
    width: 64px !important;
    height: 64px !important;
    max-width: none !important;
    max-height: none !important;
}

.why-us .box-sabe {
    background-color: #34398a;
    color: #fff;
}

.why-us .card p {
    margin-top: 15px;
    color: #fff;
}

/* Logos */

.logo-wrapper {
    width: 90%;
    max-width: 1536px;
    margin-inline: auto;
    position: relative;
    height: 100px;
    margin-top: 5rem;
    overflow: hidden;
    mask-image: linear-gradient(to right,
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 1) 20%,
            rgba(0, 0, 0, 1) 80%,
            rgba(0, 0, 0, 0));
}

@keyframes scrollLeft {
    to {
        left: -200px;
    }
}

.logo-wrapper .item {
    width: 200px;
    height: 100px;
    border-radius: 6px;
    position: absolute;
    left: max(calc(200px * 12), 100%);
    animation-name: scrollLeft;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite; 
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.item1 {
    animation-delay: calc(30s / 12 * (12 - 1) * -1);
    background-image: url('../assets/img/parc/1.PNG');
}

.item2 {
    animation-delay: calc(30s / 12 * (12 - 2) * -1);
    background-image: url('../assets/img/parc/2.PNG');
}

.item3 {
    animation-delay: calc(30s / 12 * (12 - 3) * -1);
    background-image: url('../assets/img/parc/3.PNG');
}

.item4 {
    animation-delay: calc(30s / 12 * (12 - 4) * -1);
    background-image: url('../assets/img/parc/4.PNG');
}

.item5 {
    animation-delay: calc(30s / 12 * (12 - 5) * -1);
    background-image: url('../assets/img/parc/5.PNG');
}

.item6 {
    animation-delay: calc(30s / 12 * (12 - 6) * -1);
    background-image: url('../assets/img/parc/6.PNG');
}

.item7 {
    animation-delay: calc(30s / 12 * (12 - 7) * -1);
    background-image: url('../assets/img/parc/7.PNG');
}

.item8 {
    animation-delay: calc(30s / 12 * (12 - 8) * -1);
    background-image: url('../assets/img/parc/8.PNG');
}

.item9 {
    animation-delay: calc(30s / 12 * (12 - 9) * -1);
    background-image: url('../assets/img/parc/9.PNG');
}

.item10 {
    animation-delay: calc(30s / 12 * (12 - 10) * -1);
    background-image: url('../assets/img/parc/10.png');
}
.item11 {
    animation-delay: calc(30s / 12 * (12 - 11) * -1);
    background-image: url('../assets/img/parc/11.jpg');
}
.item12 {
    animation-delay: calc(30s / 12 * (12 - 12) * -1);
    background-image: url('../assets/img/parc/12.jpg');
}

/* End logos */

.language-container {
    display: flex;
    justify-content: center;
    flex-direction: row !important;
    gap: 20px;
    padding: 40px 0;
}

.language-item {
    text-align: center;
    background-color: #ffffff;
    border-radius: 8px;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    width: fit-content;
    height: fit-content;
}

.language-flag {
    width: 24px;
    height: 24px;
    background-size: cover;
    margin-right: 10px;
    background-position: center;
    display: inline-block;
}

.language-name {
    font-size: 1rem;
    color: #333;
}

.flag-pt {
    background-image: url('../assets/img/flags/portugal.png');
}

.flag-en {
    background-image: url('../assets/img/flags/reino-unido.png');
}

.flag-es {
    background-image: url('../assets/img/flags/espanha.png');
}

.flag-fr {
    background-image: url('../assets/img/flags/franca.png');
}

/* Estilo da Seção de Newsletter com Efeito Parallax */
.newsletter-section {
    position: relative;
    background: url('../assets/img/newsletter.webp') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    color: white;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.newsletter-section .container {
    position: relative;
    z-index: 2;
}

.newsletter-section h2 {
    margin-bottom: 20px;
}

.newsletter-section p {
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 10px;
    border: none;
    max-width: 300px;
}

.newsletter-form .btn {
    background-color: #ff6501;
    border: none;
    color: white;
    border-radius: 4px;
}

/* Contact */
.contact-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info h4 {
    margin-bottom: 20px;
    color: #343a40;
}

.contact-info .info-item {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info .info-item i {
    color: #ff6501;
    margin-right: 10px;
}

.form-container {
    max-width: 450px;
    background-color: #fff;
    border-radius: 30px;
}

.contact-form input:not(.giveaway-checkbox),
.contact-form textarea:not(.giveaway-checkbox) {
    border: none;
    border-bottom: 2px solid #e46008a4;
    border-radius: 0;
    margin-bottom: 15px;
    padding: 10px;
    width: 100%;
    box-shadow: none;
}

.contact-form input:not(.giveaway-checkbox):focus,
.contact-form textarea:not(.giveaway-checkbox):focus {
    border-color: #ff6501;
    outline: none;
}

.giveaway-checkbox{
    border-color: #0501ffe0!important;
}

.contact-form button {
    background-color: #ff6501;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

/* Estilo do Footer */
.footer {
    background-color: #34398a !important;
    color: white;
    padding: 40px 0;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    width: 150px;
    height: 150px;
}

.footer-social-icons i {
    margin-right: 15px;
    color: #ff6501;
}

.footer-column {
    margin-bottom: 30px;
}

.footer-column h5 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-column a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer-column a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #495057;
    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Page about */
.hero-section_2 {
    position: relative;
    height: 80vh;
    overflow: hidden;
    background-image: url('../assets/img/about.webp');
    background-size: cover;
    background-position: center;
}

.como-funciona{
    background-image: url('../assets/img/wl3.jpg')!important;
}

.hero-cursos{
    background-image: url('../assets/img/wl2.jpg')!important;
}

.hero-programas{
    background-image: url('../assets/img/wl5.jpg')!important;
}

.hero-sobre{
    background-image: url('../assets/img/wl1.jpg')!important;
}

.hero-teste{
    background-image: url('../assets/img/wl4.jpg')!important;
}

.hero-section_2 .container {
    position: relative;
    z-index: 1;
}

.hero-section_2 .hero-title {
    color: #fff;
    text-align: center;
}

.commitment-section {
    background: #dbdbdb;
    height: auto;
    padding: 60px 0;
    display: flex;
    align-items: center;
    color: #000;
    text-align: center;
}

.commitment-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.commitment-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.commitment-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
    text-align: left;
}

.commitment-list li {
    line-height: 1.8;
    margin-bottom: 15px;
}

.commitment-list li strong {
    color: #333;
}

.commitment-list li::before {
    content: "✔";
    color: #f00 !important;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .commitment-section {
        height: auto;
        padding: 20px;
    }

    .commitment-list li {
        line-height: 1.4;
    }
}

/* learning section */
.learning-section {
    background-color: #f8f9fa;
}

.learning-title {
    font-weight: bold;
}

.learning-description {
    color: #6c757d;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* .how-it-works-section */
.how-it-works-section .how-it-works-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.how-it-works-section .how-it-works-step {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.how-it-works-section .card-img-top {
    height: 80px!important;
    max-height: 80px!important;
    min-height: 80px!important;
    width: 80px!important;
    min-width: 80px!important;
    max-width: 80px!important;
    margin: 1rem;
    object-fit: cover;
}

.how-it-works-section .card-text {
    color: #6c757d;
    line-height: 1.6;
}

/*  */
.description-section {
    padding: 60px 0;
}

.proficiency-levels {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.level-info {
    display: none!important;
}

.level-info.active {
    display: block!important;
}

.progress-container {
    display: flex;
    flex-direction: column;
}

.progress {
    height: 25px;
    cursor: pointer;
    margin-bottom: 15px;
}

.progress-bar {
    line-height: 25px;
    color: #fff;
    text-align: center;
    border-radius: 5px;
}

.bc-blue{
    border: none;
}

.bc-or{
    background-color: #ff6501!important;
    border: none;
    color: #fff;
}

.bg-success {
    background-color: #34398a !important;
}

.text-success {
    color: #34398a !important;
}

.acordian-list {
    list-style-type: none;
    padding-left: 0;
}

.acordian-list li::before {
    content: "\2022";
    color: blue;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.how-it-works-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.how-it-works-list {
    list-style: none;
    padding: 0;
    counter-reset: list-counter;
    margin: 0 auto;
    max-width: 800px;
}

.how-it-works-list li {
    position: relative;
    padding: 20px 0;
    padding-left: 40px;
    border-left: 4px solid #34398a;
    margin-bottom: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.how-it-works-list li:before {
    counter-increment: list-counter;
    content: counter(list-counter);
    position: absolute;
    left: -20px;
    top: 20px;
    background: #34398a;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
}

.how-it-works-list strong {
    color: #34398a;
    display: block;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.how-it-works-list p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* learning cycle section */
.learning-cycle-section {
    padding: 60px 0;
    background-color: #fff;
}

.learning-cycle-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: bold;
    color: #34398a;
}

.learning-cycle-list {
    counter-reset: list-counter;
}

.learning-cycle-list .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.learning-cycle-list .step-icon {
    background: #34398a;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.learning-cycle-list .step-title {
    font-size: 1.5rem;
    color: #34398a;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.learning-cycle-list .step-description {
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    max-width: 600px;
}

/* teste de ingles */
.stepwizard {
    display: table;
    width: 100%;
    position: relative;
}

.stepwizard-row {
    display: table-row;
}

.stepwizard-step {
    display: table-cell;
    text-align: center;
    position: relative;
}

.stepwizard-step p {
    margin-top: 10px;
}

.btn-circle {
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 6px 0;
    font-size: 12px;
    line-height: 1.428571429;
    border-radius: 15px;
    border: none;
}

.btn-default {
    background-color: #ff6501;
}

.btn-primary {
    background-color: #34398a;
}

.place::placeholder {
    color: #6c757d !important;
    opacity: 1 !important;
}

.p-wrapper {
    background-color: #34398a;
    border-radius: 12px;
    color: #fff;
    padding-bottom: 1rem;
    padding-top: 1rem;
}

.payment-card {
    width: 100%;
    max-width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #ddd;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.payment-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.payment-card .card-body {
    padding: 15px;
}

.payment-card .btn {
    margin: 0;
    border-radius: 0;
}

.payment-card .form-check {
    display: none;
}

.payment-card .btn-outline-primary {
    border: 1px solid #34398a;
    color: #34398a;
    margin-top: 5px;
}

.payment-card .btn-outline-primary:hover {
    color: #fff;
}

.payment-card .btn-outline-primary:checked {
    background-color: #34398a;
    color: #fff;
}

.course-card img {
    height: 200px;
    object-fit: cover;
}

.course-card {
    margin-bottom: 30px;
}

.course-card .card-text {
    color: #323232db !important;
}

/* Sign - up */
.step {
    flex-direction: row;
    align-items: center;
}

.step-num {
    background-color: #E1E1E6;
    width: 30px;
    height: 30px;
    color: #8D8D99;
    font-size: 1rem;
    font-weight: bold;
}

.step-name {
    font-size: 0.8rem;
    color: #8D8D99;
}

.next-icon {
    width: 20px;
    height: auto;
}

.step.active .step-num{
    background-color: #ff6501;
    color: #fff;
}

.step.active .step-name{
    color: #000;
}

.step.step-done .step-num {
    background-color: #1D8841;
    color: #fff;
    position: relative;
    font-size: 0; /* Oculta o número */
}

.step.step-done .step-num::before {
    content: "✔"; /* Caractere de checkmark Unicode */
    font-size: 18px; /* Ajuste o tamanho do ícone conforme necessário */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff; /* Cor do ícone */
}

.step.step-done .step-name {
    color: #000;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    -webkit-box-shadow: -1px 0px 23px 1px rgba(0,0,0,0.75);
    -moz-box-shadow: -1px 0px 23px 1px rgba(0,0,0,0.75);
    box-shadow: -1px 0px 23px 1px rgba(0,0,0,0.75);
    z-index: 1000;
}

.whatsapp-float svg {
    width: 100%;
    height: auto;
}