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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0d0d0d 0%, #0d1a2e 30%, #1b2d4e 70%, #0e3a4a 100%);
    color: #ffffff;
    overflow-x: hidden;
    padding-bottom: 34px;
}

/* ===================== NAVBAR ===================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    gap: 15px;
}

.logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    animation: logoShake 8s ease-in-out infinite;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 46px;
    font-weight: 900;
    color: #00d9ff;
    text-shadow:
        0 0 10px rgba(0, 217, 255, 0.8),
        0 0 20px rgba(0, 217, 255, 0.6),
        0 0 30px rgba(0, 217, 255, 0.4);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}

.logo-tagline {
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(0, 217, 255, 0.85);
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.45);
    white-space: nowrap;
    text-align: center;
}

.logo-cursor {
    display: inline-block;
    animation: blink 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
        transform: scaleY(1);
        text-shadow:
            0 0 15px rgba(0, 255, 255, 1),
            0 0 25px rgba(0, 255, 255, 0.8),
            0 0 35px rgba(0, 255, 255, 0.6);
    }
    50% {
        opacity: 0.3;
        transform: scaleY(0.95);
        text-shadow:
            0 0 5px rgba(0, 255, 255, 0.5),
            0 0 10px rgba(0, 255, 255, 0.3);
    }
}

@keyframes logoShake {
    0%, 90%, 100% { transform: translate(0, 0); }
    91% { transform: translate(-2px, 1px); }
    92% { transform: translate(2px, -1px); }
    93% { transform: translate(-1px, 2px); }
    94% { transform: translate(1px, -2px); }
    95% { transform: translate(-2px, -1px); }
    96% { transform: translate(2px, 1px); }
    97% { transform: translate(-1px, -1px); }
    98% { transform: translate(1px, 1px); }
    99% { transform: translate(0, 0); }
}

/* ===================== NAV GAMIFICADO ===================== */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-item {
    cursor: pointer;
    position: relative;
    user-select: none;
    width: 120px;
    background: linear-gradient(160deg, rgba(5,15,30,0.95) 0%, rgba(0,30,45,0.9) 100%);
    border: 1px solid rgba(0,217,255,0.3);
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    padding: 14px 10px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

/* corner accent */
.nav-item::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 10px; height: 10px;
    background: rgba(0,217,255,0.3);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    transition: background 0.3s ease;
}

/* scan sweep */
.nav-item::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,217,255,0.1), transparent);
    transition: left 0s;
}

.nav-item:hover::after,
.nav-item.focused::after {
    left: 200%;
    transition: left 0.6s ease;
}

.nav-item-icon {
    font-size: 30px;
    line-height: 1;
    filter: drop-shadow(0 0 6px rgba(0,217,255,0.4));
    transition: all 0.3s ease;
}

.nav-item-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.3;
}

.nav-item-sub {
    font-size: 8px;
    color: rgba(0,217,255,0.65);
    letter-spacing: 0.5px;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    transition: all 0.3s ease;
}

/* status bar bottom */
.nav-item-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00d9ff, transparent);
    transform: scaleX(0);
    transition: transform 0.35s ease;
}

.nav-item:hover .nav-item-bar,
.nav-item.focused .nav-item-bar,
.nav-item.active .nav-item-bar {
    transform: scaleX(1);
}

.nav-item:hover,
.nav-item.focused {
    border-color: rgba(0,217,255,0.6);
    background: linear-gradient(160deg, rgba(0,20,40,0.98) 0%, rgba(0,50,70,0.9) 100%);
    box-shadow: 0 0 20px rgba(0,217,255,0.2), inset 0 0 20px rgba(0,217,255,0.04);
    transform: translateY(-3px);
}

.nav-item:hover::before,
.nav-item.focused::before {
    background: rgba(0,217,255,0.7);
}

.nav-item:hover .nav-item-icon,
.nav-item.focused .nav-item-icon {
    filter: drop-shadow(0 0 12px rgba(0,255,255,0.8));
    transform: scale(1.15);
}

.nav-item:hover .nav-item-label,
.nav-item.focused .nav-item-label {
    color: #00d9ff;
}

.nav-item:hover .nav-item-sub,
.nav-item.focused .nav-item-sub {
    color: rgba(0,217,255,0.7);
}

.nav-item.active {
    border-color: #00d9ff;
    background: linear-gradient(160deg, rgba(0,30,55,0.98) 0%, rgba(0,60,80,0.95) 100%);
    box-shadow: 0 0 30px rgba(0,217,255,0.35), inset 0 0 25px rgba(0,217,255,0.08);
    transform: translateY(-3px);
}

