/* ===== MaisLocal Vale de Santarém / Home ===== */

:root {
    --bg: #f5f0e8;
    --bg2: #ede8dc;
    --surface: #faf7f2;
    --ink: #1c1712;
    --ink-soft: #6b6458;
    --gold: #b8860b;
    --gold-lt: #d4a820;
    --gold-pale: #f0e4b8;
    --border: rgba(28,23,18,.1);
    --border2: rgba(28,23,18,.18);
    --radius: 6px;
    --nav-h: 64px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--ink);
    overflow-x: hidden;
}

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

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

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--bg2);
}

::-webkit-scrollbar-thumb {
    background: var(--border2);
    border-radius: 3px;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 310;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 40px 10px;
    gap: 16px;
    background: linear-gradient(to bottom, rgba(28,23,18,.74) 0%, rgba(28,23,18,.42) 64%, rgba(28,23,18,0) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.site-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

    .site-logo img {
        display: block;
        height: 60px;
        width: auto;
        max-height: none;
    }

.site-lang {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.lang-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.55);
    background: rgba(255,255,255,.86);
    color: #111;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: .2s ease;
}

    .lang-pill:hover {
        background: #fff;
        border-color: #fff;
    }

    .lang-pill.active,
    .lang-pill.is-active,
    .lang-pill[aria-current="true"] {
        background: var(--gold);
        color: #fff;
        border-color: var(--gold);
    }

    .lang-pill.active:hover,
    .lang-pill.is-active:hover,
    .lang-pill[aria-current="true"]:hover {
        background: var(--gold-lt);
        border-color: var(--gold-lt);
    }

.lang-flag {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(0,0,0,.15);
}

nav {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    padding: 0 40px;
    height: var(--nav-h);
    background: var(--ink);
    box-shadow: 0 2px 24px rgba(0,0,0,.25);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.nav-link {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: rgba(255,255,255,.72);
    padding: 7px 13px;
    border-radius: var(--radius);
    transition: color .2s, background .2s;
    background: none;
    border: none;
    cursor: pointer;
}

    .nav-link:hover {
        color: #fff;
        background: rgba(255,255,255,.08);
    }

.nav-cta {
    margin-left: 10px;
    padding: 8px 20px;
    border-radius: 999px;
    background: var(--gold);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .15s;
    white-space: nowrap;
}

    .nav-cta:hover {
        background: var(--gold-lt);
        transform: translateY(-1px);
    }

.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

    .nav-burger span {
        display: block;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        transition: transform .3s, opacity .3s;
        transform-origin: center;
    }

    .nav-burger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-burger.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-burger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

.nav-drawer {
    display: none;
    position: fixed;
    top: calc(84px + var(--nav-h));
    left: 0;
    right: 0;
    background: var(--ink);
    z-index: 299;
    padding: 16px 20px 24px;
    border-top: 1px solid rgba(255,255,255,.08);
    flex-direction: column;
    gap: 2px;
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
}

    .nav-drawer.open {
        display: flex;
    }

    .nav-drawer .nav-link {
        display: block;
        padding: 12px 16px;
        font-size: 14px;
        border-radius: var(--radius);
        color: rgba(255,255,255,.8);
    }

    .nav-drawer .nav-cta {
        display: block;
        text-align: center;
        margin: 10px 0 0;
        padding: 14px 20px;
        font-size: 13px;
        border-radius: 999px;
    }

.hero {
    position: relative;
    height: 100svh;
    min-height: 560px;
    overflow: hidden;
    margin-top: 0;
}

.slides {
    position: absolute;
    inset: 0;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    pointer-events: none;
}

    .slide.active {
        opacity: 1;
        pointer-events: auto;
    }

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.07);
    transition: transform 7s ease;
}

.slide.active .slide-bg {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(to right, rgba(28,23,18,.86) 0%, rgba(28,23,18,.52) 52%, rgba(28,23,18,.18) 100%), linear-gradient(to top, rgba(28,23,18,.62) 0%, transparent 46%);
}

.slide-content {
    position: absolute;
    left: 9%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 700px;
    z-index: 3;
}

.slide-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold-lt);
    margin-bottom: 20px;
}

    .slide-eyebrow::before {
        content: '';
        display: block;
        width: 28px;
        height: 1.5px;
        background: var(--gold-lt);
        flex-shrink: 0;
    }

