:root {
    /* Paleta oficial do guia de estilos. */
    --orange: #f07d00;
    --orange-variant: #ff7e00;
    --petrol-blue: #00728f;
    --blue-green: #007676;
    --purple: #942293;
    --yellow: #f5d200;
    --gold-beige: #c4bc8e;
    --turquoise: #009292;
    --dark-teal: #0b2a2f;
    --deep-teal: #0b3d3f;
    --soft-teal: #a5c2c3;
    --light-teal: #b2dbe0;
    --white: #ffffff;
    --off-white: #f5f5f5;
    --light-gray: #e5e5e5;
    --medium-gray: #666666;
    --dark-gray: #444444;
    --black: #1a1a1a;
    --header-height: 90px;
    --header-height-small: 72px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    margin: 0;
    color: var(--black);
    font-family: "Open Sans", Arial, sans-serif;
}

body.menu-open {
    overflow: hidden;
}

/* Cabeçalho ------------------------------------------------------------- */
.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 1);
    transition: height .25s ease, background-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
    height: var(--header-height-small);
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 4px 18px rgba(0, 0, 0, .08);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding-left: 22px;
}

.brand {
    display: flex;
    flex: 0 0 155px;
    align-items: center;
    gap: 12px;
    height: 100%;
    text-decoration: none;
}

.brand-logo {
    width: 68px;
    height: 70px;
    object-fit: contain;
    transition: width .25s ease, height .25s ease;
}

.brand-seal {
    width: 50px;
    height: 51px;
    object-fit: contain;
    transition: width .25s ease, height .25s ease;
}

.is-scrolled .brand-logo {
    width: 55px;
    height: 57px;
}

.is-scrolled .brand-seal {
    width: 42px;
    height: 43px;
}

.desktop-nav {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    gap: clamp(32px, 4vw, 70px);
    height: 100%;
}

.desktop-nav a,
.donate-button {
    color: var(--black);
    font-family: "Manrope", "Open Sans", Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .2s ease, background-color .2s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus {
    color: var(--petrol-blue);
}

.donate-button {
    display: flex;
    align-items: center;
    align-self: stretch;
    justify-content: center;
    width: 147px;
    margin-left: auto;
    color: var(--white);
    background: var(--petrol-blue);
}

.donate-button:hover,
.donate-button:focus {
    color: var(--white);
    background: var(--blue-green);
}

.menu-toggle {
    display: none;
}

/* O header é fixo: suas animações rodam no carregamento, sem depender do scroll. */
.header-animate {
    animation-fill-mode: both;
}

.brand.header-animate {
    animation-delay: 0s;
}

.desktop-nav .header-animate:nth-child(1) {
    animation-delay: .12s;
}

.desktop-nav .header-animate:nth-child(2) {
    animation-delay: .24s;
}

.desktop-nav .header-animate:nth-child(3) {
    animation-delay: .36s;
}

.desktop-nav .header-animate:nth-child(4) {
    animation-delay: .48s;
}

.donate-button.header-animate {
    animation-delay: .60s;
}

.menu-toggle.header-animate {
    animation-delay: .72s;
}

/* Banner --------------------------------------------------------------- */
.hero-banner {
    width: 100%;
    margin-top: var(--header-height);
    overflow: hidden;
    background: var(--petrol-blue);
    transition: margin-top .25s ease;
}

.hero-banner picture,
.hero-banner img {
    display: block;
    width: 100%;
}

.hero-banner img {
    height: auto;
}

/* Reservas temporárias para os destinos do menu. */
.section-anchor {
    min-height: 1px;
    scroll-margin-top: var(--header-height);
}

/* Nossa trajetória ----------------------------------------------------- */
.trajectory-section {
    position: relative;
    overflow: hidden;
    padding: 78px 0 72px;
    color: var(--white);
    background: var(--purple);
}

.trajectory-inner {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
}

.trajectory-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 45px;
}

.section-eyebrow {
    display: block;
    margin-bottom: 18px;
    color: var(--orange);
    font-family: "Manrope", "Open Sans", sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.trajectory-heading h2 {
    margin: 0;
    font-family: "Sono", monospace;
    font-size: clamp(32px, 3.2vw, 48px);
    font-weight: 800;
    line-height: 1.08;
    text-transform: uppercase;
}

.trajectory-navigation {
    display: flex;
    gap: 64px;
    padding: 0 32px 4px 0;
}

.trajectory-navigation button,
.trajectory-mobile-footer button {
    display: inline-flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, .09);
    box-shadow: 0 8px 16px rgba(32, 0, 32, .18);
    transition: background-color .2s ease, opacity .2s ease;
}

.trajectory-navigation button:hover,
.trajectory-navigation button:focus,
.trajectory-mobile-footer button:hover,
.trajectory-mobile-footer button:focus {
    background: rgba(255, 255, 255, .2);
}

