@charset "UTF-8";
:root {
    --red:#941f2b;
    --red-dark:#751621;
    --gold:#ffd36a;
    --ink:#202025;
    --muted:#62626b;
    --paper:#f4f5f7;
    --line:#dddfe4;
    --heading:'Montserrat',sans-serif;
    --body:'Roboto',sans-serif;
}

* {
    box-sizing:border-box;
    margin:0;
    padding:0;
}

html {
    scroll-behavior:smooth;
    scroll-padding-top:100px;
}

body {
    font-family:var(--body);
    font-size:1rem;
    color:var(--ink);
    line-height:1.7;
    background:#fff;
}

a {
    color:inherit;
    text-decoration:none;
}

button {
    font:inherit;
}

img {
    max-width:100%;
    display:block;
}

ul {
    list-style:none;
}

h1,h2,h3,h4 {
    font-family:var(--heading);
    line-height:1.2;
}

a:focus-visible,button:focus-visible {
    outline:3px solid #b86b00;
    outline-offset:5px;
}

section {
    scroll-margin-top:90px;
}

.container {
    width:min(1160px,calc(100% - 64px));
    margin-inline:auto;
}

.section-padding {
    padding:88px 0;
}

.text-center {
    text-align:center;
}

.eyebrow {
    font-family:var(--heading);
    font-size:.875rem;
    font-weight:700;
    letter-spacing:.12em;
    margin-bottom:20px;
}

.skip-link {
    position:fixed;
    top:10px;
    left:16px;
    z-index:2000;
    padding:12px 20px;
    background:#fff;
    color:var(--ink);
    transform:translateY(-150%);
}

.skip-link:focus {
    transform:none;
}

.main-header {
    position:sticky;
    top:0;
    z-index:100;
    background:#fff;
    border-bottom:1px solid var(--line);
    padding:20px 0;
}

