:root {
    --text-body: #4b5463;
    --text-heading: rgb(33, 37, 41);
    --text-muted: rgb(75, 84, 99);
    --text-dark: #101828;
    --text-strong: #000;
    --surface-base: #fff;
    --text-on-dark: #fff;
    --text-contrast: #0d0d0d;
    --error-color: #f00;
    --footer-text-color: #002183;

    /* Variáveis que dependem de configuração são definidas em platform/core/base/resources/views/components/layouts/header.blade.php */
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-body);
    padding-top: 100px;
}

@media (max-width: 768px) {
    body {
        padding-top: 130px;
    }
}

p {
    color: var(--text-body);
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 32px;
}

.btn {
    border-radius: 50px;
    padding: 10px 30px;
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-on-dark);
}

.btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary {
    background: var(--surface-base);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-on-dark);
    border-color: var(--surface-base);
}

.section-eyebrow {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--secondary-color);
    font-weight: 600;
}

.header {
    background: var(--surface-base);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header__container {
    border-bottom: 3px solid var(--primary-light-color);
    padding: 15px 0;
}

.header__row {
    position: relative;
    align-items: center;
    gap: 15px;
}

.header .logotipo {
    display: inline-flex;
    align-items: center;
}

.header .logotipo img {
    display: block;
    height: 72px;
    width: auto;
}

.header__menu {
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0 20px;
    display: flex;
    align-items: center;
    width: 100%;
}

.header__menu-item {
    list-style: none;
    position: relative;
}

.header__menu-item::after {
    content: '';
    background: var(--primary-light-color);
    opacity: 0;
    width: 0;
    height: 0;
    transition: 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.header__menu-item:hover::after,
.header__menu-item:focus-within::after {
    opacity: 0.35;
    width: 30px;
    height: 30px;
}

.header__menu-link {
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 16px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    z-index: 2;
}

.header .btn {
    border-radius: 50px;
    padding: 8px 22px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
}

.header__ctas {
    gap: 12px;
    align-items: center;
    flex-wrap: nowrap;
}

.header__nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.header__nav>.language-dropdown {
    margin-left: auto;
}

.header__toggle {
    position: relative;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    background: var(--surface-base);
    cursor: pointer;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.header__toggle:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

.header__toggle svg {
    width: 30px;
    height: 30px;
    fill: var(--secondary-color);
    display: block;
}

.header__brand {
    width: 100%;
    display: grid;
    grid-template-columns: 48px 1fr 44px;
    align-items: center;
    gap: 12px;
}

.header__brand-toggle,
.header__brand-spacer {
    width: 44px;
    height: 44px;
    margin-left: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__brand-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__mobile-actions {
    width: 100%;
}

.header__mobile-actions-inner {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
}

.header__mobile-actions-inner>* {
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .header__brand {
        width: auto;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .header__brand-toggle,
    .header__brand-spacer {
        display: none;
    }

    .header__brand-logo {
        justify-content: flex-start;
    }

    .header__mobile-actions {
        display: none;
    }

    .header__nav {
        flex-direction: row;
        justify-content: center;
        gap: 0;
    }
}

.header__overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header__close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--primary-color);
    color: var(--text-on-dark);
    font-size: 28px;
    line-height: 1;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 1002;
}

.header__close:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.header__close:focus-visible {
    outline: 2px solid var(--text-on-dark);
    outline-offset: 3px;
}


.language-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.language-dropdown__toggle {
    background: transparent;
    border: none;
    width: auto;
    height: auto;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    position: relative;
    line-height: 1;
    vertical-align: middle;
}

.language-dropdown__toggle:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 4px;
}

.language-dropdown__toggle .language-flag {
    width: 32px;
    height: 32px;
}

.language-dropdown__toggle::after {
    display: none;
}

.language-dropdown__menu .language-name {
    font-size: 14px;
    color: var(--text-contrast);
    font-weight: 600;
}

.language-dropdown__menu {
    position: absolute;
    top: 56px;
    left: 0;
    right: auto;
    background: var(--surface-base);
    border-radius: 16px;
    padding: 6px 0;
    box-shadow: 0 15px 40px rgba(16, 24, 40, 0.15);
    display: none;
    min-width: 180px;
    z-index: 1001;
    list-style: none;
    margin: 0;
}

.language-dropdown__menu li {
    list-style: none;
}

.language-dropdown__menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    color: var(--text-contrast);
    font-size: 14px;
}

.language-dropdown .dropdown-item {
    color: var(--text-contrast) !important;
}

.language-dropdown .dropdown-item:hover,
.language-dropdown .dropdown-item:focus {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-contrast) !important;
}

.language-dropdown__menu li.active a {
    font-weight: 600;
}

.language-flag {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-block;
    background-size: cover;
    background-position: center;
}

