@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Oswald:wght@500;600;700&display=swap');

:root {
    --ink: #11110f;
    --ink-2: #1b1a17;
    --paper: #f5f3ed;
    --paper-2: #ebe7dd;
    --white: #fff;
    --accent: #f6aa06;
    --accent-2: #ffbf32;
    --muted: #747168;
    --line: rgba(17, 17, 15, .12);
    --radius: 22px;
    --shadow: 0 18px 60px rgba(20, 18, 10, .11);
    --max: 1180px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, Arial, sans-serif;
    line-height: 1.65
}

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

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

button {
    font: inherit
}

.container {
    width: min(var(--max), calc(100% - 40px));
    margin: auto
}

.eyebrow {
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent)
}

h1,
h2,
h3,
h4 {
    font-family: Oswald, Inter, sans-serif;
    line-height: 1.06;
    margin: 0
}

h1 {
    font-size: clamp(3.6rem, 10vw, 8.4rem);
    letter-spacing: -.045em
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    letter-spacing: -.025em
}

h3 {
    font-size: clamp(1.45rem, 2.5vw, 2rem)
}

p {
    margin: 0 0 1rem
}

.muted {
    color: var(--muted)
}

.section {
    padding: 92px 0
}

.section.compact {
    padding: 64px 0
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: end;
    margin-bottom: 38px
}

.section-head p {
    max-width: 620px;
    margin: 0;
    color: var(--muted)
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(17, 17, 15, .94);
    backdrop-filter: blur(16px);
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.nav {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    font-weight: 800;
    letter-spacing: .02em
}

.brand-mark {
    width: 36px;
    height: 36px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--accent);
    font-family: Oswald;
    font-size: .9rem
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px
}

.nav-links a {
    padding: 10px 12px;
    border-radius: 999px;
    font-size: .9rem;
    color: #d6d4ce
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(246, 170, 6, .14);
    color: var(--accent)
}

.menu-btn {
    display: none;
    border: 0;
    background: transparent;
    color: white;
    font-size: 1.5rem
}

.hero {
    min-height: calc(100vh - 74px);
    background: #111;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: end
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: #111
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.75) contrast(1.05)
}

.hero-carousel .hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.025);
    transition: opacity 1.35s ease, transform 7s ease;
    will-change: opacity, transform
}

.hero-carousel .hero-slide.active {
    opacity: 1;
    transform: scale(1)
}

.hero-bg:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 8, 7, .94) 0%, rgba(8, 8, 7, .68) 45%, rgba(8, 8, 7, .20) 100%), linear-gradient(0deg, rgba(8, 8, 7, .82), transparent 55%)
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 110px 0 72px;
    max-width: 850px
}

.hero h1 span {
    color: var(--accent)
}

.hero-copy {
    max-width: 650px;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: #d7d4cc;
    margin: 24px 0 30px
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    padding: 13px 20px;
    font-weight: 700;
    border: 1px solid transparent
}

.btn.primary {
    background: var(--accent);
    color: #111
}

.btn.ghost {
    border-color: rgba(255, 255, 255, .25);
    color: white;
    background: rgba(255, 255, 255, .04)
}

.stats {
    position: absolute;
    right: 3vw;
    bottom: 48px;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, 130px);
    gap: 10px
}

.stat {
    background: rgba(17, 17, 15, .72);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(12px);
    padding: 18px;
    border-radius: 18px
}

.stat strong {
    font: 700 2rem Oswald;
    color: var(--accent);
    display: block
}

.stat span {
    font-size: .78rem;
    color: #d2cec4
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center
}

.intro-card {
    background: var(--ink);
    color: white;
    border-radius: 28px;
    padding: 34px;
    box-shadow: var(--shadow)
}

.intro-card .quote {
    font: 600 clamp(1.6rem, 3vw, 2.4rem)/1.2 Oswald;
    margin: 20px 0
}

.intro-card .mini {
    font-size: .9rem;
    color: #bdb9af
}