.nav-item.active::before {
    background: #00ffff;
}

.nav-item.active .nav-item-icon {
    filter: drop-shadow(0 0 14px rgba(0,255,255,1));
    animation: iconPulse 2s ease-in-out infinite;
}

.nav-item.active .nav-item-label {
    color: #00ffff;
    text-shadow: 0 0 8px rgba(0,255,255,0.6);
}

.nav-item.active .nav-item-sub {
    color: rgba(0,255,255,0.6);
}

@keyframes iconPulse {
    0%, 100% { filter: drop-shadow(0 0 8px rgba(0,255,255,0.8)); }
    50% { filter: drop-shadow(0 0 18px rgba(0,255,255,1)) drop-shadow(0 0 30px rgba(0,200,255,0.5)); }
}

.nav-hint {
    font-size: 10px;
    color: rgba(0,217,255,0.75);
    letter-spacing: 1.5px;
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    margin-top: 4px;
    text-shadow: 0 0 8px rgba(0,217,255,0.4);
}

/* ===================== FOOTER ===================== */
.site-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 998;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(0,217,255,0.25);
    padding: 8px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.site-footer span {
    font-family: 'Orbitron', sans-serif;
    font-size: 10px;
    color: rgba(0,217,255,0.8);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow: 0 0 6px rgba(0,217,255,0.3);
}

.site-footer .footer-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(0,217,255,0.6);
}

/* ===================== TOOLTIP ===================== */
.satellite-tooltip {
    position: fixed;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid #00d9ff;
    border-radius: 6px;
    padding: 8px 14px;
    color: #00d9ff;
    font-size: 13px;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    pointer-events: none;
    z-index: 999;
    opacity: 0;
    transition: opacity 0.2s ease;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.4);
    white-space: nowrap;
}

.satellite-tooltip.visible {
    opacity: 1;
}

/* ===================== CANVAS ===================== */
.canvas-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    cursor: default;
}

#globeCanvas {
    display: block;
    background: transparent;
    width: 100%;
    height: 100%;
}

/* ===================== INLINE CARDS ===================== */
.inline-cards-section {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 12px 20px 12px;
    background: transparent;
    flex-wrap: wrap;
}

.inline-card {
    cursor: pointer;
    position: relative;
    user-select: none;
    width: 150px;
    background: linear-gradient(160deg, rgba(5,15,30,0.92) 0%, rgba(0,30,45,0.88) 100%);
    border: 1px solid rgba(0,217,255,0.35);
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
    padding: 18px 12px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.inline-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 12px; height: 12px;
    background: rgba(0,217,255,0.35);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    transition: background 0.3s ease;
}

.inline-card::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,217,255,0.12), transparent);
}

.inline-card:hover::after {
    left: 200%;
    transition: left 0.6s ease;
}

.inline-card:hover {
    border-color: rgba(0,217,255,0.7);
    background: linear-gradient(160deg, rgba(0,20,40,0.98) 0%, rgba(0,50,70,0.9) 100%);
    box-shadow: 0 0 30px rgba(0,217,255,0.25), inset 0 0 20px rgba(0,217,255,0.05);
    transform: translateY(-4px);
}

.inline-card:hover::before {
    background: rgba(0,217,255,0.75);
}

.inline-card-icon {
    font-size: 36px;
    line-height: 1;
    filter: drop-shadow(0 0 6px rgba(0,217,255,0.4));
    transition: all 0.3s ease;
}

.inline-card:hover .inline-card-icon {
    filter: drop-shadow(0 0 14px rgba(0,255,255,0.9));
    transform: scale(1.15);
}

.inline-card-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    transition: all 0.3s ease;
    text-align: center;
}

.inline-card:hover .inline-card-label {
    color: #00d9ff;
}

.inline-card-sub {
    font-size: 8px;
    color: rgba(0,217,255,0.65);
    letter-spacing: 0.5px;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    transition: all 0.3s ease;
}

.inline-card:hover .inline-card-sub {
    color: rgba(0,217,255,0.85);
}

.inline-card-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00d9ff, transparent);
    transform: scaleX(0);
    transition: transform 0.35s ease;
}

.inline-card:hover .inline-card-bar {
    transform: scaleX(1);
}

/* ===================== OVERLAY ===================== */
.content-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    backdrop-filter: blur(12px);
    padding: 20px;
    overflow-y: auto;
}

