body {
    background-color: #000;
}

.reveal::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url('../assets/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

/* Container principal: mantém tudo centralizado na tela */
.animation-logo-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Centraliza verticalmente */
    overflow: hidden; /* Impede que a animação ultrapasse os limites do container */
}

/* Logo exatamente ao centro */
.logo {
    width: 60%;
    max-width: 80vw; /* Garante que não fique muito grande */
    height: auto;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centraliza horizontal e verticalmente */
    z-index: 2; /* Mantém a logo acima da animação */
}

#animation-container {
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1; /* Mantém a animação abaixo da logo */
}

.reveal .hero-slogan {
    position: absolute;
    top: calc(40% + 82px);
    left: calc(50% - 6px);
    transform: translate(0, 10px);
    margin: 0;
    max-width: 24vw;
    white-space: nowrap;
    font-size: clamp(0.8rem, 1.15vw, 1.45rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.01em;
    text-align: left;
    color: #f5f5f5;
    z-index: 3;
    opacity: 0;
    animation: sloganFade 10s ease-in-out infinite;
    pointer-events: none;
}

.reveal .hero-slogan span {
    color: #f3c111;
}

@keyframes sloganFade {
    0% {
        opacity: 0;
        transform: translate(0, 10px);
    }

    8%,
    50% {
        opacity: 1;
        transform: translate(0, 0);
    }

    58%,
    100% {
        opacity: 0;
        transform: translate(0, 10px);
    }
}

/* Ajustes da animação */
.wrap {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    perspective: 1200px;
    animation: rotate 16s infinite linear;
}

@keyframes rotate {
    100% {
        transform: rotateY(360deg) rotateX(360deg);
    }
}

/* Ajuste das partículas para ficarem alinhadas corretamente */
.c {
    position: absolute;
    width: 4px;
    height: 4px;;
    border-radius: 50%;
    opacity: 0;
}

.topic-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Ajuste do GIF */
.foguete {
    width: 200px;
    height: auto;
    margin: 0 auto;
}

/* Estilização do container principal */
.about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 80%;
    margin: 0 auto;
}

/* Estilização da galeria de imagens */
.about-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 colunas */
    grid-template-rows: repeat(2, auto); /* 2 linhas */
    gap: 15px; /* Espaçamento entre as imagens */
    max-width: 600px;
    margin: 20px auto;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Centraliza verticalmente */
}

/* Ajustando o tamanho das imagens */
.about-gallery img {
    width: 100%; /* Ocupa todo o espaço da célula */
    max-width: 250px; /* Limite para evitar imagens muito grandes */
    border-radius: 8px; /* Borda arredondada */
    transition: transform 0.3s ease-in-out;
}

/* Efeito ao passar o mouse */
.about-gallery img:hover {
    transform: scale(1.05);
}

/* Estilizando a lista de informações */
.about-info {
    flex: 1; /* Ocupa espaço disponível */
    text-align: left;
}

.about-info ul {
    list-style: none;
    padding: 0;
    font-size: 0.9em; /* Reduzindo o tamanho da fonte */
}

.about-info li {
    margin-bottom: 8px;
    color: #f3dc09;
}