.year-strip {
    display: flex;
    gap: 10px;
    overflow: auto;
    padding: 8px 2px 18px;
    scrollbar-width: thin
}

.year-chip {
    min-width: 92px;
    border: 1px solid var(--line);
    background: white;
    border-radius: 18px;
    padding: 18px 12px;
    text-align: center;
    font-weight: 800;
    transition: .2s
}

.year-chip:hover {
    transform: translateY(-3px);
    border-color: var(--accent)
}

.year-chip.win {
    background: var(--ink);
    color: white
}

.year-chip.win small {
    color: var(--accent)
}

.year-chip small {
    display: block;
    font-weight: 600;
    color: var(--muted);
    font-size: .7rem;
    margin-top: 4px
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.feature-card {
    min-height: 280px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: #222;
    color: white
}

.feature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform .45s
}

.feature-card:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .86), rgba(0, 0, 0, .08) 65%)
}

.feature-card:hover img {
    transform: scale(1.045)
}

.feature-card .content {
    position: absolute;
    z-index: 2;
    left: 22px;
    right: 22px;
    bottom: 20px
}

.feature-card .content p {
    font-size: .84rem;
    color: #d5d2ca;
    margin: .45rem 0 0
}

.feature-card.accent {
    background: var(--accent);
    color: #111
}

.feature-card.accent:after {
    display: none
}

.feature-card.accent .content {
    top: 22px;
    bottom: auto
}

.feature-card.accent .big {
    font: 700 5rem Oswald;
    line-height: 1;
    color: #111;
    margin-top: 30px
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.media-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    transition: .25s
}

.media-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.media-card .media {
    aspect-ratio: 4/3;
    background: #dedbd2;
    overflow: hidden
}

.media-card .media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.media-card .body {
    padding: 18px
}

.media-card .meta {
    font-size: .76rem;
    color: var(--muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em
}

.media-card h3 {
    margin-top: 4px
}

.pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px
}

.pair .media {
    aspect-ratio: 1/1.18
}

.trophy .media {
    background: linear-gradient(145deg, #1a1916, #28251d);
    padding: 16px
}

.trophy .media img {
    object-fit: contain
}

.page-hero {
    background: var(--ink);
    color: white;
    padding: 88px 0 56px
}

.page-hero h1 {
    font-size: clamp(3rem, 8vw, 6.7rem);
    max-width: 1000px
}

.page-hero p {
    max-width: 700px;
    color: #c8c5bc;
    font-size: 1.05rem;
    margin-top: 18px
}

.breadcrumbs {
    font-size: .78rem;
    color: #97938a;
    margin-bottom: 18px
}

.breadcrumbs span {
    color: var(--accent)
}

.timeline {
    position: relative;
    margin-top: 30px
}

.timeline:before {
    content: "";
    position: absolute;
    left: 110px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--line)
}

.timeline-item {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 52px;
    padding: 0 0 58px;
    position: relative
}

.timeline-year {
    font: 700 1.7rem Oswald;
    color: var(--accent);
    text-align: right
}

.timeline-item:after {
    content: "";
    position: absolute;
    left: 104px;
    top: 9px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--paper);
    border: 3px solid var(--accent)
}

.timeline-copy {
    max-width: 820px
}

.timeline-copy h3 {
    margin-bottom: 15px
}

.timeline-copy p {
    color: #48463f
}

.summary-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--line)
}

.summary-table th,
.summary-table td {
    padding: 13px 15px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    font-size: .9rem
}

.summary-table th {
    background: #ebe7dd;
    font-weight: 800
}

.summary-table tr:last-child td {
    border-bottom: 0
}

.badge {
    display: inline-flex;
    padding: 4px 9px;
    border-radius: 99px;
    background: rgba(246, 170, 6, .14);
    color: #9d6800;
    font-size: .72rem;
    font-weight: 800
}

.photo-years {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px
}

.photo-year {
    background: white;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 22px;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: .2s
}

