:root {
    --yellow: #F5C800;
    --yellow-dark: #C9A200;
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-section: #111111;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --text-dim: #888888;
    --border-yellow: rgba(245, 200, 0, 0.22);
    --navbar-h: 60px;
}

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

html { scroll-behavior: smooth; }

html, body {
    font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* ── LAYOUT ── */
.cronus-app { min-height: 100vh; display: flex; flex-direction: column; }

/* ── ANIMAÇÕES ── */

/* Usado na seção Quem Somos (Home) via IntersectionObserver */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fade-section {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ── TRANSIÇÃO DE PÁGINA ── */
@keyframes pageEnter {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

.page-transition {
    animation: pageEnter 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fade-in-hidden {
    opacity: 0 !important;
    transform: translateY(28px) !important;
    transition: none !important;
}

/* Animação dos detalhes de serviço ao clicar "saiba mais" */
@keyframes svcSlideIn {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.svc-anim {
    animation: svcSlideIn 0.65s ease forwards;
}

/* Margem de scroll para compensar navbar fixa */
.svc-detail {
    scroll-margin-top: 70px;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #050505; }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--yellow); }

/* ── NAVBAR ── */
.cronus-navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--navbar-h);
    background: rgba(5,5,5,0.97);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2.5rem;
    border-bottom: 1px solid rgba(245,200,0,0.08);
}

.cronus-navbar .nav-logo { display: flex; align-items: center; }

.cronus-navbar .nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

    .cronus-navbar .nav-links li a {
        display: block;
        padding: 0.4rem 0.85rem;
        font-size: 0.82rem;
        font-weight: 500;
        color: var(--text-white);
        transition: color 0.2s;
        white-space: nowrap;
        border-radius: 6px;
    }

.cronus-navbar .nav-links li a:hover { color: var(--yellow); }
.cronus-navbar .nav-links li a.active { color: var(--yellow); font-weight: 700; }

/* ── LOGO IMAGES ── */
.logo-sm  { height: 38px; width: auto; object-fit: contain; }
.logo-hero { height: 600px; width: auto; object-fit: contain; filter: drop-shadow(0 0 40px rgba(245,200,0,0.3)); }

/* ── PAGE WRAPPER ── */
.page-section {
    min-height: calc(20vh - var(--navbar-h));
    padding: 2rem 20rem;
    background: var(--bg-dark);
}

.page-logo { margin-bottom: 2rem; }

/* ── HEADINGS PATTERN ── */
.section-title {
    margin-top: 4rem;
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.15;
}
.section-title-servicos {
    margin-top: 4rem;
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.15;
}
.section-title .yellow { color: var(--yellow); }

/* ── BUTTONS COMMON ── */
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 2.2rem;
    border: 1.5px solid rgba(255,255,255,0.28);
    border-radius: 50px;
    background: transparent;
    color: var(--text-white);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    text-decoration: none;
}
.btn-outline-contatos {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.1rem 1.6rem;
    border: 1.5px solid rgba(255,255,255,0.88);
    border-radius: 50px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, var(--yellow) 100%);
    color: var(--text-white);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    text-decoration: none;
}
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }

.btn-yellow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.6rem;
    background: var(--yellow);
    color: #000;
    border: none;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
}
.btn-yellow:hover { background: #ffdd00; transform: translateY(-2px); color: #000; }

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.95rem 3rem;
    border: 2px solid rgba(245,200,0,0.45);
    border-radius: 50px;
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, var(--yellow) 100%);
    color: var(--text-white);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: filter 0.2s;
    text-decoration: none;
}
.btn-back:hover { filter: brightness(1.12); color: var(--text-white); }

/* ════════════════════════════════
   TELA INICIAL
════════════════════════════════ */
.hero-section {
    min-height: 79vh;
    padding-top: var(--navbar-h);
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 70% 50%, rgba(245,200,0,0.06) 0%, transparent 65%),
        url('../images/hero-bg.png') center center / cover no-repeat;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 2rem 0 8rem;
    gap: 2rem;
}

.hero-left { flex: 1; max-width: 48%; }
.hero-right { flex: 1; display: flex; justify-content: center; align-items: center; }