.trajectory-navigation button.swiper-button-disabled,
.trajectory-mobile-footer button.swiper-button-disabled {
    cursor: default;
    opacity: .35;
}

.trajectory-progress {
    position: absolute;
    z-index: 0;
    right: 0;
    left: 0;
    height: 3px;
    margin-top: 205px;
    background: rgba(240, 125, 0, .75);
}

.trajectory-progress span {
    display: block;
    width: 9px;
    height: 9px;
    margin: -3px 0 0 5%;
    border-radius: 50%;
    background: var(--orange);
}

.trajectory-swiper {
    z-index: 1;
    overflow: visible;
    cursor: grab;
}

.trajectory-swiper:active {
    cursor: grabbing;
}

.trajectory-card {
    display: flex;
    width: 320px;
    height: auto;
    min-height: 492px;
    flex-direction: column;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(48, 4, 40, .94);
    box-shadow: 0 12px 24px rgba(50, 0, 48, .15);
}

.trajectory-card img {
    display: block;
    width: calc(100% - 36px);
    height: 320px;
    margin: 18px 18px 0;
    border-radius: 14px;
    object-fit: cover;
}

.trajectory-card-content {
    padding: 16px 20px 20px;
}

.trajectory-card time {
    display: block;
    margin-bottom: 8px;
    color: var(--orange-variant);
    font-family: "Sono", monospace;
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}

.trajectory-card p {
    margin: 0;
    color: rgba(255, 255, 255, .88);
    font-size: 14px;
    line-height: 1.55;
}

.trajectory-mobile-footer {
    display: none;
}

/* Por dentro do WWF-Brasil -------------------------------------------- */
.inside-section {
    position: relative;
    overflow: hidden;
    min-height: 810px;
    padding: 100px 0 46px;
    background: var(--yellow);
}

.inside-heading {
    position: relative;
    z-index: 2;
    width: min(850px, calc(100% - 48px));
    margin: 0 auto 72px;
}

.inside-heading .section-eyebrow {
    display: none;
}

.inside-heading h2 {
    margin: 0;
    color: var(--black);
    font-family: "Sono", monospace;
    font-size: clamp(34px, 3.2vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
}

.inside-title-mobile {
    display: none;
}

.inside-swiper {
    z-index: 1;
    overflow: visible;
    cursor: grab;
}

.inside-swiper:active {
    cursor: grabbing;
}

.inside-card {
    width: 380px;
    height: 507px;
    overflow: hidden;
    background: transparent;
    transition: transform .25s ease;
}

.inside-card:hover {
    transform: translateY(-3px);
}

.inside-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inside-person {
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    width: 38%;
    height: auto;
    pointer-events: none;
}

.inside-pagination-wrap {
    position: relative;
    z-index: 4;
    display: flex;
    width: min(1200px, calc(100% - 48px));
    justify-content: flex-end;
    margin: 28px auto 0;
    padding-right: 10px;
}

.inside-pagination {
    display: flex;
    width: auto !important;
    align-items: center;
    gap: 7px;
}

.inside-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 !important;
    border-radius: 8px;
    opacity: 1;
    background: var(--light-teal);
    transition: width .25s ease, background-color .25s ease;
}

.inside-pagination .swiper-pagination-bullet-active {
    width: 28px;
    background: var(--petrol-blue);
}

/* Concurso cultural ---------------------------------------------------- */
.contest-section {
    padding: 72px 0 86px;
    color: var(--white);
    background: var(--turquoise);
}

.contest-container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}

.contest-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.contest-topbar i {
    margin-right: 10px;
    color: var(--orange);
}

.contest-grid {
    display: grid;
    grid-template-columns: 1.55fr .88fr 1fr;
    gap: 32px;
    padding-top: 52px;
}

.contest-tag {
    display: inline-flex;
    overflow: hidden;
    margin-bottom: 26px;
    border: 1px solid var(--orange);
    border-radius: 18px;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
}

.contest-tag strong,
.contest-tag span {
    padding: 5px 13px;
}

.contest-tag strong {
    color: var(--orange);
    text-transform: uppercase;
}

.contest-tag span {
    border-left: 1px solid var(--orange);
}

.contest-intro h2 {
    max-width: 440px;
    margin: 0 0 26px;
    font-family: "Sono", monospace;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.08;
}

.contest-intro > p {
    max-width: 500px;
    margin: 0 0 34px;
    font-size: 16px;
    line-height: 1.65;
}

.contest-actions {
    display: flex;
    max-width: 515px;
    flex-direction: column;
    gap: 14px;
}

.contest-actions a {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    text-transform: capitalize;
    transition: background-color .2s ease;
}

.contest-primary-button {
    background: var(--orange-variant);
}

.contest-primary-button:hover,
.contest-primary-button:focus {
    color: var(--white);
    background: var(--orange);
}

.contest-primary-button i {
    margin-left: 12px;
}

.contest-secondary-button {
    border: 1px solid rgba(255, 255, 255, .22);
}