.photo-year:hover {
    border-color: var(--accent);
    transform: translateY(-3px)
}

.photo-year strong {
    font: 700 2.2rem Oswald
}

.photo-year span {
    font-size: .8rem;
    color: var(--muted)
}

.photo-year.missing {
    background: #eeebe3
}

.notice {
    border: 1px dashed #b7af9f;
    border-radius: 20px;
    padding: 22px;
    background: #f0ede5;
    color: #5f5b51
}

.notice strong {
    color: var(--ink)
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.video-card {
    border-radius: 22px;
    overflow: hidden;
    background: #111;
    color: white
}

.video-card .thumb {
    aspect-ratio: 16/9;
    position: relative
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.video-card .play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, .18);
    font-size: 2rem
}

.video-card .play span {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--accent);
    color: #111;
    display: grid;
    place-items: center
}

.video-card .body {
    padding: 16px 18px 19px
}

.video-card small {
    color: #aaa
}

.footer {
    background: #111;
    color: white;
    padding: 56px 0 28px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr .65fr .9fr .7fr;
    gap: 34px
}

.footer p,
.footer a {
    color: #aaa
}

.footer h3 {
    margin-bottom: 12px
}

.footer-links {
    display: grid;
    gap: 8px
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 40px;
    padding-top: 22px;
    color: #777;
    font-size: .8rem;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(5, 5, 5, .93);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px
}

.lightbox.open {
    display: flex
}

.lightbox img {
    max-height: 88vh;
    max-width: 92vw;
    object-fit: contain;
    border-radius: 14px
}

.lightbox button {
    position: absolute;
    top: 18px;
    right: 22px;
    border: 0;
    background: none;
    color: white;
    font-size: 2.2rem;
    cursor: pointer
}

@media(max-width:980px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .gallery-grid,
    .video-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .stats {
        display: none
    }

    .intro-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .photo-years {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (prefers-reduced-motion:reduce) {
    .hero-carousel .hero-slide {
        transition: opacity .2s linear;
        transform: none
    }
}

.reduce-hero-motion .hero-carousel .hero-slide {
    transform: none
}

@media(max-width:760px) {
    .container {
        width: min(100% - 28px, var(--max))
    }

    .section {
        padding: 68px 0
    }

    .section-head {
        display: block
    }

    .section-head p {
        margin-top: 12px
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
        background: #111;
        padding: 14px;
        flex-direction: column;
        align-items: stretch;
        border-top: 1px solid rgba(255, 255, 255, .08)
    }

    .nav-links.open {
        display: flex
    }

    .menu-btn {
        display: block
    }

    .hero {
        min-height: 78vh
    }

    .hero-bg:after {
        background: linear-gradient(0deg, rgba(8, 8, 7, .94), rgba(8, 8, 7, .40))
    }

    .hero-content {
        padding: 80px 0 48px
    }

    .hero h1 {
        font-size: clamp(3.4rem, 19vw, 5.8rem)
    }

    .card-grid,
    .gallery-grid,
    .video-grid,
    .photo-years {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .timeline:before {
        left: 12px
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-left: 38px
    }

    .timeline-year {
        text-align: left
    }

    .timeline-item:after {
        left: 6px
    }

    .summary-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap
    }

    .pair .media {
        aspect-ratio: 1/1.2
    }
}


/* ===== V2: galerias de fotos + trofeus ===== */
.photo-years-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.photo-year-card {
    position: relative;
    min-height: 250px;
    border-radius: 24px;
    overflow: hidden;
    background: #1b1a17;
    color: white;
    border: 1px solid rgba(17, 17, 15, .10);
    box-shadow: 0 10px 32px rgba(20, 18, 10, .07);
    transition: transform .25s, box-shadow .25s
}

.photo-year-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow)
}

.photo-year-card .cover {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #24221d, #141411);
    overflow: hidden
}

.photo-year-card .cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .78;
    transition: transform .5s, opacity .35s
}

