/*
Theme Name: Tema Blisq Corporate
Theme URI: http://blisq.pt
Author: blisq
Author URI: http://blisq.pt
Description: Tema desenvolvido para uso exclusivo da Blisq Creative
Version: V1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blisq
Text Domain: blisq
*/

/* =========================================================
   TIPOGRAFIA
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* =========================================================
   VARIAVEIS E RESETS
   ========================================================= */

:root {
    --white: #FFF;
    --black: #000;
    --soft-ash: #E9E9E9;
    --light-smoke: #DBDBDB;
    --lime-moss: #B2BB1E;
    --warm-charcoal: #666360;
    --fresh-lime: #CAD338;
    --deep-olive: #1A1A05;
    --cloud-white: #F0F0F0;
    --rich-black: #282828;
    --muted-gray: #A0A0A0;
    --snow-gray: #F2F2F2;
    --pale-fog: #E0E0E0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    position: relative;
    display: block;
    background-color: var(--white);
}

body {
    font-family: "Roboto", sans-serif;
    position: relative;
    display: block;
    background-color: transparent;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

figure {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: block;
}

h1 {
    color: #BABABA;
    font-size: clamp(32px, 4vw, 56px);
    font-style: normal;
    font-weight: 400;
    line-height: 60px;
}

h2 {
    color: var(--lime-moss);
    text-align: center;
    font-size: clamp(16px, 1.2vw, 20px);
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

::selection {
    background-color: #E2DED3;
}

.block {
    display: block;
}

.none {
    display: none;
}

/* =========================================================
   HEADER
   ========================================================= */
#header {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1880px;
    margin: 0 auto;
    padding-inline: 20px;
}

.header__hamburger {
    display: none;
}

/* Logo */
.header__logo img {
    height: auto;
    width: clamp(140px, 12vw, 226px);
    display: block;
}

.header__nav {
    background: var(--snow-gray);
    border-radius: 45px;
    padding: 12px 12px 12px clamp(20px, 3vw, 40px);
}

.header__nav .menu {
    list-style: none;
    display: flex;
    align-items: center;
}

.header__nav .menu-item {
    display: flex;
    align-items: center;
}

.menu-item--mobile-home {
    display: none;
}

.header__nav .menu-item+.menu-item::before {
    content: '';
    width: 1px;
    height: 16px;
    background: var(--light-smoke);
    margin: 0 20px;
}

.header__nav .menu-item--academia a::after {
    content: '';
    display: inline-block;
    width: 103px;
    height: 40px;
    background: url('assets/images/afterHeaderMenu.svg') no-repeat center/contain;
    margin-left: 6px;
    vertical-align: middle;
    position: relative;
    bottom: 9px;
}

.header__nav .menu-item--cta::before {
    display: none;
}

.header__nav .menu-item a {
    color: var(--warm-charcoal);
    text-align: right;
    font-size: clamp(13px, 0.9vw, 15px);
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.15s;
}

.header__nav .menu-item a:hover {
    color: var(--lime-moss);
}

/* CTA */
.header__nav .menu-item--cta {
    margin-left: 20px;
}

.header__nav .menu-item--cta a {
    background: var(--white);
    border-radius: 47px;
    padding: clamp(10px, 1vw, 17px) clamp(16px, 1.5vw, 25px);
    font-weight: 500;
    transition: background 0.2s;
}

.header__nav .menu-item--cta a:hover {
    background: var(--light-smoke);
    color: var(--warm-charcoal);
}

.header__legal-mobile {
    display: none;
}


/* =========================================================
   HERO
   ========================================================= */
.hero {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 54px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

/* Conteúdo */
.hero__content {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    max-width: 81.8%;
    margin: 0 auto;
    cursor: default;
    width: 100%;
}

.hero__title {
    color: #BABABA;
    font-size: clamp(32px, 3vw, 56px);
    font-style: normal;
    font-weight: 400;
    line-height: 107.143%;
    margin-bottom: 9px;
    max-width: 664px;
}

.hero__title strong {
    color: var(--warm-charcoal);
    font-weight: 700;
    display: block;
}

.hero__desc {
    color: var(--warm-charcoal);
    font-size: clamp(18px, 1.3vw, 22px);
    font-style: normal;
    font-weight: 300;
    line-height: 170%;
    margin-bottom: 14px;
    max-width: 623px;
}

.hero__btn {
    display: inline-block;
    background: var(--fresh-lime);
    border-radius: 47px;
    padding: 20px clamp(22px, 2vw, 30px);
    color: #282828;
    font-size: clamp(15px, 1vw, 17px);
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    text-decoration: none;
    transition: background 0.2s;
    cursor: pointer;
}

.hero__btn:hover {
    background: var(--lime-moss);
}

/* Paginação */
.swiper-pagination {
    position: absolute;
    bottom: 170px !important;
    left: 0;
    right: 0;
    z-index: 3;
    text-align: left;
    max-width: 81.8%;
    margin: 0 auto;
}

.swiper-pagination-bullet {
    width: 26px;
    height: 4px;
    border-radius: 2px;
    background: #7B7B7B;
    opacity: 1;
    transform: scaleY(0.25);
    /* equivalente a 1px */
    transform-origin: center;
    transition: transform 0.2s, background 0.2s;
    margin: 0 10px !important;
}

.swiper-pagination-bullet:first-child {
    margin-left: 0 !important;
}

.swiper-pagination-bullet:last-child {
    margin-right: 0 !important;
}

.swiper-pagination-bullet-active {
    background: var(--deep-olive);
    transform: scaleY(1);
}

/* Swiper */
.hero__swiper {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    cursor: grab;
}

.hero__swiper:active {
    cursor: grabbing;
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: anchor-center;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
}

/* Máscara */
.swiper-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/masks/maskhero.svg');
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 58% auto;
    z-index: 2;
}

/* =========================================================
    Stats
   ========================================================= */
.stats {
    padding: clamp(20px, 3vw, 30px) 0;
    overflow: hidden;
    background: var(--white);
    width: 100%;
    border-bottom: 1px solid #CACACA;
    max-width: 1920px;
    margin: 0 auto;
}

.stats__track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.stats__inner {
    display: flex;
    flex-shrink: 0;
    gap: clamp(24px, 5vw, 70px);
    padding-right: clamp(24px, 5vw, 70px);
}

.stats__inner span {
    color: var(--pale-fog);
    font-size: clamp(32px, 3.2vw, 54px);
    font-style: normal;
    font-weight: 600;
    line-height: 135%;
    white-space: nowrap;
}

.stats__track--left {
    animation: scroll-left 30s linear infinite;
}

.stats__track--right {
    animation: scroll-right 30s linear infinite;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

/* =========================================================
   AREAS OF ACTIVITY
   ========================================================= */

.areas {
    padding: clamp(40px, 6vw, 70px) 0 clamp(50px, 7vw, 80px);
    max-width: 1761px;
    margin: 0 auto;
    padding-inline: 20px;
}

.areas__title {
    margin-bottom: clamp(20px, 2vw, 30px);
}

.areas__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: clamp(16px, 1.2vw, 20px);
}

.areas__item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
}

.areas__fig {
    position: absolute;
    inset: 0;
}

.areas__fig::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: url('assets/masks/maskarea.svg') no-repeat bottom center / 100% auto;
    z-index: 2;
}

.areas__fig::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('assets/masks/maskareaAsa.svg') no-repeat top center / 100% auto;
    z-index: 2;
    mix-blend-mode: soft-light;
}

.areas__fig img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.areas__item:hover .areas__fig img {
    transform: scale(1.05);
}

.areas__arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    background-image: url('assets/icons/arrowWhiteDiag.svg');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 2;
    opacity: 0;
    transform: translate(29px, -29px);
    transition: opacity 0.3s, transform 0.3s;
}

.areas__arrow::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    transform: translate(50%, -50%);
    top: 0;
    right: 0;
    background: #434343;
    filter: blur(20px);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.6;
    mix-blend-mode: color;
}

.areas__item:hover .areas__arrow {
    opacity: 1;
    transform: translate(0, 0);
}

.areas__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 0 clamp(18px, 2vw, 23px) clamp(20px, 3vw, 30px);
}

.areas__name {
    color: var(--white);
    font-size: clamp(15px, 1.4vw, 23px);
    font-style: normal;
    font-weight: 600;
    line-height: 115%;
    margin-bottom: 0;
    transition: margin-bottom 0.3s;
}

.areas__desc {
    font-size: clamp(12px, 0.8vw, 13px);
    color: var(--white);
    line-height: 1.5;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s, max-height 0.3s;
}

.areas__item:hover .areas__name {
    margin-bottom: 2px;
}

.areas__item:hover .areas__desc {
    opacity: 1;
    max-height: 100px;
}

/* =========================================================
   ABOUT US
   ========================================================= */
.about {
    position: relative;
    padding: clamp(70px, 8vw, 127px) clamp(20px, 10vw, 173px) clamp(80px, 9vw, 152px);
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(93deg, #FBFBFB 58.53%, rgba(251, 251, 251, 0.00) 87.28%), url(assets/images/aboutUs.webp);
    background-color: #fbfbfb;
    background-position: left, 108.5% 82%;
    background-size: auto, 47% auto;
    background-repeat: no-repeat;
    opacity: 0.96;
    z-index: 0;
}

.about__content {
    position: relative;
    z-index: 1;
    display: flex;
    gap: clamp(24px, 4.5vw, 62px);
    max-width: 1574px;
    margin: 0 auto;
}

.about__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    flex: 1;
    max-width: 473px;
}

.about__label {
    text-align: start;
    margin-bottom: clamp(12px, 0.6vw, 15px);
}

.about__title {
    color: var(--warm-charcoal);
    font-size: clamp(20px, 1.6vw, 26px);
    font-style: normal;
    font-weight: 600;
    line-height: 135%;
    margin-bottom: 30px;
}

.about__btn {
    display: inline-flex;
    width: fit-content;
    border-radius: 47px;
    padding: 20px clamp(24px, 2vw, 30px);
    color: var(--warm-charcoal);
    background-color: var(--cloud-white);
    text-align: right;
    font-size: clamp(16px, 1vw, 17px);
    font-style: normal;
    font-weight: 500;
    line-height: 94.118%;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.about__btn:hover {
    background: var(--rich-black);
    color: var(--white);
}

.about__right {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 1.2vw, 20px);
    flex: 1;
    max-width: 453px;
    justify-content: center;
}

.about__right p {
    color: var(--warm-charcoal);
    font-size: clamp(18px, 1.2vw, 20px);
    font-style: normal;
    font-weight: 300;
    line-height: 170%;
}

/* =========================================================
   FORMATIONS
   ========================================================= */

.formations {
    display: flex;
    align-items: center;
    gap: clamp(48px, 6.98vw, 134px);
    padding: clamp(40px, 5.21vw, 100px) 0;
    max-width: 1500px;
    margin: 0 auto;
}