.language-flag[class*="language-pt"],
.language-flag.language-pt-BR {
    background-image: url('../images/flags/pt-BR.svg');
}

.language-flag[class*="language-en"],
.language-flag.language-en {
    background-image: url('../images/flags/en.svg');
}

@media (max-width: 992px) {
    .nav-column {
        align-items: flex-start;
    }

    .nav-column>.language-dropdown {
        margin-left: 0;
    }

    .header__menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--primary-color);
        padding: 30px;
        box-sizing: border-box;
        flex-direction: column;
        gap: 10px 0;
        transition: 0.4s;
        z-index: 1001;
        overflow-y: auto;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .header__menu-item {
        width: 100%;
        margin-bottom: 10px;
        background: url('../images/icon-arrow.svg') no-repeat center right;
    }

    .header__menu-item:last-child {
        margin-bottom: 0;
    }

    .header__menu-item::after {
        display: none;
    }

    .header__menu-link {
        color: var(--text-on-dark);
        font-size: 16px;
        width: 100%;
    }

    .header__menu.menu-active {
        left: 0;
    }

    .header__container {
        border-bottom: none;
    }

    .header .logotipo img {
        height: 50px;
    }
}

@media (min-width: 992px) {
    .header__nav {
        display: block;
    }

    .header__nav>.language-dropdown {
        margin-left: auto;
    }
}

.banner {
    padding: 60px 0;
}

.banner h1 {
    color: var(--text-heading);
    font-size: 48px;
    line-height: 1.3;
    letter-spacing: -1px;
    margin-bottom: 20px;
    font-weight: 600;
}

.banner p {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .banner {
        padding-top: 30px;
    }

    .banner h1 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .banner .btn {
        width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    body.show-admin-bar {
        margin-top: 0 !important;
    }
}

.impact__title {
    color: var(--text-heading);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.impact__subtitle,
.impact__text {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 20px;
}

.impact__video iframe {
    width: 100%;
    border-radius: 16px;
    height: 650px;
    border: none;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .impact__video iframe {
        height: 300px;
    }
}

.about {
    background: var(--primary-color);
    color: var(--text-on-dark);
    border-radius: 16px;
    padding: 60px 40px;
}

.about__label {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
}

.about__title {
    font-weight: 700;
    font-size: 32px;
    line-height: 44px;
}

.about__text {
    text-align: right;
    font-size: 16px;
    line-height: 24px;
}

@media (max-width: 768px) {
    .about__text {
        text-align: left;
    }
}

.solutions__box {
    padding: 30px;
    border-radius: 16px;
    height: 100%;
    border: 1px solid #000;
    background: var(--surface-base);
}

.solutions__label {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.solutions__title {
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
}

.solutions__subtitle {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 20px;
}

.solutions__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solutions__item {
    display: block;
    margin-bottom: 20px;
    font-size: 18px;
    color: #596376;
    padding-left: 55px;
    min-height: 45px;
}

.solutions__item:last-child {
    margin-bottom: 0;
}

.solutions__box--problem .solutions__item {
    background: url('../images/exclamacao-azul.png') no-repeat left center;
}

.solutions__box--solution .solutions__item {
    background: url('../images/exclamacao-azul-escura.png') no-repeat left center;
}

.solutions__box--problem {
    border-color: var(--secondary-light-color);
}

.solutions__box--problem .solutions__title,
.solutions__box--problem strong {
    color: var(--secondary-light-color);
}

.solutions__box--solution {
    border-color: var(--secondary-color);
}

.solutions__box--solution .solutions__title,
.solutions__box--solution strong {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .solutions .row {
        row-gap: 30px;
    }

    .solutions__title {
        font-size: 25px;
        line-height: 32px;
    }

    .solutions__item {
        font-size: 15px;
        line-height: 1.5;
    }
}

.numbers {
    background: var(--secondary-light-color);
    padding: 130px 0;
    margin-top: -50px;
    color: var(--text-on-dark);
}

.numbers .row {
    row-gap: 32px;
}

.numbers__title {
    font-size: 32px;
    font-weight: 700;
}

.numbers__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
}

.numbers__value {
    font-size: 64px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -2px;
}

.numbers__text {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    display: block;
}

@media (max-width: 768px) {
    .numbers {
        padding: 80px 0;
    }

    .numbers .row {
        row-gap: 20px;
    }

    .numbers__title {
        font-size: 25px;
        text-align: center;
        margin-bottom: 10px;
    }

    .numbers__item {
        gap: 6px;
    }

    .numbers__value {
        font-size: 40px;
        letter-spacing: 0;
    }
}

.schools {
    background: #AC80F6 url('../images/blue.png') no-repeat center;
    color: var(--text-on-dark);
    padding: 60px 0;
    background-size: 100%;
}

.schools__title {
    color: var(--text-on-dark);
    font-weight: 700;
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 30px;
}

.schools__card {
    background: var(--surface-base);
    border-radius: 16px;
    padding: 10px;
    height: 100%;
}

.schools__slider .item .row {
    gap: 20px 0;
}

.schools__thumb {
    height: 200px;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 15px;
}

.schools__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.schools__name {
    color: var(--text-dark);
    font-size: 20px;
    font-weight: 500;
}

.schools__city {
    color: var(--text-dark);
    font-size: 16px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .schools__slider {
        margin-left: -10px;
        margin-right: -10px;
    }

    .schools__card {
        height: auto;
        margin: 10px;
    }
}

/* Ambition */
.ambition {
    padding: 80px 0;
}

.ambition__label {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 10px;
}

.ambition__title {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 15px;
}

.ambition__image img {
    border-radius: 12px;
}

.ambition__text h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.ambition__text p {
    color: var(--text-strong);
    font-size: 18px;
    line-height: 32px;
}

.ambition__text ul {
    padding-left: 20px;
    margin-bottom: 30px;
}

.ambition__text ul li {
    position: relative;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 20px;
    display: block;
    padding-left: 40px;
}

.ambition__text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background: url('../img/check-point.png') no-repeat center left;
    background-size: contain;
}

@media (max-width: 992px) {
    .ambition {
        padding: 60px 0;
    }
}

/* Testimonials */
.testimonials {
    background: #f7f7fb;
    margin-top: 60px;
    padding-bottom: 60px;
    padding-top: 1px;
}

.testimonials__header {
    row-gap: 12px;
    margin-bottom: 40px;
}

.testimonials__title {
    color: var(--text-on-dark);
    background: var(--secondary-light-color);
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
    margin-top: -40px;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 40px;
    width: 100%;
    box-shadow: 0 5px 3px rgba(0, 0, 0, 0.17);
}

.testimonials__description {
    color: var(--text-body);
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 0;
}

.testimonials__slider {
    margin-top: 0;
    margin-right: -5px;
    position: relative;
}

.testimonials__slider .owl-wrapper-outer {
    margin: 0 -10px;
}

.testimonials__slider .owl-item {
    padding: 0 10px;
}


.testimonials__card {
    background: var(--surface-base);
    border-radius: 30px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.03);
}