/* Cartão do GitHub no formato de crachá */
.about-github-card {
    flex: 1; /* Ocupa espaço disponível */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 280px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

/* Estilizando o cartão */
.github-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Avatar do GitHub */
.github-avatar {
    width: 50%;
    border-radius: 50%;
    border: 2px solid white;
    margin-bottom: 5px;
}

/* Reduzindo tamanho dos textos do GitHub */
.github-card h5 {
    font-size: 0.5em;
    margin: 4px 0;
}

/* Ajuste para a foto ficar alinhada corretamente */
.about-photo {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

/* Reduzindo tamanho das fotos */
.foto {
    width: 200px;
    border-radius: 50%;
    border: 2px solid white;
}

/* Tema da seção Multi */
:root {
    --multi-accent: #f3c111;
    --multi-accent-soft: rgba(243, 193, 17, 0.28);
    --multi-card-bg: rgba(17, 22, 31, 0.72);
}

.multi-heading {
    color: #fff6d6;
    text-shadow: 0 0 22px rgba(243, 193, 17, 0.32);
}

/* Container do multi com Grid (2 colunas, 2 linhas) */
.multi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 colunas */
    grid-template-rows: auto auto; /* 2 linhas automáticas */
    gap: 15px;
    max-width: 80%;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}

/* Estilização dos cards */
.multi-card {
    position: relative;
    background: linear-gradient(165deg, var(--multi-card-bg), rgba(28, 36, 50, 0.6));
    border: 1px solid var(--multi-accent-soft);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(255, 242, 201, 0.06);
    padding: 15px; /* Ajuste no espacamento interno */
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(3px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Ajuste no título dentro do card */
.multi-card h3 {
    font-size: 1em;
    margin-bottom: 5px;
    color: #fff8de;
}

/* Ajuste no texto dentro do card */
.multi-card p {
    font-size: 0.5em;
    line-height: 1.2;
}

/* Efeito ao passar o mouse */
.multi-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(243, 193, 17, 0.72);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.42), 0 0 20px rgba(243, 193, 17, 0.2);
}

/* Animação suave */
[data-auto-animate] {
    opacity: 1;
    transition: opacity 0.8s ease-in-out;
}

/* Centraliza o conteúdo do tópico */
.topic-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Ajuste do GIF */
.thanks {
    width: 400px;
    height: auto;
}

/* Texto do tópico */
.topic-text {
    font-size: 1.2em;
    font-weight: bold;
    color: #f3dc09;
    max-width: 80%;
    line-height: 1.4;
}

/* Container para os GIFs */
.gif-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 colunas */
    grid-template-rows: repeat(2, auto); /* 2 linhas */
    gap: 15px; /* Espaçamento entre as imagens */
    max-width: 600px;
    margin: 20px auto;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Centraliza verticalmente */
}

/* Ajustando o tamanho dos GIFs */
.gif {
    width: 100%; /* Ocupa todo o espaço da célula */
    max-width: 250px; /* Limite para evitar imagens muito grandes */
    border-radius: 8px; /* Borda arredondada */
    transition: transform 0.3s ease-in-out;
    display: block;
    margin: auto;
}

/* Efeito ao passar o mouse */
.gif:hover {
    transform: scale(1.05);
}

/* Texto do tópico */
.topic-text {
    font-size: 0.8em;
    font-weight: bold;
    color: #f3dc09;
    max-width: 100%;
    line-height: 1.4;
}

.antes-demo {
    position: relative;
    width: min(980px, 92vw);
    margin: 0 auto;
    padding: 0;
    border-radius: 14px;
    border: 1px solid rgba(243, 193, 17, 0.32);
    background: #000;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.36);
    overflow: hidden;
}

.antes-demo-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    color: #fff4cc;
    font-size: clamp(0.85rem, 1.4vw, 1.5rem);
    text-align: center;
    z-index: 2;
    background: rgba(0, 0, 0, 0.45);
    padding: 6px 18px;
    border-radius: 8px;
    backdrop-filter: blur(4px);
    pointer-events: none;
    white-space: nowrap;
}

.antes-video {
    display: block;
    width: 100%;
    max-height: 72vh;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    border: none;
    background: #000;
    object-fit: contain;
    margin: 0 auto;
}

.estrutura-card {
    width: min(1080px, 92vw);
    margin: 0 auto;
    padding: 18px 22px;
    box-sizing: border-box;
    border-radius: 14px;
    border: 1px solid rgba(243, 193, 17, 0.32);
    background: linear-gradient(165deg, rgba(17, 22, 31, 0.76), rgba(28, 36, 50, 0.58));
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.36);
    text-align: left;
}

.estrutura-subtitle {
    margin: 0 0 12px;
    color: #f3c111;
    font-size: clamp(1.05rem, 1.9vw, 2rem);
}

.estrutura-list {
    margin: 0;
    padding-left: 1.2em;
    color: #fff4cc;
    font-size: clamp(0.82rem, 1.18vw, 1.18rem);
    line-height: 1.45;
}

.estrutura-list li + li {
    margin-top: 8px;
}

.collage-stage {
    position: relative;
    width: min(1160px, 90vw);
    height: min(620px, 64vh);
    margin: 0 auto;
    padding: 6px 10px 10px;
    box-sizing: border-box;
    overflow: hidden;
    isolation: isolate;
}