.photo-year-card:hover .cover img {
    transform: scale(1.045);
    opacity: .92
}

.photo-year-card .cover:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(9, 9, 8, .93) 0%, rgba(9, 9, 8, .18) 72%)
}

.photo-year-card .fallback {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font: 700 5rem Oswald;
    color: rgba(246, 170, 6, .16);
    letter-spacing: -.05em
}

.photo-year-card .content {
    position: absolute;
    z-index: 2;
    left: 20px;
    right: 20px;
    bottom: 18px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px
}

.photo-year-card strong {
    font: 700 2.35rem Oswald;
    line-height: 1;
    color: white
}

.photo-year-card span {
    font-size: .73rem;
    color: #c9c5bb;
    display: block;
    margin-top: 5px
}

.photo-year-card .arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--accent);
    color: #111;
    font-weight: 900;
    flex: 0 0 auto
}

.gallery-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 26px;
    flex-wrap: wrap
}

.year-nav {
    display: flex;
    gap: 8px;
    overflow: auto;
    padding-bottom: 5px;
    scrollbar-width: thin;
    max-width: 100%
}

.year-nav a {
    flex: 0 0 auto;
    border: 1px solid var(--line);
    background: white;
    border-radius: 999px;
    padding: 8px 13px;
    font-size: .78rem;
    font-weight: 800
}

.year-nav a:hover,
.year-nav a.active {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--accent)
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 9px
}

.photo-thumb {
    display: block;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 13px;
    background: #dedbd2;
    position: relative
}

.photo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s, filter .35s
}

.photo-thumb:hover img {
    transform: scale(1.055);
    filter: brightness(.88)
}

.photo-thumb:after {
    content: "↗";
    position: absolute;
    right: 9px;
    bottom: 9px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(17, 17, 15, .72);
    color: white;
    opacity: 0;
    transform: translateY(4px);
    transition: .2s
}

.photo-thumb:hover:after {
    opacity: 1;
    transform: none
}

.gallery-count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: .88rem
}

.gallery-count strong {
    color: var(--ink)
}

.gallery-intro {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: end;
    margin-bottom: 30px
}

.gallery-intro p {
    max-width: 650px;
    color: var(--muted);
    margin: 10px 0 0
}

.photo-missing-note {
    display: none;
    background: #fff7df;
    border: 1px solid rgba(246, 170, 6, .35);
    padding: 14px 16px;
    border-radius: 14px;
    margin: 0 0 24px;
    color: #71510e;
    font-size: .9rem
}

.photo-missing-note.show {
    display: block
}

.trophy-showcase {
    padding: 72px 0 88px;
    background: radial-gradient(circle at 85% 15%, rgba(246, 170, 6, .10), transparent 28%), var(--paper)
}

.trophy-summary {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 34px;
    align-items: end;
    margin-bottom: 34px
}

.trophy-summary-copy p {
    max-width: 650px;
    color: var(--muted);
    margin: 12px 0 0
}

.trophy-number {
    display: flex;
    gap: 10px;
    align-items: center;
    background: var(--ink);
    color: white;
    border-radius: 20px;
    padding: 15px 19px
}

.trophy-number strong {
    font: 700 2.2rem Oswald;
    color: var(--accent);
    line-height: 1
}

.trophy-number span {
    font-size: .75rem;
    color: #c9c5bb;
    line-height: 1.25
}

.trophy-grid-v2 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px
}

.trophy-card-v2 {
    position: relative;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s
}

.trophy-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 38px rgba(20, 18, 10, .11)
}

.trophy-card-v2 .trophy-image {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1.18;
    padding: 16px 16px 8px;
    background: linear-gradient(180deg, #fff, #f0ede5)
}

.trophy-card-v2 .trophy-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 12px 10px rgba(38, 29, 5, .14));
    transition: transform .35s
}

.trophy-card-v2:hover .trophy-image img {
    transform: translateY(-3px) scale(1.025)
}