.formations__left {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateX(30%);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.formations__left.is-visible {
    transform: translateX(0);
    opacity: 1;
}

.formations__tag {
    position: absolute;
    background: var(--snow-gray);
    color: #727272;
    font-size: clamp(15px, 1vw, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    padding: 9px 10px;
    border-radius: 10px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}

.formations__tag:hover {
    background: var(--soft-ash);
}

.formations__tag--green {
    background: var(--fresh-lime);
    color: var(--white);
    padding: 11px 12px;
}

.formations__tag--green:hover {
    background: var(--lime-moss);
}

/* Posições */
.formations__tag--1 {
    top: 18%;
    left: 8.4%;
}

.formations__tag--2 {
    bottom: 35%;
    left: 15.4%;
}

.formations__tag--3 {
    top: 7%;
    right: 7.6%;
}

.formations__tag--4 {
    bottom: 9%;
    right: -3.5%;
}

.formations__img {
    overflow: hidden;
    border-radius: 30px;
}

.formations__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.formations__img--large {
    width: 73.8%;
    aspect-ratio: 640 / 400;
}

.formations__img--small img {
    object-position: 80% center;
}

.formations__img--small {
    width: 23%;
    border-radius: 219px;
    aspect-ratio: 200 / 400;
}

.formations__right {
    flex: 1;
    max-width: 508px;
}

.formations__label {
    display: block;
    margin-bottom: 5px;
    text-align: start;
}

.formations__title {
    color: var(--warm-charcoal);
    font-size: clamp(24px, 1.98vw, 38px);
    font-style: normal;
    font-weight: 600;
    line-height: 135%;
    margin-bottom: clamp(12px, 1.04vw, 20px);
    text-align: left;
}

.formations__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 47px;
    padding: clamp(14px, 1.04vw, 20px) clamp(20px, 1.56vw, 30px);
    background: var(--fresh-lime);
    color: var(--rich-black);
    text-align: right;
    font-size: clamp(15px, 0.89vw, 17px);
    font-style: normal;
    font-weight: 500;
    line-height: 94.118%;
    text-decoration: none;
    transition: background 0.2s;
}

.formations__btn::after {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url('assets/icons/arrowDiagLit.svg');
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
}

.formations__btn:hover {
    background: var(--lime-moss);
}

/* =========================================================
   PARTNERS
   ========================================================= */
.partners {
    position: relative;
    background: var(--rich-black);
    padding: clamp(60px, 8vw, 120px) 0 clamp(50px, 6vw, 80px);
    overflow: hidden;
}

.partners::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -13%;
    width: 29%;
    height: 122%;
    background-image: url(assets/images/mapa_portugal.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right center;
    transform: rotate(-16.618deg);
    z-index: 0;
}

.partners::before {
    content: '';
    position: absolute;
    top: -91%;
    left: -2%;
    width: 29%;
    height: 122%;
    background-image: url(assets/images/mapa_portugal.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left top;
    transform: rotate(-12.372deg);
    z-index: 0;
}

.partners__header {
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 0 auto 25px;
    max-width: 792px;
    padding: 0 clamp(16px, 2vw, 20px);
}

.partners__label {
    margin-bottom: clamp(8px, 0.5vw, 10px);
    text-align: center;
}

.partners__title {
    color: #7E7E7E;
    text-align: center;
    font-size: clamp(20px, 2.4vw, 38px);
    font-style: normal;
    font-weight: 600;
    line-height: 135%;
}

.partners__grid {
    position: relative;
    z-index: 1;
    display: flex;
    max-width: 1622px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.partners__item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 200px;
    min-height: 143px;
    border-bottom: 1px solid #434343;
    border-right: 1px solid #434343;
}

.partners__item.no-right-border {
    border-right: none;
}

.partners__item.no-bottom-border {
    border-bottom: none;
}

.partners__item.has-left-border {
    border-left: 1px solid #434343;
}

.partners__item img {
    object-fit: contain;
    opacity: 0.6;
}

/* =========================================================
   NEWS
   ========================================================= */

.news {
    padding: clamp(60px, 8vw, 120px) 0 clamp(50px, 6vw, 70px);
    border-bottom: 1px solid #CACACA;
}

.news__header {
    text-align: center;
    margin-bottom: clamp(24px, 2.5vw, 40px);
}

.news__label {
    margin-bottom: clamp(8px, 0.5vw, 10px);
}

.news__title {
    color: var(--warm-charcoal);
    text-align: center;
    font-size: clamp(20px, 1.6vw, 26px);
    font-style: normal;
    font-weight: 600;
    line-height: 135%;
}

/* Wrapper com setas */
.news__wrapper {
    display: flex;
    align-items: center;
    max-width: 1408px;
    margin: 0 auto;
    position: relative;
}

/* Slider */
.news__slider {
    display: flex;
    gap: clamp(16px, 1.2vw, 20px);
    overflow: hidden;
    flex: 1;
}

/* Card */
.news__item {
    flex: 0 0 calc((100% - 40px) / 3);
    background: var(--white);
}

.news__fig {
    width: 100%;
    height: auto;
    aspect-ratio: 456 / 365;
    overflow: hidden;
    border-radius: 20px;
}

.news__fig img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.news__item:hover .news__fig img {
    transform: scale(1.05);
}

.news__info {
    padding: clamp(12px, 1.2vw, 16px) clamp(16px, 2vw, 21px) 0 0;
}

.news__meta {
    display: flex;
    gap: clamp(16px, 1.2vw, 20px);
    margin-bottom: clamp(8px, 0.5vw, 10px);
}

.news__date,
.news__read {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--lime-moss);
    font-size: clamp(15px, 1vw, 16px);
    font-weight: 500;
    line-height: 108%;
}

.news__date::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url('assets/icons/calendar.svg') no-repeat center/contain;
}

.news__read::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url('assets/icons/time.svg') no-repeat center/contain;
}

.news__name {
    color: var(--warm-charcoal);
    font-size: clamp(18px, 1.3vw, 22px);
    font-style: normal;
    font-weight: 600;
    line-height: 135%;
    margin-bottom: 7px;
}

.news__desc {
    color: var(--muted-gray);
    font-size: clamp(16px, 1vw, 17px);
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
}

/* Setas */
.news__arrow {
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    width: 55px;
    height: 55px;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-sizing: content-box;
    position: absolute;
}

.news__arrow:hover {
    background: var(--soft-ash);
}

.news__arrow--prev {
    left: -6.3%;
}

.news__arrow--prev img {
    transform: rotate(180deg);
}

.news__arrow--next {
    right: -6.3%;
}

/* Botão */
.news__footer {
    text-align: center;
    margin-top: clamp(20px, 2vw, 30px);
}

.news__btn {
    display: inline-block;
    border: none;
    border-radius: 47px;
    padding: 20px clamp(24px, 2vw, 30px);
    color: var(--rich-black);
    background-color: var(--cloud-white);
    text-align: right;
    font-size: clamp(16px, 1vw, 17px);
    font-style: normal;
    font-weight: 500;
    line-height: 94.118%;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.news__btn:hover {
    background: var(--rich-black);
    color: var(--white);
}

/* =========================================================
   CTA
   ========================================================= */

.cta {
    display: flex;
    align-items: center;
    gap: clamp(60px, 8.49vw, 163px);
    padding: clamp(70px, 5.68vw, 109px) 0 clamp(80px, 6.51vw, 125px);
    max-width: 1278px;
    margin: 0 auto;
}

.cta__left {
    flex: 1;
    max-width: 500px;
}

.cta__title {
    color: var(--warm-charcoal);
    font-size: clamp(28px, 1.98vw, 38px);
    font-style: normal;
    font-weight: 600;
    line-height: 135%;
    margin-bottom: 10px;
    max-width: 440px;
    text-align: left;
}

.cta__desc {
    color: var(--warm-charcoal);
    font-size: clamp(16px, 1.04vw, 20px);
    font-style: normal;
    font-weight: 300;
    line-height: 160%;
    margin-bottom: clamp(12px, 1.04vw, 20px);
}

.cta__btns {
    display: flex;
    align-items: center;
    gap: clamp(10px, 0.78vw, 15px);
}

.cta__btn {
    display: inline-flex;
    align-items: center;
    text-wrap: nowrap;
    gap: 10px;
    border-radius: 47px;
    padding: clamp(14px, 1.04vw, 20px) clamp(20px, 1.56vw, 30px);
    color: #282828;
    text-align: right;
    font-size: clamp(15px, 0.89vw, 17px);
    font-style: normal;
    font-weight: 500;
    line-height: 94.118%;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.cta__btn--primary {
    background: var(--fresh-lime);
}

.cta__btn--primary::after {
    content: '';
    width: 12px;
    height: 12px;
    background-image: url('assets/icons/arrowDiagLit.svg');
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
}

.cta__btn--primary:hover {
    background: var(--lime-moss);
}

.cta__btn--secondary {
    background: var(--cloud-white);
}

.cta__btn--secondary::after {
    content: '';
    width: 17px;
    height: 17px;
    background-image: url('assets/icons/envelope.svg');
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
}

.cta__btn--secondary:hover {
    background: var(--soft-ash);
}

.cta__right {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    gap: clamp(12px, 0.83vw, 16px);
    transform: translateX(-30%);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.cta__right.is-visible {
    transform: translateX(0);
    opacity: 1;
}

.cta__img {
    overflow: hidden;
    border-radius: 30px;
}

.cta__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta__img--large {
    width: 65%;
    aspect-ratio: 1;
}

.cta__img--large img {
    object-position: 90% top;
}

.cta__img--small {
    width: 32.3%;
    border-radius: 210px;
    aspect-ratio: 200 / 400;
}

.cta__img--small::after {
    content: '';
    position: absolute;
    top: -6%;
    right: -20%;
    width: 27.4%;
    height: 31%;
    background-image: url(assets/images/logobird.webp);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 2;
}

/* =========================================================
    FOOTER
   ========================================================= */
#footer {
    background: var(--soft-ash);
    color: var(--warm-charcoal);
    position: relative;
}

#footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/images/bgfooter.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 29% auto;
    pointer-events: none;
    z-index: 1;
}

/* BACK TO TOP */
.btn-backtotop {
    position: absolute;
    top: -35px;
    right: 151px;
    width: 73px;
    height: 73px;
    background: var(--lime-moss);
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 10;
    transition: background 0.2s;
}

.btn-backtotop:hover {
    background: var(--fresh-lime);
    cursor: pointer;
}

.btn-backtotop svg {
    width: 21px;
    height: 11px;
    display: block;
}

/* FOOTER TOP  */
.footer-top {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 16.8% 12.7% 14.7% 14.7%;
    gap: clamp(32px, 6vw, 90px);
    padding: clamp(24px, 4vw, 38px) 0 clamp(24px, 4vw, 36px);
    max-width: 1840px;
    margin: 0 auto;
}

/* Logo */
.footer-logo img {
    width: clamp(160px, 15vw, 245px);
    height: auto;
    display: block;
    margin-bottom: clamp(80px, 10vw, 200px);
}

/* Social */
.footer-social {
    background: var(--light-smoke);
    border-radius: 15px;
    padding: 20px clamp(22px, 2vw, 25px);
    max-width: fit-content;
}

.footer-social p {
    color: #434343;
    font-size: clamp(14px, 0.8vw, 15px);
    font-style: normal;
    font-weight: 500;
    line-height: 145%;
    margin-bottom: 12px;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
}

.footer-social-icons a {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--soft-ash);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s;
}

.footer-social-icons a:hover {
    background: var(--lime-moss);
}

.footer-social-icons img,
.footer-social-icons svg {
    width: 25px;
    height: 25px;
}

/* Contactos */
.footer-contact,
.footer__col.footer__col--nav,
.footer__col.footer__col--legal {
    margin-top: clamp(32px, 3vw, 50px);
}

.footer-contact h3,
.footer__col--nav h3,
.footer__col--legal h3 {
    color: var(--lime-moss);
    font-size: clamp(14px, 0.8vw, 15px);
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    margin-bottom: 10px;
}

.footer-contact address {
    color: var(--warm-charcoal);
    font-size: clamp(14px, 0.8vw, 15px);
    font-style: normal;
    font-weight: 300;
    line-height: 160%;
    margin-bottom: clamp(16px, 1.2vw, 20px);
}

.footer-contact address span strong {
    font-weight: 500;
}

.footer-phone {
    margin-bottom: clamp(12px, 1.2vw, 20px);
}

.footer-phone a {
    color: var(--warm-charcoal);
    font-size: clamp(14px, 0.8vw, 15px);
    font-style: normal;
    font-weight: 300;
    line-height: 160%;
    display: block;
}

.footer-phone a strong {
    font-weight: 500;
}

.footer-phone a:hover {
    color: var(--lime-moss);
}