.compare-pair {
    position: absolute;
    display: grid;
    grid-template-columns: minmax(300px, 1fr) auto minmax(300px, 1fr);
    align-items: center;
    gap: clamp(10px, 1.8vw, 22px);
    width: min(820px, 76vw);
    top: 14%;
    left: 50%;
    transform: translateX(-50%);
}

.pair-search {
    z-index: 4;
    transform: translateX(-50%) translateY(-10%);
}

.pair-nav {
    z-index: 2;
    transform: translateX(-50%) translateY(-1%);
}

.pair-course {
    z-index: 3;
    transform: translateX(-50%) translateY(19%);
}

.compare-pair.fragment {
    opacity: 0;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.compare-pair.fragment.visible {
    opacity: 1;
}

.collage-stage .fragment {
    opacity: 0;
    visibility: hidden;
}

.collage-stage .fragment.visible {
    opacity: 1;
    visibility: visible;
}

.pair-course.fragment {
    transform: translateX(-50%) translateY(23%) scale(0.985);
}

.pair-course.fragment.visible {
    transform: translateX(-50%) translateY(19%) scale(1);
}

.pair-search.fragment {
    transform: translateX(-50%) translateY(-6%) scale(0.985);
}

.pair-search.fragment.visible {
    transform: translateX(-50%) translateY(-10%) scale(1);
}

.feature-card.fragment {
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.feature-frequency.fragment {
    transform: translateX(-92%) rotate(-8deg) scale(0.98);
}

.feature-frequency.fragment.visible {
    transform: translateX(-96%) rotate(-6deg) scale(1);
}

.feature-geolocation.fragment {
    transform: translateX(2%) rotate(7deg) scale(0.98);
}

.feature-geolocation.fragment.visible {
    transform: translateX(-2%) rotate(5deg) scale(1);
}

.shot-card,
.feature-card {
    margin: 0;
    padding: 8px;
    border-radius: 12px;
    border: 1px solid rgba(243, 193, 17, 0.38);
    background: linear-gradient(165deg, rgba(17, 22, 31, 0.76), rgba(28, 36, 50, 0.56));
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255, 245, 210, 0.06) inset;
    backdrop-filter: blur(2px);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.shot-old {
    transform: rotate(-1.8deg);
}

.shot-new {
    transform: rotate(1.5deg);
}

.shot-card:hover,
.feature-card:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: rgba(243, 193, 17, 0.78);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.44), 0 0 26px rgba(243, 193, 17, 0.2);
}

.shot-image {
    display: block;
    width: clamp(220px, 22vw, 360px);
    max-height: 20vh;
    object-fit: cover;
    border-radius: 8px;
    cursor: zoom-in;
    transition: transform 0.25s ease;
}

.shot-image:hover {
    transform: scale(1.01);
}

.shot-title {
    margin: 7px 0 2px;
    font-size: clamp(0.7rem, 1vw, 0.95rem);
    color: #fff2c7;
    text-align: center;
    letter-spacing: 0.01em;
}

.pair-arrow {
    font-size: clamp(1.6rem, 2.9vw, 2.8rem);
    color: #f3c111;
    text-shadow: 0 0 12px rgba(243, 193, 17, 0.6);
    animation: pulseArrow 1.7s ease-in-out infinite;
}

.feature-card {
    position: absolute;
    width: clamp(260px, 24vw, 420px);
    z-index: 5;
    overflow: hidden;
}

.feature-card .shot-image {
    width: 100%;
    max-height: 22vh;
}

.feature-frequency {
    left: 50%;
    top: 24%;
    transform: translateX(-96%) rotate(-6deg);
    z-index: 5;
}

.feature-geolocation {
    left: 50%;
    top: 42%;
    transform: translateX(-2%) rotate(5deg);
    z-index: 6;
}

.feature-frequency:hover {
    transform: translateX(-96%) rotate(-4deg) translateY(-5px) scale(1.01);
}

.feature-geolocation:hover {
    transform: translateX(-2%) rotate(3deg) translateY(-5px) scale(1.01);
}