.testimonials__quote {
    color: var(--text-body);
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 0;
    min-height: 150px;
}

.testimonials__person {
    display: flex;
    align-items: center;
    gap: 20px;
    border-top: 1px solid #a5a0a7;
    padding-top: 15px;
    margin-top: 15px;
}

.testimonials__avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.testimonials__details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonials__name {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.3;
}

.testimonials__role {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.4;
}

@media (max-width: 992px) {
    .testimonials {
        padding-bottom: 60px;
    }

    .testimonials__slider {
        margin-top: 30px;
    }

    .testimonials__quote {
        min-height: 0;
    }
}

@media (max-width: 768px) {
    .testimonials__title {
        font-size: 26px;
        line-height: 32px;
        margin-bottom: 25px;
    }

    .testimonials__description {
        font-size: 14px;
        line-height: 1.4;
    }

    .testimonials__card {
        padding: 20px;
    }

    .testimonials__person {
        align-items: center;
        gap: 16px;
    }

    .testimonials__avatar img {
        width: 50px;
        height: 50px;
    }
}

@media (min-width: 768px) {
    .testimonials__row {
        row-gap: 24px;
    }

    .testimonials__col--offset {
        position: static;
        margin-top: 0;
    }
}

/* Partners */
#partners {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding-bottom: 60px;
}

.partners {
    background: var(--secondary-color);
    padding: 60px 0;
}

.partners__header {
    row-gap: 12px;
}

.partners h2,
.partners__title {
    font-weight: 700;
    font-size: 40px;
    line-height: 38px;
    margin-bottom: 16px;
    color: var(--text-on-dark);
}

.partners p,
.partners__description {
    margin-bottom: 0;
    color: var(--text-on-dark);
}


.partners__group-title {
    color: var(--secondary-light-color);
    font-weight: 600;
    font-size: 28px;
    line-height: 24px;
    margin-bottom: 20px;
}

.partners__list {
    gap: 40px 0;
}

.partners__logo {
    display: block;
    max-height: 60px;
    max-width: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.partners__divider {
    border: none;
    background-color: var(--secondary-color);
    width: 100%;
    height: 1px;
    opacity: 1;
    margin: 0;
}

@media (max-width: 768px) {
    .partners h2,
    .partners__title {
        font-size: 25px;
    }

    .partners__logo {
        max-width: 100%;
    }
}

/* Press */
#press {
    padding: 60px 0;
    background: var(--secondary-light-color);
}

.press__header {
    row-gap: 12px;
    margin-bottom: 32px;
}