.footer-phone-label {
    color: var(--warm-charcoal);
    font-size: 10px;
    font-style: normal;
    font-weight: 300;
    line-height: 160%;
    text-transform: uppercase;
}

.footer-email {
    color: var(--warm-charcoal);
    font-size: clamp(14px, 0.8vw, 15px);
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
}

.footer-email a:hover {
    color: var(--lime-moss);
}

/* Menus WP */
.footer__col--nav .menu,
.footer__col--legal .menu {
    list-style: none;
}

.footer__col--nav .menu-item,
.footer__col--legal .menu-item {
    margin-bottom: 8px;
}

.footer__col--nav .menu-item--title,
.footer__col--legal .menu-item--title {
    color: var(--lime-moss);
    font-size: clamp(14px, 0.8vw, 15px);
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    margin-bottom: 7px;
}

.footer__col--nav .menu-item a,
.footer__col--legal .menu-item a {
    color: var(--warm-charcoal);
    font-size: clamp(14px, 0.8vw, 15px);
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    text-decoration: none;
    transition: color 0.15s;
}

.footer__col--nav .menu-item a:hover,
.footer__col--legal .menu-item a:hover {
    color: var(--lime-moss);
}

.footer__col--nav .menu-item--academia a::after {
    content: '';
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    width: 188px;
    height: 23px;
    background: url('assets/images/beforeMenu.svg') no-repeat center/contain;
    margin-left: 8px;
    vertical-align: middle;
}

/* FOOTER BOTTOM */
.footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid #CACACA;
    padding: clamp(32px, 4vw, 43px) clamp(24px, 4vw, 41px) clamp(40px, 5vw, 53px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(20px, 1.5vw, 24px);
}

.footer-bottom-blisq {
    margin-left: auto;
}

.footer-bottom-logos {
    display: flex;
    align-items: center;
    gap: clamp(24px, 2vw, 30px);
    flex-wrap: wrap;
    margin-left: auto;
    max-width: 1091px;
}

.footer-bottom-logos img {
    height: auto;
    width: fit-content;
    object-fit: contain;
}

.footer__blisq-figure img {
    width: 39px;
    height: auto;
}

/* =========================================================
    SINGLE area
   ========================================================= */
.single-hero {
    position: relative;
    background: #D6D6D6;
    overflow: hidden;
    height: 36.2vh;
}

/* Pássaro background */
.single-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(270deg, #D6D6D6 2.24%, rgba(214, 214, 214, 0.00) 88.27%), url('assets/images/bg-herosingle.webp');
    background-repeat: no-repeat;
    background-position: left 19%;
    background-size: 54% auto;
    pointer-events: none;
    z-index: 2;
}

.single-hero__img {
    position: relative;
    width: 55%;
    margin-left: auto;
    height: 100%;
}

.single-hero__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: 100% 62%;
}

.single-hero__img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #D6D6D6 2.24%, rgba(214, 214, 214, 0.00) 88.27%);
    z-index: 1;
}

/*Intro*/
.single-intro {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    border-bottom: 1px solid #CACACA;
}

.single-intro-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: clamp(20px, 2.604vw, 50px) clamp(16px, 1.042vw, 20px) clamp(16px, 2.083vw, 40px);
    gap: clamp(16px, 2.083vw, 40px);
    max-width: 1348px;
    margin: 0 auto;
}

.single-intro__left {
    max-width: 860px;
}

.single-intro__label {
    display: block;
    color: var(--lime-moss);
    font-size: clamp(16px, 1.042vw, 20px);
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    margin-bottom: 5px;
}

.single-intro__title {
    color: var(--warm-charcoal);
    font-size: 46px;
    font-style: normal;
    font-weight: 600;
    line-height: 135%;
    margin-bottom: 4px;
    text-align: start;
}

.single-intro__desc {
    color: var(--warm-charcoal);
    font-size: clamp(16px, 1.042vw, 20px);
    font-style: normal;
    font-weight: 400;
    line-height: 155%;
}

.single-intro__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--fresh-lime);
    color: var(--rich-black);
    border-radius: 70px;
    padding: clamp(12px, 1.042vw, 20px) clamp(16px, 1.563vw, 30px);
    text-align: right;
    font-size: clamp(14px, 0.885vw, 17px);
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    white-space: nowrap;
    text-decoration: none;
    transition: background 0.2s;
}

.single-intro__btn::after {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url('assets/icons/arrowDiagLit.svg');
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
}

.single-intro__btn:hover {
    background: var(--lime-moss);
}

/*Single about*/
.single-about {
    max-width: 1246px;
    margin: 0 auto;
    padding: clamp(32px, 4.167vw, 80px) clamp(16px, 1.042vw, 20px);
    display: flex;
    flex-direction: column;
    gap: clamp(55px, 3.646vw, 70px);
}

.single-about__row {
    display: flex;
    align-items: center;
    gap: clamp(40px, 3.646vw, 70px);
}

.single-about__fig {
    flex: 0 0 44.78%;
    border-radius: 18px;
    overflow: hidden;
}

.single-about__fig img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-about__fig--card {
    background: transparent;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.single-about__fig--card img {
    object-fit: contain;
    width: 100%;
    height: auto;
}

.single-about__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.single-about__title {
    color: var(--warm-charcoal);
    font-size: clamp(22px, 1.667vw, 32px);
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    text-align: left;
    width: 100%;
}

.single-about__subtitle {
    color: #C2CA34;
    font-size: clamp(18px, 1.354vw, 26px);
    font-style: normal;
    font-weight: 600;
    line-height: 135%;
}

.single-about__text p {
    color: var(--warm-charcoal);
    font-size: clamp(16px, 0.938vw, 18px);
    font-style: normal;
    font-weight: 300;
    line-height: 160%;
    width: 100%;
}

/* Accordion */
.single-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 5px;
}

.single-accordion__item {
    border-radius: 8px;
    overflow: hidden;
}

.single-accordion__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    cursor: pointer;
    list-style: none;
    border-radius: 8px;
    border: 1px solid #CACACA;
    transition: border 0.2s;
    gap: 10px;
}

.single-accordion__summary::-webkit-details-marker {
    display: none;
}

.single-accordion__item:not([open]) .single-accordion__summary:hover {
    background: #EDEDED;
}

.single-accordion__item[open] .single-accordion__summary {
    background: var(--rich-black);
    border-radius: 11px;
}

.single-accordion__name {
    color: #C2CA34;
    font-size: clamp(18px, 1.146vw, 22px);
    font-style: normal;
    font-weight: 600;
    line-height: 135%;
}

.single-accordion__item[open] .single-accordion__name {
    color: var(--fresh-lime);
}

/* Ícone seta */
.single-accordion__summary::after {
    content: '';
    width: 18px;
    height: 18px;
    background-image: url('assets/icons/arrow-right.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    flex-shrink: 0;
    transform: rotate(90deg);
    transition: transform 0.3s;
}

.single-accordion__item[open] .single-accordion__summary::after {
    transform: rotate(-90deg);
    filter: invert(1);
}

.single-accordion__body.single-accordion__body {
    padding: 10px 20px 0;
    color: var(--warm-charcoal);
    font-size: clamp(14px, 0.833vw, 16px);
    font-style: normal;
    font-weight: 300;
    line-height: 160%;
}

/* Checklist */
.single-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 5px;
}

.single-checklist__item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #EDEDED;
    border-radius: 8px;
    padding: 13px;
    color: var(--warm-charcoal);
    font-size: clamp(14px, 0.885vw, 17px);
    font-style: normal;
    font-weight: 400;
    line-height: 136%;
    width: fit-content;
}

.single-checklist__item::before {
    content: '';
    width: 27px;
    height: 27px;
    flex-shrink: 0;
    border-radius: 10px;
    background-color: var(--white);
    background-image: url('assets/icons/check.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15px 10px;
}

/*Benefits*/
.single-benefits {
    background: #EDEDED;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding-block: clamp(40px, 8vw, 100px);
    padding-inline: clamp(16px, 1.042vw, 20px);
}

.single-benefits__row {
    display: flex;
    align-items: center;
    gap: clamp(40px, 3.646vw, 70px);
    max-width: 1246px;
    margin: 0 auto;
    padding-inline: 20px;
}

.single-benefits__fig {
    flex: 0 0 44.78%;
    border-radius: 18px;
    overflow: hidden;
}

.single-benefits__fig img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-benefits__text {
    flex: 1;
}

.single-benefits__title {
    color: var(--warm-charcoal);
    font-size: clamp(22px, 1.667vw, 32px);
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    text-align: left;
    margin-bottom: 15px;
}

.single-benefits .single-checklist__item {
    background: var(--white);
}

.single-benefits .single-checklist__item::before {
    background-color: #E9E9E9;
}

/* Why Choose */
.single-why {
    max-width: 1300px;
    margin: 0 auto;
    padding: clamp(32px, 4.167vw, 80px) clamp(16px, 1.042vw, 20px);
    text-align: center;
}

.single-why__title {
    color: #C2CA34;
    font-size: clamp(18px, 1.354vw, 26px);
    font-style: normal;
    font-weight: 600;
    line-height: 135%;
    text-align: center;
    margin-bottom: 20px;
}

.single-why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.single-why__card {
    border-radius: 15px;
    border: 1px solid #CACACA;
    padding: clamp(16px, 1.042vw, 20px);
    display: flex;
    flex-direction: column;
    align-items: start;
    text-align: start;
}

.single-why__icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-why__icon img {
    width: 100%;
    height: auto;
}

.single-why__text {
    color: var(--warm-charcoal);
    font-size: clamp(14px, 0.885vw, 17px);
    font-style: normal;
    font-weight: 400;
    line-height: 145%;
}

/*Cta Single*/
.single-cta {
    width: 1920px;
    max-width: 100%;
    margin: 0 auto;
    padding-inline: 20px;
    border-bottom: 1px solid #CACACA;
}

.single-cta-container {
    display: flex;
    align-items: stretch;
    border-radius: 20px;
    overflow: hidden;
    max-width: 1184px;
    margin: 0 auto clamp(32px, 4.167vw, 80px);
}

.single-cta__left {
    flex: 1;
    background: var(--rich-black);
    padding: clamp(24px, 2.448vw, 47px) clamp(20px, 3.125vw, 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
}

.single-cta__title {
    color: var(--white);
    font-size: clamp(22px, 1.667vw, 32px);
    font-style: normal;
    font-weight: 600;
    line-height: 135%;
    text-align: left;
    max-width: 579px;
    width: 100%;
}

.single-cta__desc {
    color: #BBB;
    font-size: clamp(15px, 0.99vw, 19px);
    font-style: normal;
    font-weight: 300;
    line-height: 160%;
    max-width: 579px;
    width: 100%;
    margin-bottom: 7px;
}

.single-cta__btns {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.single-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 47px;
    padding: clamp(12px, 1.042vw, 20px) clamp(16px, 1.563vw, 30px);
    font-size: clamp(14px, 0.9vw, 16px);
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
}

.single-cta__btn--primary {
    background: var(--fresh-lime);
    color: var(--rich-black);
}

.single-cta__btn--primary::after {
    content: '';
    width: 12px;
    height: 12px;
    background-image: url('assets/icons/arrowDiagLit.svg');
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
}

.single-cta__btn--primary:hover {
    background: var(--lime-moss);
}

.single-cta__btn--secondary {
    background: #3a3a3a;
    color: var(--white);
}

.single-cta__btn--secondary::after {
    content: '';
    width: 17px;
    height: 17px;
    background-image: url('assets/icons/envelope.svg');
    background-repeat: no-repeat;
    background-size: contain;
    filter: invert(1);
    flex-shrink: 0;
}

.single-cta__btn--secondary:hover {
    background: #4a4a4a;
}

.single-cta__fig {
    flex: 0 0 37.8%;
    overflow: hidden;
}

.single-cta__fig img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/*Areas single*/
.areas__grid--4cols {
    grid-template-columns: repeat(4, 1fr);
}

.single-areas {
    padding: clamp(40px, 6vw, 70px) 0 clamp(80px, 10vw, 115px);
    padding-inline: clamp(16px, 1.042vw, 20px);
    max-width: 1413px;
    margin: 0 auto;
}

/* =========================================================
    Single News
   ========================================================= */
.news-hero {
    position: relative;
    width: 100%;
    height: 39.9vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.news-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Máscara canto direito — igual ao hero */
.news-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/masks/maskheronews.svg');
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 37% auto;
    z-index: 1;
}

.news-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(71, 71, 71, 0.00) 0%, rgba(71, 71, 71, 0.97) 100%);
    z-index: 1;
}

