body.home-vitrine-tech {
    margin: 0;
    color: #eef4ff;
    background:
        radial-gradient(circle at top left, rgba(0, 102, 255, 0.18), transparent 28%),
        radial-gradient(circle at top right, rgba(255, 174, 0, 0.15), transparent 20%),
        linear-gradient(180deg, #040814 0%, #07111f 36%, #081525 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

body.home-vitrine-tech::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(0, 157, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 157, 255, 0.04) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: linear-gradient(180deg, rgba(255,255,255,0.4), transparent 85%);
}

/* =========================
HEADER PROFISSIONAL IMPERIUM
========================= */

.home-header-tech {

    position: sticky;

    top: 0;

    z-index: 1000;

    backdrop-filter: blur(16px);

    background: rgba(3, 10, 22, 0.94);

    border-bottom: 1px solid rgba(76, 122, 255, 0.18);

    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.45);

}


/* LOGO DAS LOJAS */

.loja-tech-logo-box {

    width: 100%;
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 12px;

}

.loja-tech-logo {

    max-height: 80px;
    max-width: 180px;

    object-fit: contain;

    filter: drop-shadow(0 0 6px rgba(0,0,0,0.25));

}

/* CONTAINER INTERNO */

.home-header-tech-inner {

    min-height: 92px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 26px;

}


/* =========================
LOGO + TEXTO
========================= */

.home-brand-tech {

    display: flex;

    align-items: center;

    gap: 16px;

    text-decoration: none;

}


/* CAIXA DO LOGO */

.home-brand-logo-tech {

    width: 64px;

    height: 64px;

    border-radius: 18px;

    overflow: hidden;

    background: rgba(255,255,255,0.06);

    border: 1px solid rgba(255,255,255,0.12);

    box-shadow:

        0 10px 26px rgba(0,0,0,0.45);

}


/* IMAGEM LOGO */

.home-logo-img {

    width: 100%;

    height: 100%;

    object-fit: contain;

}


/* TEXTO LOGO */

.home-brand-text-tech {

    display: flex;

    flex-direction: column;

}


/* MINI TEXTO */

.home-brand-mini-tech {

    font-size: 12px;

    color: #8db8ff;

}


/* NOME PRINCIPAL */

.home-brand-name-tech {

    color: #ffd76a;

    font-size: 24px;

    font-weight: 800;

}


/* =========================
MENU
========================= */

.home-nav-tech {

    display: flex;

    gap: 28px;

}


.home-nav-tech a {

    color: #d7e5ff;

    font-weight: 600;

    font-size: 14px;

    position: relative;

    text-decoration: none;

}


.home-nav-tech a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -6px;

    width: 0;

    height: 2px;

    background: linear-gradient(
        90deg,
        #00c2ff,
        #ffb100
    );

    transition: width .25s ease;

}


.home-nav-tech a:hover {

    color: #ffffff;

}


.home-nav-tech a:hover::after {

    width: 100%;

}


/* =========================
BOTÃO WHATSAPP
========================= */

.home-header-cta-tech {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 50px;

    padding: 0 24px;

    border-radius: 999px;

    font-size: 14px;

    font-weight: 800;

    color: #0a0f19;

    background: linear-gradient(
        135deg,
        #ffcc33,
        #ff9f1c
    );

    box-shadow:

        0 14px 32px rgba(255, 177, 0, 0.35);

    transition:

        transform .2s ease,

        box-shadow .2s ease;

}


.home-header-cta-tech:hover {

    transform: translateY(-2px);

    box-shadow:

        0 18px 40px rgba(255, 177, 0, 0.45);

}

.hero-tech {
    position: relative;
    padding: 72px 0 40px;
}

.hero-tech-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
    align-items: center;
}