.press__title {
    font-weight: 700;
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 20px;
    color: var(--text-on-dark);
}

.press__description {
    margin-bottom: 0;
    color: var(--text-on-dark);
    font-size: 18px;
    line-height: 32px;
}

.press__slider {
    position: relative;
}

.press__slider .owl-wrapper-outer {
    margin: 0 -10px;
}

.press__slider .owl-item {
    padding: 0 10px;
}

.press__slider .owl-item .item {
    width: 100%;
    height: 100%;
    display: block;
}

.press__card {
    background: var(--surface-base);
    border-radius: 24px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.press__card .card-body {
    padding-bottom: 52px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.press__card-title {
    color: #101828;
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.press__excerpt {
    color: #475467;
    font-size: 14px;
    line-height: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.press__cta {
    display: inline-flex;
    font-weight: 600;
    font-size: 13px;
    color: var(--secondary-light-color);
    width: fit-content;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    align-self: flex-end;
}

.press__card:hover .press__cta,
.press__card:focus-within .press__cta {
    border-bottom: 1px solid var(--secondary-light-color);
}

.press__cta img {
    width: 14px;
    height: 14px;
}

@media (max-width: 991px) {
    .press__title {
        font-size: 25px;
        line-height: 30px;
    }

}

/* Awards */
#awards {
    padding: 60px 0;
    background: #f7f7fb;
}

.awards__header {
    row-gap: 12px;
    margin-bottom: 32px;
}

.awards__title {
    font-weight: 700;
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 20px;
    color: var(--secondary-light-color);
}

.awards__description {
    margin-bottom: 0;
    color: var(--text-body);
    font-size: 18px;
    line-height: 32px;
}

.awards__highlight {
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.awards__highlight-body {
    padding: 32px;
}

.awards__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 12px;
}

.awards__issuer {
    font-weight: 600;
    color: var(--text-dark);
}

.awards__highlight-title {
    font-weight: 700;
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.awards__highlight-description {
    color: var(--text-body);
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 0;
}

.awards__slider {
    position: relative;
}

.awards__slider .owl-wrapper-outer {
    margin: 0 -10px;
}

.awards__slider .owl-item {
    padding: 0 10px;
}

.awards__card {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    background: var(--surface-base);
}

.awards__link {
    height: 100%;
}

.awards__card-body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.awards__card-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.awards__card-description {
    color: var(--text-body);
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.awards__cta {
    display: inline-flex;
    font-weight: 600;
    font-size: 13px;
    color: var(--secondary-light-color);
    width: fit-content;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    align-self: flex-end;
}

.awards__card:hover .awards__cta,
.awards__card:focus-within .awards__cta,
.awards__highlight:hover .awards__cta,
.awards__highlight:focus-within .awards__cta {
    border-bottom: 1px solid var(--secondary-light-color);
}

.awards__cta img {
    width: 14px;
    height: 14px;
}

@media (max-width: 991px) {
    .awards__title {
        font-size: 25px;
        line-height: 30px;
    }

    .awards__highlight-body {
        padding: 24px;
    }
}

/* Contact */
.contact {
    padding: 60px 0;
    background: var(--surface-base);
}

.contact__image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.contact__box {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    padding: 32px;
}

.contact__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.contact__description {
    color: var(--text-body);
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 20px;
}

.contact__alert {
    margin-bottom: 16px;
}

.contact__label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.contact__field {
    width: 100%;
    border: 1px solid #d9dde5;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 15px;
    color: var(--text-body);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact__field:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 145, 0.12);
}

.contact__field--error {
    border-color: var(--error-color);
}

.contact__textarea {
    resize: vertical;
    min-height: 140px;
}

.contact__policy {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--text-body);
}

.contact__policy input {
    margin-top: 3px;
}

.contact__policy a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact__submit {
    margin-top: 4px;
    padding: 12px 24px;
    font-weight: 700;
    border-radius: 12px;
}

@media (max-width: 991px) {
    .contact__title {
        font-size: 26px;
        line-height: 32px;
    }

    .contact__description {
        font-size: 16px;
        line-height: 26px;
    }

    .contact__box {
        padding: 24px;
    }
}

/* Footer */
.site-footer {
    background: var(--primary-light-color);
    color: var(--footer-text-color);
    padding: 30px 0;
}

.site-footer__brand {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--footer-text-color);
    text-align: center;
}

.site-footer__text,
.site-footer__credit {
    margin: 0;
    color: var(--footer-text-color);
    font-size: 13px;
    text-align: center;
}

.site-footer__credit a {
    color: var(--footer-text-color);
    text-decoration: underline;
}

@media (max-width: 767px) {
    .site-footer {
        text-align: center;
    }

    .site-footer__credit {
        margin-top: 8px;
    }
}