.trophy-card-v2 .trophy-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px 14px;
    border-top: 1px solid var(--line)
}

.trophy-card-v2 .trophy-info strong {
    font: 700 1.25rem Oswald
}

.trophy-card-v2 .trophy-info span {
    font-size: .66rem;
    text-transform: uppercase;
    letter-spacing: .09em;
    font-weight: 800;
    color: #9a9589
}

.trophy-years {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 27px
}

.trophy-years span {
    font: 600 .76rem Inter;
    padding: 7px 11px;
    background: rgba(246, 170, 6, .11);
    border: 1px solid rgba(246, 170, 6, .22);
    border-radius: 999px;
    color: #785000
}

.lightbox figure {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 92vw
}

.lightbox figcaption {
    color: #d6d2c9;
    font-size: .82rem;
    margin-top: 12px;
    text-align: center;
    min-height: 1.3em
}

.lightbox-nav {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, .10) !important;
    border: 1px solid rgba(255, 255, 255, .17) !important;
    color: white !important;
    font-size: 2rem !important;
    display: grid;
    place-items: center;
    cursor: pointer;
    backdrop-filter: blur(8px)
}

.lightbox-prev {
    left: 22px;
    right: auto !important
}

.lightbox-next {
    right: 22px !important
}

.lightbox-close {
    z-index: 3
}

@media(max-width:1100px) {
    .photo-years-v2 {
        grid-template-columns: repeat(3, 1fr)
    }

    .photo-gallery {
        grid-template-columns: repeat(4, 1fr)
    }

    .trophy-grid-v2 {
        grid-template-columns: repeat(4, 1fr)
    }
}

@media(max-width:820px) {
    .photo-years-v2 {
        grid-template-columns: repeat(2, 1fr)
    }

    .photo-gallery {
        grid-template-columns: repeat(3, 1fr)
    }

    .trophy-grid-v2 {
        grid-template-columns: repeat(3, 1fr)
    }

    .trophy-summary,
    .gallery-intro {
        grid-template-columns: 1fr
    }

    .trophy-number {
        justify-self: start
    }

    .trophy-card-v2:nth-child(3n+2) {
        transform: none
    }

    .trophy-card-v2:nth-child(3n+2):hover {
        transform: translateY(-5px)
    }
}

@media(max-width:560px) {
    .photo-years-v2 {
        grid-template-columns: 1fr 1fr;
        gap: 10px
    }

    .photo-year-card {
        min-height: 190px
    }

    .photo-year-card strong {
        font-size: 1.8rem
    }

    .photo-year-card .content {
        left: 15px;
        right: 15px;
        bottom: 14px
    }

    .photo-year-card .arrow {
        width: 34px;
        height: 34px
    }

    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 7px
    }

    .photo-thumb {
        border-radius: 10px
    }

    .trophy-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px
    }

    .trophy-card-v2 .trophy-image {
        padding: 10px 10px 5px
    }

    .trophy-showcase {
        padding: 54px 0 68px
    }

    .lightbox {
        padding: 18px
    }

    .lightbox-nav {
        width: 42px;
        height: 42px;
        font-size: 1.6rem !important
    }

    .lightbox-prev {
        left: 9px
    }

    .lightbox-next {
        right: 9px !important
    }
}

/* ===== V3: redes sociais ===== */
.social-links {
    display: grid;
    gap: 9px
}

.social-link {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 9px 10px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 14px;
    transition: .2s;
    background: rgba(255, 255, 255, .025)
}

.footer .social-link:hover {
    border-color: rgba(246, 170, 6, .48);
    background: rgba(246, 170, 6, .07);
    transform: translateY(-2px);
    color: white
}

.social-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(246, 170, 6, .12);
    color: var(--accent)
}

.social-icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8
}

.social-icon.youtube svg {
    fill: currentColor;
    stroke: none
}

.social-icon.youtube .play-shape {
    fill: #111
}