.news-hero__content {
    position: relative;
    z-index: 2;
    padding: 0 20px 30px;
    max-width: 818px;
    margin: 0 auto;
    width: 100%;
}

.news-hero__meta {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.news-hero__meta .news__date,
.news-hero__meta .news__read {
    color: #B3BC2C;
    font-size: clamp(16px, 2vw, 18px);
    font-style: normal;
    font-weight: 500;
    line-height: 108%;
}

.news-hero__meta .news__date::before,
.news-hero__meta .news__read::before {
    filter: invert(1);
    width: 18px;
    height: 18px;
}

.news-hero__title {
    color: var(--white);
    font-size: clamp(32px, 5vw, 46px);
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 7px;
}

.news-hero__desc {
    color: var(--white);
    font-size: clamp(18px, 2.5vw, 22px);
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
}

.news-content {
    padding: 40px 20px 80px;
    position: relative;
}

.news-content::before {
    content: '';
    position: sticky;
    top: 0;
    width: 417px;
    height: 306px;
    background: url(assets/images/logo-news.svg) no-repeat top right / contain;
    z-index: 1;
    pointer-events: none;
    float: right;
    margin-top: -79px;
    margin-right: -20px;
}

.news-content__wrapper {
    max-width: 818px;
    margin: 0 auto;
}

.news-content.news-description {
    color: var(--warm-charcoal);
    font-size: clamp(16px, 1vw, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: 155%;
}

/* Parágrafos diretos do wrapper */
.news-content__wrapper p {
    color: var(--warm-charcoal);
    font-size: clamp(16px, 1vw, 18px);
    font-weight: 300;
    line-height: 170%;
    margin-bottom: 20px;
}

/* Imagem */
.news-content__wrapper figure {
    width: 100%;
    max-height: 449px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
}

.news-content__wrapper figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* H2 */
.news-content__wrapper h2 {
    color: var(--lime-moss);
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 10px;
    text-align: left;
}

/* H3 */
.news-content__wrapper h3 {
    color: var(--warm-charcoal);
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 600;
    line-height: 160%;
    margin-bottom: 10px;
}

/* Lista principal */
.news-content__wrapper ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding-left: 10px;
    margin-bottom: 20px;
}

.news-content__wrapper ul li {
    display: flex;
    flex-direction: column;
    color: var(--warm-charcoal);
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 300;
    line-height: 160%;
    padding-left: 15px;
    position: relative;
}

.news-content__wrapper ul li::before {
    content: '';
    position: absolute;
    top: 11px;
    left: 0;
    width: 4px;
    height: 4px;
    background: var(--warm-charcoal);
    border-radius: 50%;
}

/* Sublista — reset ao ::before */
.news-content__wrapper ul li ul li::before {
    content: counter(sublist, lower-alpha) ".";
    position: static;
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    color: var(--warm-charcoal);
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 300;
    line-height: 160%;
    flex-shrink: 0;
}

/* Sublista */
.news-content__wrapper ul li ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    counter-reset: sublist;
    margin-bottom: 0;
}

.news-content__wrapper ul li ul li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    flex-direction: row;
    counter-increment: sublist;
    padding-left: 7px;
}

/* More info */
.news-content__wrapper p strong {
    color: var(--warm-charcoal);
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 700;
    line-height: 160%;
    margin-bottom: 0;
}

/*Block News */
.related-news {
    padding: clamp(40px, 5vw, 70px) 20px clamp(65px, 8vw, 115px);
    border-top: 1px solid #CACACA;
}

.related-news__header {
    text-align: center;
    margin-bottom: 30px;
}

.related-news__label {
    color: var(--lime-moss);
    margin-bottom: 8px;
}

.related-news__title {
    color: var(--warm-charcoal);
    font-size: 26px;
    font-weight: 600;
    line-height: 135%;
}

.related-news__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1408px;
    margin: 0 auto;
}

.related-news__footer {
    text-align: center;
    margin-top: clamp(20px, 2vw, 30px);
}

/* =========================================================
    404
   ========================================================= */
.error404 {
    position: relative;
    min-height: 93.8vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('assets/images/bg-404.webp') center/cover no-repeat;
    overflow: hidden;
}

/* Camada de blur */
.error404::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: inherit;
    filter: blur(12.65px);
    z-index: 0;
}

.error404__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    max-width: 818px;
    margin-top: 5.5vh;
}

.error404__title {
    color: var(--black);
    text-align: center;
    font-size: 46px;
    font-style: normal;
    font-weight: 600;
    line-height: 135%;
    margin-bottom: 10px;
}

.error404__desc {
    color: var(--warm-charcoal);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 155%;
    max-width: 657px;
    margin-bottom: 10px;
}

.error404__btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.error404__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 47px;
    padding: clamp(12px, 2.5vw, 20px) clamp(16px, 3.5vw, 30px);
    color: #282828;
    text-align: right;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    text-decoration: none;
    transition: background 0.2s;
}

.error404__btn--primary {
    background: var(--fresh-lime);
}

.error404__btn--primary:hover {
    background: var(--lime-moss);
}

.error404__btn--secondary {
    background: var(--cloud-white);
}

.error404__btn--secondary:hover {
    background: var(--muted-gray);
}

.error404__btn--primary::after {
    content: '';
    width: 12px;
    height: 12px;
    background-image: url('assets/icons/arrowDiagLit.svg');
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
}

.error404__btn--secondary::after {
    content: '';
    width: 17px;
    height: 17px;
    background-image: url('assets/icons/envelope.svg');
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
}

/* =========================================================
    COMMON PAGES
   ========================================================= */

.common-page {
    padding: 237px 0 115px;
}

.common-container {
    max-width: 818px;
    width: 100%;
    margin: 0 auto;
}

.common-title {
    color: var(--black);
    font-size: 46px;
    font-style: normal;
    font-weight: 600;
    line-height: 135%;
}

.common-content {
    margin: 10px auto;
}

.common-content p {
    color: var(--warm-charcoal);
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 160%;
    padding-inline: 15px;
    margin-bottom: 15px;
}

.common-content p strong {
    font-weight: 700;
}

.common-content h2 {
    color: #B6B6B6;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    text-align: start;
    margin-bottom: 10px;
}

.common-content h3 {
    color: #C2CA34;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 135%;
    margin-bottom: 5px;
}

/* Lista principal */
.common-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding-left: 25px;
    margin-bottom: 20px;
    gap: 6px;
}

.common-content ul li {
    display: block;
    flex-direction: column;
    color: var(--warm-charcoal);
    font-size: 18px;
    font-weight: 300;
    line-height: 160%;
    padding-left: 15px;
    position: relative;
}

.common-content ul li strong {
    font-weight: 700;
}

.common-content ul li::before {
    content: '';
    position: absolute;
    top: 11px;
    left: 0;
    width: 4px;
    height: 4px;
    background: var(--warm-charcoal);
    border-radius: 50%;
}

/* Sublista */
.common-content ul li ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    counter-reset: sublist;
    margin-bottom: 0;
    padding-left: 0;
}

.common-content ul li ul li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    flex-direction: row;
    counter-increment: sublist;
    padding-left: 7px;
}

/* Reset ::before na sublista */
.common-content ul li ul li::before {
    content: counter(sublist, lower-alpha) ".";
    position: static;
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    color: var(--warm-charcoal);
    font-size: 18px;
    font-weight: 300;
    line-height: 160%;
    flex-shrink: 0;
}

/* =========================================================
    RESPONSIVO
   ========================================================= */

/* ========== ECRÃS BAIXOS (altura ≤ 760px) ========== */
@media screen and (max-height: 760px) {
    .hero {
        min-height: 500px;
    }

    .hero__content {
        padding-bottom: 0;
    }

    .hero__title {
        font-size: clamp(24px, 3vw, 40px);
        margin-bottom: 6px;
    }

    .hero__desc {
        font-size: clamp(14px, 1vw, 18px);
        margin-bottom: 10px;
    }

    .swiper-pagination {
        bottom: 100px !important;
        left: 20px !important;
    }
}


@media screen and (min-width:1921px) {
    .hero {
        min-height: calc(80vh - 54px);
    }
}

@media screen and (max-width: 1880px) {
    .formations {
        padding-inline: 40px;
    }

    .footer-top {
        padding-inline: 20px;
    }

    .footer-bottom {
        padding-inline: 20px;
    }

    .footer__col--nav .menu-item--academia a::after {
        width: 170px;
        height: 21px;
    }

}

@media screen and (max-width:1800px) {
    .news__wrapper {
        max-width: 1300px;
    }

    .news__arrow--prev {
        left: -5%;
    }

    .news__arrow--next {
        right: -5%;
    }

    .cta {
        padding-inline: 40px;
    }

    #footer::before {
        background-size: 25% auto;
    }

    .footer-top {
        gap: clamp(24px, 4vw, 60px);
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer__col--nav .menu-item--academia a::after {
        width: 160px;
        height: 20px;
    }

    .news-content::before {
        top: 0;
        width: 17%;
        aspect-ratio: 1;
        margin-top: -79px;
        margin-right: -20px;
    }
}

@media screen and (max-width: 1640px) {
    .news-content::before {
        top: 0;
        width: 15%;
        aspect-ratio: 1;
        margin-top: -79px;
        margin-right: -20px;
    }
}

