:root {
    --navy: #0D1F2D;
    --navy-2: #163759;
    --gold: #C9A84C;
    --gold-2: #B89139;
    --gold-lt: #F0DFA0;
    --bg: #F8F9FA;
    --text: #1C2436;
    --muted: #6B7280;
    --border: #E5E7EB;
    --white: #FFFFFF;
    --danger: #B91C1C;
    --ok: #15803D;
    --radius: 12px;
    --shadow: 0 4px 20px rgba(13, 31, 45, 0.08);
    --shadow-lg: 0 10px 40px rgba(13, 31, 45, 0.12);
    --container: 1200px;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4, .logo {
    font-family: 'Outfit', sans-serif;
}

a {
    color: var(--navy);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: var(--gold);
}

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

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.site-header {
    background: rgba(13, 31, 45, 0.95);
    backdrop-filter: blur(10px);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgba(13, 31, 45, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 50px;
}

.site-header .logo {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand);
    padding: 10px 15px 15px 15px;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    border: none;
    z-index: 1001;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header .logo img {
    height: 170px;
    width: 170px;
    object-fit: cover;
    display: block;
    border-radius: 15px;
    filter: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Scroll State (Shrink Logo) --- */
.site-header.scrolled {
    background: rgba(13, 31, 45, 0.95);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.site-header.scrolled .container {
    padding: 10px 50px;
}

.site-header.scrolled .logo {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    top: 50%;
    transform: translate(-50%, -50%); /* Center it perfectly in the nav */
}

.site-header.scrolled .logo img {
    height: 50px;
    width: 50px;
    border-radius: 8px;
}

.site-nav {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 45px; /* Increased spacing */
    flex: 1;
}

.nav-right {
    justify-content: flex-end;
}

.site-nav a {
    color: var(--white);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.site-nav a:hover {
    color: var(--gold);
}

.btn-cta, .site-nav .btn-cta {
    position: relative;
    background: var(--gold);
    color: var(--navy) !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700 !important;
    transition: all 0.3s ease;
    z-index: 1;
}

.btn-cta:hover, .site-nav .btn-cta:hover {
    background: var(--white);
    color: var(--navy) !important;
    transform: translateY(-2px);
}

.btn-cta::after, .site-nav .btn-cta::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    background: var(--gold);
    z-index: -1;
    animation: pulse-gold 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulse-gold {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.15, 1.45); opacity: 0; }
}

/* Hero Section with Video */
.hero {
    position: relative;
    min-height: 85vh;
    height: auto;
    padding-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(13, 31, 45, 0.75), rgba(13, 31, 45, 0.4), rgba(13, 31, 45, 0.85));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding-top: 200px; /* Espaço para o logo de 170px */
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.1s ease-out;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.5);
    letter-spacing: -1.5px;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    opacity: 0.95;
    margin-bottom: 48px;
    max-width: 700px;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Glass Search Box */
.search-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 24px;
    border-radius: 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    width: 100%;
    text-align: left;
}

.search-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-field label {
    color: var(--gold-lt);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.search-box select, .search-box input {
    background-color: rgba(255, 255, 255, 0.98);
    border: none;
    padding: 14px 18px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    color: var(--navy);
    font-size: 14px;
}

.search-box select:focus, .search-box input:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(201, 168, 76, 0.4);
    background-color: var(--white);
}

.search-box button {
    height: 48px;
    margin-top: auto;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 12px;
}

/* Form controls */
input, select, textarea {
    width: 100%; padding: 12px 16px; border: 1px solid var(--border);
    border-radius: var(--radius); font-size: 15px; font-family: inherit; background: var(--white); color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1); }