.social-link span:last-child {
    display: grid;
    line-height: 1.2
}

.social-link strong {
    font-size: .83rem;
    color: #eee
}

.social-link small {
    font-size: .69rem;
    color: #858178;
    margin-top: 3px
}

.video-channel-cta {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 20px 22px;
    margin: 28px 0 0;
    border-radius: 20px;
    background: linear-gradient(110deg, #171613, #242018);
    color: white;
    border: 1px solid rgba(246, 170, 6, .22);
    transition: .25s
}

.video-channel-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 38px rgba(20, 18, 10, .14);
    border-color: rgba(246, 170, 6, .5)
}

.video-channel-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: var(--accent);
    color: #111;
    display: grid;
    place-items: center
}

.video-channel-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor
}

.video-channel-icon .play-shape {
    fill: #fff
}

.video-channel-copy {
    display: grid
}

.video-channel-copy strong {
    font: 600 1.5rem Oswald;
    line-height: 1.12;
    margin: 3px 0 4px
}

.video-channel-copy small {
    color: #aaa;
    font-size: .82rem
}

.video-channel-arrow {
    font-size: .78rem;
    font-weight: 800;
    color: var(--accent);
    white-space: nowrap
}

@media(max-width:760px) {
    .video-channel-cta {
        grid-template-columns: auto 1fr
    }

    .video-channel-arrow {
        grid-column: 2
    }

    .social-link {
        max-width: 310px
    }
}


/* ===== V5 — alinhamento definitivo dos troféus + histórias das tarefas em modal ===== */
.developer-credit {
    color: var(--accent);
    font-weight: 700;
    transition: opacity .2s
}

.developer-credit:hover {
    opacity: .78;
    text-decoration: underline
}

/* Troféus: todos os cards partem exatamente da mesma linha. */
.trophy-grid-v2 {
    align-items: start
}

.trophy-card-v2 {
    transform: none
}

.trophy-card-v2:hover {
    transform: translateY(-5px)
}

.trophy-card-v2 .trophy-image {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    aspect-ratio: auto;
    height: 275px;
    padding: 18px 18px 10px
}

.trophy-card-v2 .trophy-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom
}

.trophy-card-v2 .trophy-info {
    justify-content: center;
    min-height: 54px;
    padding: 11px 12px;
    text-align: center
}

.trophy-card-v2 .trophy-info strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.28rem
}

.trophy-card-v2 .trophy-info strong .champion-star {
    color: #f6aa06 !important;
    font-family: Inter, Arial, sans-serif !important;
    font-size: 1.7rem !important;
    line-height: .8 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    filter: drop-shadow(0 2px 2px rgba(126, 83, 0, .18));
    transform: translateY(-1px)
}

/* Tarefas: volta ao visual de galeria fotográfica; os textos ficam apenas no modal. */
.task-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px
}

.task-photo-card {
    appearance: none;
    display: block;
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: white;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    color: var(--ink);
    text-align: left;
    transition: transform .25s, box-shadow .25s, border-color .25s
}

.task-photo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(246, 170, 6, .42)
}

.task-photo-media {
    display: block;
    position: relative;
    aspect-ratio: 4/3;
    background: #dedbd2;
    overflow: hidden
}

.task-photo-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s
}

.task-photo-card:hover .task-photo-media img {
    transform: scale(1.035)
}

.task-photo-cue {
    position: absolute;
    right: 14px;
    bottom: 14px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(17, 17, 15, .84);
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(5px);
    transition: .22s;
    backdrop-filter: blur(7px)
}

.task-photo-card:hover .task-photo-cue {
    opacity: 1;
    transform: none
}

.task-hidden-data {
    display: none !important
}

/* Modal vertical: foto em cima, conteúdo histórico abaixo. */
.task-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px
}

.task-modal.open {
    display: flex
}

.task-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 7, 6, .88);
    backdrop-filter: blur(8px)
}