@media screen and (max-width: 1600px) {

    /* Hero */
    .hero__title {
        font-size: 44px;
    }

    .hero__desc {
        font-size: 19px;
    }

    /* Stats */
    .stats__inner span {
        font-size: 44px;
    }

    .stats {
        padding: 26px 0;
    }

    /* Areas */
    .areas__name {
        font-size: 18px;
    }

    /* About */
    .about__title {
        font-size: 23px;
    }

    .about__right p {
        font-size: 18px;
    }

    /* Formations */
    .formations {
        padding-inline: 40px;
        max-width: 1300px;
    }

    .formations__title {
        font-size: 28px;
    }

    .formations__tag {
        font-size: 14px;
        padding: 8px 9px;
    }

    .formations__tag--green {
        padding: 10px 11px;
    }

    /* Partners */
    .partners::before {
        top: -60%;
        left: -2%;
    }

    .partners::after {
        bottom: -10%;
        right: -8%;
    }

    .partners__item {
        flex: 0 0 180px;
        min-height: 130px;
    }

    .partners__item img {
        max-width: 120px;
    }

    .partners__title {
        font-size: 28px;
        text-wrap: balance;
    }

    /* News */
    .news__wrapper {
        max-width: 1100px;
        padding: 0 20px;
    }

    .news__arrow--prev {
        left: -4%;
    }

    .news__arrow--next {
        right: -4%;
    }

    .news__title {
        font-size: 22px;
    }

    .news__name {
        font-size: 18px;
    }

    .news__desc {
        font-size: 15px;
    }

    .news__date,
    .news__read {
        font-size: 15px;
    }

    /* CTA */
    .cta {
        gap: clamp(40px, 6vw, 120px);
        padding-inline: 20px;
        overflow: hidden;
    }

    .cta__title {
        font-size: 28px;
    }

    .cta__desc {
        font-size: 17px;
    }

    .cta__img--large {
        width: 60%;
        aspect-ratio: 1;
    }

    .cta__img--small {
        width: 30%;
        aspect-ratio: 200 / 400;
    }

    .cta__img--small::after {
        top: -6%;
        right: -12%;
        width: 27.4%;
        height: 31%;
    }

    /* Footer */
    #footer::before {
        background-size: 22% auto;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: clamp(20px, 3vw, 40px);
    }

    .footer__col--nav .menu-item--academia a::after {
        width: 150px;
        height: 20px;
    }

    /* Single */
    .single-hero::before {
        background-size: 46% auto;
    }

    .single-intro__title {
        font-size: 40px;
    }

    .single-intro__desc {
        font-size: 18px;
    }

    .single-about__title {
        font-size: 28px;
    }

    .single-about__subtitle {
        font-size: 22px;
    }

    .single-about__text p {
        font-size: 16px;
    }

    .single-benefits__title {
        font-size: 28px;
    }

    .single-accordion__name {
        font-size: 18px;
    }

    .single-accordion__body {
        font-size: 15px;
    }

    .single-checklist__item {
        font-size: 15px;
    }

    .single-intro-container {
        max-width: 1150px;
    }

    .single-intro__left {
        max-width: 750px;
    }

    .single-about {
        max-width: 1100px;
    }

    .single-benefits__row {
        max-width: 1100px;
    }

    .hero__btn,
    .news__btn,
    .cta__btn,
    .about__btn,
    .formations__btn,
    .single-intro__btn {
        font-size: 16px;
        padding: 18px 26px;
    }

    /* News Single */
    .news-hero__title {
        font-size: 40px;
    }

    .news-hero__desc {
        font-size: 18px;
    }

    .news-content__wrapper h2 {
        font-size: 28px;
    }

    .news-content__wrapper h3 {
        font-size: 22px;
    }

    .news-content__wrapper p,
    .news-content__wrapper ul li,
    .news-content__wrapper ul li ul li {
        font-size: 17px;
    }

    .common-title {
        font-size: 40px;
    }

    .common-content h2 {
        font-size: 28px;
    }

    .common-content h3 {
        font-size: 22px;
    }

    .common-content p,
    .common-content ul li,
    .common-content ul li ul li {
        font-size: 17px;
    }
}

@media screen and (max-width: 1550px) {
    .about {
        padding: 0;
        display: flex;
        flex-direction: column;
    }

    .about::before {
        position: relative;
        display: block;
        height: 350px;
        width: 100%;
        background-image: url(assets/images/aboutUs.webp);
        background-size: cover;
        background-position: center 83%;
        background-repeat: no-repeat;
        opacity: 1;
        z-index: 0;
    }

    .about__content {
        flex-direction: row;
        gap: clamp(32px, 4vw, 62px);
        padding: 40px;
    }

    .about__title {
        font-size: clamp(20px, 1.5vw, 24px);
        text-wrap: balance;
    }

    .about__right p {
        font-size: clamp(16px, 1.2vw, 19px);
    }
}

@media screen and (max-width: 1500px) {
    .single-intro__title {
        font-size: 36px;
    }

    .single-about__title {
        font-size: 26px;
    }

    .single-about__subtitle {
        font-size: 20px;
    }

    .single-benefits__title {
        font-size: 26px;
    }

    .header__nav .menu-item--academia a::after {
        width: 85px;
    }
}

@media screen and (max-width: 1450px) {
    .hero__title {
        font-size: 38px;
        max-width: 500px;
    }

    .hero__desc {
        font-size: 18px;
        max-width: 500px;
    }

    /* Stats */
    .stats__inner span {
        font-size: 38px;
    }

    .stats {
        padding: 22px 0;
    }

    .areas__arrow {
        width: 34px;
        height: 34px;
        top: 16px;
        right: 16px;
    }

    .areas__arrow::before {
        width: 160px;
        height: 160px;
    }

    .areas__name {
        font-size: 17px;
    }

    .about__title {
        font-size: 21px;
    }

    .about__right p {
        font-size: 17px;
    }

    .formations__tag {
        font-size: 13px;
        padding: 7px 8px;
    }

    .formations__tag--green {
        padding: 9px 10px;
    }

    .formations__title {
        font-size: 24px;
    }

    .partners__title {
        font-size: 24px;
    }

    .news__title {
        font-size: 20px;
    }

    .news__name {
        font-size: 17px;
    }

    .news__desc {
        font-size: 14px;
    }

    .cta__title {
        font-size: 24px;
    }

    .cta__desc {
        font-size: 16px;
    }

    /* Botões */
    .hero__btn,
    .news__btn,
    .cta__btn,
    .about__btn,
    .formations__btn,
    .single-intro__btn {
        font-size: 15px;
        padding: 16px 24px;
    }

    .single-intro-container {
        max-width: 1050px;
    }

    .single-intro__left {
        max-width: 680px;
    }

    .single-about {
        max-width: 1000px;
    }

    .single-benefits__row {
        max-width: 1000px;
    }

    .news-hero__title {
        font-size: 36px;
    }

    .news-hero__desc {
        font-size: 17px;
    }

    .news-content__wrapper h2 {
        font-size: 26px;
    }

    .news-content__wrapper h3 {
        font-size: 21px;
    }

    .news-content__wrapper p,
    .news-content__wrapper ul li,
    .news-content__wrapper ul li ul li {
        font-size: 16px;
    }

    .common-title {
        font-size: 36px;
    }

    .common-content h2 {
        font-size: 26px;
    }

    .common-content h3 {
        font-size: 21px;
    }

    .common-content p,
    .common-content ul li,
    .common-content ul li ul li {
        font-size: 16px;
    }
}

@media screen and (max-width: 1400px) {

    /* Hero */
    .hero__title {
        font-size: 32px;
    }

    .hero__desc {
        font-size: 17px;
    }

    /* Stats */
    .stats__inner span {
        font-size: 34px;
    }

    .stats {
        padding: 20px 0;
    }

    /* Formations */
    .formations {
        max-width: 1050px;
    }

    .formations__right {
        max-width: 450px;
    }

    .formations__title {
        font-size: 22px;
    }

    .formations__tag {
        font-size: 13px;
        padding: 6px 7px;
    }

    .formations__tag--green {
        padding: 8px 9px;
    }

    /* News */
    .news__wrapper {
        max-width: 960px;
    }

    .news__item {
        flex: 0 0 calc((100% - 32px) / 3);
    }

    .news__arrow--prev {
        left: -5%;
    }

    .news__arrow--next {
        right: -5%;
    }

    .news__date,
    .news__read {
        font-size: 14px;
    }

    .news__name {
        font-size: 16px;
    }

    .news__desc {
        font-size: 14px;
    }

    /* CTA */
    .cta {
        gap: clamp(32px, 5vw, 80px);
    }

    .cta__title {
        font-size: 22px;
    }

    .cta__desc {
        font-size: 16px;
    }

    .cta__img--large {
        width: 55%;
        aspect-ratio: 1;
    }

    .cta__img--small {
        width: 28%;
    }

    .cta__img--small::after {
        top: -5%;
        right: -5%;
        width: 27.4%;
        height: 24%;
    }

    /* Footer */
    #footer::before {
        background-size: 20% auto;
    }

    .btn-backtotop {
        right: 100px;
        width: 60px;
        height: 60px;
        top: -30px;
    }

    .btn-backtotop img {
        width: 16px;
    }

    .footer-social-icons a {
        width: 45px;
        height: 45px;
    }

    .footer-social-icons img {
        width: 20px;
        height: 20px;
    }

    .footer-bottom-logos {
        gap: clamp(16px, 2vw, 24px);
    }

    .footer-bottom-logos img {
        max-height: 35px;
    }

    /* Single */
    .single-hero::before {
        background-size: 40% auto;
    }

    .single-hero__img {
        width: 60%;
    }

    .single-intro__title {
        font-size: 32px;
    }

    .single-intro__desc {
        font-size: 17px;
    }

    .single-about__title {
        font-size: 24px;
    }

    .single-about__subtitle {
        font-size: 19px;
    }

    .single-about__text p {
        font-size: 15px;
    }

    .single-benefits__title {
        font-size: 24px;
    }

    .single-accordion__summary {
        padding: 8px 12px;
        gap: 8px;
    }

    .single-accordion__name {
        font-size: 16px;
        line-height: 1.3;
    }

    .single-accordion__body {
        font-size: 14px;
    }

    .single-checklist__item {
        font-size: 14px;
    }

    /* News Single */
    .news-hero__title {
        font-size: 32px;
    }

    .news-hero__desc {
        font-size: 16px;
    }

    .news-hero::after {
        background-size: 42% auto;
    }

    .news-hero__content {
        max-width: 672px;
    }

    .news-content__wrapper h2 {
        font-size: 24px;
    }

    .news-content__wrapper h3 {
        font-size: 20px;
    }

    /* Common */
    .common-page {
        padding: 200px 20px 100px;
    }

    .hero__btn,
    .news__btn,
    .cta__btn,
    .about__btn,
    .formations__btn,
    .single-intro__btn {
        font-size: 15px;
        padding: 15px 22px;
    }

    .common-title {
        font-size: 32px;
    }

    .common-content h2 {
        font-size: 24px;
    }

    .common-content h3 {
        font-size: 20px;
    }

    .common-content p,
    .common-content ul li,
    .common-content ul li ul li {
        font-size: 15px;
    }
}