@media (max-width: 1200px) {
    .collage-stage {
        width: min(980px, 88vw);
        height: min(560px, 60vh);
    }

    .compare-pair {
        grid-template-columns: minmax(250px, 1fr) auto minmax(250px, 1fr);
        width: min(760px, 72vw);
    }

    .shot-image {
        width: clamp(190px, 20vw, 300px);
        max-height: 18vh;
    }

    .pair-search {
        transform: translateX(-50%) translateY(-9%);
    }

    .pair-course {
        transform: translateX(-50%) translateY(18%);
    }

    .feature-card {
        width: clamp(220px, 22vw, 340px);
    }

    .feature-frequency {
        transform: translateX(-94%) rotate(-6deg);
    }

    .feature-frequency:hover {
        transform: translateX(-94%) rotate(-4deg) translateY(-5px) scale(1.01);
    }

    .feature-geolocation {
        transform: translateX(-2%) rotate(5deg);
    }

    .feature-geolocation:hover {
        transform: translateX(-2%) rotate(3deg) translateY(-5px) scale(1.01);
    }
}

@media (max-width: 900px) {
    .collage-stage {
        width: min(700px, 94vw);
        height: min(760px, 78vh);
        overflow-y: auto;
    }

    .compare-pair {
        grid-template-columns: 1fr;
        gap: 8px;
        width: min(520px, 92vw);
        left: 50%;
        top: 2%;
        transform: translateX(-50%);
    }

    .pair-arrow {
        justify-self: center;
        transform: rotate(90deg);
    }

    .pair-search {
        transform: translateX(-50%) translateY(0%);
    }

    .pair-nav {
        transform: translateX(-50%) translateY(24%);
    }

    .pair-course {
        transform: translateX(-50%) translateY(48%);
    }

    .shot-image {
        width: min(560px, 88vw);
        max-height: 22vh;
    }

    .feature-card {
        width: min(540px, 86vw);
    }

    .feature-frequency {
        left: 4%;
        top: 34%;
        transform: rotate(-3deg);
    }

    .feature-geolocation {
        left: 10%;
        top: 62%;
        transform: rotate(3deg);
    }

    .feature-frequency:hover {
        transform: rotate(-1deg) translateY(-5px) scale(1.01);
    }

    .feature-geolocation:hover {
        transform: rotate(2deg) translateY(-5px) scale(1.01);
    }
}

.image-zoom-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    background: rgba(8, 12, 20, 0.86);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
    z-index: 1200;
}

.image-zoom-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.image-zoom-overlay img {
    width: auto;
    max-width: min(92vw, 1400px);
    max-height: 86vh;
    border-radius: 12px;
    border: 1px solid rgba(243, 193, 17, 0.45);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6);
}

@media (max-width: 900px) {
    .image-zoom-overlay {
        padding: 1rem;
    }

    .image-zoom-overlay img {
        max-width: 96vw;
        max-height: 80vh;
    }
}

.gestao-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: min(1020px, 84vw);
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 8px;
    margin: 0 auto;
    align-items: stretch;
}

.gestao-card {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 14px;
    align-items: start;
    text-align: left;
    min-height: 118px;
    padding: 14px 16px;
    border-color: rgba(243, 193, 17, 0.34);
    background: linear-gradient(155deg, rgba(8, 15, 28, 0.78), rgba(16, 28, 54, 0.62));
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34), inset 0 0 0 1px rgba(255, 240, 194, 0.07);
}

.gestao-card-icon-wrap {
    display: flex;
    justify-content: center;
    padding-top: 1px;
}

.gestao-card-content {
    display: grid;
    gap: 6px;
}

.gestao-card h3 {
    margin: 0;
    font-size: clamp(1.04rem, 1.22vw, 1.36rem);
    font-weight: 700;
    color: #fff6da;
}

.gestao-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background:
        radial-gradient(circle at 34% 30%, rgba(255, 246, 209, 0.25), rgba(243, 193, 17, 0.08) 45%, rgba(243, 193, 17, 0.03));
    border: 1px solid rgba(243, 193, 17, 0.58);
    color: #fff2c5;
    box-shadow: 0 0 0 3px rgba(243, 193, 17, 0.1), 0 0 24px rgba(243, 193, 17, 0.24);
    line-height: 1;
}

.gestao-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gestao-card p {
    margin: 0;
    color: #fff4cc;
    font-size: clamp(0.78rem, 0.9vw, 0.95rem);
    line-height: 1.33;
}

.gestao-card:hover {
    transform: translateY(-5px) scale(1.008);
    border-color: rgba(243, 193, 17, 0.78);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.42), 0 0 28px rgba(243, 193, 17, 0.22);
}

