/* VARIABLES */
:root {
    --purple-gradient: linear-gradient(#5200c6, #ef14ef);
    --blue: #00377d;
    --gray-1: #333333;
    --gray-2: #4f4f4f;
    --gray-3: #828282;
    --light-green: #d1f6cf;
    --pink: #ef14ef;
    --purple: #5200c6;
    --yellow: #db9600;
}

/* TYPOGRAPHY */
body {
    font-family: "Inter", var(--bs-body-font-family), sans-serif;
    color: var(--gray-1);
}

.fs-10 {
    font-size: 0.625rem;
}

.fs-12 {
    font-size: 0.75rem;
}

.fs-14 {
    font-size: 0.875rem;
}

.fs-16 {
    font-size: 1rem;
}

.fs-22 {
    font-size: 1.375rem;
}

.fs-24 {
    font-size: 1.5rem;
}

.fs-26 {
    font-size: 1.625rem;
}

.fs-30 {
    font-size: 1.875rem;
}

.fs-40 {
    font-size: 2.5rem;
}

.fs-80 {
    font-size: 3.5rem;
}

.fs-100 {
    font-size: 6.25rem;
}

.text-gradient {
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}

.text-gray-2 {
    color: var(--gray-2);
}

.text-gray-3 {
    color: var(--gray-3);
}

.text-l-green {
    color: var(--light-green);
}

.text-blue {
    color: var(--blue);
}

.text-purple {
    color: var(--purple);
}

.text-pink {
    color: var(--pink);
}

.text-yellow {
    color: var(--yellow);
}

.underline-yellow::after,
.underline-white::after {
    content: "";
    display: table;
    margin: 0.5rem auto 0;
    height: 1rem;
    width: 8rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.underline-yellow::after {
    background-image: url(../imgs/lp-2024/vectors/underline-yellow-paint.svg);
}
.underline-white::after {
    background-image: url(../imgs/lp-2024/vectors/underline-white-paint.svg);
}

.underline-l-green::after {
    content: "";
    display: table;
    margin: 0.5rem auto 0;
    height: 0.5rem;
    width: 5rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-image: url(../imgs/lp-2024/vectors/underline-l-green-paint.svg);
}

/* UTILITIES */
.c-border-top {
    border: none;
    border-top: 1px solid #d0d0d0;
}

.c-border-left {
    border: none;
    border-left: 1px solid #d0d0d0;
}

.sec-topo {
    background: url("../imgs/lp-2024/bg/beneficios.png") no-repeat;
    padding: 15px 0;
}
section.sec-topo .container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
section.sec-topo .container .button-rounded {
    display: table;
    padding: 10px 25px;
    border: 1px solid;
    font-weight: bold;
    font-size: 1.025rem;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: 0.3s;
}
a.btn-login {
    font-size: 14px;
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    border: 1px solid #fff;
    border-radius: 50px;
    padding: 5px 15px;
}
a.btn-cadastro {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    border: 1px solid #fff;
    border-radius: 50px;
    padding: 5px 15px;
}
a.btn-matricular-vitrine {
    text-decoration: none !important;
    margin-top: 10px;
}

/* COMPONENTS */
.card-custom {
    background-color: var(--bs-white);
    border-radius: 30px;
    padding: 24px 40px 40px;
}

.card-custom-testimony {
    background-color: var(--bs-white);
    border-radius: 10px;
    padding: 40px 40px 24px 48px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* SWIPER */
.swiper-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 3rem;
}
.swiper-container .swiper-button-prev {
    left: 0;
    transform: translateX(-150%);
    width: 1rem;
    height: auto;
}
.swiper-container .swiper-button-next {
    right: 0;
    transform: translateX(150%);
    width: 1rem;
    height: auto;
}
.swiper-container .swiper-pagination {
    bottom: 0;
}

.swiper-container.yellow-dots-nav .swiper-pagination-bullet {
    width: 0.5625rem;
    height: 0.5625rem;
    border: 1px solid var(--yellow);
    background-color: transparent;
    opacity: 1;
    transition: 0.3s;
}

.swiper-container.yellow-dots-nav .swiper-pagination-bullet-active {
    width: 1.875rem;
    background-color: var(--yellow);
    border-radius: 50px;
    transition: 0.3s;
}

.swiper-slide {
    height: auto;
    padding: 10px;
}

.button-rounded {
    display: table;
    padding: 16px 32px;
    border: 1px solid;
    font-weight: bold;
    font-size: 1.125rem;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: 0.3s;
}

.button-white {
    background-color: var(--bs-white);
    color: var(--yellow);
    border-color: var(--bs-white);
}

.button-white:hover {
    color: var(--bs-white);
    background-color: var(--yellow);
    transition: 0.3s;
}

.button-purple {
    background-color: var(--purple);
    color: var(--bs-white);
    border-color: var(--purple);
}

.button-purple:hover {
    color: var(--purple);
    background-color: var(--bs-white);
    transition: 0.3s;
}

.tick-green-list {
    padding-left: 0;
}

.tick-green-list li {
    margin-bottom: 1rem;
    list-style: none;
    display: flex;
    gap: 0.75rem;
}

.tick-green-list li::before {
    content: "";
    display: block;
    width: 1.4375rem;
    height: 1.1875rem;
    background: center / contain no-repeat
        url(../imgs/lp-2024/vectors/tick-green.svg);
    padding-left: 2rem;
    margin-top: 0.25rem;
}

.custom-accordion-item {
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.09);
    overflow: hidden;
    border-radius: 50px;
}

.custom-accordion-header {
    margin: 0;
}

.custom-accordion-button {
    width: 100%;
    padding: 28px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--blue);
    font-weight: 700;
    font-size: 1.125rem;
    text-align: start;
    background: var(--bs-white);
    border: none;
}