@media screen and (max-width: 1300px) {
    .hero__title {
        font-size: 32px;
    }

    .hero__desc {
        font-size: 17px;
    }

    /* Stats */
    .stats__inner span {
        font-size: 30px;
    }

    .stats {
        padding: 18px 0;
    }

    .areas {
        padding-left: 0;
        padding-right: 0;
    }

    .areas__title {
        padding-inline: 20px;
    }

    .single-areas {
        padding-inline: 0;
    }

    .areas__grid,
    .areas__grid--4cols {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding: 0 20px;
        gap: 16px;
        padding: 0 20px 10px;
        cursor: grab;
        -webkit-overflow-scrolling: touch;
    }

    .areas__grid::-webkit-scrollbar,
    .areas__grid--4cols::-webkit-scrollbar {
        display: none;
    }

    .areas__grid,
    .areas__grid--4cols {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .areas__item {
        scroll-snap-align: start;
    }

    .areas__name {
        font-size: 16px;
    }

    .formations__title {
        font-size: 22px;
    }

    .partners::before {
        top: -40%;
        left: -4%;
    }

    .partners::after {
        bottom: -5%;
        right: -10%;
    }

    .partners__item {
        flex: 0 0 160px;
        min-height: 110px;
    }

    .partners__item img {
        max-width: 100px;
    }

    .partners__title {
        font-size: 22px;
    }

    .news__title {
        font-size: 18px;
    }

    .news__name {
        font-size: 16px;
    }

    .cta__title {
        font-size: 22px;
    }

    /* Botões */
    .hero__btn,
    .news__btn,
    .cta__btn,
    .about__btn,
    .formations__btn,
    .single-intro__btn {
        font-size: 15px;
        padding: 15px 22px;
    }

    .single-intro-container {
        max-width: 950px;
    }

    .single-intro__left {
        max-width: 620px;
    }

    .single-about {
        max-width: 900px;
    }

    .single-benefits__row {
        max-width: 900px;
    }

    .single-accordion__summary {
        padding: 7px 11px;
        gap: 7px;
    }

    .single-accordion__name {
        font-size: 15px;
    }
}

@media screen and (max-width: 1240px) {
    .news__wrapper {
        max-width: 900px;
    }

    .news__item {
        flex: 0 0 calc((100% - 20px) / 3);
    }

    .news__arrow--prev {
        left: -6%;
    }

    .news__arrow--next {
        right: -6%;
    }

    .news__title,
    .related-news__title {
        font-size: clamp(16px, 1.3vw, 22px);
    }

    .news__name {
        font-size: clamp(15px, 1.2vw, 18px);
    }

    .cta {
        gap: clamp(24px, 4vw, 60px);
    }

    .cta__title {
        font-size: clamp(22px, 2vw, 28px);
    }

    .cta__btns {
        gap: 10px;
    }

    .single-intro__btn::after {
        width: 12px;
        height: 12px;
    }

    .single-checklist__item {
        width: 100%;
        padding: 11px 13px;
        font-size: 15px;
    }

    .single-intro-container {
        padding-block: 32px;
    }
}

@media screen and (max-width:1200px) {
    .news-content::before {
        top: 0;
        width: 12%;
        aspect-ratio: 1;
        margin-top: -65px;
        margin-right: -20px;
    }
}

@media screen and (max-width: 1150px) {
    .hero__title {
        font-size: 28px;
    }

    .hero__desc {
        font-size: 16px;
    }

    /* Stats */
    .stats__inner span {
        font-size: 26px;
    }

    .stats {
        padding: 16px 0;
    }

    .about__title {
        font-size: 19px;
    }

    .about__right p {
        font-size: 16px;
    }

    .formations__title {
        font-size: 20px;
    }

    .formations__tag {
        font-size: 14px;
    }

    .partners__title {
        font-size: 20px;
    }

    .news__title {
        font-size: 17px;
    }

    .news__name {
        font-size: 15px;
    }

    .news__desc {
        font-size: 13px;
    }

    .news__date,
    .news__read {
        font-size: 14px;
    }

    .cta__title {
        font-size: 20px;
    }

    .cta__desc {
        font-size: 15px;
    }

    .single-intro__desc {
        text-wrap: balance;
    }

    /* Botões */
    .hero__btn,
    .news__btn,
    .cta__btn,
    .about__btn,
    .formations__btn,
    .single-intro__btn {
        font-size: 14px;
        padding: 14px 20px;
    }

    .single-intro-container {
        max-width: 850px;
    }

    .single-intro__left {
        max-width: 560px;
    }

    .single-about {
        max-width: 800px;
    }

    .single-benefits__row {
        max-width: 800px;
    }

    .single-accordion__summary {
        padding: 7px 10px;
    }

    .single-accordion__name {
        font-size: 14px;
    }
}

@media screen and (max-width: 1100px) {
    .areas__item {
        flex: 0 0 260px;
    }

    .partners::before {
        top: -25%;
        left: -6%;
    }

    .partners::after {
        bottom: 0;
        right: -12%;
    }

    #footer::before {
        background-size: 18% auto;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px 24px;
    }

    .footer__col--legal {
        grid-column: 1 / -1;
    }

    .footer__col--legal .menu {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 20px;
        margin-top: 0;
    }

    .footer__col--legal .menu-item {
        margin-bottom: 0;
    }

    .btn-backtotop {
        right: 60px;
    }

    .footer-logo img {
        margin-bottom: 20px;
    }

    .footer-social-icons {
        justify-content: center;
    }

    .footer-social {
        padding: 10px;
    }

    .single-hero::before {
        background-size: 35% auto;
        background-position: left bottom;
    }

    .single-hero__img {
        width: 65%;
    }

    .single-intro__title {
        font-size: 32px;
    }

    .single-intro__desc {
        font-size: 17px;
    }

    .single-intro-container {
        gap: 24px;
    }

    .single-about__row {
        gap: 40px;
    }

    .single-about__title {
        font-size: clamp(20px, 2vw, 28px);
    }

    .single-about__subtitle {
        font-size: clamp(17px, 1.8vw, 22px);
    }

    .single-about__text p {
        font-size: clamp(14px, 1.2vw, 16px);
    }

    .single-benefits__row {
        gap: 40px;
    }

    .single-benefits__title {
        font-size: clamp(20px, 2vw, 28px);
    }

    .single-cta__left {
        padding: clamp(20px, 2vw, 40px) clamp(16px, 2vw, 40px);
    }

    .news-hero__title {
        font-size: 32px;
    }

    .news-hero__desc {
        font-size: 16px;
    }

    .news-hero::after {
        background-size: 48% auto;
    }

    .news-hero__meta .news__date,
    .news-hero__meta .news__read {
        font-size: 16px;
    }

    .news-content {
        padding: 32px 20px 60px;
    }

    .news-content__wrapper h2 {
        font-size: 24px;
    }

    .news-content__wrapper h3 {
        font-size: 20px;
    }

    .news-content__wrapper p,
    .news-content__wrapper ul li,
    .news-content__wrapper ul li ul li {
        font-size: 16px;
    }

    .news-content::before {
        top: 0;
        width: 10%;
        aspect-ratio: 1;
        margin-top: -43px;
        margin-right: -20px;
    }

    .common-page {
        padding: 180px 20px 80px;
    }

    .common-title {
        font-size: 38px;
    }

    .common-content h2 {
        font-size: 26px;
    }

    .common-content h3 {
        font-size: 22px;
    }
}

@media screen and (max-width: 1024px) {
    #header {
        top: 30px;
        padding: 0 20px;
    }

    .header__logo img {
        width: clamp(120px, 18vw, 140px);
    }

    /* ========== HAMBÚRGUER ========== */
    .header__hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 44px;
        height: 44px;
        background: var(--rich-black);
        border: none;
        border-radius: 50%;
        cursor: pointer;
        z-index: 250;
        position: relative;
        padding: 0;
    }

    .header__hamburger span {
        display: block;
        width: 18px;
        height: 2px;
        background: #828282;
        border-radius: 2px;
        transition: transform 0.3s, opacity 0.3s;
    }

    .header__hamburger.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .header__hamburger.is-open span:nth-child(2) {
        opacity: 0;
    }

    .header__hamburger.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* ========== NAV ========== */
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 402px;
        max-width: 85vw;
        height: 100vh;
        background: var(--rich-black);
        border-radius: 0;
        padding: 138px 25px 55px;
        z-index: 200;
        transition: right 0.4s ease;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .header__nav::before {
        content: '';
        position: absolute;
        top: 40%;
        right: -31%;
        width: 521px;
        height: 383px;
        background: url('assets/images/logo-menuMobile.svg') no-repeat center/contain;
        z-index: 0;
    }

    .header__nav.is-open {
        right: 0;
    }

    #header::after {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 150;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
    }

    #header.menu-open::after {
        opacity: 1;
        pointer-events: auto;
    }

    .header__nav .menu {
        flex-direction: column;
        align-items: flex-start;
    }

    .header__nav .menu-item {
        width: 100%;
        position: relative;
    }

    .header__nav .menu-item::after {
        content: '';
        position: absolute;
        left: -25px;
        right: -25px;
        bottom: 0;
        height: 1px;
        background: #404040;
    }

    .header__nav .menu-item:last-child::after {
        display: none;
    }

    .header__nav .menu-item+.menu-item::before {
        display: none;
    }

    .header__nav .menu-item a {
        display: block;
        padding: 15px 0;
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 160%;
        text-align: left;
        color: var(--white);
    }

    .header__nav .menu-item:first-child a {
        padding-top: 0;
    }

    .header__nav .menu-item--cta {
        margin-left: 0;
        margin-top: 27px;
        border-bottom: none;
        z-index: 2;
    }

    .header__nav .menu-item--cta a {
        display: inline-block;
        padding: 17px 25px;
        font-size: 17px;
        font-style: normal;
        font-weight: 500;
        line-height: 16px;
        color: var(--rich-black);
        width: 100%;
        text-align: center;
    }

    .menu-item--mobile-home {
        display: flex;
        width: 100%;
    }

    .menu-item--mobile-home a {
        display: block;
        padding: 16px 0;
        font-size: 18px;
        text-align: left;
        color: var(--cloud-white);
    }

    .header__nav .menu-item--academia a::after {
        content: '';
        display: inline-block;
        width: 215px;
        height: 25px;
        background: url('assets/images/beforeMenu.svg') no-repeat center/contain;
        vertical-align: middle;
        position: relative;
        bottom: 0;
        margin-left: 0;
    }

    .header__legal-mobile {
        display: block;
        margin-top: 110px;
    }

    .header__legal-mobile h3 {
        color: var(--lime-moss);
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 160%;
        margin-bottom: 10px;
        text-align: left;
    }

    .header__legal-mobile .menu {
        display: grid;
        grid-template-columns: 182px 1fr;
        gap: 5px 10px;
        list-style: none;
    }

    .header__legal-mobile .menu-item::before,
    .header__legal-mobile .menu-item::after {
        display: none;
    }

    .header__legal-mobile .menu-item a {
        display: block;
        color: var(--warm-charcoal);
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 160%;
        text-align: left;
        padding: 0;
    }

    /* Stats */
    .stats__inner span {
        font-size: 22px;
    }

    .stats {
        padding: 14px 0;
    }

    .areas__info {
        padding: 0 16px 20px;
    }

    .formations {
        flex-direction: column-reverse;
        gap: 32px;
        padding: clamp(40px, 6vw, 80px) 40px;
        align-items: flex-start;
        max-width: 100%;
    }

    .formations__right {
        max-width: 100%;
        text-align: start;
    }

    .formations__title {
        text-align: start;
        font-size: clamp(16px, 4vw, 20px);
        max-width: 60%;
    }

    .formations__label {
        text-align: start;
    }

    .formations__btn {
        margin: 0 auto;
        padding: 12px 16px;
    }

    .formations__btn::after {
        width: 12px;
        height: 12px;
    }

    .formations__left {
        width: 100%;
        transform: none !important;
        opacity: 1 !important;
    }

    .formations__tag--1 {
        top: 14%;
        left: 5%;
    }

    .formations__tag--2 {
        bottom: 30%;
        left: 12%;
    }

    .formations__tag--3 {
        top: 5%;
        right: 5%;
    }

    .formations__tag--4 {
        bottom: 6%;
        right: 2%;
    }

    .news__header {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        margin-bottom: 20px;
        gap: 5px 20px;
    }

    .news__title,
    .news__label {
        margin-bottom: 0;
    }

    .news__title {
        line-height: 130%;
    }

    .news__wrapper {
        position: relative;
        max-width: 100%;
        padding-inline: 0;
    }

    .news__arrow--prev,
    .news__arrow--next {
        display: none;
    }

    .news__slider {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding: 20px;
        padding-inline: 20px;
        gap: 16px;
        cursor: grab;
        -webkit-overflow-scrolling: touch;
    }

    .news__slider::-webkit-scrollbar {
        display: none;
    }

    .news__slider {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .news__item {
        flex: 0 0 320px;
        scroll-snap-align: start;
    }

    .news__name {
        font-size: 18px;
    }

    .news__desc {
        font-size: 15px;
    }

    .news__date,
    .news__read {
        font-size: 14px;
    }

    .cta {
        flex-direction: column;
        gap: 32px;
        padding: clamp(40px, 6vw, 80px) 20px clamp(50px, 6vw, 100px);
    }

    .cta__left {
        max-width: 100%;
    }

    .cta__title {
        max-width: 100%;
        text-align: left;
        font-size: clamp(22px, 3vw, 28px);
    }

    .cta__desc {
        font-size: clamp(15px, 2vw, 18px);
    }

    .cta__right {
        width: 100%;
        transform: none;
        opacity: 1;
        justify-content: center;
    }

    .cta__img--large {
        width: 65%;
        max-width: 500px;
        height: 300px;
        aspect-ratio: auto;
    }

    .cta__img--small {
        width: 30%;
        max-width: 200px;
        height: 300px;
        aspect-ratio: auto;
    }

    .cta__img--large img,
    .cta__img--small img {
        height: 100%;
        object-fit: cover;
    }

    .cta__img--small::after {
        top: -5%;
        right: -15%;
        width: 27.4%;
        height: 24%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 24px 20px 32px;
    }

    .footer-bottom-logos {
        margin-left: 0;
    }

    .footer-bottom-logos img {
        max-height: 30px;
    }

    .single-accordion__item {
        overflow: visible;
    }

    .single-checklist__item {
        padding: 10px 12px;
        font-size: 13px;
    }

    .single-checklist__item::before {
        width: 24px;
        height: 24px;
    }

    .single-why {
        padding-inline: 0;
    }

    .single-why__grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding: 0 20px;
        padding: 0 20px 10px;
        gap: 16px;
        cursor: grab;
        -webkit-overflow-scrolling: touch;
    }

    .single-why__grid::-webkit-scrollbar {
        display: none;
    }

    .single-why__grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .single-why__card {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }

    .error404__title {
        font-size: 38px;
    }

    .error404__desc {
        font-size: 18px;
    }

    .news-content::before {
        top: 0;
        width: 7%;
        aspect-ratio: 1;
        margin-top: -44px;
        margin-right: -20px;
    }

    .related-news {
        padding-inline: 0;
    }

    .related-news__grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding: 0 20px;
        gap: 16px;
        padding: 0 20px 10px;
        cursor: grab;
        -webkit-overflow-scrolling: touch;
    }

    .related-news__grid::-webkit-scrollbar {
        display: none;
    }

    .related-news__grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .related-news__grid .news__item {
        flex: 0 0 380px;
        scroll-snap-align: start;
    }

    .hero__btn,
    .news__btn,
    .cta__btn,
    .about__btn,
    .formations__btn,
    .single-intro__btn {
        font-size: 14px;
        padding: 14px 20px;
    }
}