.task-modal-panel {
    position: relative;
    z-index: 1;
    width: min(820px, 94vw);
    height: min(92vh, 900px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 24px;
    background: var(--paper);
    box-shadow: 0 30px 100px rgba(0, 0, 0, .45)
}

.task-modal-image {
    width: 100%;
    flex: 0 0 auto;
    background: #171613;
    overflow: hidden
}

.task-modal-image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 58vh;
    object-fit: cover
}

.task-modal-content {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 32px 38px 38px;
    scrollbar-width: thin;
    scrollbar-color: rgba(17, 17, 15, .24) transparent
}

.task-modal-content::-webkit-scrollbar {
    width: 6px
}

.task-modal-content::-webkit-scrollbar-track {
    background: transparent
}

.task-modal-content::-webkit-scrollbar-thumb {
    background: rgba(17, 17, 15, .20);
    border-radius: 999px
}

.task-modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(17, 17, 15, .34)
}

.task-modal-content h2 {
    font-size: clamp(2rem, 5vw, 3.35rem);
    margin: 5px 0 12px
}

.task-modal-caption {
    font-size: .86rem;
    font-style: italic;
    color: var(--muted);
    margin-bottom: 0
}

.task-modal-divider {
    height: 1px;
    background: var(--line);
    margin: 24px 0
}

.task-modal-story {
    font-size: .98rem;
    line-height: 1.78;
    color: #3f3d36;
    margin: 10px 0 0
}

.task-modal-close {
    position: absolute;
    right: 14px;
    top: 14px;
    z-index: 3;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(17, 17, 15, .13);
    border-radius: 50%;
    background: rgba(255, 255, 255, .95);
    color: #111;
    font-size: 1.65rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .16)
}

body.task-modal-open {
    overflow: hidden
}

@media(max-width:1000px) {
    .task-photo-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .trophy-card-v2 .trophy-image {
        height: 250px
    }
}

@media(max-width:760px) {
    .task-modal {
        padding: 12px
    }

    .task-modal-panel {
        height: 94vh
    }

    .task-modal-image img {
        max-height: 48vh
    }

    .task-modal-content {
        padding: 27px 22px 30px
    }

    .task-modal-close {
        right: 10px;
        top: 10px
    }

    .trophy-card-v2 .trophy-image {
        height: 220px
    }
}

@media(max-width:560px) {
    .task-photo-grid {
        grid-template-columns: 1fr
    }

    .trophy-card-v2 .trophy-image {
        height: 190px
    }

    .trophy-card-v2 .trophy-info strong {
        font-size: 1.05rem
    }

    .trophy-card-v2 .trophy-info strong .champion-star {
        font-size: 1.45rem !important
    }

    .task-photo-cue {
        opacity: 1;
        transform: none
    }
}

/* ===== V10: nova identidade visual da Home ===== */
.home-header .nav {
    justify-content: flex-end
}

.home-header .home-nav-spacer {
    display: none
}

.hero-v10 {
    min-height: calc(100vh - 74px);
    align-items: stretch
}

.hero-v10 .hero-bg:after {
    background: linear-gradient(90deg, rgba(5, 5, 4, .94) 0%, rgba(5, 5, 4, .72) 37%, rgba(5, 5, 4, .28) 72%, rgba(5, 5, 4, .38) 100%), linear-gradient(0deg, rgba(5, 5, 4, .82) 0%, rgba(5, 5, 4, .08) 55%, rgba(5, 5, 4, .18) 100%)
}

.hero-v10-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(430px, .92fr);
    gap: 56px;
    min-height: calc(100vh - 74px);
    padding-top: 52px;
    padding-bottom: 58px;
    align-items: stretch
}

.hero-v10-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0
}

.hero-brand-logo {
  width: 580px;
  max-width: none;
  height: auto;
  object-fit: contain;
  object-position: left top;
  margin-left:-20;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 10px 26px rgba(0,0,0,.28));
}

.hero-v10-copy {
    max-width: 650px
}