.content-panel {
    background: linear-gradient(135deg, rgba(13, 26, 46, 0.97) 0%, rgba(14, 58, 74, 0.97) 100%);
    border: 1px solid #00d9ff;
    border-radius: 15px;
    padding: 40px;
    max-width: 820px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 0 60px rgba(0, 217, 255, 0.4), inset 0 0 40px rgba(0,0,0,0.3);
    position: relative;
    margin: auto;
    animation: panelIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes panelIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Scrollbar */
.content-panel::-webkit-scrollbar { width: 5px; }
.content-panel::-webkit-scrollbar-track { background: rgba(0,0,0,0.3); border-radius: 5px; }
.content-panel::-webkit-scrollbar-thumb { background: #00d9ff; border-radius: 5px; }

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(0,217,255,0.08);
    border: 1px solid rgba(0,217,255,0.3);
    color: #00d9ff;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    background: rgba(0,217,255,0.25);
    transform: rotate(90deg) scale(1.15);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

/* ===================== CONTENT TYPOGRAPHY ===================== */
.content-panel h2 {
    color: #00d9ff;
    margin-bottom: 20px;
    font-size: 26px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
    letter-spacing: 1px;
}

.content-panel h1 {
    color: #00d9ff;
    margin-bottom: 25px;
    font-size: 22px;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
    letter-spacing: 1px;
}

.content-panel p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #d0e8f0;
    font-size: 15px;
}

.content-panel ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.content-panel li {
    margin-bottom: 28px;
    padding-left: 18px;
    border-left: 3px solid #00d9ff;
}

.content-panel li h3 {
    color: #00ffff;
    font-size: 20px;
    margin-bottom: 10px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* ===================== SECTION DIVIDER ===================== */
.section-divider {
    border: none;
    border-top: 1px solid rgba(0,217,255,0.25);
    margin: 30px 0;
}

/* ===================== SERVICE CARDS ===================== */
.service-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 24px 0;
}

.service-card {
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(0,217,255,0.25);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    border-color: #00d9ff;
    box-shadow: 0 6px 24px rgba(0,217,255,0.2);
}

.service-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    user-select: none;
}

.service-card-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.service-card h4 {
    color: #00ffff;
    font-size: 13px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    flex: 1;
}

.service-card-arrow {
    color: #00d9ff;
    font-size: 12px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.service-card.open .service-card-arrow {
    transform: rotate(180deg);
}

.service-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 18px;
}

.service-card.open .service-card-body {
    max-height: 300px;
    padding: 0 18px 16px 18px;
}

.service-card-body p {
    font-size: 13px;
    color: #a8c8d8;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===================== HIGHLIGHT BOX ===================== */
.highlight-box {
    background: rgba(0,217,255,0.07);
    border: 1px solid rgba(0,217,255,0.3);
    border-radius: 10px;
    padding: 18px 22px;
    margin: 20px 0;
}

.highlight-box p {
    color: #b0dae8;
    margin-bottom: 0;
    font-size: 14px;
}

.highlight-box strong {
    color: #00ffff;
}

/* ===================== STAT BADGES ===================== */
.stat-row {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.stat-badge {
    flex: 1;
    min-width: 120px;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(0,217,255,0.3);
    border-radius: 10px;
    padding: 14px;
    text-align: center;
}

.stat-badge .stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #00d9ff;
    text-shadow: 0 0 10px rgba(0,217,255,0.6);
}

.stat-badge .stat-label {
    font-size: 11px;
    color: #7aabbf;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===================== FORM STYLES ===================== */
.content-panel form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.content-panel label {
    color: #00d9ff;
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.content-panel input,
.content-panel select,
.content-panel textarea {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0,217,255,0.4);
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.content-panel input:focus,
.content-panel select:focus,
.content-panel textarea:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.35);
    background: rgba(0,0,0,0.7);
}

.content-panel textarea {
    min-height: 120px;
    resize: vertical;
    font-family: 'Arial', sans-serif;
}

.content-panel select {
    cursor: pointer;
}

.content-panel select option {
    background: #0d1a2e;
    color: #ffffff;
}

.content-panel button[type="submit"] {
    background: linear-gradient(135deg, #00d9ff 0%, #00ffff 100%);
    color: #0d0d0d;
    border: none;
    padding: 15px 30px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Orbitron', sans-serif;
}

.content-panel button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 217, 255, 0.6);
}

.content-panel input::placeholder,
.content-panel textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* ===================== LOADING ===================== */
.loading {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #00d9ff;
    font-size: 16px;
    z-index: 9999;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
}