.slide-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5.5vw, 68px);
    font-weight: 600;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -.01em;
}

    .slide-title em {
        color: var(--gold-pale);
    }

.slide-desc {
    font-size: 15px;
    color: rgba(255,255,255,.76);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 440px;
}

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

.btn-primary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    border-radius: 999px;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: #fff;
    border: 2px solid var(--gold);
    box-shadow: 0 4px 20px rgba(184,134,11,.35);
}

    .btn-primary:hover {
        background: var(--gold-lt);
        border-color: var(--gold-lt);
        transform: translateY(-2px);
    }

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.4);
}

    .btn-ghost:hover {
        background: rgba(255,255,255,.1);
        border-color: rgba(255,255,255,.75);
        transform: translateY(-2px);
    }

.slider-nav {
    position: absolute;
    bottom: 36px;
    right: 44px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 10;
}

.slider-dots {
    display: flex;
    gap: 7px;
}

.dot-btn {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,.38);
    border: none;
    cursor: pointer;
    transition: all .3s;
    padding: 0;
}

    .dot-btn.active {
        width: 22px;
        border-radius: 3px;
        background: var(--gold-lt);
    }

.slide-counter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    color: rgba(255,255,255,.45);
    letter-spacing: .08em;
}

    .slide-counter strong {
        color: rgba(255,255,255,.88);
    }

.slider-arrows {
    display: flex;
    gap: 8px;
}

.arrow-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.28);
    background: rgba(255,255,255,.06);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    backdrop-filter: blur(6px);
}

    .arrow-btn:hover {
        background: rgba(255,255,255,.18);
        border-color: rgba(255,255,255,.65);
    }

.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--gold);
    z-index: 10;
    transition: width .08s linear;
}

.scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    opacity: .55;
}

    .scroll-hint span {
        font-size: 9.5px;
        letter-spacing: .16em;
        text-transform: uppercase;
        color: #fff;
    }

.scroll-mouse {
    width: 20px;
    height: 32px;
    border: 1.5px solid rgba(255,255,255,.45);
    border-radius: 999px;
    position: relative;
}

    .scroll-mouse::after {
        content: '';
        position: absolute;
        top: 5px;
        left: 50%;
        transform: translateX(-50%);
        width: 3px;
        height: 6px;
        background: #fff;
        border-radius: 999px;
        animation: scrollDot 2s infinite;
    }

@keyframes scrollDot {
    0%, 100% {
        top: 5px;
        opacity: 1;
    }

    70% {
        top: 14px;
        opacity: 0;
    }
}

.section {
    padding: 88px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    margin-bottom: 52px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

    .section-eyebrow::before {
        content: '';
        display: block;
        width: 22px;
        height: 1.5px;
        background: var(--gold);
    }

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 3.5vw, 46px);
    font-weight: 600;
    line-height: 1.15;
    color: var(--ink);
    letter-spacing: -.01em;
}

    .section-title em {
        color: var(--gold);
    }

.section-sub {
    margin-top: 14px;
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.72;
    max-width: 520px;
}

.cta-section {
    background: var(--ink);
    position: relative;
    overflow: hidden;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    position: relative;
}

.cta-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: rgba(255,255,255,.07);
    z-index: 5;
}

.cta-card {
    position: relative;
    padding: 68px 56px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    cursor: pointer;
    transition: flex .4s ease;
}

    .cta-card:hover {
        flex: 1.1;
    }

.cta-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .22;
    transition: opacity .4s, transform .6s;
}

.cta-card:hover .cta-card-bg {
    opacity: .32;
    transform: scale(1.04);
}

.cta-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28,23,18,.92) 0%, rgba(28,23,18,.4) 60%, transparent 100%);
}

.cta-card-body {
    position: relative;
    z-index: 2;
}

.cta-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 22px;
    border: 1px solid rgba(255,255,255,.1);
}

.cta-label {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 11px;
}

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(26px, 2.8vw, 38px);
    font-weight: 600;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 15px;
}

.cta-desc {
    font-size: 14px;
    color: rgba(255,255,255,.62);
    line-height: 1.72;
    margin-bottom: 30px;
    max-width: 340px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    border: 2px solid;
    cursor: pointer;
    transition: all .2s;
}

.cta-btn-gold {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

    .cta-btn-gold:hover {
        background: var(--gold-lt);
        border-color: var(--gold-lt);
        transform: translateY(-2px);
    }

.cta-btn-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.38);
}

    .cta-btn-white:hover {
        background: rgba(255,255,255,.1);
        border-color: #fff;
        transform: translateY(-2px);
    }