.custom-accordion-button::after {
    content: "";
    display: block;
    width: 1.375rem;
    height: 0.875rem;
    background: center / contain no-repeat
        url(../imgs/lp-2024/icons/blue/chevron-down.svg);
    padding-left: 1.375rem;
}

.custom-accordion-button:not(.collapsed):after {
    transform: rotate(180deg);
}

.custom-accordion-body {
    padding: 28px 48px;
    background-color: var(--bs-white);
    border-top: 1px solid var(--bs-gray-300);
}

/* FIRST SECTION */
.section-initial {
    padding: 12px 0 0;
}

.yellow-text-bg {
    padding: 12px 24px;
    background: center / contain no-repeat
        url(../imgs/lp-2024/vectors/bg-text-yellow.svg);
}

/* SECOND SECTION */
.section-our-numbers {
    padding: 0 0 120px;
}

.card-our-numbers {
    transform: translateY(-3rem);
}

.video-iframe {
}

/* THIRD SECTION */
.section-quero-matricular {
    padding: 68px 0;
}

.l-green-text-bg {
    padding: 12px 24px;
    background: center / 100% no-repeat
        url(../imgs/lp-2024/vectors/bg-text-l-green.svg);
    display: table;
}

/* FOURTH SECTION */
.section-beneficios {
    padding: 56px 0 72px;
}

.frame-icon-text {
    padding: 24px 28px;
    display: flex;
    gap: 8%;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.frame-icon-text::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: center / contain no-repeat
        url(../imgs/lp-2024/vectors/frame-white.svg);
}

/* FIFTH SECTION */
.section-acesse {
    padding: 48px 0 0;
}

/* SIXTH SECTION */
.section-faq {
    padding: 60px 0 80px;
    background-color: #f6f6f6;
}

/* SEVENTH SECTION  */
.section-our-students {
    padding: 64px 0;
}

/* FOOTER */
.footer {
    position: relative;
    padding: 1.75rem 1rem;
    text-align: center;
}

.footer-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

@media (min-width: 768px) {
    /* TYPOGRAPHY */
    .fs-md-16 {
        font-size: 1rem;
    }

    .fs-md-18 {
        font-size: 1.125rem;
    }

    .fs-md-30 {
        font-size: 1.875rem;
    }

    .fs-md-50 {
        font-size: 3.125rem;
    }

    /* UTILITIES */
    .c-border-md-top {
        border: none;
        border-top: 1px solid #d0d0d0;
    }

    .c-border-md-left {
        border: none;
        border-left: 1px solid #d0d0d0;
    }
}

@media (max-width: 767px) {
    a.btn-login,
    a.btn-cadastro {
        font-size: 10px;
        margin: 0 5px;
        padding: 5px 10px;
    }
    section.sec-topo .container .button-rounded {
        padding: 10px;
        font-size: 10px;
    }
    .btn-matricular-vitrine .l-green-text-bg {
        padding: 10px;
        background: center / 100% no-repeat url(../imgs/lp-2024/vectors/bg-text-l-green.svg);
        display: table;
        font-size: 14px;
    }
    /* COMPONENTS */
    .card-custom {
        padding: 36px 28px;
    }

    .card-custom-testimony {
        padding: 32px 34px 40px 36px;
    }

    .custom-accordion-button {
        padding: 20px 40px;
        font-size: 1rem;
        gap: 12px;
    }

    .custom-accordion-body {
        padding: 20px 40px;
    }

    /* FIRST SECTION */
    .section-initial {
        padding: 100px 15px 200px;
    }

    /* SECOND SECTION */
    .section-our-numbers {
        padding: 0 0 60px;
    }

    .card-our-numbers {
        transform: translateY(-2rem);
    }

    .video-iframe {
        height: 15rem;
    }

    /* THIRD SECTION */
    .section-quero-matricular {
        padding: 60px 15px;
    }

    /* FOURTH SECTION */
    .section-beneficios {
        padding: 48px 15px 68px;
    }

    .frame-icon-text {
        padding: 20px;
        gap: 4%;
    }

    .frame-icon-text img {
        width: 6.25rem;
        height: 6.25rem;
    }

    /* FIFTH SECTION */
    .section-acesse {
        padding: 32px 15px;
    }

    /* SIXTH SECTION */
    .section-faq {
        padding: 40px 15px 60px;
    }

    /* SEVENTH SECTION  */
    .section-our-students {
        padding: 64px 15px 0;
    }
}
section.sec-topo.fixo {
    position: fixed;
    top: 0;
    z-index: 9999;
    width: 100%;
    padding: 5px 0;
}

@media (max-width: 575px) {
    /* FOURTH SECTION */
    .frame-icon-text::before {
        background: center / contain no-repeat
            url(../imgs/lp-2024/vectors/frame-white-mobile.svg);
    }
}