.spinner {
    border: 2px solid rgba(0, 255, 255, 0.2);
    border-top: 2px solid #00ffff;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===================== RESPONSIVE MOBILE ===================== */
@media (max-width: 768px) {

    /* Navbar compacta no mobile */
    .navbar {
        padding: 8px 0;
    }

    .nav-container {
        gap: 8px;
    }

    .logo {
        font-size: 20px;
    }

    .logo-tagline {
        font-size: 6px;
        letter-spacing: 1.5px;
    }

    /* Menu horizontal compacto no mobile */
    .nav-menu {
        flex-direction: row;
        gap: 6px;
        width: 100%;
        justify-content: center;
        flex-wrap: nowrap;
    }

    .nav-item {
        width: calc(33.33% - 6px);
        max-width: 110px;
        padding: 8px 4px 8px;
        gap: 4px;
        clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    }

    .nav-item-icon {
        font-size: 22px;
    }

    .nav-item-label {
        font-size: 8px;
        letter-spacing: 0.5px;
    }

    .nav-item-sub {
        display: none;
    }

    .nav-hint {
        display: none;
    }

    /* Globo ocupa área abaixo da navbar */
    .canvas-container {
        height: calc(100vh - 100px);
        height: calc(100dvh - 100px);
    }

    #globeCanvas {
        width: 100vw;
        height: 100%;
    }

    .inline-cards-section {
        gap: 10px;
        padding: 16px 10px 50px;
    }

    .inline-card {
        width: calc(33.33% - 10px);
        max-width: 130px;
        padding: 12px 6px 10px;
        gap: 5px;
    }

    .inline-card-icon {
        font-size: 26px;
    }

    .inline-card-label {
        font-size: 8px;
        letter-spacing: 0.5px;
    }

    .inline-card-sub {
        display: none;
    }

    /* Painel de conteúdo mobile */
    .content-overlay {
        padding: 8px;
        align-items: flex-start;
        padding-top: 8px;
    }

    .content-panel {
        margin-top: 8px;
        margin-bottom: 30px;
        padding: 50px 16px 16px 16px;
        max-height: calc(100dvh - 50px);
        border-radius: 10px;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    /* Tipografia mobile */
    .content-panel h2 {
        font-size: 18px;
        letter-spacing: 0.5px;
        word-break: break-word;
    }

    .content-panel h1 {
        font-size: 16px;
    }

    .content-panel p {
        font-size: 14px;
        line-height: 1.7;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .content-panel li h3 {
        font-size: 15px;
    }

    /* Cards mobile — coluna única */
    .service-cards {
        grid-template-columns: 1fr !important;
    }

    /* Badges mobile */
    .stat-row {
        gap: 8px;
    }

    .stat-badge {
        min-width: 70px;
        padding: 10px 6px;
    }

    .stat-badge .stat-number {
        font-size: 16px;
    }

    .stat-badge .stat-label {
        font-size: 9px;
    }

    /* Highlight box mobile */
    .highlight-box {
        padding: 14px 14px;
    }

    .highlight-box p {
        font-size: 13px;
    }

    /* Botão fechar */
    .close-btn {
        top: 10px;
        right: 10px;
        width: 34px;
        height: 34px;
        font-size: 20px;
    }

    /* Footer mobile */
    .site-footer {
        gap: 6px;
        padding: 6px 10px;
        flex-wrap: wrap;
    }

    .site-footer span {
        font-size: 8px;
        letter-spacing: 0.8px;
    }

    /* Formulário mobile */
    .content-panel input,
    .content-panel select,
    .content-panel textarea {
        font-size: 16px; /* evita zoom no iOS */
    }
}

@media (max-width: 480px) {
    .content-panel {
        padding: 46px 12px 12px 12px;
    }

    .content-panel h2 {
        font-size: 16px;
    }

    .nav-item {
        padding: 7px 3px 7px;
    }

    .nav-item-icon {
        font-size: 20px;
    }

    .nav-item-label {
        font-size: 7px;
    }

    /* footer só copyright no mobile pequeno */
    .site-footer .footer-dot,
    .site-footer span:not(:first-child) {
        display: none;
    }

    .site-footer span:first-child {
        display: flex;
    }
}

/* ===================== PHONE FIELD ===================== */
/* Garante que os inputs dentro do campo de telefone herdem o estilo do form */
#DDD, #Numero_Tel {
    margin: 0;
}

/* Espaço extra no body para o lang-switcher não sobrepor o footer */
body {
    padding-bottom: 80px;
}