.header-container {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

.logo {
    white-space:nowrap;
    font:800 1.4rem var(--heading);
}

.logo span {
    color:var(--red);
}

.nav-list {
    display:flex;
    gap:28px;
    align-items:center;
}

.nav-link {
    font-weight:700;
    font-size:.9rem;
}

.nav-link:hover,.text-link:hover {
    color:var(--red);
    text-decoration:underline;
    text-underline-offset:5px;
}

.external-nav {
    color:var(--red);
}

.mobile-menu-toggle {
    display:none;
    background:none;
    border:0;
    cursor:pointer;
    min-width:44px;
    min-height:44px;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:5px;
}

.bar {
    width:23px;
    height:2px;
    background:var(--ink);
}

.hero-section {
    position:relative;
    background:#27171d;
    color:white;
    isolation:isolate;
    overflow:hidden;
}

.hero-overlay {
    position:absolute;
    inset:0;
    z-index:-1;
    background:linear-gradient(110deg,#21191eeF,#521824e8),url('assets/images/hero_bg.webp') center/cover;
}

.hero-content {
    display:grid;
    grid-template-columns:1.25fr 1fr;
    align-items:center;
    gap:64px;
    padding-block:64px 72px;
}

.hero-text-wrapper {
    max-width:620px;
}

.hero-section .eyebrow {
    color:var(--gold);
}

.hero-title {
    font-size:clamp(3rem,5.2vw,4.9rem);
    font-weight:800;
    letter-spacing:-.06em;
    margin-bottom:22px;
}

.hero-title span {
    display:block;
    color:var(--gold);
}

.hero-subtitle {
    font-size:1.15rem;
    font-weight:400;
    margin-bottom:20px;
}

.hero-subtitle strong {
    display:inline-block;
    color:var(--gold);
    font-size:1.35rem;
}

.hero-description {
    font-size:1.1rem;
    color:#e5dce0;
    max-width:460px;
    margin-bottom:32px;
}

.hero-image-wrapper {
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    perspective:1000px;
    animation:emblem-reveal 1.4s cubic-bezier(.16,1,.3,1) both;
}

.hero-emblem {
    position:relative;
    isolation:isolate;
    width:100%;
    max-width:390px;
    animation:emblem-float 7s ease-in-out 1.4s infinite;
}

/* Decorative light stays behind the portrait and never receives pointer events. */
.hero-emblem::before {
    content:"";
    position:absolute;
    inset:-12%;
    z-index:-1;
    border-radius:50%;
    background:radial-gradient(circle,#ffd36a38 0%,#e8953820 48%,transparent 70%);
    pointer-events:none;
    animation:emblem-glow 5s ease-in-out infinite;
}

.hero-emblem::after {
    content:"";
    position:absolute;
    inset:-9px;
    border:1px solid #ffd36a55;
    border-top-color:#ffe8ac;
    border-bottom-color:transparent;
    border-radius:50%;
    pointer-events:none;
    animation:emblem-orbit 18s linear infinite;
}

.hero-emblem-face {
    position:relative;
    overflow:hidden;
    border-radius:50%;
    box-shadow:0 22px 55px #0006,0 0 32px #ffd36a18;
}

.hero-emblem-face::after {
    content:"";
    position:absolute;
    inset:-30%;
    background:linear-gradient(110deg,transparent 40%,#fff4 49%,#ffe8ac55 50%,transparent 60%);
    transform:translateX(-110%);
    pointer-events:none;
    animation:emblem-sheen 8s ease-in-out .65s infinite both;
}

@keyframes emblem-reveal {
    from {opacity:0;transform:translateY(35px) scale(.8) rotateY(-14deg);}
    to {opacity:1;transform:translateY(0) scale(1) rotateY(0);}
}

@keyframes emblem-float {
    0%,100% {transform:translateY(0);}
    50% {transform:translateY(-9px);}
}

@keyframes emblem-glow {
    0%,100% {opacity:.65;transform:scale(.96);}
    50% {opacity:1;transform:scale(1.04);}
}

@keyframes emblem-orbit {
    to {transform:rotate(360deg);}
}

@keyframes emblem-sheen {
    0% {transform:translateX(-110%);}
    20%,100% {transform:translateX(110%);}
}

.hero-logo {
    width:100%;
    max-width:390px;
    height:auto;
    border-radius:50%;
    box-shadow:0 16px 50px #0005;
}

.hero-cta {
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.btn {
    display:inline-flex;
    gap:16px;
    align-items:center;
    justify-content:center;
    padding:14px 21px;
    border:1px solid transparent;
    border-radius:6px;
    font-weight:700;
    min-height:48px;
    transition:background .2s,color .2s;
}

.btn-primary {
    background:var(--red);
    color:#fff;
}

.btn-primary:hover {
    background:var(--red-dark);
}

.hero-section .btn-primary {
    background:var(--gold);
    color:#30200b;
}

.hero-section .btn-primary:hover {
    background:#ffe4a3;
}

.btn-secondary {
    border-color:#b7a4ad;
    color:white;
}

.btn-secondary:hover {
    background:#ffffff15;
}

.section-title {
    font-size:clamp(2rem,3.2vw,3rem);
    font-weight:800;
    letter-spacing:-.045em;
    margin-bottom:22px;
}

.section-subtitle {
    color:var(--muted);
    font-size:1.1rem;
    max-width:530px;
}

.section-divider {
    height:3px;
    width:48px;
    background:var(--red);
    margin-bottom:28px;
}

.about-container {
    display:grid;
    grid-template-columns:1.15fr 1fr;
    gap:80px;
    align-items:center;
}

.about-text p {
    margin-bottom:16px;
    color:#50505a;
    font-size:1.05rem;
}

.trajectory-card {
    padding:32px;
    border:1px solid var(--line);
    border-radius:10px;
    background:var(--paper);
}

.trajectory-card .eyebrow {
    color:var(--red);
    font-size:.8rem;
}

.trajectory-card h3 {
    font-size:1.6rem;
    letter-spacing:-.03em;
}

.trajectory-list {
    margin:24px 0;
}

.trajectory-list li {
    display:flex;
    gap:16px;
    padding:14px 0;
    border-bottom:1px solid var(--line);
}

.trajectory-list span {
    color:var(--red);
    font-size:.875rem;
    font-weight:700;
}

.text-link {
    font-weight:700;
    color:var(--red);
    font-size:.95rem;
}

.propostas-section {
    background:var(--paper);
    border-block:1px solid var(--line);
}

.proposals-heading {
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:48px;
    margin-bottom:38px;
}

.proposals-heading .eyebrow {
    color:var(--red);
}

.proposals-heading .section-title {
    margin:0;
}

.proposals-heading .section-title span {
    color:var(--red);
}

.proposals-heading .section-subtitle {
    max-width:370px;
    margin-bottom:5px;
}

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

.proposta-card {
    display:flex;
    flex-direction:column;
    background:#fff;
    border:1px solid var(--line);
    border-top:3px solid var(--red);
    border-radius:8px;
    padding:28px;
    transition:border-color .2s,box-shadow .2s;
}

.proposta-card:hover {
    border-color:#b68b91;
    box-shadow:0 10px 24px #25253609;
}

.proposal-top {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom:26px;
}

.proposal-category {
    font-weight:700;
    color:var(--red);
    font-size:.875rem;
}

.proposal-number {
    font:700 1.7rem var(--heading);
    color:#d5c1c4;
}

.proposta-title {
    font-size:1.4rem;
    letter-spacing:-.025em;
    margin-bottom:16px;
}

.proposta-card>p {
    color:var(--muted);
    margin-bottom:26px;
}

.proposal-source {
    margin-top:auto;
    border-top:1px solid #e9e9ee;
    padding-top:18px;
    display:flex;
    justify-content:space-between;
    gap:12px;
    color:var(--red);
    font-size:.875rem;
    font-weight:700;
}

.proposal-source:hover {
    text-decoration:underline;
}

.source-note {
    display:flex;
    gap:40px;
    justify-content:space-between;
    align-items:center;
    margin-top:28px;
    font-size:.875rem;
    color:var(--muted);
}

.source-note p {
    max-width:700px;
}

.source-note a {
    flex-shrink:0;
}

.videos-section .section-subtitle {
    margin-bottom:22px;
}

.video-status {
    font-size:.875rem;
    color:var(--muted);
    margin-bottom:18px;
}

.video-status:empty {
    display:none;
}

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

.video-card {
    border:1px solid var(--line);
    border-radius:8px;
    overflow:hidden;
    background:#fff;
}

.video-link {
    display:block;
    height:100%;
}

.thumbnail-wrapper {
    position:relative;
    aspect-ratio:16/9;
    background:#222;
    overflow:hidden;
}

.thumbnail-wrapper img {
    width:100%;
    height:100%;
    object-fit:cover;
}

.play-overlay {
    position:absolute;
    inset:0;
    display:grid;
    place-items:center;
    background:#0002;
}

.play-icon {
    display:grid;
    place-items:center;
    border-radius:50%;
    width:48px;
    height:48px;
    background:var(--red);
    color:white;
}

.video-info {
    padding:22px;
}

.video-title {
    font-size:1rem;
    line-height:1.5;
}

.video-date {
    display:block;
    color:var(--muted);
    font-size:.875rem;
    margin-top:12px;
}

.video-link:hover .video-title {
    color:var(--red);
}

.video-fallback {
    grid-column:1/-1;
    border:1px solid var(--line);
    padding:24px;
    border-radius:6px;
}

.main-footer {
    background:#202025;
    color:#e8e8ec;
    padding-top:56px;
}

.footer-container {
    display:grid;
    grid-template-columns:1.2fr .8fr 1fr;
    gap:48px;
    margin-bottom:48px;
}

.footer-brand h3 {
    font-size:1.5rem;
    margin-bottom:18px;
}

.footer-brand span {
    color:var(--gold);
}

.footer-container h4 {
    font-size:1rem;
    color:var(--gold);
    margin-bottom:16px;
}

.footer-container p,.footer-container li {
    font-size:.95rem;
    margin-bottom:10px;
}

.footer-container a:hover {
    text-decoration:underline;
    text-underline-offset:4px;
}

.footer-source {
    font-size:.9rem;
    color:var(--gold);
}

.footer-bottom {
    border-top:1px solid #ffffff20;
    padding:22px;
    text-align:center;
    font-size:.875rem;
    color:#c5c5ce;
}

@media(max-width:1000px) {
    .hero-content {
        gap:32px;
    }

    .hero-cta {
        flex-direction:column;
        align-items:flex-start;
    }

    .nav-list {
        gap:16px;
    }

    .about-container {
        gap:32px;
    }

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

    .source-note {
        align-items:flex-start;
        flex-direction:column;
        gap:12px;
    }

}

@media(max-width:760px) {
    .container {
        width:calc(100% - 40px);
    }

    .section-padding {
        padding:56px 0;
    }

    .main-header {
        padding:12px 0;
    }

    .logo {
        font-size:1.2rem;
    }

    .mobile-menu-toggle {
        display:flex;
    }

    .nav-list {
        display:none;
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        padding:20px;
        background:white;
        border-bottom:1px solid var(--line);
        box-shadow:0 8px 16px #0001;
        align-items:stretch;
    }

    .nav-list.active {
        display:flex;
        flex-direction:column;
        gap:4px;
    }

    .nav-link {
        display:block;
        padding:12px;
    }

    .hero-content {
        grid-template-columns:1fr;
        gap:32px;
        padding-block:36px 42px;
    }

    .hero-text-wrapper {
        order:2;
    }

    .hero-image-wrapper {
        order:1;
    }

    .hero-emblem {
        max-width:220px;
    }

    .hero-title {
        font-size:3.25rem;
    }

    .hero-title span {
        display:inline;
    }

    .hero-section .eyebrow {
        font-size:.75rem;
        letter-spacing:.09em;
    }

    .hero-description {
        font-size:1rem;
    }

    .hero-cta {
        align-items:stretch;
    }

    .hero-subtitle {
        font-size:1rem;
    }

    .about-container {
        grid-template-columns:1fr;
        gap:24px;
    }

    .trajectory-card {
        padding:24px;
    }

    .proposals-heading {
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
    }

    .proposals-heading .section-subtitle {
        max-width:none;
    }

    .propostas-grid,.videos-grid {
        grid-template-columns:1fr;
    }

    .proposta-card {
        padding:24px;
    }

    .proposal-top {
        margin-bottom:20px;
    }

    .footer-container {
        grid-template-columns:1fr;
        gap:24px;
    }

    .btn {
        padding-inline:16px;
    }

    .source-note a {
        flex-shrink:1;
    }

}

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

    /* The hero runs continuously by design; only transitions and scrolling are reduced. */
    *, *::before, *::after {
        transition:none!important;
    }

}