.hero-chip-tech {
    display: inline-flex;
    padding: 10px 16px;
    border-radius: 999px;
    color: #ffd76a;
    background: rgba(255, 183, 0, 0.08);
    border: 1px solid rgba(255, 183, 0, 0.22);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.hero-tech-copy h1 {
    margin: 0 0 16px;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.01;
    letter-spacing: -0.04em;
    color: #ffffff;
    max-width: 760px;
}

.hero-tech-copy p {
    max-width: 700px;
    margin: 0 0 24px;
    color: #b5c6e3;
    font-size: 18px;
    line-height: 1.75;
}

.hero-tech-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.btn-tech {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 16px;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.btn-tech-primary {
    color: #0a0f19;
    background: linear-gradient(135deg, #ffcc33, #ff9f1c);
    box-shadow: 0 16px 34px rgba(255, 174, 0, 0.22);
}

.btn-tech-primary:hover {
    box-shadow: 0 20px 44px rgba(255, 174, 0, 0.30);
}

.btn-tech-secondary {
    color: #dfe9ff;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(0, 190, 255, 0.18);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.btn-tech-secondary:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(0, 190, 255, 0.35);
}

.btn-tech-small {
    min-height: 48px;
    padding: 0 18px;
}

.hero-tech-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.metric-tech-card {
    min-width: 150px;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.14);
}

.metric-tech-card strong {
    display: block;
    color: #ffd76a;
    font-size: 26px;
    margin-bottom: 6px;
}

.metric-tech-card span {
    color: #a6badb;
    font-size: 13px;
}

.hero-tech-visual {
    position: relative;
    min-height: 520px;
}

.tech-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(24px);
}

.tech-glow-1 {
    width: 220px;
    height: 220px;
    top: 26px;
    right: 30px;
    background: rgba(255, 174, 0, 0.18);
}

.tech-glow-2 {
    width: 180px;
    height: 180px;
    bottom: 40px;
    left: 10px;
    background: rgba(0, 170, 255, 0.18);
}

.tech-grid-lines {
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background:
        linear-gradient(rgba(0, 187, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 187, 255, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(circle at center, #fff 45%, transparent 100%);
}

.screen-tech,
.floating-card-tech,
.solution-card-tech,
.ticker-tech-card,
.loja-tech-card,
.contact-tech-box {
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 44px rgba(0,0,0,0.16);
}

.main-screen-tech {
    position: absolute;
    top: 44px;
    left: 20px;
    width: 80%;
    border-radius: 28px;
    padding: 30px;
}

.screen-tag-tech,
.floating-card-tech span,
.loja-tech-badge,
.ticker-tech-label,
.section-mini-tech {
    display: inline-block;
    color: #8dc6ff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.main-screen-tech strong {
    display: block;
    margin: 12px 0 12px;
    color: #fff;
    font-size: 30px;
    line-height: 1.15;
}

.main-screen-tech p,
.floating-card-tech p,
.solution-card-tech p,
.loja-tech-content p,
.contact-tech-box p,
.ticker-tech-body p {
    color: #b8c9e5;
    line-height: 1.7;
    margin: 0;
}

.floating-card-tech {
    position: absolute;
    border-radius: 24px;
    padding: 22px;
}

.card-a-tech {
    right: 12px;
    bottom: 120px;
    width: 48%;
}

.card-b-tech {
    left: 40px;
    bottom: 34px;
    width: 42%;
}

.floating-card-tech strong {
    display: block;
    color: #ffd76a;
    font-size: 28px;
    margin: 10px 0 6px;
}

.solutions-tech {
    padding: 18px 0 30px;
}

.section-heading-tech {
    margin-bottom: 26px;
}

.section-heading-tech h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 36px;
}

.section-heading-tech p {
    max-width: 760px;
    color: #b8c9e5;
    line-height: 1.8;
    margin: 0;
}

.compact-tech {
    margin-bottom: 16px;
}

.solutions-grid-tech {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.solution-card-tech {
    border-radius: 26px;
    padding: 26px;
}

.solution-card-tech:hover,
.loja-tech-card:hover,
.ticker-tech-card:hover {
    border-color: rgba(255, 177, 0, 0.30);
    box-shadow: 0 24px 52px rgba(0,0,0,0.22);
}

.solution-icon-tech {
    font-size: 28px;
    margin-bottom: 14px;
}

.solution-card-tech h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 24px;
    line-height: 1.2;
}

.solution-link-tech {
    display: inline-flex;
    margin-top: 18px;
    color: #ffd76a;
    font-weight: 700;
}

.solution-link-tech:hover {
    color: #fff0bd;
}

.ticker-tech-section {
    padding: 20px 0 20px;
}

.ticker-tech-wrap {
    overflow: hidden;
}

.ticker-tech-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: tickerTechMove 28s linear infinite;
    padding: 8px 0;
}

@keyframes tickerTechMove {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.ticker-tech-card {
    width: 320px;
    border-radius: 26px;
    overflow: hidden;
    flex-shrink: 0;
}

.ticker-tech-bar {
    height: 8px;
}

.ticker-tech-body {
    padding: 22px;
}

.ticker-tech-body h3 {
    margin: 12px 0 10px;
    color: #fff;
    font-size: 24px;
}

.ticker-tech-go {
    display: inline-block;
    margin-top: 14px;
    color: #ffd76a;
    font-weight: 700;
}

.lojas-tech-showcase {
    padding: 30px 0 34px;
}

.lojas-tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.loja-tech-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    min-height: 320px;
}

.loja-tech-glow {
    position: absolute;
    width: 230px;
    height: 230px;
    border-radius: 999px;
    top: -80px;
    right: -30px;
    opacity: 0.22;
    filter: blur(22px);
}

.loja-tech-content {
    position: relative;
    z-index: 1;
    padding: 28px;
}

.loja-tech-content h3 {
    margin: 14px 0 12px;
    color: #fff;
    font-size: 30px;
    line-height: 1.12;
}

.loja-tech-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 18px 0 22px;
}

.loja-tech-meta span {
    color: #9fb5d7;
    font-size: 13px;
}

.contact-tech {
    padding: 16px 0 60px;
}

.contact-tech-box {
    border-radius: 30px;
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.contact-tech-box h2 {
    margin: 10px 0 10px;
    color: #fff;
    font-size: 34px;
    line-height: 1.15;
}

.contact-tech-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 0 28px;
    border-radius: 999px;
    font-weight: 800;
    color: #0a0f19;
    background: linear-gradient(135deg, #00d46a, #5cff95);
    box-shadow: 0 16px 34px rgba(0, 212, 106, 0.22);
    white-space: nowrap;
}

.contact-tech-button:hover {
    box-shadow: 0 22px 46px rgba(0, 212, 106, 0.30);
}

.home-footer-tech {
    border-top: 1px solid rgba(255,255,255,0.08);
    background: rgba(0,0,0,0.18);
}

.home-footer-tech-inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    color: #bfd0e9;
}

.home-footer-tech-inner strong {
    color: #ffd76a;
}

.home-footer-tech-inner p {
    margin: 6px 0 0;
}

@media (max-width: 1180px) {
    .hero-tech-grid,
    .solutions-grid-tech,
    .lojas-tech-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-tech-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .home-header-tech-inner,
    .contact-tech-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .solutions-grid-tech,
    .lojas-tech-grid {
        grid-template-columns: 1fr;
    }

    .hero-tech {
        padding-top: 40px;
    }

    .hero-tech-copy h1 {
        font-size: 38px;
    }

    .hero-tech-visual {
        min-height: auto;
    }

    .main-screen-tech,
    .card-a-tech,
    .card-b-tech {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        margin-bottom: 16px;
    }

    .ticker-tech-card {
        width: 280px;
    }
}

/* =========================
   ROBÔ FLUTUANTE DE VENDAS
========================= */

.sales-bot {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 3000;
}

.sales-bot-trigger {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.sales-bot-ring {
    position: absolute;
    inset: auto auto 8px 12px;
    width: 76px;
    height: 76px;
    border-radius: 999px;
    background: rgba(0, 212, 106, 0.16);
    animation: salesBotPulse 1.8s infinite;
    z-index: 0;
}

@keyframes salesBotPulse {
    0% {
        transform: scale(1);
        opacity: .9;
    }
    70% {
        transform: scale(1.18);
        opacity: 0;
    }
    100% {
        transform: scale(1.18);
        opacity: 0;
    }
}

.sales-bot-avatar {
    position: relative;
    z-index: 1;
    width: 82px;
    height: 82px;
    border-radius: 999px;
    overflow: hidden;
    background: linear-gradient(135deg, #0d1628, #122039);
    border: 2px solid rgba(255,255,255,0.16);
    box-shadow:
        0 16px 32px rgba(0,0,0,0.26),
        0 0 24px rgba(0, 212, 106, 0.22);
    animation: botFloat 2.6s ease-in-out infinite;
}

@keyframes botFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

.sales-bot-avatar img,
.sales-bot-panel-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sales-bot-callout {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(7, 15, 28, 0.94);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 16px 34px rgba(0,0,0,0.22);
    color: #fff;
    text-align: left;
    backdrop-filter: blur(10px);
}

.sales-bot-callout strong {
    font-size: 15px;
    line-height: 1.1;
}

.sales-bot-callout span {
    font-size: 12px;
    color: #a9c8ff;
}

.sales-bot-panel {
    position: absolute;
    right: 0;
    bottom: 104px;
    width: 360px;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(8, 15, 28, 0.96);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 24px 58px rgba(0,0,0,0.28);
    backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px) scale(.98);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.sales-bot-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.sales-bot-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    background: linear-gradient(135deg, rgba(255, 204, 51, 0.16), rgba(0, 194, 255, 0.10));
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sales-bot-panel-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sales-bot-panel-avatar {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.14);
    background: #101c31;
}

.sales-bot-panel-brand strong {
    display: block;
    color: #fff;
    font-size: 16px;
}

.sales-bot-panel-brand span {
    display: block;
    color: #b7c9e9;
    font-size: 12px;
}

.sales-bot-close {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: none;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.sales-bot-panel-body {
    padding: 18px;
}

.sales-bot-text {
    margin: 0 0 16px;
    color: #c0d2eb;
    line-height: 1.65;
    font-size: 14px;
}

.sales-bot-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sales-bot-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sales-bot-field label {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.sales-bot-field input {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.05);
    color: #fff;
    outline: none;
    transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.sales-bot-field input::placeholder {
    color: #9ab0d1;
}

.sales-bot-field input:focus {
    border-color: rgba(255, 204, 51, 0.35);
    box-shadow: 0 0 0 4px rgba(255, 204, 51, 0.08);
    background: rgba(255,255,255,0.08);
}

.sales-bot-submit {
    min-height: 50px;
    border: none;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 900;
    color: #0a0f19;
    background: linear-gradient(135deg, #00d46a, #5cff95);
    box-shadow: 0 16px 30px rgba(0, 212, 106, 0.22);
    cursor: pointer;
    transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.sales-bot-submit:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
    box-shadow: 0 20px 36px rgba(0, 212, 106, 0.30);
}

@media (max-width: 768px) {
    .sales-bot {
        right: 14px;
        bottom: 14px;
    }

    .sales-bot-callout {
        display: none;
    }

    .sales-bot-panel {
        width: min(92vw, 360px);
        right: 0;
        bottom: 96px;
    }

    .sales-bot-avatar {
        width: 72px;
        height: 72px;
    }

    .sales-bot-ring {
        width: 66px;
        height: 66px;
    }
}

/* =========================================================
   CARDS DE LOJAS - ESTILO PREMIUM COM BACKGROUND COMPLETO
   ========================================================= */

.lojas-tech-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    gap: 28px;
    align-items: stretch;
}

.loja-card-bg {
    position: relative;
    overflow: hidden;
    min-height: 760px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.10);
    background: #071426;
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.40),
        0 0 0 1px rgba(255,255,255,0.03) inset;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.loja-card-bg:hover {
    transform: translateY(-8px);
    border-color: color-mix(in srgb, var(--loja-cor) 65%, white 35%);
    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.50),
        0 0 35px color-mix(in srgb, var(--loja-cor) 35%, transparent 65%);
}

/* IMAGEM DE FUNDO DO CARD */
.loja-card-background {
    position: absolute;
    inset: 0;
    background-image: var(--loja-bg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 0.38;
    transform: scale(1.03);
    filter: saturate(1.15) contrast(1.05);
}

/* OVERLAY ESCURO PARA DEIXAR O TEXTO LEGÍVEL */
.loja-card-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(6, 18, 33, 0.18) 0%,
            rgba(6, 18, 33, 0.40) 24%,
            rgba(5, 14, 26, 0.78) 52%,
            rgba(3, 9, 18, 0.95) 76%,
            rgba(2, 6, 12, 0.98) 100%
        ),
        radial-gradient(
            circle at top center,
            color-mix(in srgb, var(--loja-cor) 26%, transparent 74%) 0%,
            transparent 52%
        );
}

/* BRILHO COLORIDO */
.loja-card-glow {
    position: absolute;
    inset: auto -10% -18% -10%;
    height: 240px;
    background: radial-gradient(
        ellipse at center,
        color-mix(in srgb, var(--loja-cor) 30%, transparent 70%) 0%,
        transparent 70%
    );
    pointer-events: none;
    filter: blur(16px);
}

.loja-tech-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 34px 28px 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* LOGO NO TOPO */
.loja-tech-logo-box.grande {
    width: 100%;
    min-height: 260px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 26px;
}

.loja-tech-logo.grande {
    max-width: 270px;
    max-height: 210px;
    object-fit: contain;
    display: block;
    filter:
        drop-shadow(0 10px 25px rgba(0, 0, 0, 0.35))
        drop-shadow(0 0 18px rgba(255,255,255,0.08));
    transition: transform 0.35s ease;
}

.loja-card-bg:hover .loja-tech-logo.grande {
    transform: scale(1.04);
}

.loja-tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.88);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.badge-dot {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: var(--loja-cor);
    box-shadow: 0 0 14px var(--loja-cor);
}