.hero-mini-logo { margin-bottom: 2.5rem; }

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.4rem;
}
.hero-title .yellow { color: var(--yellow); }

.hero-subtitle {
    font-size: 0.95rem;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
    margin-top:0.5rem;
    font-weight: 400;
}

.hero-pills { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }

.pill-link {
    display: inline-flex;
    align-items: center;
    gap: 1.6rem;
    padding: 0.5rem 2rem;
    border: 1px solid var(--border-yellow);
    border-radius: 50px;
    background: rgba(245,200,0,0.04);
    color: var(--text-white);
    font-size: 1.42rem;
    font-weight: 500;
    max-width: max-content;
    transition: all 0.2s;
    text-decoration: none;
}
.pill-link:hover { background: rgba(245,200,0,0.12); border-color: var(--yellow); color: var(--yellow); }
.pill-link i { font-size: 1.6rem; color: var(--yellow); width: 14px; text-align: center; }

.btn-leia-mais {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.65rem 1.6rem;
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    background: transparent;
    color: var(--text-white);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    text-decoration: none;
}
.btn-leia-mais:hover { border-color: var(--yellow); color: var(--yellow); }

.btn-leia-mais .arrow-circle {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--yellow);
    display: flex; align-items: center; justify-content: center;
    color: #000;
    font-size: 0.7rem;
}

/* Big logo block */
.hero-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.hero-brand-name {
    font-size: 3.8rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1;
    color: var(--text-white);
    text-align: center;
    margin-top: -0.5rem;
}

/* ── QUEM SOMOS ── SOBRE NÓS - */
.quem-somos {
    margin-top: 4rem;
    padding: 2rem 20rem;
    background: var(--bg-dark);
}