.news-section,
.section.news-section {
    background: var(--bg);
    position: relative;
}

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

.news-section .section-header {
    margin-bottom: 52px;
}

.news-section .news-grid {
    margin-top: 0;
}

.news-grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1px;
    background: var(--border2);
    border: 1px solid var(--border2);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(28,23,18,.07);
}

.nc {
    background: var(--surface);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: background .2s;
}

    .nc:hover {
        background: var(--bg2);
    }

    .nc.featured {
        grid-row: 1 / 3;
    }

.nc-img {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

    .nc-img::before {
        content: '';
        display: block;
        padding-top: 56.25%;
    }

.nc.featured .nc-img::before {
    padding-top: 55%;
}

.nc-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.nc:hover .nc-img img {
    transform: scale(1.04);
}

.nc-body {
    padding: 22px 26px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.nc-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 11px;
    flex-wrap: wrap;
}

.nc-date {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.nc-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 2px 9px;
    border-radius: 999px;
}

.tag-alert {
    background: rgba(139,58,42,.12);
    color: #6b2010;
}

.tag-notice {
    background: rgba(58,88,131,.12);
    color: #1a3860;
}

.tag-event {
    background: rgba(58,92,58,.12);
    color: #2a4a2a;
}

.tag-local {
    background: rgba(184,134,11,.12);
    color: #7a5800;
}

.nc-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--ink);
    transition: color .2s;
    flex: 1;
}

.nc.featured .nc-title {
    font-size: 22px;
    margin-bottom: 12px;
}

.nc:not(.featured) .nc-title {
    font-size: 17px;
    margin-bottom: 9px;
}

.nc:hover .nc-title {
    color: var(--gold);
}

.nc-excerpt {
    font-size: 13.5px;
    color: var(--ink-soft);
    line-height: 1.65;
    margin-bottom: 18px;
}

.nc:not(.featured) .nc-excerpt {
    font-size: 13px;
    margin-bottom: 14px;
}

.nc-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--gold);
    transition: gap .2s;
    margin-top: auto;
}

.nc:hover .nc-link {
    gap: 11px;
}

.fade-up {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s ease, transform .6s ease;
}

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

footer {
    background: var(--ink);
    color: rgba(255,255,255,.6);
    padding: 60px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 44px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

    .footer-brand-name span {
        color: var(--gold-lt);
        font-style: italic;
    }

.footer-brand-desc {
    font-size: 13.5px;
    line-height: 1.72;
    margin-bottom: 22px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.05);
    color: rgba(255,255,255,.58);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: all .2s;
}

    .social-btn:hover {
        background: rgba(255,255,255,.12);
        color: #fff;
        border-color: rgba(255,255,255,.4);
    }

.footer-col-title {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.38);
    margin-bottom: 18px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    font-size: 14px;
    color: rgba(255,255,255,.6);
    transition: color .2s;
    cursor: pointer;
}

    .footer-link:hover {
        color: var(--gold-lt);
    }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,.38);
}

    .footer-bottom-logo sup {
        font-size: 65%;
        vertical-align: super;
    }

.prr-badge {
    width: 100%;
    max-width: 520px;
    display: block;
}

    .prr-badge a {
        width: 100%;
        display: block;
    }

    .prr-badge img {
        width: 100%;
        height: auto;
        display: block;
    }

@media (max-width: 1024px) {
    .container {
        padding: 0 28px;
    }

    .cta-card {
        padding: 56px 40px;
    }

    .nc-body {
        padding: 18px 20px 22px;
    }

    .nc.featured .nc-title {
        font-size: 20px;
    }
}