.loja-card-bg h3 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(2rem, 2.5vw, 3.1rem);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.loja-card-bg p {
    margin: 0 0 28px;
    color: rgba(255,255,255,0.86);
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 95%;
}

.loja-tech-meta-grid {
    margin-top: 8px;
    margin-bottom: 30px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 18px;
    align-items: center;
}

.meta-tech-divider {
    width: 1px;
    height: 52px;
    background: rgba(255,255,255,0.16);
    justify-self: center;
}

.meta-tech-item small {
    display: block;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.62);
    font-size: 0.95rem;
    font-weight: 500;
}

.meta-tech-item strong {
    display: block;
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.45;
    word-break: break-word;
}

/* BOTÃO */
.btn-card-loja {
    margin-top: auto;
    width: 100%;
    min-height: 78px;
    border-radius: 22px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    font-size: 1.25rem;
    font-weight: 800;
    color: #131313;
    background: linear-gradient(135deg, #ffb300 0%, #ffc928 48%, #ffb300 100%);
    box-shadow:
        0 18px 35px rgba(255, 187, 0, 0.22),
        inset 0 1px 0 rgba(255,255,255,0.42);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn-card-loja:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
    box-shadow:
        0 24px 42px rgba(255, 187, 0, 0.30),
        inset 0 1px 0 rgba(255,255,255,0.46);
}

.btn-card-loja span {
    display: inline-flex;
    align-items: center;
}

.btn-card-arrow {
    font-size: 2rem;
    line-height: 1;
}

/* RESPONSIVO */
@media (max-width: 1200px) {
    .lojas-tech-grid {
        grid-template-columns: repeat(2, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .lojas-tech-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .loja-card-bg {
        min-height: 680px;
        border-radius: 24px;
    }

    .loja-tech-content {
        padding: 24px 20px 20px;
    }

    .loja-tech-logo-box.grande {
        min-height: 220px;
        margin-bottom: 18px;
    }

    .loja-tech-logo.grande {background-position: center center;
        max-width: 220px;
        max-height: 170px;
    }

    .loja-card-bg h3 {
        font-size: 2.2rem;
    }

    .loja-card-bg p {
        font-size: 1.06rem;
        line-height: 1.6;
        max-width: 100%;
    }

    .loja-tech-meta-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .meta-tech-divider {
        display: none;
    }

    .btn-card-loja {
        min-height: 68px;
        font-size: 1.12rem;
        padding: 0 22px;
    }
}

/* =========================================================
   SEÇÃO DE PROJETOS REALIZADOS
========================================================= */

.projetos-tech-showcase {
    position: relative;
    padding: 90px 0;
}

.projetos-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 28px;
    margin-top: 36px;
}

.projeto-tech-card {
    position: relative;
    min-height: 520px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(10, 18, 35, 0.75);
    box-shadow:
        0 24px 50px rgba(0,0,0,0.35),
        0 0 0 1px rgba(255,255,255,0.03) inset;
    isolation: isolate;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.projeto-tech-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.18);
    box-shadow:
        0 32px 60px rgba(0,0,0,0.42),
        0 0 25px color-mix(in srgb, var(--projeto-cor) 35%, transparent);
}

.projeto-card-background {
    position: absolute;
    inset: 0;
    background-image: var(--projeto-bg);
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    filter: blur(2px);
    opacity: 0.22;
    z-index: 0;
}

.projeto-card-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(4,10,22,0.15) 0%, rgba(4,10,22,0.88) 65%, rgba(4,10,22,0.98) 100%);
    z-index: 1;
}