.qs-header {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.qs-title { font-size: 3.2rem; font-weight: 700; min-width: 280px; }
.qs-title .yellow { color: var(--yellow); }

.qs-text { flex: 1; }
.qs-text p { font-size: 0.88rem; color: var(--text-gray); line-height: 1.8; margin-bottom: 1rem; }

.qs-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.qs-img {
    height: 380px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qs-img-laptop {
    background: #0a0a0a;
}
.qs-img-laptop img { width: 100%; height: 100%; object-fit: cover; }

.qs-img-chip {
    background: #0a0a0a;
}
.qs-img-chip img { width: 100%; height: 100%; object-fit: cover; }

.qs-cta { display: flex; justify-content: center; }

/* ════════════════════════════════
   VISÃO GERAL
════════════════════════════════ */
.visao-desc {
    font-size: 0.88rem;
    color: var(--text-gray);
    line-height: 1.85;
    max-width: 1900px;
    margin-bottom: 2.5rem;
}

.explore-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.sol-card {
    background: var(--bg-card);
    border: 1px solid var(--border-yellow);
    border-radius: 18px;
    padding: 1.6rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    min-width: 0;
}
.sol-card:hover { border-color: var(--yellow); background: rgba(245,200,0,0.05); transform: translateY(-5px); }

.sol-img-icon { width: 240px; height: 240px; max-width: 100%; object-fit: contain; }

.sol-label {
    font-size: 0.78rem;
    color: var(--text-gray);
    text-align: center;
    font-weight: 500;
    line-height: 1.4;
}

/* ════════════════════════════════
   SERVIÇOS
════════════════════════════════ */
.servicos-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

.svc-card {
    background: var(--bg-card);
    border: 1px solid var(--border-yellow);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s;
}
.svc-card:hover { border-color: var(--yellow); transform: translateY(-3px); }

.svc-img {
    width: 100%;
    height: 190px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.svc-img i { font-size: 4rem; opacity: 0.18; position: relative; z-index: 1; color: var(--yellow); }
.svc-img-photo { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }

.svc-img-comp { background: linear-gradient(135deg, #0d0d1f 0%, #1a1a2a 50%, #0a0a0a 100%); }
.svc-img-note { background: linear-gradient(135deg, #0a1a0a 0%, #0d1a0d 50%, #0a0a0a 100%); }
.svc-img-monitor { background: linear-gradient(135deg, #0a1020 0%, #101828 50%, #0a0a0a 100%); }
.svc-img-print { background: linear-gradient(135deg, #1a0a0a 0%, #2a1010 50%, #0a0a0a 100%); }

.svc-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(245,200,0,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.svc-body {
    padding: 1.1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.svc-name { font-size: 0.92rem; font-weight: 600; }

.svc-actions { display: flex; align-items: center; gap: 0.75rem; }

.svc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); }

.btn-saiba {
    font-size: 0.75rem;
    color: var(--text-dim);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
    padding: 0;
    font-family: inherit;
}
.btn-saiba:hover { color: var(--yellow); }

/* Service Detail Sections */
.svc-detail {
    border-top: 1px solid rgba(255,255,255,0.04);
}

.svc-detail-inner {
    display: flex;
    min-height: 260px;
    padding: 0 18rem;
}

.svc-detail-left {
    flex: 1;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(30,18,0,0.7) 0%, transparent 80%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.svc-detail-label { font-size: 1.5rem; font-weight: 400; color: var(--text-white); line-height: 1.1; }
.svc-detail-name { font-size: 2rem; font-weight: 700; color: var(--yellow); margin-bottom: 1.25rem; line-height: 1.1; }
.svc-detail-desc { font-size: 0.83rem; color: var(--text-gray); line-height: 1.85; margin-bottom: 0.75rem; max-width: 80ch;
}
.svc-detail-cta-text { font-size: 0.78rem; color: var(--text-dim); margin-bottom: 1.25rem; }
.svc-detail-btns { display: flex; gap: 0.85rem; flex-wrap: wrap; }

.svc-detail-right {
    max-width: 30%;
    flex: 0 0 340px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    margin-bottom: 2rem;
}
.svc-detail-right i { font-size: 6rem; opacity: 0.12; color: var(--yellow); }
.svc-detail-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.svc-right-comp { background: linear-gradient(135deg, #0d0d1f 0%, #111118 60%, #0a0a0a 100%); }
.svc-right-note { background: linear-gradient(135deg, #0a1a0a 0%, #0d150d 60%, #0a0a0a 100%); }
.svc-right-monitor { background: linear-gradient(135deg, #080f1a 0%, #0d1520 60%, #0a0a0a 100%); }
.svc-right-print { background: linear-gradient(135deg, #1a0808 0%, #1a0d0d 60%, #0a0a0a 100%); }
.svc-right-auto { background: linear-gradient(135deg, #071a14 0%, #0a1f18 60%, #0a0a0a 100%); }

/* Grid 2 colunas – Serviços */
.svc-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
}

.svc-card-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.svc-card-img-wrap {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 20px;
    padding: 1.5rem;
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-card-img-wrap i {
    font-size: 5.5rem;
    color: var(--yellow);
    opacity: 0.55;
}

.svc-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* ════════════════════════════════
   CONTATOS
════════════════════════════════ */
.contatos-section {
    min-height: calc(86vh - var(--navbar-h));
    display: flex;
    background: var(--bg-dark);
}

.contatos-left {
    flex: 1;
    padding: 3rem 8rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 0.9rem;
}

.contatos-left .page-logo { margin-bottom: 1.5rem; }

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1.4rem;
    border: 1.5px solid rgba(255,255,255,0.18);
    border-radius: 50px;
    background: transparent;
    color: var(--text-white);
    font-size: 0.83rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all 0.2s;
    width: 210px;
    text-decoration: none;
}
.social-btn:hover { border-color: var(--yellow); color: var(--yellow); }
.social-btn i { font-size: 1rem; color: var(--yellow); width: 18px; text-align: center; }

.contatos-right {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 8rem;
    text-align: center;
    gap: 1.5rem;
}

.contatos-right::before {
    content: '';
    position: absolute;
    inset: 0;
}

.contatos-right-content { position: relative; z-index: 1; }

.contatos-right-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.contatos-hours {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-white);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.cronus-footer {
    background: #060606;
    border-top: 1px solid rgba(245,200,0,0.1);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    padding: 0.5rem 4rem;
}

.footer-brand { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-desc {
    font-size: 0.8rem;
    color: var(--text-dim);
    line-height: 1.7;
}

.footer-col-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--yellow);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.footer-social-links {
    display: flex;
    gap: 0.6rem;
}

.footer-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    color: var(--text-gray);
    font-size: 2.375rem;
    transition: all 0.2s;
    text-decoration: none;
}
.footer-icon-link:hover { border-color: var(--yellow); color: var(--yellow); }

.footer-info { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-hours {
    font-size: 0.82rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.footer-address {
    font-size: 0.8rem;
    color: var(--text-dim);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s;
    text-decoration: none;
}
.footer-address:hover { color: var(--yellow); }
.footer-address i { color: var(--yellow); font-size: 0.75rem; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 1rem 4rem;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-dim);
}

.footer-secret-btn {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    color: var(--text-dim);
    font-size: inherit;
    cursor: default;
    outline: none;
    -webkit-user-select: none;
    user-select: none;
}

/* ════════════════════════════════
   PLANOS INTERNET
════════════════════════════════ */
.planos-section {
    min-height: calc(60vh - var(--navbar-h));
    margin-top: -6px;
    background: var(--bg-dark);
    display: flex;
    flex-direction: column;
}

.planos-body {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
}

.planos-hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem 0rem 0rem 10rem;
    position: relative;
}

.planos-mulher {
    position: absolute;
    right: 100px;
    bottom: 50px;
    height: 80%;
    width: auto;
    object-fit: contain;
    object-position: bottom right;
    z-index: 10;
    pointer-events: none;
}

.planos-text { 
    z-index: 1;
    text-align: left;
    padding: 120px;
}

.planos-t1 { font-size: 4.8rem; font-weight: 800; color: var(--yellow); line-height: 1; }
.planos-t2 { font-size: 3.4rem; font-weight: 400; color: var(--text-white); line-height: 1; }
.planos-t3 { font-size: 5.2rem; font-weight: 800; color: var(--yellow); line-height: 1; margin-bottom: 2.5rem; }


.planos-strip { display: flex; }

.planos-strip-white {
    flex: 1;
    background: #ebebeb;
    padding: 2.8rem 0rem 2.8rem 13rem;
    color: #000;
}
.planos-strip-white p { font-size: 0.9rem; font-weight: 400; }
.planos-strip-white strong { font-size: 1.8rem; font-weight: 700; display: block; margin-top: 0.25rem; }

.planos-strip-yellow {
    flex: 1;
    background: var(--yellow);
    padding: 2.8rem 8rem;
    color: #000;
}
.planos-strip-yellow p { font-size: 0.9rem; font-weight: 500; }
.planos-strip-yellow strong { font-size: 2rem; font-weight: 800; display: block; margin-top: 0.25rem; }

.planos-cta {
    display: flex;
    justify-content: flex-start;
    padding: 4rem;
    background: var(--bg-dark);
}

/* ════════════════════════════════
   EM DESENVOLVIMENTO
════════════════════════════════ */
.em-dev {
    min-height: calc(79vh - var(--navbar-h));
    margin-top: var(--navbar-h);
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    position: relative;
}

.em-dev .page-logo { position: absolute; top: 2rem; left: 2rem; }

.em-dev h2 {
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--text-white);
}

/* ════════════════════════════════
   ESTATÍSTICAS
════════════════════════════════ */
.stats-login-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 4rem 2rem;
    text-align: center;
}

.stats-login-icon {
    font-size: 4rem;
    color: var(--yellow);
    opacity: 0.55;
}

.stats-login-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    max-width: 400px;
    line-height: 1.7;
}

.stats-login-btn { padding: 0.75rem 2rem; gap: 0.75rem; }

.stats-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 4rem;
    color: var(--text-dim);
    font-size: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    margin: 2.5rem 0;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-yellow);
    border-radius: 16px;
    padding: 1.75rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.stat-card i { font-size: 1.75rem; color: var(--yellow); opacity: 0.8; }

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
}

.stat-label {
    font-size: 0.72rem;
    color: var(--text-dim);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.stats-top-pages { margin-top: 2.5rem; }

.stats-section-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.stats-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.stats-table th {
    text-align: left;
    padding: 0.65rem 1rem;
    color: var(--yellow);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-yellow);
}

.stats-table td {
    padding: 0.75rem 1rem;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.stats-table tr:last-child td { border-bottom: none; }
.stats-table tbody tr:hover td { color: var(--text-white); }

.stats-error {
    color: #ff6b6b;
    font-size: 0.85rem;
    margin-top: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

/* ── BLAZOR ERROR UI ── */
#blazor-error-ui {
    background: #1a0000;
    bottom: 0;
    box-shadow: 0 -1px 4px rgba(0,0,0,0.5);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 2000;
    color: #ff6b6b;
    font-size: 0.85rem;
}
#blazor-error-ui .dismiss { cursor: pointer; position: absolute; right: 0.75rem; top: 0.5rem; }

.loading-progress {
    position: relative; display: block;
    width: 8rem; height: 8rem;
    margin: 20vh auto 1rem;
}
.loading-progress circle {
    fill: none; stroke: #1a1a1a; stroke-width: 0.6rem;
    transform-origin: 50% 50%; transform: rotate(-90deg);
}
.loading-progress circle:last-child {
    stroke: var(--yellow);
    stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
    transition: stroke-dasharray 0.05s ease-in-out;
}
.loading-progress-text {
    position: absolute; text-align: center;
    font-weight: bold; inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
    color: var(--text-gray);
}
.loading-progress-text:after { content: var(--blazor-load-percentage-text, "Carregando..."); }

/* ════════════════════════════════
   RESPONSIVIDADE
════════════════════════════════ */

/* ── Hamburger (oculto no desktop) ── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 4px;
    z-index: 1100;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: background 0.2s;
}
.nav-hamburger:hover span { background: var(--yellow); }

/* ── Desktop médio (≤ 1400px) — cobre landscape 768p e similares ── */
@media (max-width: 1400px) {
    .quem-somos        { padding: 2rem 10rem; }
    .qs-header         { gap: 3rem; }
    .page-section      { padding: 5rem 5rem; }
    .svc-detail-inner  { padding: 0 5rem; }
    .solutions-grid    { grid-template-columns: repeat(4, 1fr); }
    .sol-img-icon      { width: 180px; height: 180px; }
}

/* ── Tablet largo (≤ 1200px) ── */
@media (max-width: 1200px) {
    .page-section    { padding: 5rem 4rem; }
    .quem-somos      { padding: 6rem 4rem; }
    .hero-inner      { padding: 0 2rem 0 3rem; }
    .logo-hero       { height: 420px; }
    .hero-title      { font-size: 2.8rem; }
    .hero-brand-name { font-size: 2.8rem; }
    .section-title   { font-size: 2.8rem; }
    .qs-title        { font-size: 2.2rem; }
    .qs-header       { gap: 2rem; }
    .solutions-grid    { grid-template-columns: repeat(3, 1fr); }
    .svc-detail-inner  { padding: 0 4rem; }
    .svc-detail-right  { flex: 0 0 260px; }
    .planos-text     { padding: 60px; }
    .planos-t1       { font-size: 3.6rem; }
    .planos-t2       { font-size: 2.6rem; }
    .planos-t3       { font-size: 4rem; }
    .planos-strip-white  { padding: 2.8rem 4rem; }
    .planos-strip-yellow { padding: 2.8rem 4rem; }
    .footer-inner    { padding: 2.5rem 2.5rem; gap: 2rem; }
}

/* ── Tablet / Mobile (≤ 900px) ── */
@media (max-width: 900px) {

    /* Navbar – hamburger */
    .nav-hamburger { display: flex; }
    .nav-links {
        position: fixed;
        top: var(--navbar-h);
        left: 0; right: 0;
        background: rgba(5,5,5,0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(245,200,0,0.14);
        transform: translateY(-110%);
        visibility: hidden;
        transition: transform 0.3s ease, visibility 0s 0.3s;
        z-index: 999;
    }
    .nav-links.nav-open {
        transform: translateY(0);
        visibility: visible;
        transition: transform 0.3s ease, visibility 0s;
    }
    .nav-links li.btn-outline-contatos {
        display: block;
        padding: 0;
        background: none;
        border: none;
        border-radius: 0;
    }
    .nav-links li a {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(255,255,255,0.04);
    }

    /* Hero */
    .hero-section    { align-items: flex-start; }
    .hero-inner      { flex-direction: column-reverse; padding: 3rem 1.5rem; text-align: center; gap: 1rem; }
    .hero-left       { max-width: 100%; }
    .hero-right      { width: 100%; justify-content: center; }
    .logo-hero       { height: 240px; }
    .hero-title      { font-size: 2.2rem; }
    .hero-mini-logo  { margin-bottom: 1.25rem; }
    .hero-subtitle   { margin-bottom: 1.5rem; }
    .hero-pills      { align-items: center; }
    .hero-brand-name { font-size: 2.4rem; }

    /* Quem Somos */
    .quem-somos  { padding: 4rem 2rem; }
    .qs-header   { flex-direction: column; gap: 1.25rem; }
    .qs-title    { min-width: unset; font-size: 2rem; }
    .qs-images   { grid-template-columns: 1fr; }
    .qs-img      { height: 260px; }

    /* Visão Geral / page-section genérico */
    .page-section  { padding: 4rem 2rem; }
    .section-title { font-size: 2.2rem; }
    .solutions-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }

    /* Serviços */
    .services-grid    { grid-template-columns: 1fr; }
    .svc-detail-inner { flex-direction: column; padding: 0 2rem; }
    .svc-detail-right { flex: none; width: 100%; height: 200px; padding: 1rem; }
    .svc-detail-left  { padding: 2rem; }
    .svc-grid-2col    { grid-template-columns: 1fr; }

    /* Contatos */
    .contatos-section { flex-direction: column; }
    .contatos-left  { padding: 4rem 2rem 2.5rem; align-items: center; }
    .contatos-right { padding: 2.5rem 2rem; align-items: center; text-align: center; }
    .contatos-right-content { text-align: center; width: 100%; }

    /* Planos */
    .planos-hero { padding: 2rem; }
    .planos-text { padding: 2rem; }
    .planos-t1   { font-size: 2.8rem; }
    .planos-t2   { font-size: 2rem; }
    .planos-t3   { font-size: 3.2rem; }
    .planos-mulher   { display: none; }
    .planos-strip    { flex-direction: column; }
    .planos-strip-white  { padding: 2rem 2rem; }
    .planos-strip-yellow { padding: 2rem 2rem; }
    .planos-cta  { padding: 2.5rem 2rem; }

    /* Footer */
    .footer-inner  { flex-direction: column; align-items: center; padding: 2rem; gap: 1.75rem; }
    .footer-bottom { padding: 1rem 2rem; }

    /* Estatísticas */
    .stats-grid  { grid-template-columns: repeat(2, 1fr); }
    .stat-value  { font-size: 1.6rem; }
}

/* ── Mobile pequeno (≤ 480px) ── */
@media (max-width: 480px) {
    .section-title   { font-size: 1.8rem; }
    .hero-title      { font-size: 1.85rem; }
    .hero-brand-name { font-size: 2rem; }
    .logo-hero       { height: 180px; }
    .qs-title        { font-size: 1.75rem; }
    .qs-img          { height: 200px; }
    .solutions-grid  { grid-template-columns: 1fr; }
    .sol-img-icon    { width: 90px; height: 90px; }
    .planos-t1       { font-size: 2.2rem; }
    .planos-t2       { font-size: 1.6rem; }
    .planos-t3       { font-size: 2.6rem; }
    .btn-back        { padding: 0.75rem 1.5rem; font-size: 0.8rem; }
    .page-section    { padding: 3rem 1.25rem; }
    .quem-somos      { padding: 3rem 1.25rem; }
    .contatos-left   { padding: 2rem 1.25rem; align-items: center; }
    .contatos-right  { padding: 2rem 1.25rem; align-items: center; }

    /* Estatísticas */
    .stats-grid  { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .stat-value  { font-size: 1.4rem; }
}