.hero-v10 h1 {
    font-size: clamp(2.15rem, 3.2vw, 3.45rem);
    letter-spacing: -.025em;
    white-space: nowrap
}

.hero-v10 h1 span {
    color: var(--accent)
}

.hero-v10 .hero-copy {
    max-width: 610px;
    font-size: clamp(.94rem, 1.15vw, 1.08rem);
    line-height: 1.75;
    color: #e1ded7;
    margin: 25px 0 100px
}

.hero-v10-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 12px;
    min-width: 0
}

.hero-v10 .stats {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 145px));
    gap: 14px;
    width: auto
}

.hero-v10 .stat {
    min-height: 160px;
    padding: 22px 20px;
    border-radius: 18px;
    background: rgba(13, 13, 12, .76);
    border-color: rgba(255, 255, 255, .24);
    display: flex;
    flex-direction: column;
    justify-content: center
}

.hero-v10 .stat strong {
    font-size: 2.35rem
}

.hero-v10 .stat span {
    font-size: .82rem;
    line-height: 1.55;
    margin-top: 7px
}

.hero-location {
    margin-top: 24px;
    color: var(--accent);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    text-align: center
}

@media(max-width:1100px) {
    .hero-v10-layout {
        grid-template-columns: 1fr 420px;
        gap: 28px
    }

    .hero-brand-logo {
        width: min(530px, 94%)
    }

    .hero-v10 .stats {
        grid-template-columns: repeat(3, 125px)
    }
}

@media(max-width:980px) {
    .home-header .nav {
        justify-content: space-between
    }

    .home-header .home-nav-spacer {
        display: block;
        width: 1px
    }

    .hero-v10 {
        min-height: auto
    }

    .hero-v10-layout {
        grid-template-columns: 1fr;
        gap: 42px;
        min-height: auto;
        padding-top: 46px;
        padding-bottom: 54px
    }

    .hero-v10-left {
        gap: 42px
    }

    .hero-brand-logo {
        width: min(560px, 88%);
        margin-top: 0
    }

    .hero-v10-right {
        align-items: flex-start;
        padding: 0
    }

    .hero-v10 .stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(120px, 1fr));
        width: min(100%, 520px)
    }

    .hero-location {
        text-align: left
    }
}

@media(max-width:760px) {
    .hero-v10 .hero-bg:after {
        background: linear-gradient(0deg, rgba(5, 5, 4, .94) 0%, rgba(5, 5, 4, .68) 62%, rgba(5, 5, 4, .48) 100%)
    }

    .hero-v10-layout {
        padding-top: 34px;
        padding-bottom: 42px;
        gap: 34px
    }

    .hero-brand-logo {
        width: min(430px, 94%)
    }

    .hero-v10-left {
        gap: 32px
    }

    .hero-v10 h1 {
        font-size: clamp(1.85rem, 8vw, 2.65rem);
        white-space: normal
    }

    .hero-v10 .hero-copy {
        font-size: .93rem;
        margin: 14px 0 20px
    }

    .hero-v10 .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        width: 100%
    }

    .hero-v10 .stat {
        min-height: 126px;
        padding: 14px 10px
    }

    .hero-v10 .stat strong {
        font-size: 1.75rem
    }

    .hero-v10 .stat span {
        font-size: .7rem
    }

    .hero-location {
        font-size: .68rem;
        line-height: 1.5;
        margin-top: 18px
    }

    .hero-v10 .actions {
        gap: 9px
    }

    .hero-v10 .btn {
        padding: 11px 15px;
        font-size: .84rem
    }
}

@media(max-width:480px) {
    .hero-v10 .stats {
        gap: 6px
    }

    .hero-v10 .stat {
        min-height: 116px;
        border-radius: 14px;
        padding: 12px 8px
    }

    .hero-v10 .stat strong {
        font-size: 1.55rem
    }

    .hero-v10 .stat span {
        font-size: .64rem
    }

    .hero-brand-logo {
        width: 100%
    }
}