.projeto-card-glow {
    position: absolute;
    inset: auto -20% -20% auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: var(--projeto-cor);
    filter: blur(80px);
    opacity: 0.20;
    z-index: 1;
}

.projeto-tech-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 26px;
}

.projeto-tech-thumb-box {
    width: 100%;
    height: 130px;
    border-radius: 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    overflow: hidden;
    box-shadow: inset 0 0 25px rgba(255,255,255,0.03);
}

.projeto-tech-thumb {
    max-width: 80%;
    max-height: 90px;
    object-fit: contain;
    filter: drop-shadow(0 6px 16px rgba(0,0,0,0.25));
}

.projeto-tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    margin-bottom: 16px;
    background: rgba(255,255,255,0.08);
    color: #dbe9ff;
    border: 1px solid rgba(255,255,255,0.10);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .3px;
    text-transform: uppercase;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--projeto-cor);
    box-shadow: 0 0 12px var(--projeto-cor);
}

.projeto-tech-content h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 800;
}

.projeto-tech-content p {
    margin: 0 0 22px;
    color: #cdd9ee;
    font-size: 15px;
    line-height: 1.7;
}

.projeto-tech-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 16px;
    align-items: center;
    margin-top: auto;
    margin-bottom: 22px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.meta-tech-item small {
    display: block;
    margin-bottom: 6px;
    color: #8fa9cf;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.meta-tech-item strong {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
}