.gestao-card:hover .gestao-icon {
    box-shadow: 0 0 0 4px rgba(243, 193, 17, 0.16), 0 0 30px rgba(243, 193, 17, 0.34);
}

.gestao-card--externo {
    grid-column: 1 / -1;
    max-width: min(680px, 100%);
    justify-self: center;
}

.gestao-note-card {
    width: min(860px, 88vw);
    margin: 0 auto;
    text-align: left;
    padding: 20px 24px;
}

.gestao-note-card h3 {
    margin: 0 0 10px;
    color: #f9e9b7;
}

.gestao-note-card ul {
    margin: 0;
    padding-left: 1.2em;
    color: #fff4cc;
    font-size: clamp(0.82rem, 1.02vw, 0.98rem);
    line-height: 1.45;
}

.gestao-note-card li + li {
    margin-top: 8px;
}

.gestao-grid--extras {
    width: min(940px, 80vw);
    gap: 10px;
    margin-top: 8px;
}

.gestao-grid--extras .gestao-card {
    min-height: 104px;
}

.gestao-grid--extras .gestao-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: min(500px, 100%);
    justify-self: center;
}

.agenda-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 16px;
    width: min(1040px, 86vw);
    margin: 0 auto;
    padding: 22px 26px;
    border-radius: 16px;
    border: 1px solid rgba(243, 193, 17, 0.34);
    background: linear-gradient(150deg, rgba(6, 14, 29, 0.82), rgba(14, 30, 59, 0.62));
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.36), inset 0 0 0 1px rgba(255, 236, 179, 0.08);
    text-align: left;
}

.agenda-hero-copy {
    align-self: center;
}