select { appearance: none; -webkit-appearance: none; -moz-appearance: none; background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg width=%2212%22 height=%228%22 viewBox=%220 0 12 8%22 fill=%22none%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cpath d=%22M1 1.5L6 6.5L11 1.5%22 stroke=%22%236B7280%22 stroke-width=%222%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22/%3E%3C/svg%3E'); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
select::-ms-expand { display: none; }
label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; color: var(--navy); }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.help { font-size: 12px; color: var(--muted); margin-top: 6px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-2); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.btn-outline { background: transparent; border: 2px solid var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-danger { background: var(--danger); color: var(--white); }

/* Section Styles */
section { padding: 100px 0; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 36px; margin: 0 0 12px; color: var(--navy); font-weight: 800; }
.section-title p { color: var(--muted); margin: 0; font-size: 18px; }

section.bg-white { background: var(--white); }
section.bg-light { background: var(--bg); }
section.bg-navy { background: var(--navy); color: var(--white); }
section.bg-navy .section-title h2 { color: var(--gold-lt); }

/* Property grid */
.property-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 32px; }
.property-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
}
.property-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-lg); }
.property-card .cover { aspect-ratio: 4/3; background: #EEE center/cover no-repeat; position: relative; overflow: hidden; }
.property-card .cover img { transition: transform 0.6s ease; width: 100%; height: 100%; object-fit: cover; }
.property-card:hover .cover img { transform: scale(1.1); }
.property-card .badge {
    position: absolute; top: 15px; left: 15px;
    background: var(--gold); color: var(--navy);
    padding: 6px 14px; border-radius: 8px;
    font-size: 11px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1px;
}
.property-card .body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.property-card .code { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.property-card .title { font-size: 20px; margin: 10px 0 12px; color: var(--navy); font-weight: 700; line-height: 1.3; }
.property-card .loc { color: var(--muted); font-size: 15px; margin-bottom: 16px; display: flex; align-items: center; gap: 6px; }
.property-card .price { color: var(--navy); font-size: 24px; font-weight: 800; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--border); }
.property-card .meta { display: flex; gap: 16px; font-size: 14px; color: var(--muted); margin: 12px 0; }
.property-card .meta span { display: flex; align-items: center; gap: 5px; }

/* Listing layout */
.listing { display: grid; grid-template-columns: 320px 1fr; gap: 40px; }
@media (max-width: 900px) { .listing { grid-template-columns: 1fr; } }
.filters { background: var(--white); padding: 32px; border-radius: 20px; box-shadow: var(--shadow); position: sticky; top: 100px; border: 1px solid var(--border); }
.filters h3 { margin-top: 0; color: var(--navy); font-size: 20px; margin-bottom: 24px; }

/* Detail Page */
.detail-gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 12px; margin-bottom: 32px; max-height: 550px; overflow: hidden; border-radius: 24px; }
.detail-gallery .main { grid-row: span 2; aspect-ratio: 4/3; background: #EEE center/cover no-repeat; }
.detail-gallery .thumb { aspect-ratio: 4/3; background: #EEE center/cover no-repeat; transition: opacity 0.2s; }
.detail-gallery .thumb:hover { opacity: 0.9; }
@media (max-width: 700px) { .detail-gallery { grid-template-columns: 1fr; max-height: none; } .detail-gallery .main { grid-row: auto; } }

.detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
@media (max-width: 900px) { .detail-grid { grid-template-columns: 1fr; } }
.detail-info h1 { color: var(--navy); font-size: 36px; margin: 0 0 12px; font-weight: 800; }
.specs { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; padding: 32px; background: var(--bg); border-radius: 20px; margin: 32px 0; }
.specs .item { text-align: center; }
.specs .item strong { display: block; color: var(--navy); font-size: 22px; font-weight: 800; }
.specs .item span { font-size: 14px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

.contact-box { background: var(--white); padding: 32px; border-radius: 24px; box-shadow: var(--shadow-lg); position: sticky; top: 100px; border: 1px solid var(--border); }
.contact-box .price { font-size: 32px; color: var(--navy); font-weight: 800; margin-bottom: 24px; }
.whatsapp-btn {
    position: relative;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: #25D366; color: var(--white) !important; padding: 16px;
    border-radius: 12px; font-weight: 700; margin-bottom: 16px; font-size: 16px;
    z-index: 1;
}
.whatsapp-btn:hover {
    background: #1da851;
    transform: scale(1.02);
    color: var(--white) !important;
}
.whatsapp-btn::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    background: #25D366;
    z-index: -1;
    animation: pulse-waves 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulse-waves {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.08, 1.25); opacity: 0; }
}

/* Footer */
.site-footer { background: var(--navy); color: var(--white); padding: 100px 0 40px; margin-top: 80px; }
.site-footer .container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 48px; }
@media (min-width: 992px) {
  .site-footer .container { grid-template-columns: 1fr 200px 1.2fr; }
}
.site-footer h4 { color: var(--gold); font-size: 20px; margin-bottom: 28px; font-weight: 700; }
.site-footer a { color: rgba(255,255,255,0.7); display: block; margin-bottom: 12px; font-size: 15px; }
.site-footer a:hover { color: var(--gold); transform: translateX(5px); }
.copyright { text-align: center; padding-top: 40px; margin-top: 60px; border-top: 1px solid rgba(255,255,255,.1); font-size: 14px; opacity: 0.6; }