@media screen and (max-width: 950px) {
    .partners::before {
        top: -18%;
        left: -8%;
    }

    .partners::after {
        bottom: 0;
        right: -14%;
    }

    .partners__item {
        flex: 0 0 150px;
    }

    .news-content::before {
        position: absolute;
        top: 20px;
        right: 0;
        width: 180px;
        height: 130px;
        float: none;
        margin: 0;
        opacity: 0.6;
        z-index: -1;
    }
}

@media screen and (max-width:900px) {
    .single-about__row {
        gap: 24px;
    }

    .single-about__fig {
        flex: 0 0 48%;
    }

    .single-benefits__row {
        gap: 24px;
    }

    .single-benefits__fig {
        flex: 0 0 48%;
    }

    .single-cta__fig {
        flex: 0 0 42%;
        height: auto;
    }
}

@media screen and (max-width:840px) {

    .areas__name {
        font-size: 14px;
    }

    .cta__img--small::after {
        top: -5%;
        right: -16%;
        width: 27.4%;
        height: 20%;
    }

    .single-about {
        max-width: 100%;
        padding-inline: 40px;
    }
}

@media screen and (max-width: 820px) {

    .swiper-pagination-bullet {
        width: 20px;
        margin: 0px 5px !important;
    }

    .areas__info {
        padding: 0 14px 18px;
    }

    .areas__item {
        flex: 0 0 240px;
    }

    .about::before {
        height: 280px;
    }

    .formations {
        padding-block: clamp(20px, 6vw, 60px);
    }

    .partners {
        padding: clamp(40px, 8vw, 80px) 20px clamp(40px, 6vw, 60px);
    }

    .partners::before {
        top: -10%;
        left: 0%;
    }

    .partners::after {
        bottom: -43%;
        right: -20%;
    }

    .partners__item {
        flex: 0 0 140px;
    }

    .news__item {
        flex: 0 0 300px;
    }

    .news__title {
        font-size: 16px;
    }

    .news__name {
        font-size: 16px;
    }

    .news__desc {
        font-size: 14px;
    }

    #footer::before {
        display: none;
    }

    .footer-logo-col {
        display: flex;
        flex-direction: column;
        align-items: start;
        text-align: start;
    }

    .footer-logo img {
        margin-bottom: 24px;
        width: clamp(140px, 25vw, 180px);
    }

    .footer-social {
        max-width: 100%;
        text-align: start;
    }

    .footer-contact,
    .footer__col.footer__col--nav,
    .footer__col.footer__col--legal {
        text-align: start;
        margin-top: 0;
    }

    .footer__col--nav,
    .footer__col--legal {
        text-align: start;
    }

    .footer-bottom-logos img {
        max-height: 25px;
    }

    .btn-backtotop {
        right: 40px;
        width: 50px;
        height: 50px;
        top: -25px;
    }

    .btn-backtotop img {
        width: 14px;
    }

    .single-hero__img {
        width: 70%;
    }

    .single-intro__title {
        font-size: 28px;
    }

    .single-intro__title {
        font-size: 28px;
    }

    .single-intro__desc {
        font-size: 16px;
    }

    .single-intro__label {
        font-size: 16px;
    }

    .single-why__card {
        flex: 0 0 260px;
    }

    .news-hero__title {
        font-size: 26px;
    }

    .news-hero__desc {
        font-size: 15px;
    }

    .news-hero::after {
        background-size: 55% auto;
    }

    .news-hero__content {
        padding-bottom: 24px;
    }

    .news-hero__content {
        max-width: 485px;
    }

    .related-news__grid .news__item {
        flex: 0 0 320px;
    }

    .common-page {
        padding: 160px 20px 70px;
    }

    .common-title {
        font-size: 32px;
    }

    .common-content h2 {
        font-size: 22px;
    }

    .common-content h3 {
        font-size: 19px;
    }

    .common-content p,
    .common-content ul li {
        font-size: 16px;
    }

    .common-content ul li ul li::before {
        font-size: 16px;
    }
}

@media screen and (max-width: 770px) {

    .partners__label {
        font-size: 14px;
    }

    .partners__title {
        font-size: 16px;
    }

    .single-cta {
        padding-inline: 10%;
    }

    .single-cta-container {
        flex-direction: column;
        border-radius: 20px;
        overflow: hidden;
    }

    .single-cta__left {
        border-radius: 20px 20px 0 0;
        padding: 40px;
    }

    .single-cta__fig {
        flex: 0 0 auto;
        width: 100%;
        border-radius: 0 0 20px 20px;
    }

    .single-cta__fig img {
        object-position: center;
    }
}

@media screen and (max-width: 700px) {

    .hero__content,
    .swiper-pagination {
        max-width: 90%;
    }

    .areas__info {
        padding: 0 12px 16px;
    }

    .areas__desc {
        font-size: 11px;
    }

    .about__content {
        flex-direction: column;
        gap: 10px;
        padding: 32px 20px 15px;
    }

    .about__btn {
        align-self: center;
        justify-content: center;
        order: 1;
    }

    .about__title {
        text-wrap: unset;
        margin-bottom: 0;
    }

    .about__left,
    .about__right {
        max-width: 100%;
        display: contents;
    }

    .formations {
        padding-inline: 20px;
    }

    .formations__left {
        position: relative;
        flex-wrap: nowrap;
        gap: 0;
    }

    .formations__title {
        max-width: 75%;
        text-wrap: balance;
        font-size: 17px;
    }

    .formations__img--small {
        display: none;
    }

    .formations__img--large {
        width: 100%;
        max-height: 345px;
        min-height: 270px;
    }

    .formations__tag {
        font-size: 13px;
        padding: 6px 8px;
        white-space: nowrap;
    }

    .formations__tag--1 {
        top: 10%;
        left: 6%;
    }

    .formations__tag--2 {
        bottom: 23%;
        left: 4%;
    }

    .formations__tag--3 {
        top: 20%;
        right: 6%;
    }

    .formations__tag--4 {
        bottom: 8%;
        right: 4%;
    }

    .partners::before,
    .partners::after {
        width: 25%;
    }

    .partners::before {
        top: -7%;
        left: 7%;
    }

    .partners::after {
        bottom: 0;
        right: -18%;
    }

    .partners__item {
        flex: 0 0 33.33%;
    }

    .news {
        padding: clamp(40px, 8vw, 60px) 0 clamp(40px, 6vw, 50px);
    }

    .news__title {
        font-size: 15px;
    }

    .cta__right {
        overflow: visible;
        gap: 0;
    }

    .cta__img--small {
        display: none;
    }

    .cta__img--large {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 16 / 9;
        height: auto;
    }

    .cta__img--large::after {
        content: '';
        position: absolute;
        top: -6%;
        right: -9%;
        width: 27.4%;
        height: 24%;
        background-image: url(assets/images/logobird.webp);
        background-repeat: no-repeat;
        background-size: contain;
        z-index: 2;
    }

    .cta__img--small::after {
        display: none;
    }

    .cta__title {
        font-size: 20px;
    }

    .cta__desc {
        font-size: 15px;
    }

    #footer::before {
        display: block;
        background-position: 125% 48%;
        background-size: 42% auto;
    }

    .btn-backtotop {
        right: 20px;
        width: 45px;
        height: 45px;
        top: -25px;
    }

    .footer-logo img {
        margin-bottom: 24px;
        width: 230px;
    }

    .footer-bottom-logos {
        gap: 20px;
        margin-left: 0;
    }

    .footer__col--nav,
    .footer__col--legal {
        display: none;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: left;
    }

    .footer-logo-col {
        display: contents;
    }

    .footer-logo {
        order: 0;
    }

    .footer-logo img {
        margin-bottom: 0;
    }

    .footer-contact {
        order: 1;
        text-align: left;
    }

    .footer-social {
        order: 2;
        text-align: left;
        max-width: fit-content;
        padding: 15px;
    }

    .footer-social-icons {
        justify-content: flex-start;
        gap: 12px;
    }

    .footer-bottom {
        padding: 20px 16px 75px;
        gap: 40px;
    }

    .footer-bottom-logos img {
        max-height: 30px;
    }

    .footer__blisq-figure img {
        width: 39px;
    }

    .single-hero::before {
        display: none;
    }

    .single-hero__img {
        width: 100%;
    }

    .single-hero__img::before {
        background: linear-gradient(0deg, #D6D6D6 2.24%, rgba(214, 214, 214, 0.00) 88.27%);
    }

    .single-intro__title {
        font-size: 24px;
    }

    .single-intro__title {
        font-size: 24px;
    }

    .single-intro__desc {
        font-size: 15px;
    }

    .single-about__row {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .single-about {
        padding-inline: 20px;
    }

    .single-about__fig {
        flex: 0 0 auto;
        width: 100%;
        max-height: 350px;
        order: 1;
    }

    .single-about__fig img {
        object-position: center;
    }

    .single-about__text {
        order: 0;
    }

    .single-about__title {
        font-size: 22px;
    }

    .single-about__subtitle {
        font-size: 18px;
    }

    .single-about__text p {
        font-size: 15px;
    }

    .single-accordion__summary {
        padding: 10px 12px;
        gap: 8px;
    }

    .single-accordion__name {
        font-size: 16px;
    }

    .single-accordion__summary::after {
        width: 16px;
        height: 16px;
    }

    .single-accordion__body {
        font-size: 14px;
        padding: 8px 12px;
    }

    .single-checklist__item {
        font-size: 14px;
        width: 100%;
        padding: 10px 12px;
    }

    .single-benefits {
        padding: 60px 20px;
    }

    .single-benefits__row {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
        padding-inline: 0;
    }

    .single-benefits__fig {
        flex: 0 0 auto;
        width: 100%;
        max-height: 350px;
        order: 1;
    }

    .single-benefits__fig img {
        object-position: center;
    }

    .single-benefits__text {
        order: 0;
        width: 100%;
    }

    .single-benefits__title {
        font-size: 22px;
    }

    .single-benefits {
        padding: 50px 20px;
    }

    .error404__title {
        font-size: 32px;
    }

    .error404__desc {
        font-size: 16px;
        max-width: 100%;
    }

    .error404__content {
        margin-top: 3vh;
        padding: 0 16px;
    }

    .news-hero {
        height: 35vh;
    }

    .news-hero__title {
        font-size: 22px;
    }

    .news-hero__desc {
        font-size: 14px;
    }

    .news-hero::after {
        background-size: 62% auto;
    }

    .news-hero__meta .news__date,
    .news-hero__meta .news__read {
        font-size: 14px;
    }

    .news-hero__meta .news__date::before,
    .news-hero__meta .news__read::before {
        width: 14px;
        height: 14px;
    }

    .news-content {
        padding: 24px 20px 50px;
    }

    .news-content__wrapper h2 {
        font-size: 22px;
    }

    .news-content__wrapper h3 {
        font-size: 18px;
    }

    .news-content__wrapper p,
    .news-content__wrapper ul li,
    .news-content__wrapper ul li ul li {
        font-size: 15px;
    }

    .news-content__wrapper figure {
        max-height: 300px;
    }

    .related-news__grid .news__item {
        flex: 0 0 300px;
    }

    .common-page {
        padding: 140px 20px 60px;
    }

    .common-title {
        font-size: 28px;
    }

    .common-content h2 {
        font-size: 20px;
    }

    .common-content h3 {
        font-size: 18px;
    }
}

@media screen and (max-width: 640px) {
    .single-intro-container {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
    }

    .single-intro__left,
    .single-intro__right {
        max-width: 100%;
        width: 100%;
    }

    .single-intro__btn {
        width: 100%;
        justify-content: center;
        display: flex;
    }

    .single-intro__desc {
        text-wrap: unset;
    }

    .formations {
        gap: 20px;
    }
}

@media screen and (max-width: 600px) {
    .hero__title {
        font-size: clamp(24px, 6vw, 32px);
        line-height: 120%;
        max-width: 100%;
    }

    .hero__desc {
        font-size: clamp(16px, 3vw, 18px);
        max-width: 100%;
        line-height: 1.6;
    }

    .hero__btn {
        display: block;
        width: fit-content;
    }

    .areas__info {
        padding: 0 12px 14px;
    }

    .areas__item {
        flex: 0 0 220px;
    }

    .partners::before,
    .partners::after {
        display: none;
    }

    .partners::before {
        top: -5%;
        left: -14%;
    }

    .partners::after {
        bottom: 0;
        right: -20%;
    }

    .partners__item {
        flex: 0 0 30%;
    }

    .cta__title {
        font-size: 19px;
    }

    .cta__desc {
        font-size: 14px;
    }

    .cta__img--large::after {
        width: 22%;
        height: 24%;
        top: -4%;
        right: -3%;
    }

    .footer-social p {
        font-size: 13px;
    }

    .footer-social-icons a {
        width: 40px;
        height: 40px;
    }

    .footer-social-icons img {
        width: 18px;
        height: 18px;
    }

    .single-benefits__fig {
        max-height: 300px;
    }

    .single-why__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        overflow: visible;
        scroll-snap-type: none;
        scroll-padding: 0;
        padding: 0 20px;
        cursor: default;
    }

    .single-why__card {
        flex: auto;
        scroll-snap-align: none;
        padding: 14px;
    }

    .single-why__text {
        font-size: 13px;
    }

    .single-cta__left {
        padding: 20px;
    }

    .single-cta {
        padding-inline: 16px;
    }

    .hero__btn,
    .news__btn,
    .cta__btn,
    .about__btn,
    .formations__btn,
    .single-intro__btn {
        font-size: 13px;
        padding: 12px 18px;
    }
}