.agenda-kicker {
    margin: 0 0 8px;
    color: #f3c111;
    font-size: clamp(0.72rem, 0.9vw, 0.9rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
}

.agenda-headline {
    margin: 0;
    color: #fff7dd;
    font-size: clamp(1.28rem, 2vw, 2.2rem);
    line-height: 1.18;
}

.agenda-subline {
    margin: 12px 0 0;
    color: #fff0c3;
    font-size: clamp(0.8rem, 0.94vw, 0.98rem);
    line-height: 1.36;
    max-width: 100%;
}

.agenda-pill-row {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.agenda-hero-media {
    position: relative;
    border-radius: 12px;
    border: 1px solid rgba(243, 193, 17, 0.34);
    overflow: hidden;
    background: rgba(0, 0, 0, 0.38);
    min-height: 260px;
}

.agenda-hero-video {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 260px;
    max-height: 320px;
    object-fit: cover;
    background: #000;
}

.agenda-pill {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(243, 193, 17, 0.48);
    background: rgba(243, 193, 17, 0.09);
    color: #fff2c8;
    font-size: clamp(0.7rem, 0.82vw, 0.86rem);
    font-weight: 600;
}

.agenda-showcase {
    width: min(1080px, 88vw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.agenda-panel {
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid rgba(243, 193, 17, 0.34);
    background: linear-gradient(155deg, rgba(8, 15, 28, 0.82), rgba(18, 34, 64, 0.62));
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
    text-align: left;
}

.agenda-panel-tag {
    margin: 0 0 8px;
    color: #f4c92e;
    font-size: clamp(0.68rem, 0.8vw, 0.8rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
}

.agenda-panel h3 {
    margin: 0;
    color: #fff7de;
    font-size: clamp(1rem, 1.2vw, 1.28rem);
}

.agenda-panel p {
    margin: 8px 0 0;
    color: #fff1ca;
    font-size: clamp(0.78rem, 0.92vw, 0.96rem);
    line-height: 1.35;
}

.agenda-sources {
    width: min(1080px, 88vw);
    margin: 12px auto 0;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid rgba(243, 193, 17, 0.34);
    background: linear-gradient(155deg, rgba(8, 15, 28, 0.78), rgba(18, 30, 55, 0.58));
    text-align: left;
}

.agenda-sources h3 {
    margin: 0 0 10px;
    color: #fff7de;
    font-size: clamp(0.96rem, 1.1vw, 1.2rem);
}

.agenda-source-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.agenda-source {
    padding: 7px 10px;
    border-radius: 10px;
    border: 1px solid rgba(243, 193, 17, 0.32);
    background: rgba(243, 193, 17, 0.08);
    color: #fff3cc;
    text-align: center;
    font-size: clamp(0.72rem, 0.85vw, 0.9rem);
    font-weight: 600;
}

.agenda-impact {
    width: min(980px, 84vw);
    margin: 0 auto;
    padding: 22px 24px;
    border-radius: 16px;
    border: 1px solid rgba(243, 193, 17, 0.44);
    background: linear-gradient(155deg, rgba(9, 18, 35, 0.84), rgba(24, 40, 72, 0.68));
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4), 0 0 28px rgba(243, 193, 17, 0.16);
    text-align: left;
}

.agenda-impact h3 {
    margin: 0;
    color: #fff7de;
    font-size: clamp(1.16rem, 1.5vw, 1.7rem);
    line-height: 1.2;
}

.agenda-impact p {
    margin: 12px 0 0;
    color: #fff1cb;
    font-size: clamp(0.82rem, 1vw, 1.02rem);
    line-height: 1.42;
}

.dashboard-hero {
    width: min(1080px, 88vw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.dashboard-card {
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(243, 193, 17, 0.34);
    background: linear-gradient(155deg, rgba(8, 15, 28, 0.82), rgba(18, 34, 64, 0.62));
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
    text-align: left;
}

.dashboard-tag {
    margin: 0;
    color: #f4c92e;
    font-size: clamp(0.68rem, 0.8vw, 0.8rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
}

.dashboard-card h3 {
    margin: 8px 0 12px;
    color: #fff7de;
    font-size: clamp(1rem, 1.24vw, 1.3rem);
}

.dashboard-image {
    display: block;
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(255, 238, 190, 0.2);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.34);
}

.dashboard-detail {
    width: min(1080px, 88vw);
    margin: 0 auto;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(243, 193, 17, 0.36);
    background: linear-gradient(155deg, rgba(8, 15, 28, 0.84), rgba(18, 34, 64, 0.66));
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.38);
    display: grid;
    grid-template-columns: 52% 48%;
    gap: 16px;
    align-items: center;
}

.dashboard-image-large {
    max-height: 48vh;
    object-fit: cover;
}

.dashboard-detail-copy h3 {
    margin: 8px 0 10px;
    color: #fff8e1;
    font-size: clamp(1.1rem, 1.45vw, 1.55rem);
    line-height: 1.2;
}

.dashboard-list {
    margin: 0;
    padding-left: 1.2em;
    color: #fff3ce;
    font-size: clamp(0.8rem, 0.94vw, 0.96rem);
    line-height: 1.38;
}

.dashboard-list li + li {
    margin-top: 8px;
}

.dashboard-impact {
    width: min(980px, 84vw);
    margin: 0 auto;
    padding: 22px 24px;
    border-radius: 16px;
    border: 1px solid rgba(243, 193, 17, 0.44);
    background: linear-gradient(155deg, rgba(9, 18, 35, 0.84), rgba(24, 40, 72, 0.68));
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4), 0 0 28px rgba(243, 193, 17, 0.16);
    text-align: left;
}

.dashboard-impact h3 {
    margin: 0;
    color: #fff7de;
    font-size: clamp(1.16rem, 1.5vw, 1.7rem);
    line-height: 1.2;
}

.dashboard-impact p {
    margin: 12px 0 0;
    color: #fff1cb;
    font-size: clamp(0.82rem, 1vw, 1.02rem);
    line-height: 1.42;
}

.novo-curso-hero {
    width: min(980px, 84vw);
    margin: 0 auto;
    padding: 24px 28px;
    border-radius: 16px;
    border: 1px solid rgba(243, 193, 17, 0.36);
    background: linear-gradient(155deg, rgba(9, 18, 35, 0.84), rgba(24, 40, 72, 0.68));
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4), 0 0 28px rgba(243, 193, 17, 0.12);
    text-align: left;
}

.novo-curso-kicker {
    margin: 0 0 8px;
    color: #f3c111;
    font-size: clamp(0.72rem, 0.88vw, 0.88rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
}

.novo-curso-headline {
    margin: 0;
    color: #fff7dd;
    font-size: clamp(1.34rem, 2.05vw, 2.3rem);
    line-height: 1.14;
}

.novo-curso-subline {
    margin: 12px 0 0;
    color: #fff0c3;
    font-size: clamp(0.84rem, 1vw, 1.05rem);
    line-height: 1.42;
    max-width: 90%;
}

.novo-curso-showcase {
    width: min(1080px, 88vw);
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.novo-curso-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 42%);
    gap: 14px;
    align-items: center;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(243, 193, 17, 0.34);
    background: linear-gradient(155deg, rgba(8, 15, 28, 0.82), rgba(18, 34, 64, 0.62));
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
    text-align: left;
}

.novo-curso-panel:nth-child(even) {
    grid-template-columns: minmax(320px, 42%) minmax(0, 1fr);
}

.novo-curso-copy {
    padding: 4px 6px;
}

.novo-curso-tag {
    margin: 0 0 8px;
    color: #f4c92e;
    font-size: clamp(0.68rem, 0.8vw, 0.8rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
}

.novo-curso-copy h3 {
    margin: 0;
    color: #fff7de;
    font-size: clamp(1.04rem, 1.28vw, 1.4rem);
    line-height: 1.18;
}

.novo-curso-copy p:last-child {
    margin: 10px 0 0;
    color: #fff1ca;
    font-size: clamp(0.8rem, 0.95vw, 0.98rem);
    line-height: 1.38;
}

.novo-curso-image {
    display: block;
    width: 100%;
    max-height: 34vh;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(255, 238, 190, 0.18);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.34);
}

.novo-curso-impact {
    width: min(980px, 84vw);
    margin: 0 auto;
    padding: 22px 24px;
    border-radius: 16px;
    border: 1px solid rgba(243, 193, 17, 0.44);
    background: linear-gradient(155deg, rgba(9, 18, 35, 0.84), rgba(24, 40, 72, 0.68));
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4), 0 0 28px rgba(243, 193, 17, 0.16);
    text-align: left;
}

.novo-curso-impact h3 {
    margin: 0 0 12px;
    color: #fff7de;
    font-size: clamp(1.16rem, 1.5vw, 1.7rem);
    line-height: 1.2;
}

.novo-curso-list {
    margin: 0;
    padding-left: 1.2em;
    color: #fff2cd;
    font-size: clamp(0.82rem, 0.98vw, 1rem);
    line-height: 1.42;
}

.novo-curso-list li + li {
    margin-top: 8px;
}

@media (max-width: 980px) {
    .gestao-grid {
        grid-template-columns: 1fr;
        width: min(760px, 90vw);
        padding: 0;
    }

    .gestao-grid--extras {
        width: min(760px, 90vw);
    }

    .gestao-card {
        min-height: 0;
        grid-template-columns: 56px 1fr;
        gap: 12px;
    }

    .gestao-icon {
        width: 42px;
        height: 42px;
    }

    .gestao-icon svg {
        width: 19px;
        height: 19px;
    }

    .gestao-card--externo {
        grid-column: auto;
        max-width: none;
    }

    .gestao-grid--extras .gestao-card:nth-child(3) {
        grid-column: auto;
        max-width: none;
        justify-self: stretch;
    }

    .agenda-hero,
    .agenda-showcase,
    .agenda-sources,
    .agenda-impact,
    .dashboard-hero,
    .dashboard-detail,
    .dashboard-impact,
    .novo-curso-hero,
    .novo-curso-showcase,
    .novo-curso-impact {
        width: min(760px, 90vw);
    }

    .agenda-hero {
        grid-template-columns: 1fr;
    }

    .agenda-hero-media,
    .agenda-hero-video {
        min-height: 210px;
        max-height: 260px;
    }

    .agenda-showcase {
        grid-template-columns: 1fr;
    }

    .agenda-source-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dashboard-hero,
    .dashboard-detail {
        grid-template-columns: 1fr;
    }

    .dashboard-image-large {
        max-height: 36vh;
    }

    .novo-curso-panel,
    .novo-curso-panel:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .novo-curso-subline {
        max-width: 100%;
    }

    .novo-curso-image {
        max-height: 28vh;
    }
}

@keyframes pulseArrow {
    0%,
    100% {
        transform: translateX(0);
        opacity: 0.9;
    }
    50% {
        transform: translateX(5px);
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