/* Alerts */
.alert { padding: 16px 20px; border-radius: var(--radius); margin-bottom: 24px; font-weight: 500; }
.alert-ok { background: #dcfce7; color: var(--ok); border-left: 5px solid var(--ok); }
.alert-err { background: #fee2e2; color: var(--danger); border-left: 5px solid var(--danger); }

/* Utilities */
.text-center { text-align: center; }
.mt-4 { margin-top: 24px; }
.mb-4 { margin-bottom: 24px; }

/* Mobile Toggle Icon */
.mobile-toggle {
    display: none;
    color: var(--white);
    cursor: pointer;
    z-index: 1002;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
}
.mobile-toggle svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 992px) {
    .site-header .container {
        padding: 15px 24px;
        min-height: 70px; /* Give header a base height since elements are absolute */
    }
    .mobile-toggle {
        display: block;
    }
    
    /* Responsive Logo */
    .site-header .logo {
        padding: 5px 10px 10px 10px;
        border-radius: 0 0 15px 15px;
    }
    .site-header .logo img {
        height: 80px;
        width: 80px;
    }
    .site-header.scrolled .logo img {
        height: 45px;
        width: 45px;
    }

    /* Mobile Menu Fullscreen */
    .site-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(13, 31, 45, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 999;
        gap: 25px; /* Espaço entre os blocos nav-left e nav-right */
        padding-top: 100px; /* Evita sobrepor o logo */
    }
    .site-nav.active {
        opacity: 1;
        visibility: visible;
    }
    .nav-left, .nav-right {
        flex: none; /* Impede que eles estiquem até o topo e rodapé */
        flex-direction: column;
        gap: 25px;
    }
    .nav-right {
        margin-top: 0; /* Removido pois usamos gap no site-nav */
    }
    .site-nav a {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    section { padding: 60px 0; }
    .hero { height: auto; padding: 100px 0 40px; }
    .hero-content { padding-top: 40px; } /* Menos espaço no mobile */
    .search-box { grid-template-columns: 1fr; padding: 24px; }
    .section-title h2 { font-size: 28px; }
}

/* Inner pages padding-top to avoid fixed header overlap */
body:not(.home-page) {
    padding-top: 210px;
}
@media (max-width: 992px) {
    body:not(.home-page) {
        padding-top: 130px;
    }
}

/* Contact Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-top: 40px;
}
.contact-info-card {
    background: linear-gradient(135deg, var(--navy), #162a3b);
    color: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid rgba(201, 168, 76, 0.15);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.contact-info-card h3 {
    color: var(--gold);
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 10px;
}
.contact-info-card p {
    font-size: 15px;
    opacity: 0.85;
    margin-bottom: 30px;
}
.info-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.info-item .icon {
    font-size: 20px;
    color: var(--gold);
    background: rgba(201, 168, 76, 0.15);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.info-item strong {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-lt);
    margin-bottom: 4px;
}
.info-item p {
    margin: 0;
    font-size: 15px;
    opacity: 0.95;
    line-height: 1.4;
}
.contact-info-card a.btn-gold {
    margin-top: auto !important;
}
.contact-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.contact-form-card h3 {
    color: var(--navy);
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 10px;
}
.contact-form-card p {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 30px;
}
.w-100 {
    width: 100%;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contact-info-card, .contact-form-card {
        padding: 30px;
    }
    .site-footer {
        text-align: center;
    }
    .site-footer .container {
        gap: 32px;
    }
    .site-footer p, .site-footer a {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .detail-info h1 {
        font-size: 26px; /* Titulo menor no mobile */
    }
    .specs {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas no mobile para não empilhar tudo */
        padding: 20px;
        gap: 15px;
    }
    .specs .item strong {
        font-size: 18px;
    }
    .detail-gallery {
        grid-template-columns: repeat(3, 1fr); /* Thumbnails em linha embaixo no mobile */
    }
    .detail-gallery .main {
        grid-column: span 3;
    }
}

.mobile-filter-btn { display: none; }
@media (max-width: 900px) {
    .mobile-filter-btn { display: block; }
    .d-none-mobile { display: none; }
}





/* Lightbox e Galeria */
.detail-gallery { position: relative; }
.detail-gallery .thumb { position: relative; }
.more-photos-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.6); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: bold; cursor: pointer;
  border-radius: inherit; transition: background 0.3s;
}
.more-photos-overlay:hover { background: rgba(0,0,0,0.8); }

.lightbox {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.95); z-index: 9999;
  display: none; align-items: center; justify-content: center;
  flex-direction: column; opacity: 0; transition: opacity 0.3s;
}
.lightbox.active { display: flex; opacity: 1; }
.lightbox-close {
  position: absolute; top: 20px; right: 30px;
  color: #fff; font-size: 40px; font-weight: bold;
  cursor: pointer; z-index: 10000; user-select: none;
}
.lightbox-close:hover { color: #ccc; }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: #fff; font-size: 60px; font-weight: bold;
  cursor: pointer; z-index: 10000; user-select: none;
  padding: 20px;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { color: #ccc; }
.lightbox-content {
  max-width: 90%; max-height: 80vh; object-fit: contain;
  border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  animation: lightboxFadeIn 0.3s ease-out;
}
.lightbox-counter {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  color: #fff; font-size: 16px; background: rgba(0,0,0,0.5);
  padding: 8px 16px; border-radius: 20px;
}
@keyframes lightboxFadeIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
@media (max-width: 700px) {
  .lightbox-prev, .lightbox-next { font-size: 40px; padding: 10px; }
  .lightbox-close { top: 10px; right: 15px; font-size: 30px; }
}


.mobile-more-btn { display: none; }
@media (max-width: 700px) {
  .detail-gallery .thumb-4 { display: none; }
  .mobile-more-btn {
    display: block;
    grid-column: span 3;
    padding: 14px;
    background: var(--navy, #002333);
    color: #fff;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    border: none;
    transition: opacity 0.2s;
  }
  .mobile-more-btn:active {
    opacity: 0.8;
  }
}