.meta-tech-divider {
    width: 1px;
    height: 100%;
    background: rgba(255,255,255,0.10);
}

.btn-card-projeto {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 54px;
    padding: 0 18px;
    border-radius: 16px;
    text-decoration: none;
    color: #08101d;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, color-mix(in srgb, var(--projeto-cor) 22%, #ffffff) 100%);
    box-shadow:
        0 12px 24px rgba(0,0,0,0.22),
        0 0 20px color-mix(in srgb, var(--projeto-cor) 25%, transparent);
    transition: transform .25s ease, box-shadow .25s ease;
}

.btn-card-projeto:hover {
    transform: translateY(-2px);
    box-shadow:
        0 18px 30px rgba(0,0,0,0.28),
        0 0 30px color-mix(in srgb, var(--projeto-cor) 32%, transparent);
}

.btn-card-arrow {
    font-size: 18px;
    line-height: 1;
}

.empty-state-tech {
    margin-top: 30px;
    padding: 28px;
    border-radius: 22px;
    text-align: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: #d8e4f7;
}

/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 768px) {
    .projetos-tech-showcase {
        padding: 70px 0;
    }

    .projetos-tech-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .projeto-tech-card {
        min-height: auto;
    }

    .projeto-tech-content {
        padding: 22px;
    }

    .projeto-tech-content h3 {
        font-size: 22px;
    }

    .projeto-tech-meta-grid {
        grid-template-columns: 1fr;
    }

    .meta-tech-divider {
        display: none;
    }
}