@media screen and (max-width: 500px) {
    .hero {
        min-height: calc(75vh - 54px);
    }

    .swiper-pagination {
        bottom: 90px !important;
    }

    .swiper-slide::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1;
    }

    .hero__title {
        color: var(--white);
    }

    .hero__title strong {
        color: var(--white);
        font-weight: 900;
    }

    .hero__desc {
        color: var(--white);
    }

    .swiper-pagination-bullet {
        background: var(--white);
    }

    .swiper-pagination-bullet-active {
        background: var(--white);
    }

    .news-content::before {
        display: none;
    }

    .formations__title {
        max-width: 100%;
    }
}

@media screen and (max-width: 480px) {

    .areas__grid,
    .areas__grid--4cols {
        scroll-padding: 0 16px;
        padding-inline: 16px;
    }

    .areas__item {
        flex: 0 0 200px;
    }

    .areas__info {
        padding: 0 10px 12px;
    }

    .partners {
        padding: 32px 16px 48px;
    }

    .partners::before,
    .partners::after {
        width: 20%;
    }

    .partners::before {
        top: -3%;
        left: -16%;
    }

    .partners::after {
        bottom: 0;
        right: -22%;
    }

    .partners__item {
        flex: 0 0 50%;
    }

    .news__header {
        padding: 0 16px;
    }

    .news__btn {
        width: calc(100% - 32px);
        text-align: center;
        margin: 20px 16px 0;
    }

    .news__label {
        font-size: 14px;
    }

    .news__title {
        font-size: 14px;
    }

    .news__name {
        font-size: 15px;
    }

    .news__desc {
        font-size: 13px;
    }

    .news__date,
    .news__read {
        font-size: 12px;
    }

    .news__btn {
        width: calc(100% - 32px);
        text-align: center;
        margin: 0 16px;
    }

    .news__item {
        flex: 0 0 265px;
    }

    .cta {
        padding: 32px 16px 48px;
    }

    .cta__img--large {
        aspect-ratio: 3 / 2;
    }

    .cta__img--large::after {
        width: 20%;
        height: 22%;
        top: -4%;
        right: 2%;
    }

    .cta__title {
        font-size: 18px;
    }

    .cta__desc {
        font-size: 14px;
    }

    .cta__btns {
        flex-direction: column;
        gap: 12px;
    }

    .cta__btn {
        width: 100%;
        justify-content: center;
    }

    .footer-logo img {
        margin-bottom: 0;
    }

    .footer-contact h3 {
        font-size: 14px;
    }

    .footer-contact address,
    .footer-contact a {
        font-size: 13px;
    }

    .footer__col--nav .menu-item a,
    .footer__col--legal .menu-item a {
        font-size: 13px;
    }

    .footer-bottom-logos img {
        max-height: 25px;
    }

    .single-hero::before {
        display: none;
    }

    .single-intro__title {
        font-size: 22px;
    }

    .single-intro__title {
        font-size: 22px;
    }

    .single-intro__desc {
        font-size: 14px;
    }

    .single-intro__label {
        font-size: 14px;
    }

    .single-about {
        padding: 32px 16px;
        gap: 45px;
    }

    .single-about__row {
        gap: 16px;
    }

    .single-about__title {
        font-size: 20px;
    }

    .single-about__subtitle {
        font-size: 16px;
    }

    .single-about__text p {
        font-size: 14px;
    }

    .single-accordion__summary {
        padding: 8px 10px;
    }

    .single-accordion__name {
        font-size: 14px;
    }

    .single-accordion__summary::after {
        width: 14px;
        height: 14px;
    }

    .single-accordion__body {
        font-size: 13px;
        padding: 8px 10px;
    }

    .single-checklist__item {
        padding: 8px 10px;
        font-size: 12px;
        gap: 10px;
    }

    .single-checklist__item::before {
        width: 22px;
        height: 22px;
        background-size: 12px 8px;
    }

    .single-benefits {
        padding: 40px 16px;
    }

    .single-benefits__row {
        gap: 16px;
    }

    .single-benefits__fig {
        max-height: 250px;
    }

    .single-benefits__title {
        font-size: 20px;
    }

    .single-benefits {
        padding: 40px 16px;
    }

    .single-cta {
        padding-inline: 16px;
    }

    .single-cta__left {
        padding: 24px 20px;
    }

    .single-cta__fig {
        max-height: 250px;
    }

    .single-cta__title {
        font-size: 17px;
    }

    .single-cta__desc {
        font-size: 13px;
    }

    .single-cta__btns {
        gap: 10px;
    }

    .single-areas {
        padding-block: 35px;
    }

    .error404__title {
        font-size: 28px;
    }

    .error404__desc {
        font-size: 15px;
    }

    .error404__btns {
        flex-direction: column;
        gap: 10px;
    }

    .error404__btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }

    .error404 {
        min-height: 87.8vh;
    }

    .news-hero {
        height: 30vh;
    }

    .news-hero__title {
        font-size: 20px;
    }

    .news-hero__desc {
        font-size: 13px;
    }

    .news-hero::after {
        background-size: 72% auto;
        background-position: bottom right;
    }

    .news-hero__meta {
        gap: 12px;
    }

    .news-hero__meta .news__date,
    .news-hero__meta .news__read {
        font-size: 13px;
    }

    .news-hero__meta .news__date::before,
    .news-hero__meta .news__read::before {
        width: 12px;
        height: 12px;
    }

    .news-hero__content {
        padding: 0 16px 20px;
    }

    .news-hero__content {
        max-width: 400px;
    }

    .news-content {
        padding: 20px 16px 40px;
    }

    .news-content__wrapper h2 {
        font-size: 20px;
    }

    .news-content__wrapper h3 {
        font-size: 17px;
    }

    .news-content__wrapper p,
    .news-content__wrapper ul li,
    .news-content__wrapper ul li ul li {
        font-size: 14px;
    }

    .news-content__wrapper figure {
        max-height: 250px;
        border-radius: 12px;
    }

    .news-content__wrapper ul {
        padding-left: 5px;
    }

    .news-content__wrapper ul li {
        padding-left: 12px;
    }

    .news-content__wrapper ul li::before {
        top: 9px;
        width: 3px;
        height: 3px;
    }

    .related-news__label {
        font-size: 16px;
    }

    .common-page {
        padding: 120px 16px 50px;
    }

    .common-title {
        font-size: 24px;
    }

    .common-content h2 {
        font-size: 18px;
    }

    .common-content h3 {
        font-size: 16px;
    }

    .common-content p {
        font-size: 14px;
        padding-inline: 0;
    }

    .common-content ul li {
        font-size: 14px;
    }

    .common-content ul li::before {
        top: 9px;
        width: 3px;
        height: 3px;
    }

    .common-content ul li ul li {
        font-size: 14px;
        padding-left: 5px;
    }

    .common-content ul li ul li::before {
        font-size: 14px;
    }

    .common-content ul {
        padding-left: 0;
    }
}

@media screen and (max-width: 450px) {
    .single-why__grid {
        grid-template-columns: 1fr;
    }

    .single-why__title {
        font-size: 16px;
    }

    .single-why__icon {
        height: 120px;
    }

    .single-why__icon img {
        height: 100%;
        width: auto;
        object-fit: contain;
    }

    .single-cta__btns {
        flex-direction: column;
        gap: 10px;
    }

    .single-cta__btn {
        width: 100%;
        justify-content: center;
    }

    .header__nav {
        width: 100%;
        max-width: 100%;
    }

    .header__nav .menu-item a {
        font-size: 16px;
    }

    .header__legal-mobile .menu-item a {
        font-size: 12px;
    }

    .footer-bottom-logos img {
        max-height: 18px;
    }
}

@media screen and (max-width: 400px) {
    .formations__tag {
        font-size: 11px;
    }

    .error404__title {
        font-size: 22px;
    }

    .error404__desc {
        font-size: 13px;
    }

    .common-title {
        font-size: 20px;
    }

    .footer-logo img {
        width: 160px;
    }
}

@media screen and (max-width: 375px) {
    .partners__title {
        font-size: 14px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-logo-col {
        grid-column: auto;
        flex-direction: column;
        align-items: start;
        text-align: start;
    }

    .footer-logo img {
        margin-bottom: 16px;
    }

    .footer-social {
        text-align: start;
    }

    .footer-contact {
        grid-column: auto;
    }

    .footer__col--nav {
        grid-column: auto;
    }

    .footer__col--legal {
        grid-column: auto;
    }

    .footer__col--nav .menu,
    .footer__col--legal .menu {
        margin-top: 0;
    }

    .news-hero__title {
        font-size: 17px;
    }

    .related-news__title {
        font-size: 15px;
    }

    .header__nav .menu-item--academia a::after {
        width: 210px;
    }

    .footer-bottom-logos img {
        max-height: 17px;
    }
}