.contest-secondary-button:hover,
.contest-secondary-button:focus {
    color: var(--white);
    background: rgba(255, 255, 255, .08);
}

.contest-intro small {
    display: block;
    margin-top: 34px;
    font-size: 11px;
}

.contest-intro small i {
    margin-right: 8px;
}

.contest-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contest-info-card,
.contest-photo,
.contest-gallery-note {
    transition: transform .25s ease, box-shadow .25s ease;
}

.contest-info-card:hover,
.contest-photo:hover,
.contest-gallery-note:hover {
    transform: translateY(-3px);
}

.contest-info-card {
    min-height: 158px;
    padding: 24px;
    border-radius: 12px;
    background: rgba(11, 61, 63, .48);
}

.contest-card-label {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    color: var(--soft-teal);
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.contest-card-label i {
    margin-right: 9px;
    color: var(--orange);
    font-size: 15px;
}

.contest-card-label b {
    margin-left: auto;
    padding: 5px 8px;
    border-radius: 4px;
    color: var(--white);
    background: var(--orange-variant);
    font-size: 9px;
}

.contest-info-card h3 {
    margin: 0 0 8px;
    font-size: 21px;
    font-weight: 600;
}

.contest-info-card p {
    margin: 0;
    color: var(--soft-teal);
    font-size: 14px;
    line-height: 1.5;
}

.mobile-copy {
    display: none;
}

.contest-gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contest-photo {
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: 12px;
    background: var(--deep-teal);
}

.contest-photo-main {
    height: 320px;
}

.contest-photo-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contest-photo-row .contest-photo {
    height: 166px;
}

.contest-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contest-photo figcaption {
    position: absolute;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    font-size: 9px;
}

.contest-photo figcaption strong {
    padding: 5px 8px;
    border-radius: 4px;
    background: rgba(11, 42, 47, .82);
    text-transform: uppercase;
}

.contest-gallery-note {
    display: flex;
    min-height: 84px;
    align-items: center;
    padding: 17px;
    border-radius: 12px;
    background: rgba(11, 61, 63, .48);
}

.contest-gallery-note > i {
    margin-right: 14px;
    padding: 12px;
    border-radius: 50%;
    color: var(--orange);
    background: var(--deep-teal);
}

.contest-gallery-note strong,
.contest-gallery-note span {
    display: block;
}

.contest-gallery-note strong {
    font-size: 14px;
}

.contest-gallery-note span {
    margin-top: 3px;
    color: var(--soft-teal);
    font-size: 11px;
}

/* Depoimentos ---------------------------------------------------------- */
.testimonials-section {
    position: relative;
    overflow: hidden;
    padding: 92px 0 86px;
    color: var(--white);
    background: var(--petrol-blue);
}

.testimonials-container {
    position: relative;
    z-index: 2;
    width: min(920px, calc(100% - 48px));
    margin: 0 auto;
}

.testimonials-heading {
    margin-bottom: 54px;
    text-align: center;
}

.testimonials-heading h2 {
    margin: 0;
    font-family: "Sono", monospace;
    font-size: clamp(34px, 3.4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.testimonials-swiper {
    overflow: hidden;
    cursor: grab;
}

.testimonials-swiper:active {
    cursor: grabbing;
}

.testimonial-card {
    display: flex;
    width: 285px;
    min-height: 350px;
    flex-direction: column;
    padding: 35px 32px 28px;
    border-radius: 0;
    color: var(--dark-gray);
    background: var(--white);
    transition: transform .25s ease, box-shadow .25s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 26px rgba(0, 42, 55, .18);
}

.testimonial-quote {
    margin-bottom: 28px;
    color: var(--orange);
    font-size: 25px;
}

.testimonial-card blockquote {
    flex: 1 1 auto;
    margin: 0 0 24px;
    font-size: 16px;
    font-style: italic;
    line-height: 1.55;
}

.testimonial-card footer {
    display: flex;
    align-items: center;
}

.testimonial-card footer img {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    margin-right: 12px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card footer strong,
.testimonial-card footer span {
    display: block;
}

.testimonial-card footer strong {
    color: var(--black);
    font-family: "Sono", monospace;
    font-size: 15px;
    font-weight: 700;
}

.testimonial-card footer span {
    overflow: hidden;
    max-width: 170px;
    color: var(--petrol-blue);
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.testimonials-pagination {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 34px;
}

.testimonials-pagination button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    opacity: .65;
    background: var(--light-teal);
    transition: width .25s ease, background-color .25s ease, opacity .25s ease;
}

.testimonials-pagination button.is-active {
    width: 25px;
    opacity: 1;
    background: var(--orange);
}

.testimonials-button {
    display: flex;
    min-width: 312px;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    margin: 48px auto 0;
    padding: 12px 24px;
    border: 0;
    border-radius: 7px;
    color: var(--white);
    background: var(--orange-variant);
    font-size: 14px;
    font-weight: 700;
    transition: background-color .2s ease;
}

.testimonials-button:hover,
.testimonials-button:focus {
    background: var(--orange);
}

.testimonials-button i {
    margin-left: 14px;
}

.testimonials-frog {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    width: 22%;
    height: auto;
    pointer-events: none;
}

/* Galeria Viva --------------------------------------------------------- */
.live-gallery-section {
    padding: 90px 0 100px;
    color: var(--white);
    background: var(--purple);
}

.live-gallery-container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}

.live-gallery-heading {
    padding-top: 0;
    border-top: 0;
}

.live-gallery-heading h2 {
    margin: 0 0 54px;
    font-family: "Sono", monospace;
    font-size: clamp(32px, 3vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
}

.decades-accordion {
    overflow: hidden;
    border-radius: 16px;
    background: rgba(50, 0, 48, .52);
}

.decade-item + .decade-item {
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.decade-item {
    position: relative;
}

/* A linha pertence ao item inteiro e acompanha sua altura ao abrir/fechar. */
.decade-item::before {
    position: absolute;
    z-index: 2;
    top: 35px;
    bottom: 15px;
    left: 34px;
    width: 2px;
    background: var(--orange);
    content: "";
    pointer-events: none;
}

.decade-item.is-open::before {
    bottom: 26px;
}

.decade-toggle {
    display: flex;
    width: 100%;
    min-height: 62px;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    border: 0;
    color: var(--white);
    background: rgba(11, 42, 47, .28);
    font-family: "Sono", monospace;
    font-size: 16px;
    font-weight: 800;
}

.decade-toggle > span {
    display: flex;
    align-items: center;
}

.decade-toggle > span i {
    position: relative;
    z-index: 3;
    width: 10px;
    margin-left: 2px;
    height: 10px;
    margin-right: 16px;
    border-radius: 50%;
    background: var(--orange);
}

.decade-toggle > i {
    color: var(--orange);
    font-size: 12px;
}

.decade-item.is-open .decade-toggle {
    background: transparent;
}

.decade-panel {
    padding: 0 28px 26px 56px;
}

.decade-swiper {
    height: 358px;
    padding-top: 3px;
    overflow: hidden;
    cursor: grab;
}

.decade-swiper:active {
    cursor: grabbing;
}

.gallery-card {
    position: relative;
    width: 300px;
    height: 355px;
    overflow: hidden;
    border-radius: 12px;
    background: var(--deep-teal);
    transition: transform .25s ease, box-shadow .25s ease;
}

.gallery-card:hover,
.gallery-card:focus-within {
    transform: translateY(-3px);
    box-shadow: 0 16px 28px rgba(40, 0, 38, .25);
}

.gallery-card > a {
    display: block;
    width: 100%;
    height: 100%;
    color: var(--white);
    text-decoration: none;
}

.gallery-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.gallery-card:hover img,
.gallery-card:focus-within img {
    transform: scale(1.02);
}

.gallery-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 86px;
    padding: 18px 16px 14px;
    background: linear-gradient(to top, rgba(11, 42, 47, .98), rgba(11, 42, 47, .78) 78%, transparent);
    transition: height .28s ease, background-color .28s ease;
}

.gallery-card:hover .gallery-caption,
.gallery-card:focus-within .gallery-caption {
    height: 225px;
    background-color: rgba(11, 42, 47, .78);
}

.gallery-caption h3 {
    margin: 0 0 5px;
    font-family: "Sono", monospace;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
}

.gallery-caption p {
    overflow: hidden;
    max-height: 0;
    margin: 0;
    color: rgba(255, 255, 255, .83);
    font-size: 10px;
    line-height: 1.35;
    opacity: 0;
    transition: max-height .28s ease, opacity .2s ease;
}

.gallery-card:hover .gallery-caption p,
.gallery-card:focus-within .gallery-caption p {
    max-height: 112px;
    opacity: 1;
}

.gallery-caption small {
    display: block;
    margin-top: 7px;
    color: var(--gold-beige);
    font-size: 9px;
}

.decade-pagination {
    display: flex;
    width: auto !important;
    justify-content: flex-end;
    gap: 7px;
    min-height: 22px;
    margin: 0 0 10px;
}

.decade-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    margin: 0 !important;
    border-radius: 7px;
    opacity: .65;
    background: var(--light-teal);
    transition: width .25s ease, background-color .25s ease, opacity .25s ease;
}

.decade-pagination .swiper-pagination-bullet-active {
    width: 22px;
    opacity: 1;
    background: var(--orange);
}

/* Campanha digital ----------------------------------------------------- */
.digital-campaign-section {
    padding: 94px 0 88px;
    color: var(--black);
    background: var(--off-white);
}

.digital-campaign-container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}

.digital-campaign-heading {
    margin-bottom: 54px;
    text-align: center;
}

.digital-campaign-heading .section-eyebrow {
    display: none;
}

.digital-campaign-heading h2 {
    margin: 0;
    font-family: "Sono", monospace;
    font-size: clamp(36px, 3.4vw, 50px);
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

/* .feed-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
} */

.feed-grid {
    display: flex;
    /* grid-template-columns: repeat(4, minmax(0, 1fr)); */
    gap: 24px;
    flex-wrap: wrap;
}

.feed-card {
    /* display: flex; */
    /* min-width: 0; */
    flex-direction: column;
    /* overflow: hidden; */
    /* border: 1px solid var(--light-gray); */
    border-radius: 3px;
    /* color: var(--dark-gray); */
    /* background: var(--white); */
    /* box-shadow: 0 10px 22px rgba(0, 0, 0, .07); */
    /* text-decoration: none; */
    transition: transform .25s ease, box-shadow .25s ease;
    padding-bottom: 0;
    width: calc(33% - 30px);
}

@media( max-width: 767px ) {
    .feed-card {
        width: 100%;
    }
}

.feed-card:hover,
.feed-card:focus {
    color: var(--dark-gray);
    /* box-shadow: 0 15px 28px rgba(0, 0, 0, .11); */
    text-decoration: none;
    transform: translateY(-3px);
}

.feed-card-header {
    display: flex;
    height: 66px;
    align-items: center;
    padding: 10px 14px;
}

.feed-avatar {
    display: flex;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    border-radius: 50%;
    color: var(--white);
    background: var(--petrol-blue);
    font-size: 9px;
    font-weight: 800;
}

.feed-card-header > span:nth-child(2) {
    min-width: 0;
}

.feed-card-header strong,
.feed-card-header small {
    display: block;
}

.feed-card-header strong {
    color: var(--black);
    font-size: 11px;
}

.feed-card-header small {
    color: var(--medium-gray);
    font-size: 9px;
}

.feed-card-header > i {
    margin-left: auto;
    color: var(--orange-variant);
    font-size: 17px;
}

.feed-card > img {
    display: block;
    width: 100%;
    aspect-ratio: 282 / 240;
    object-fit: cover;
}

.feed-card > p {
    display: -webkit-box;
    min-height: 66px;
    margin: 0;
    overflow: hidden;
    padding: 14px;
    font-size: 12px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.social-channels {
    margin-top: 54px;
    text-align: center;
}

.social-channels > p {
    margin-bottom: 16px;
    color: var(--medium-gray);
    font-size: 13px;
    font-weight: 600;
}

.social-channels nav {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-channels nav a {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--light-gray);
    border-radius: 50%;
    color: var(--petrol-blue);
    background: var(--white);
    font-size: 17px;
    text-decoration: none;
    transition: color .2s ease, background-color .2s ease, transform .25s ease;
}

.social-channels nav a:hover,
.social-channels nav a:focus {
    color: var(--white);
    background: var(--orange);
    transform: translateY(-3px);
}

/* Chamada para doação -------------------------------------------------- */
.donation-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 390px;
}

.donation-copy-column,
.donation-image-column {
    position: relative;
    overflow: hidden;
}

.donation-copy-column {
    display: flex;
    align-items: center;
    color: var(--white);
    background: var(--petrol-blue);
}

.donation-copy {
    position: relative;
    z-index: 2;
    width: min(410px, calc(100% - 80px));
    margin: 0 auto;
}

.donation-line {
    display: block;
    width: 80px;
    height: 4px;
    margin-bottom: 34px;
    background: var(--orange);
}

.donation-copy h2 {
    max-width: 370px;
    margin: 0 0 32px;
    font-family: "Sono", monospace;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.38;
    text-transform: uppercase;
}

.donation-cta {
    display: inline-flex;
    min-width: 146px;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    color: var(--white);
    background: var(--orange-variant);
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color .2s ease, transform .25s ease;
}

.donation-cta:hover,
.donation-cta:focus {
    color: var(--white);
    background: var(--orange);
    text-decoration: none;
    transform: translateY(-3px);
}

.donation-copy p {
    display: none;
    margin: 24px 0 0;
    color: var(--light-teal);
    font-size: 13px;
    line-height: 1.5;
}

.donation-biome {
    position: absolute;
    z-index: 1;
    right: -25px;
    bottom: -30px;
    width: 46%;
    max-width: 330px;
    height: auto;
    opacity: .9;
    pointer-events: none;
}

.donation-image-column {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 34px 42px;
    background: var(--orange-variant);
}

.donation-image-column > img {
    display: block;
    width: min(100%, 700px);
    height: auto;
}

/* Menu mobile ---------------------------------------------------------- */
.mobile-menu {
    position: fixed;
    z-index: 1100;
    inset: 0;
    display: flex;
    visibility: hidden;
    align-items: center;
    justify-content: center;
    padding: 80px 28px 40px;
    opacity: 0;
    background: var(--petrol-blue);
    transform: translateY(-16px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
}

.mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu nav {
    display: flex;
    width: 100%;
    max-width: 360px;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.mobile-menu nav a {
    color: var(--white);
    font-family: "Sono", monospace;
    font-size: 25px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

.mobile-menu nav .mobile-donate {
    width: 100%;
    margin-top: 12px;
    padding: 14px 20px;
    border-radius: 8px;
    background: var(--orange);
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 15px;
}

.menu-close {
    position: absolute;
    top: 22px;
    right: 22px;
    border: 0;
    color: var(--white);
    background: transparent;
    font-size: 30px;
}

/* Mobile --------------------------------------------------------------- */
/* Rodapé --------------------------------------------------------------- */
.site-footer {
    padding: 70px 0 26px;
    color: var(--dark-gray);
    background: var(--white);
}

.footer-container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.55fr repeat(3, 1fr);
    gap: 66px;
    padding-bottom: 62px;
}

.footer-brand img {
    display: block;
    width: 176px;
    height: auto;
    margin-bottom: 28px;
}

.footer-brand p {
    max-width: 340px;
    margin: 0;
    color: var(--medium-gray);
    font-size: 14px;
    line-height: 1.65;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column h2 {
    margin: 0 0 22px;
    color: var(--orange);
    font-family: "Sono", monospace;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
}

.footer-column a {
    margin-bottom: 14px;
    color: var(--dark-gray);
    font-size: 14px;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
}

.footer-column a:hover,
.footer-column a:focus {
    color: var(--orange);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(240, 125, 0, .28);
}

.footer-bottom > p {
    margin: 0;
    color: #999999;
    font-size: 12px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-social a {
    display: inline-flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 18px;
    text-decoration: none;
    transition: color .2s ease, transform .25s ease;
}

.footer-social a:hover,
.footer-social a:focus {
    color: var(--orange);
    transform: translateY(-3px);
}

@media (max-width: 767.98px) {
    :root {
        --header-height: 70px;
        --header-height-small: 60px;
    }

    .header-inner {
        padding: 0 20px;
    }

    .brand {
        flex: 1 1 auto;
        gap: 10px;
    }

    .brand-logo {
        width: 35px;
        height: 42px;
    }

    .brand-seal {
        width: 39px;
        height: 40px;
    }

    .is-scrolled .brand-logo {
        width: 31px;
        height: 37px;
    }

    .is-scrolled .brand-seal {
        width: 35px;
        height: 36px;
    }

    .desktop-nav {
        display: none;
    }

    .donate-button {
        align-self: auto;
        width: auto;
        height: 40px;
        margin: 0 16px 0 auto;
        padding: 0 20px;
        border-radius: 8px;
        background: var(--orange);
        font-size: 12px;
    }

    .donate-button:hover,
    .donate-button:focus {
        background: var(--orange-variant);
    }

    .menu-toggle {
        display: flex;
        width: 25px;
        height: 22px;
        flex: 0 0 25px;
        flex-direction: column;
        justify-content: space-between;
        padding: 2px 0;
        border: 0;
        background: transparent;
    }

    .menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--black);
    }

    /* Enquanto a mesma arte é usada, o centro é mantido visível no mobile. */
    .hero-banner img {
        height: auto;
        min-height: 0;
        object-fit: contain;
    }

    .trajectory-section {
        padding: 44px 0 38px;
    }

    .trajectory-inner {
        width: calc(100% - 36px);
    }

    .trajectory-heading {
        margin-bottom: 28px;
    }

    .section-eyebrow {
        margin-bottom: 14px;
        font-size: 10px;
    }

    .trajectory-heading h2 {
        max-width: 310px;
        font-size: 30px;
        line-height: 1.15;
    }

    .trajectory-navigation {
        display: none;
    }

    .trajectory-progress {
        position: absolute;
        top: 300px;
        right: 0;
        left: 0;
        width: auto;
        height: 3px;
        margin: 0;
    }

    .trajectory-progress span {
        display: none;
    }

    .trajectory-swiper {
        overflow: hidden;
    }

    .trajectory-card {
        width: 100%;
        min-height: 0;
        border-radius: 16px;
    }

    .trajectory-card img {
        width: calc(100% - 28px);
        height: 272px;
        margin: 14px 14px 0;
        border-radius: 12px;
    }

    .trajectory-card-content {
        min-height: 92px;
        padding: 15px 16px 16px;
    }

    .trajectory-card time {
        font-size: 27px;
    }

    .trajectory-card p {
        font-size: 12px;
        line-height: 1.5;
    }

    .trajectory-mobile-footer {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        margin-top: 28px;
    }

    .trajectory-mobile-footer button {
        width: 52px;
        height: 52px;
        font-size: 15px;
    }

    .trajectory-mobile-footer p {
        display: none;
    }

    .inside-section {
        min-height: 0;
        padding: 48px 0 82px;
    }

    .inside-heading {
        width: calc(100% - 36px);
        margin-bottom: 32px;
    }

    .inside-heading .section-eyebrow {
        display: none;
    }

    .inside-heading h2 {
        max-width: 330px;
        font-size: 27px;
        line-height: 1.15;
        text-align: left;
    }

    .inside-title-desktop {
        display: none;
    }

    .inside-title-mobile {
        display: inline;
    }

    .inside-swiper {
        width: calc(100% - 36px);
        margin-left: 18px;
        overflow: visible;
    }

    .inside-card {
        width: auto;
        height: auto;
        aspect-ratio: 3 / 4;
    }

    .inside-pagination-wrap {
        width: calc(100% - 36px);
        justify-content: center;
        margin-top: 28px;
        padding: 0;
    }

    .inside-pagination .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
    }

    .inside-pagination .swiper-pagination-bullet-active {
        width: 18px;
    }

    .inside-person {
        bottom: 0;
        left: 0;
        width: 31.5%;
    }

    .contest-section {
        padding: 46px 0 44px;
    }

    .contest-container {
        width: calc(100% - 36px);
    }

    .contest-topbar {
        padding-bottom: 18px;
        font-size: 10px;
    }

    .contest-topbar span:last-child {
        font-size: 0;
    }

    .contest-topbar span:last-child::after {
        font-size: 10px;
        content: "30 anos";
    }

    .contest-grid {
        display: flex;
        flex-direction: column;
        gap: 14px;
        padding-top: 26px;
    }

    .contest-intro {
        display: contents;
    }

    .contest-tag {
        align-self: flex-start;
        order: 1;
        margin: 0 0 10px;
    }

    .contest-intro h2 {
        order: 2;
        margin-bottom: 6px;
        font-size: 28px;
        line-height: 1.2;
    }

    .contest-intro > p {
        order: 3;
        margin-bottom: 14px;
        font-size: 14px;
        line-height: 1.55;
    }

    .contest-info-list {
        order: 4;
        gap: 14px;
    }

    .contest-info-card {
        min-height: 0;
        padding: 18px 16px;
    }

    .contest-info-card h3 {
        margin: 0;
        font-size: 18px;
    }

    .contest-info-card p,
    .contest-schedule {
        display: none;
    }

    .contest-card-label {
        margin-bottom: 12px;
    }

    .desktop-copy {
        display: none;
    }

    .mobile-copy {
        display: inline;
    }

    .contest-gallery {
        order: 5;
        margin-top: 16px;
        gap: 14px;
    }

    .contest-photo-main,
    .contest-photo-row .contest-photo {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .contest-photo-row {
        display: block;
    }

    .contest-photo-landscape,
    .contest-gallery-note {
        display: none;
    }

    .contest-actions {
        order: 6;
        max-width: none;
        margin-top: 16px;
    }

    .contest-actions a {
        min-height: 52px;
    }

    .contest-secondary-button {
        order: 2;
    }

    .contest-intro small {
        display: none;
    }

    .testimonials-section {
        padding: 46px 0 40px;
    }

    .testimonials-container {
        width: calc(100% - 36px);
    }

    .testimonials-heading {
        margin-bottom: 28px;
        text-align: left;
    }

    .testimonials-heading .section-eyebrow {
        margin-bottom: 14px;
        font-size: 9px;
    }

    .testimonials-heading h2 {
        font-size: 22px;
        line-height: 1.28;
    }

    .testimonials-swiper {
        border-radius: 11px;
    }

    .testimonial-card {
        width: 100%;
        min-height: 0;
        padding: 18px 14px 16px;
        border-radius: 11px;
    }

    .testimonial-quote {
        margin-bottom: 12px;
        font-size: 20px;
    }

    .testimonial-card blockquote {
        min-height: 92px;
        margin-bottom: 13px;
        font-size: 12px;
        line-height: 1.55;
    }

    .testimonial-card footer img {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        margin-right: 9px;
    }

    .testimonial-card footer strong {
        font-size: 12px;
    }

    .testimonial-card footer span {
        font-size: 10px;
    }

    .testimonials-pagination {
        margin-top: 22px;
    }

    .testimonials-pagination button {
        width: 5px;
        height: 5px;
    }

    .testimonials-pagination button.is-active {
        width: 14px;
    }

    .testimonials-button {
        width: 100%;
        min-width: 0;
        min-height: 48px;
        margin-top: 24px;
        font-size: 11px;
    }

    .testimonials-frog {
        display: none;
    }

    .live-gallery-section {
        padding: 48px 0 58px;
    }

    .live-gallery-container {
        width: calc(100% - 36px);
    }

    .live-gallery-heading {
        padding-top: 0;
        border-top: 0;
    }

    .live-gallery-heading h2 {
        max-width: 300px;
        margin-bottom: 34px;
        font-size: 27px;
        line-height: 1.18;
    }

    .decades-accordion {
        border-radius: 11px;
    }

    .decade-toggle {
        min-height: 58px;
        padding: 0 15px;
        font-size: 15px;
    }

    .decade-item::before {
        top: 33px;
        bottom: 0;
        left: 21px;
    }

    .decade-item.is-open::before {
        bottom: 20px;
    }

    .decade-panel {
        padding: 0 14px 20px 34px;
    }

    .gallery-card {
        width: auto;
        height: 330px;
    }

    .decade-swiper {
        height: 333px;
        padding-top: 3px;
    }

    .gallery-card:hover,
    .gallery-card:focus-within {
        height: 330px;
    }

    .gallery-caption {
        height: 116px;
    }

    .decade-pagination {
        justify-content: flex-end;
        margin: 0 0 8px;
    }

    .digital-campaign-section {
        padding: 48px 0 58px;
    }

    .digital-campaign-container {
        width: calc(100% - 36px);
    }

    .digital-campaign-heading {
        margin-bottom: 32px;
        text-align: left;
    }

    .digital-campaign-heading .section-eyebrow {
        display: none;
    }

    .digital-campaign-heading h2 {
        font-size: 28px;
        line-height: 1.15;
    }

    .digital-campaign-heading h2::after {
        display: none;
    }

    .feed-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .feed-card {
        border-radius: 11px;
    }

    .feed-card-header {
        height: 56px;
        padding: 9px 12px;
    }

    .feed-card > p {
        min-height: 58px;
        padding: 12px;
        font-size: 11px;
    }

    .social-channels {
        margin-top: 42px;
    }

    .social-channels nav {
        flex-wrap: wrap;
        gap: 10px;
    }

    .social-channels nav a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .donation-section {
        display: flex;
        min-height: 0;
        flex-direction: column;
    }

    .donation-copy-column {
        min-height: 345px;
        align-items: flex-start;
        padding: 46px 0 38px;
    }

    .donation-copy {
        width: calc(100% - 44px);
    }

    .donation-line {
        width: 60px;
        height: 3px;
        margin-bottom: 24px;
    }

    .donation-copy h2 {
        max-width: 320px;
        margin-bottom: 26px;
        font-size: 21px;
        line-height: 1.35;
    }

    .donation-cta {
        width: 100%;
        min-height: 50px;
    }

    .donation-copy p {
        display: block;
    }

    .donation-biome {
        display: none;
    }

    .donation-image-column {
        min-height: 250px;
        padding: 30px 20px;
    }

    .donation-image-column > img {
        width: 100%;
    }

    .site-footer {
        padding: 48px 0 24px;
    }

    .footer-container {
        width: calc(100% - 36px);
    }

    .footer-main {
        display: flex;
        flex-direction: column;
        gap: 32px;
        padding-bottom: 38px;
    }

    .footer-brand img {
        width: 155px;
        margin-bottom: 22px;
    }

    .footer-brand p {
        max-width: none;
        font-size: 12px;
    }

    .footer-column h2 {
        margin-bottom: 16px;
        font-size: 12px;
    }

    .footer-column a {
        margin-bottom: 11px;
        font-size: 12px;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        gap: 22px;
        padding-top: 24px;
        text-align: center;
    }

    .footer-social {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .footer-social a {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        color: var(--white);
        background: var(--orange);
        font-size: 16px;
    }

    .footer-social a:hover,
    .footer-social a:focus {
        color: var(--white);
        background: var(--orange-variant);
    }
}

/* Refinamento final de proporções conforme o layout de referência. */
@media (min-width: 768px) {
    .live-gallery-section {
        padding: 50px 0;
    }

    .live-gallery-heading h2 {
        margin-bottom: 40px;
    }

    .decade-swiper {
        height: 313px;
    }

    .gallery-card {
        height: 310px;
    }

    .contest-section {
        padding-bottom: 112px;
    }

    .testimonials-section {
        padding-bottom: 105px;
    }


    .donation-section {
        min-height: 480px;
    }

    .donation-image-column {
        padding: 0 25px;
    }

    .donation-image-column > img {
        width: 100%;
    }

    .site-footer {
        min-height: 496px;
        padding-top: 92px;
    }

    .footer-main {
        padding-bottom: 78px;
    }

    .testimonials-swiper {
        width: 903px;
    }
}

@media (max-width: 767.98px) {
    .contest-photo-landscape {
        display: block;
        margin-top: 14px;
    }

    .testimonials-section {
        padding-top: 54px;
        padding-bottom: 50px;
    }

    .testimonials-heading {
        margin-bottom: 34px;
    }

    .testimonials-heading h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .testimonial-card {
        min-height: 340px;
        padding: 24px 20px 20px;
    }

    .testimonial-quote {
        margin-bottom: 18px;
        font-size: 24px;
    }

    .testimonial-card blockquote {
        min-height: 165px;
        margin-bottom: 18px;
        font-size: 13px;
        line-height: 1.65;
    }

    .testimonial-card footer strong {
        font-size: 13px;
    }

    .testimonial-card footer span {
        font-size: 11px;
    }

    .inside-person {
        width: 31.5%;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: .01ms !important;
    }
}