@media (max-width: 860px) {
    nav {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

    .hero {
        min-height: 480px;
    }

    .slide-content {
        left: 6%;
        right: 6%;
        max-width: 100%;
    }

    .slide-desc {
        max-width: 100%;
        font-size: 14px;
        margin-bottom: 28px;
    }

    .btn-primary, .btn-ghost {
        padding: 12px 22px;
        font-size: 12px;
    }

    .slider-nav {
        bottom: 24px;
        right: 18px;
        gap: 10px;
    }

    .slide-counter, .scroll-hint {
        display: none;
    }

    .cta-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .cta-divider {
        display: none;
    }

    .cta-card {
        padding: 52px 32px;
        min-height: 320px;
        flex: none !important;
    }

    .cta-card-bg {
        opacity: .28;
    }

    .news-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
    }

    .nc.featured {
        grid-column: 1 / 3;
        grid-row: 1;
        flex-direction: row;
        min-height: 260px;
    }

        .nc.featured .nc-img {
            width: 45%;
            flex-shrink: 0;
        }

            .nc.featured .nc-img::before {
                padding-top: 100%;
            }

        .nc.featured .nc-body {
            padding: 28px 28px;
        }

    .section {
        padding: 64px 0;
    }

    .container {
        padding: 0 20px;
    }

    .section-header {
        margin-bottom: 36px;
    }

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

        .footer-grid > div:first-child {
            grid-column: 1 / 3;
        }
}

@media (max-width: 767px) {
    .site-header {
        padding: 12px 20px 8px;
        background: linear-gradient(to bottom, rgba(28,23,18,.78) 0%, rgba(28,23,18,.45) 68%, rgba(28,23,18,0) 100%);
    }

    .site-logo img {
        height: 44px;
        width: auto;
    }

    .site-lang {
        gap: 8px;
    }

    .lang-pill {
        min-height: 34px;
        padding: 6px 10px;
        font-size: 11px;
    }

    .lang-flag {
        width: 16px;
        height: 16px;
    }

    nav {
        top: 64px;
    }

    .nav-drawer {
        top: calc(64px + var(--nav-h));
    }

    .prr-badge {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .slide-title {
        font-size: clamp(30px, 9vw, 44px);
        margin-bottom: 14px;
    }

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

    .slide-desc {
        font-size: 13.5px;
        margin-bottom: 24px;
    }

    .slide-actions {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .btn-primary, .btn-ghost {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .cta-card {
        padding: 40px 24px;
        min-height: 280px;
    }

    .cta-title {
        font-size: 26px;
    }

    .cta-desc {
        font-size: 13.5px;
        margin-bottom: 24px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .nc.featured {
        grid-column: 1;
        grid-row: auto;
        flex-direction: column;
    }

        .nc.featured .nc-img {
            width: 100%;
        }

            .nc.featured .nc-img::before {
                padding-top: 56.25%;
            }

        .nc.featured .nc-body {
            padding: 20px 20px 24px;
        }

        .nc.featured .nc-title {
            font-size: 19px;
        }

    .nc:not(.featured) .nc-title {
        font-size: 16px;
    }

    .nc-excerpt {
        font-size: 13px;
    }

    .nc-body {
        padding: 18px 18px 22px;
    }

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

        .footer-grid > div:first-child {
            grid-column: 1;
        }

    footer {
        padding: 44px 0 24px;
    }

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

    .section-title {
        font-size: 28px;
    }

    .section {
        padding: 52px 0;
    }
}

@media (max-width: 380px) {
    nav {
        padding: 0 14px;
    }

    .container {
        padding: 0 16px;
    }

    .cta-card {
        padding: 36px 20px;
    }
}

/* ===== Página PRR ===== */

.prr-info-card {
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(28,23,18,.07);
}

.prr-info-main {
    padding: 46px;
}

.prr-text {
    margin-top: 20px;
    font-size: 14.5px;
    color: var(--ink-soft);
    line-height: 1.75;
    max-width: 780px;
}

.prr-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.prr-ghost-dark {
    color: var(--ink);
    border-color: var(--border2);
}

    .prr-ghost-dark:hover {
        color: var(--ink);
        background: var(--bg2);
        border-color: var(--gold);
    }

.prr-logo-full {
    width: 100%;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 28px 46px;
}

    .prr-logo-full a {
        display: block;
        width: 100%;
    }

    .prr-logo-full img {
        width: 100%;
        height: auto;
        display: block;
    }

.prr-project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

    .prr-project-meta div {
        min-width: 190px;
        padding: 16px 18px;
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: 10px;
    }

    .prr-project-meta span {
        display: block;
        font-size: 10.5px;
        font-weight: 600;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 6px;
    }

    .prr-project-meta strong {
        display: block;
        font-size: 17px;
        color: var(--ink);
    }

.campaigns-section {
    background: radial-gradient(circle at top right, rgba(184,134,11,.10), transparent 32rem), #fffaf3;
}

.news-section .nc-img {
    background: #f7f1e6;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .news-section .nc-img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.news-section .nc:hover .nc-img img {
    transform: none;
}