@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");
@import url("https://cdn.jsdelivr.net/npm/@fontsource-variable/geist/index.css");

/* ==========================================================================
   MAPA DO ARQUIVO | CSS global em `/styles/style.css`
   - Compartilhado: reset, menu, tema escuro e navbar global
   - index.html: hero, fundo, banners, terminal, galerias e CTAs
   - dev.html: busca, filtros e controles da vitrine de projetos
   - sobre.html: container, perfil e blocos de apresentacao
   - orcamento.html: formulario e UX dos campos
   - reconhecimentos.html: cards e refinamentos da pagina
   - obrigado.html: tela de confirmacao
   - projetos/*.html: botao GitHub e blocos de codigo
   - Compartilhado: rodape moderno e utilitarios auxiliares
   ========================================================================== */

/* ==========================================================================
   COMPARTILHADO | base global, navegacao principal e tema
   Usado na home e nas paginas internas que reutilizam `.navbar` e `.menu`
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    list-style-type: none;
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        "Segoe UI",
        Roboto,
        "Helvetica Neue",
        Arial,
        "Noto Sans",
        "Apple Color Emoji",
        "Segoe UI Emoji",
        sans-serif;
    box-sizing: border-box;
}

html {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Menu */

.logo {
    line-height: 50px;
    padding: 0 10px;
    text-align: center;
    margin: 0;
}

.logo2 {
    line-height: 100px;
    padding: 0 50px;
    float: right;
}

/* Menu */

.navbar {
    position: fixed;
    z-index: 100;
    height: 80px;
    overflow: visible;
    top: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, #056bf6, #1bc7fb);
    width: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition:
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.logo {
    background: url(../img/logo.png) no-repeat 50% 50%;
    background-size: contain;
    width: 130px;
    height: 100px;
    float: left;
    margin-left: 20px;
}

.menu {
    position: fixed;
    right: 50px;
}

.menu a {
    color: #2a375f;
    text-decoration: none;
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        "Segoe UI",
        Roboto,
        "Helvetica Neue",
        Arial,
        "Noto Sans",
        sans-serif;
    font-weight: 700;
    margin-left: 24px;
    transition: color 0.3s ease;
    text-transform: uppercase;
    position: relative;
}

.menu a:hover {
    color: #ffffff;
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.menu a:hover::after {
    width: 100%;
}

.header {
    width: 100%;
    height: 100px;
    background: url(../bg.png) no-repeat 50% 50%;
    background-size: cover;
    margin-top: 80px;
}

.btn {
    display: none;
    position: absolute;
    right: 20px;
}

.btn:hover > span {
    background: #ffffff;
}

.btn span {
    display: block;
    margin: 6px;
    width: 40px;
    height: 3px;
    background: #333;
}

p {
    padding: 20px;
    font-size: 20px;
    text-align: justify;
}

@media only screen and (max-width: 600px) {
    .navbar {
        overflow: visible;
    }

    .menu {
        width: 100%;
        right: 0;
        top: 80px;
        background: rgba(255, 255, 255, 0.22);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(255, 255, 255, 0.35);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
        border-radius: 16px;
        overflow: hidden;
        max-height: 0;
    }

    .menu a {
        display: block;
        text-align: center;
        padding: 10px;
        margin: 0;
    }

    .btn {
        display: block;
        cursor: pointer;
    }

    .show {
        max-height: 500px;
    }

    @media (min-width: 801px) {
        .btn {
            display: none;
        }
        .navbar .menu {
            top: 20px;
            right: 24px;
            display: inline-flex;
            align-items: center;
            gap: 18px;
            background: #ffffff !important;
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            padding: 10px 16px;
            border-radius: 9999px;
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
            z-index: 200;
        }
        html.dark .navbar .menu {
            background: #0f172a !important;
            border: 1px solid rgba(148, 163, 184, 0.35);
            box-shadow: 0 12px 28px rgba(2, 6, 23, 0.5);
        }
        .navbar .menu a {
            margin: 0;
            padding: 6px 10px;
            color: #1f2937;
            border-radius: 10px;
            transition:
                background 0.25s ease,
                color 0.25s ease;
        }
        .navbar .menu a:hover {
            background: rgba(255, 255, 255, 0.22);
            color: #ffffff;
        }
        html.dark .navbar .menu a {
            color: #e5e7eb;
        }
        html.dark .navbar .menu a:hover {
            background: rgba(255, 255, 255, 0.08);
        }
    }
}

.navbar.scrolled {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
html.dark .navbar.scrolled {
    box-shadow: 0 12px 30px rgba(2, 6, 23, 0.55);
}

@media only screen and (max-width: 600px) {
    .menu.show {
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        width: min(640px, calc(100% - 32px));
        top: 80px;
        z-index: 1000;
        background: linear-gradient(to right, #056bf6, #1bc7fb);
        border: 1px solid rgba(255, 255, 255, 0.4);
        border-radius: 18px;
        padding: 14px 0 30px;
        overflow: hidden;
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    }
    .menu.show::before {
        content: none;
    }
    .menu.show a {
        color: #ffffff;
    }
    html.dark .menu {
        background: rgba(11, 18, 32, 0.72);
        border: 1px solid rgba(148, 163, 184, 0.28);
        box-shadow: 0 10px 28px rgba(2, 6, 23, 0.45);
    }
    html.dark .menu.show {
        background: linear-gradient(
            90deg,
            rgba(11, 18, 32, 0.96) 0%,
            rgba(15, 23, 42, 0.96) 100%
        ) !important;
        border-color: rgba(148, 163, 184, 0.35);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    html.dark .menu.show a {
        color: #e5e7eb;
    }
    html.dark .menu.show::before {
        content: none;
    }
    .menu .theme-toggle {
        width: 150px;
        height: 44px;
        padding: 0 20px;
    }
    .menu .theme-toggle .icon {
        font-size: 18px;
        margin: 0;
        cursor: pointer;
        pointer-events: auto;
    }
    .menu .theme-toggle .thumb {
        top: 4px;
        width: 64px;
        height: 36px;
        pointer-events: none;
    }
    .menu .theme-toggle.mode-light .thumb {
        left: 4px;
        right: auto;
    }
    .menu .theme-toggle.mode-dark .thumb {
        right: 4px;
        left: auto;
    }
}

@media (min-width: 601px) and (max-width: 1024px) {
    .menu {
        left: 0;
        right: 0;
        width: 100%;
        top: 80px;
        z-index: 1000;
    }
    .menu.show {
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        width: min(720px, calc(100% - 48px));
        background: linear-gradient(to right, #056bf6, #1bc7fb);
        border: 1px solid rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-radius: 18px;
        padding: 14px 0 30px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    }
    html.dark .menu.show {
        background: linear-gradient(
            90deg,
            rgba(11, 18, 32, 0.96) 0%,
            rgba(15, 23, 42, 0.96) 100%
        ) !important;
        border: 1px solid rgba(148, 163, 184, 0.35);
        box-shadow: 0 16px 40px rgba(2, 6, 23, 0.48);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .menu a {
        display: block;
        padding: 12px 14px;
        margin: 0;
        text-align: center;
    }
    .menu .theme-toggle {
        margin: 16px auto 12px;
    }
}

@media (max-width: 1280px) {
    .menu {
        left: 0;
        right: 0;
        width: 100%;
        top: 80px;
        z-index: 1000;
    }
    .menu.show {
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        width: min(860px, calc(100% - 64px));
        background: linear-gradient(to right, #056bf6, #1bc7fb);
        border: 1px solid rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-radius: 18px;
        padding: 14px 0 30px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    }
    html.dark .menu.show {
        background: linear-gradient(
            90deg,
            rgba(11, 18, 32, 0.96) 0%,
            rgba(15, 23, 42, 0.96) 100%
        ) !important;
        border: 1px solid rgba(148, 163, 184, 0.35);
        box-shadow: 0 16px 40px rgba(2, 6, 23, 0.48);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .menu a {
        display: block;
        padding: 12px 14px;
        margin: 0;
        text-align: center;
    }
    .menu .theme-toggle {
        margin: 16px auto 12px;
    }
}

@media (max-width: 768px) {
    .menu.show {
        padding: 12px 0 28px;
        border-radius: 16px;
    }
    .menu a {
        padding: 12px 14px;
    }
    .menu .theme-toggle {
        margin: 16px auto 12px;
        width: 110px;
        height: 38px;
    }
}

/* Botão de alternância de tema no menu */
.menu .theme-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-left: 20px;
    width: 150px;
    height: 40px;
    padding: 0 14px;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #1f2937;
    background: rgba(255, 255, 255, 0.22);
    cursor: pointer;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}
.menu .theme-toggle:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.6);
}
@media only screen and (max-width: 768px) {
    .menu .theme-toggle {
        display: block;
        margin: 12px auto;
        width: 160px;
        height: 44px;
    }
}

/* Tema Escuro global */
html.dark {
    --dark-bg-base: #020202;
    --dark-bg-deep: #020202;
    --dark-bg-mid: #020202;
    --dark-bg-soft: rgba(4, 8, 14, 0.9);
    --dark-panel: rgba(4, 8, 14, 0.94);
    --dark-panel-strong: rgba(4, 8, 14, 0.94);
    --dark-panel-muted: rgba(4, 8, 14, 0.94);
    --dark-border: rgba(96, 165, 250, 0.09);
    --dark-border-strong: rgba(59, 130, 246, 0.12);
    --dark-text: #e5eefc;
    --dark-muted: #cbd5e1;
    --dark-shadow: 0 28px 70px rgba(0, 2, 6, 0.72);
    --dark-shadow-soft: 0 16px 34px rgba(0, 2, 6, 0.54);
    scrollbar-color: #2563eb #020202;
}
html.dark body {
    background-color: var(--dark-bg-base);
    background: #020202;
    color: var(--dark-text);
}
html.dark body::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}
html.dark body::-webkit-scrollbar-track {
    background: #020202;
    border-radius: 9999px;
}
html.dark body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #1d4ed8 0%, #2563eb 55%, #60a5fa 100%);
    border-radius: 9999px;
    border: 2px solid rgba(2, 2, 2, 0.92);
}
html.dark body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #2563eb 0%, #3b82f6 55%, #93c5fd 100%);
}
html.dark .navbar {
    background: linear-gradient(
        90deg,
        rgba(6, 10, 18, 0.86) 0%,
        rgba(7, 12, 20, 0.84) 100%
    );
    border-bottom: 1px solid var(--dark-border);
    box-shadow: 0 10px 28px rgba(1, 3, 8, 0.5);
}
html.dark .menu a {
    color: #cbd5e1;
}
html.dark .menu a:hover {
    color: #ffffff;
}
html.dark .menu:not(.show) {
    background: transparent !important;
    border: none;
}
@media (max-width: 768px) {
    html.dark .menu.show {
        background: linear-gradient(
            90deg,
            rgba(6, 10, 18, 0.98) 0%,
            rgba(10, 18, 30, 0.98) 100%
        ) !important;
        border: 1px solid var(--dark-border-strong);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}
html.dark .container {
    background: transparent;
    color: #e5e7eb;
    border: none;
    box-shadow: none;
}
html.dark .text {
    color: #cbd5e1;
}
html.dark .fundo {
    background: transparent !important;
}
html.dark .fundo--clean {
    background: transparent !important;
}

html.dark .menu a::after {
    background: #38bdf8;
}
html.dark .theme-toggle {
    border-color: var(--dark-border);
    background: rgba(6, 10, 18, 0.82);
    color: #e5e7eb;
}
html.dark .theme-toggle:hover {
    background: rgba(6, 10, 18, 0.94);
    border-color: rgba(96, 165, 250, 0.16);
}

/* Integrando Tecnologias (dark) */
html.dark .integrations-showcase {
    background: rgba(4, 8, 14, 0.94);
    box-shadow: 0 20px 40px rgba(0, 2, 6, 0.68);
    border: 1px solid var(--dark-border);
}
html.dark .integrations-showcase .azul {
    background: rgba(4, 8, 14, 0.94) !important;
    box-shadow: 0 20px 40px rgba(0, 2, 6, 0.68) !important;
}
html.dark .tech-card {
    background: rgba(4, 8, 14, 0.94);
    border: 1px solid var(--dark-border);
    box-shadow: 0 10px 24px rgba(0, 2, 6, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
html.dark .tech-card:hover {
    border-color: rgba(96, 165, 250, 0.16);
    box-shadow: 0 12px 32px rgba(0, 2, 6, 0.62);
}
html.dark .tech-card h3 {
    color: #eaf2ff;
    font-weight: 600;
}
html.dark .tech-card .tech-icon {
    color: #ffffff !important;
    filter: none;
}

/* Automation Card (dark) */
html.dark .automation-card {
    background: rgba(4, 8, 14, 0.94);
    border: 1px solid var(--dark-border);
    box-shadow: 0 20px 40px rgba(0, 2, 6, 0.62);
}
html.dark .card-icon {
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.35);
}
html.dark .card-title {
    color: #e5e7eb;
    -webkit-text-fill-color: initial;
}
html.dark .card-divider {
    background: linear-gradient(90deg, #1d4ed8, #38bdf8, #1d4ed8);
}
html.dark .automation-card .text {
    color: #cbd5e1;
}

/* Projetos Banner (dark) */
html.dark .projects-banner {
    background: rgba(4, 8, 14, 0.94) !important;
    box-shadow: 0 20px 40px rgba(0, 2, 6, 0.64);
}
html.dark .banner-title {
    color: #e5e7eb;
}
html.dark .banner-description {
    color: #cbd5e1;
}
html.dark .highlight-item {
    background: rgba(4, 8, 14, 0.94);
    color: #e5e7eb;
    border: 1px solid var(--dark-border);
}
html.dark .banner-btn {
    background: #e5e7eb;
    color: #0f172a;
}
html.dark .banner-btn:hover {
    background: #f3f4f6;
}

/* Seção Azul (dark) */
html.dark .azul {
    background: rgba(4, 8, 14, 0.94) !important;
    box-shadow: 0 20px 40px rgba(0, 2, 6, 0.66) !important;
}
html.dark .titulo3 {
    color: #e5e7eb;
}

/* Dev page – buscador, seletor e cards no tema escuro */
html.dark #buscaProjetos {
    background: rgba(4, 8, 14, 0.94);
    border: 1px solid var(--dark-border);
    color: #e5e7eb;
}
html.dark #buscaProjetos::placeholder {
    color: rgba(203, 213, 225, 0.8);
}
html.dark #buscaProjetos:focus {
    background: rgba(4, 8, 14, 0.94);
    border: 1px solid #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
html.dark #categoriaFiltro {
    background: rgba(4, 8, 14, 0.94);
    border: 1px solid var(--dark-border);
    color: #e5e7eb;
}
html.dark .filtro-categorias::after {
    color: rgba(229, 231, 235, 0.8);
}
html.dark .icone2 {
    background: rgba(4, 8, 14, 0.94);
    border: 1px solid var(--dark-border);
    box-shadow: 0 8px 32px rgba(0, 2, 6, 0.58);
}
html.dark .icone2 .paragrafo {
    color: #e5e7eb;
}

/* Formulário no dark */
html.dark .form-orcamento {
    background: rgba(4, 8, 14, 0.94);
    border: 1px solid var(--dark-border);
    box-shadow: 0 20px 40px rgba(0, 2, 6, 0.6);
}
html.dark .form-orcamento label {
    -webkit-text-fill-color: initial;
    color: #e5e7eb;
}
html.dark .form-orcamento input[type="text"],
html.dark .form-orcamento input[type="email"],
html.dark .form-orcamento input[type="tel"],
html.dark .form-orcamento input[type="date"],
html.dark .form-orcamento input[type="number"],
html.dark .form-orcamento textarea {
    background: rgba(4, 8, 14, 0.94);
    border: 1px solid var(--dark-border);
    color: #e5e7eb;
}
html.dark .form-orcamento input[type="text"]::placeholder,
html.dark .form-orcamento input[type="email"]::placeholder,
html.dark .form-orcamento input[type="tel"]::placeholder,
html.dark .form-orcamento input[type="date"]::placeholder,
html.dark .form-orcamento input[type="number"]::placeholder,
html.dark .form-orcamento textarea::placeholder {
    color: rgba(203, 213, 225, 0.8);
}
html.dark .form-orcamento input[type="text"]:focus,
html.dark .form-orcamento input[type="email"]:focus,
html.dark .form-orcamento input[type="tel"]:focus,
html.dark .form-orcamento input[type="date"]:focus,
html.dark .form-orcamento input[type="number"]:focus,
html.dark .form-orcamento textarea:focus {
    background: rgba(4, 8, 14, 0.94);
    border: 1px solid #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}
html.dark .form-orcamento select {
    background: rgba(4, 8, 14, 0.94);
    border: 1px solid var(--dark-border);
    color: #e5e7eb;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e5e7eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 50px;
}
html.dark .form-orcamento select option {
    background: #111827;
    color: #e5e7eb;
}
html.dark
    .form-orcamento
    input[type="date"]::-webkit-calendar-picker-indicator {
    background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e5e7eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3e%3c/rect%3e%3cline x1='16' y1='2' x2='16' y2='6'%3e%3c/line%3e%3cline x1='8' y1='2' x2='8' y2='6'%3e%3c/line%3e%3cline x1='3' y1='10' x2='21' y2='10'%3e%3c/line%3e%3c/svg%3e")
        no-repeat;
    filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.25));
}
html.dark .btn-submit {
    box-shadow: 0 7px 15px rgba(59, 130, 246, 0.35);
}

/* Seção de Demonstração (global override) */
html.dark .demo-section {
    background: linear-gradient(
        180deg,
        rgba(1, 4, 10, 0.98) 0%,
        rgba(4, 11, 21, 0.96) 100%
    ) !important;
}
html.dark .demo-video {
    background: rgba(4, 8, 14, 0.94) !important;
    border: 1px solid var(--dark-border) !important;
    box-shadow: 0 10px 30px rgba(0, 2, 6, 0.66) !important;
}
html.dark .demo-video iframe {
    background: #020811 !important;
    box-shadow: none !important;
}
html.dark .demo-section .text {
    color: #cbd5e1 !important;
}

/* Feature cards (dark) */
html.dark .feature-card {
    background: rgba(4, 8, 14, 0.94);
    border-left-color: #38bdf8;
    box-shadow: 0 5px 20px rgba(0, 2, 6, 0.5);
}
html.dark .feature-title {
    color: #e5e7eb;
}
html.dark .feature-description {
    color: #cbd5e1;
}
html.dark .feature-icon {
    color: #60a5fa;
}
html.dark .feature-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

/* Modal (dark) */
html.dark #tech-modal .modal-content {
    background: rgba(4, 8, 14, 0.94);
    border: 1px solid var(--dark-border);
    box-shadow: 0 20px 40px rgba(0, 2, 6, 0.68);
    color: #e5e7eb;
}
html.dark #tech-modal .modal-title {
    color: #e5e7eb;
}
html.dark #tech-modal .modal-description {
    color: #cbd5e1;
}
html.dark #tech-modal .modal-features h4 {
    color: #e5e7eb;
}
html.dark #tech-modal .features-list li {
    color: #cbd5e1;
}
html.dark #tech-modal .modal-close {
    color: #cbd5e1;
}
html.dark #tech-modal .modal-close:hover {
    color: #e5e7eb;
}

#WzBoDy {
    background: linear-gradient(
        135deg,
        rgba(27, 199, 251, 0.15),
        rgba(59, 130, 246, 0.12)
    ) !important;
    border: 1px solid rgba(148, 163, 184, 0.28) !important;
    border-radius: 12px !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    box-shadow: 0 12px 32px rgba(2, 6, 23, 0.45) !important;
    overflow: hidden !important;
}
#WzBoDy::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1d4ed8, #38bdf8, #1d4ed8);
}
#WzBoDyI {
    color: #0f172a !important;
    font-family:
        Inter,
        system-ui,
        -apple-system,
        Segoe UI,
        Roboto,
        sans-serif !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    text-align: left !important;
}
html.dark #WzBoDy {
    background: rgba(4, 8, 14, 0.94) !important;
    border: 1px solid var(--dark-border) !important;
    box-shadow: 0 16px 40px rgba(0, 2, 6, 0.64) !important;
}
html.dark #WzBoDyI {
    color: #e5e7eb !important;
}

/* Reconhecimentos – tema escuro com glass */
html.dark .recognition-card {
    background: rgba(4, 8, 14, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--dark-border);
    box-shadow: 0 12px 32px rgba(0, 2, 6, 0.6);
}
html.dark .company-logo {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.24);
}
html.dark .recognition-title {
    color: #e5e7eb;
}
html.dark .company-name {
    color: #93c5fd;
}
html.dark .recognition-description {
    color: #cbd5e1;
}
html.dark .recognition-year {
    background: rgba(4, 8, 14, 0.94);
    border: 1px solid var(--dark-border);
    color: #e5e7eb;
}
html.dark .tag {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 70%, #38bdf8 100%);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.24);
}

/* Modern CTA Card – dark legibilidade */
html.dark .modern-cta-card .feature-item span {
    color: #eaf2ff;
    font-weight: 600;
}
html.dark .modern-cta-card .feature-item i {
    color: #7dd3fc;
}
html.dark .modern-cta-card .cta-subtitle {
    color: #e0e7ff;
}

/* Rodapé no tema escuro */
html.dark .rodapé {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-top: 0;
    box-shadow: none;
    padding: 0;
}
html.dark .rod {
    color: #e5e7eb;
    text-shadow: 0 1px 8px rgba(59, 130, 246, 0.08);
}
html.dark .rod-item {
    background: rgba(4, 8, 14, 0.94);
    border-color: rgba(96, 165, 250, 0.09);
    box-shadow: none;
}
html.dark .rod-separator {
    color: rgba(148, 163, 184, 0.56);
}

/* Integrations card – contenção */
.integrations-showcase {
    padding: 30px 20px;
    clip-path: inset(0 round 15px);
}
.tech-grid {
    padding: 8px;
    box-sizing: border-box;
}
@media (min-width: 769px) {
    .integrations-showcase {
        padding: 50px 35px;
        clip-path: inset(0 round 20px);
    }
}

@media screen and (max-width: 768px) {
    .navbar {
        letter-spacing: 2px;
    }

    .navbar {
        overflow: visible;
    }

    .menu {
        width: 100%;
        right: 0;
        top: 80px;
        background: linear-gradient(to right, #056bf6, #1bc7fb);
        overflow: hidden;
        max-height: 0;
    }

    .menu a {
        display: block;
        text-align: center;
        padding: 10px;
        margin: 0;
    }

    .btn {
        display: block;
        cursor: pointer;
    }

    .show {
        max-height: 500px;
    }
}

@media screen and (max-width: 828px) {
    .navbar {
        letter-spacing: 2px;
    }

    .navbar {
        overflow: visible;
    }

    .menu {
        width: 100%;
        right: 0;
        top: 80px;
        background: linear-gradient(to right, #056bf6, #1bc7fb);
        overflow: hidden;
        max-height: 0;
    }

    .menu a {
        display: block;
        text-align: center;
        padding: 10px;
        margin: 0;
    }

    .btn {
        display: block;
        cursor: pointer;
    }

    .show {
        max-height: 500px;
    }
}

@media screen and (max-width: 1371px) {
    .navbar {
        letter-spacing: 2px;
    }

    .navbar {
        overflow: visible;
    }

    .menu {
        width: 100%;
        right: 0;
        top: 80px;
        background: linear-gradient(to right, #056bf6, #1bc7fb);
        overflow: hidden;
        max-height: 0;
    }

    .menu a {
        display: block;
        text-align: center;
        padding: 10px;
        margin: 0;
    }

    .btn {
        display: block;
        cursor: pointer;
    }

    .show {
        max-height: 500px;
    }
}

/* fim do menu  */

/* ==========================================================================
   PAGINA: index.html
   Componentes: imagem/hero inicial, iframe de destaque e animacoes de entrada
   ========================================================================== */

/*Imagem Inicial do INDEX  */

.inicial {
    width: 900px;
    height: 900px;
    max-width: 100%;
    height: auto;
    position: initial;
}

.inicial {
    animation: moveUpDown 3s infinite alternate ease-in-out; /* Ajuste a duração conforme necessário */
}

iframe {
    width: 80%;
    height: 600px;
    display: block;
    margin: 0 auto;
    border: none;
}

/* 📱 Ajuste para telas menores */
@media (max-width: 1024px) {
    iframe {
        width: 90%;
        height: 500px;
    }
}

@media (max-width: 768px) {
    iframe {
        width: 95%;
        height: 400px;
    }
}

@media (max-width: 480px) {
    iframe {
        width: 100%;
        height: 300px;
    }
}

@keyframes moveUpDown {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-30px);
    }
}

h1 {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out 0.2s both;
}

h2 {
    animation: fadeInUp 1s ease-out 0.4s both;
}

h3 {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.terminal-simulado {
    animation: fadeInUp 1s ease-out 0.8s both;
}

.container {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.azul {
    animation: fadeInUp 1s ease-out 0.5s both;
}

.icone2 {
    animation: fadeInUp 1s ease-out 0.7s both;
}

.form-orcamento {
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Fim da imagem do INDEX  */

.inicial2 {
    width: 2000px;
    height: 2000px;
    max-width: 100%;
    height: auto;
    position: center;
}

/* ==========================================================================
   COMPARTILHADO | botoes e grade social da implementacao base
   Referencia rapida para areas sociais antigas e variacoes herdadas
   ========================================================================== */

/* Seção de Redes Sociais Moderna */
.social-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #056bf6, #1bc7fb);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(5, 107, 246, 0.3);
    min-width: 140px;
    justify-content: center;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(5, 107, 246, 0.4);
    background: linear-gradient(135deg, #0056d6, #00b4d8);
}

.social-btn i {
    font-size: 18px;
}

.social-btn span {
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        "Segoe UI",
        Roboto,
        "Helvetica Neue",
        Arial,
        "Noto Sans",
        sans-serif;
}

/* Cores específicas para cada rede social (opcional) */
.social-btn.github:hover {
    background: linear-gradient(135deg, #333, #555);
}

.social-btn.linkedin:hover {
    background: linear-gradient(135deg, #0077b5, #00a0dc);
}

.social-btn.behance:hover {
    background: linear-gradient(135deg, #1769ff, #4285f4);
}

.social-btn.artstation:hover {
    background: linear-gradient(135deg, #13aff0, #1cbcf0);
}

.social-btn.fivehundredpx:hover {
    background: linear-gradient(135deg, #0099e5, #00aaff);
}

.social-btn.hackaday:hover {
    background: linear-gradient(135deg, #ff6600, #ff8533);
}

/* Responsividade */
@media (max-width: 768px) {
    .social-container {
        gap: 15px;
        padding: 15px;
    }

    .social-btn {
        padding: 10px 20px;
        font-size: 13px;
        min-width: 120px;
    }

    .social-btn i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .social-container {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .social-btn {
        width: 200px;
    }
}

/* ==========================================================================
   PAGINA: index.html
   Componentes: fundo da home, particulas, tipografia, banner e destaques
   ========================================================================== */

/* Fundo */

.fundo {
    background-color: rgb(255, 255, 255);
    text-align: center;
    padding: 10em 0;
}

.fundo .glass1 {
    position: relative;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    display: block;
    pointer-events: none;
    padding: 10px;
}

/* Fundo  */
.fundo {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.924));
    text-align: center;
    padding: 1em 0;
    position: relative;
    overflow: hidden;
}

.fundo--clean {
    background: transparent !important;
}

/* Sistema de Partículas Flutuantes */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    pointer-events: none;
    opacity: 0;
    animation: particleFloat 8s infinite linear;
    will-change: transform, opacity;
    transform: translate3d(0, 0, 0); /* Força aceleração de hardware */
}

.particle.circle {
    border-radius: 50%;
    background: rgba(5, 107, 246, 0.3);
}

.particle.square {
    background: rgba(27, 199, 251, 0.2);
}

.particle.triangle {
    width: 0;
    height: 0;
    background: transparent;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 12px solid rgba(88, 166, 255, 0.2);
}

/* Animações das partículas */
@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translate3d(0, 100vh, 0) rotate(0deg) scale(0.5);
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: translate3d(var(--random-x), -100px, 0) rotate(360deg)
            scale(1.2);
    }
}

@keyframes particleFloatReverse {
    0% {
        opacity: 0;
        transform: translate3d(0, -100px, 0) rotate(0deg) scale(0.8);
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: translate3d(var(--random-x), 100vh, 0) rotate(-360deg)
            scale(1.5);
    }
}

@keyframes particleFloatDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -20px, 0) rotate(0deg) scale(0.8);
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: translate3d(var(--random-x), 100vh, 0) rotate(360deg)
            scale(1.5);
    }
}

@keyframes particlePulse {
    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.3) rotate(180deg);
        opacity: 0.5;
    }
}

/* Responsividade para partículas em dispositivos móveis */
@media screen and (max-width: 768px) {
    .particles-container {
        /* Mantém partículas visíveis em mobile com performance otimizada */
    }
}

@media screen and (max-width: 1024px) and (min-width: 769px) {
    .particle {
        width: 3px;
        height: 3px;
    }

    .particle.square {
        width: 3px;
        height: 3px;
    }

    .particle.triangle {
        width: 0;
        height: 0;
        border-left: 2px solid transparent;
        border-right: 2px solid transparent;
        border-bottom: 3px solid rgba(255, 255, 255, 0.2);
    }
}

/* Títulos, Textos e Parágrafos*/

.text {
    font-size: 16px;
    color: #2d2d2d;
    hyphens: auto;
    text-align: justify;
    text-justify: inter-word;
    margin-top: 10px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.5;
    white-space: normal;
    word-spacing: normal;
    letter-spacing: normal;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

/* Estilos específicos para dispositivos móveis */
@media screen and (max-width: 500px) {
    .text {
        font-size: 15px;
        color: #2d2d2d;
        text-align: left;
        margin: 0 auto;
        padding: 5px;
        line-height: 1.5;
        margin-top: 10px;
        white-space: normal;
        word-spacing: normal;
        letter-spacing: normal;
        hyphens: auto;
        animation: fadeInUp 1s ease-out;
    }
}

/* Estilos específicos para dispositivos móveis */
@media screen and (max-width: 768px) {
    .text {
        font-size: 15px;
        color: #2d2d2d;
        text-align: left;
        margin: 0 auto;
        padding: 5px;
        line-height: 1.5;
        margin-top: 10px;
        white-space: normal;
        word-spacing: normal;
        letter-spacing: normal;
        hyphens: auto;
    }
}

/* Banner Moderno para Projetos */
.projects-banner {
    background: linear-gradient(135deg, #056bf6 0%, #1bc7fb 100%);
    padding: 40px 0;
    margin: 40px auto;
    max-width: 1200px;
    width: calc(100% - 40px);
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(5, 107, 246, 0.3);
    display: block;
    left: 0;
    right: 0;
}

.projects-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>')
        repeat;
    opacity: 0.4;
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.banner-text {
    flex: 1;
    color: white;
}

.banner-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInLeft 1s ease-out;
}

.banner-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
    text-align: left; /* MUDANÇA PRINCIPAL: de justify para left */
    animation: fadeInLeft 1s ease-out 0.2s both;
}

.banner-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    animation: fadeInLeft 1s ease-out 0.4s both;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.3);
}

.banner-action {
    animation: fadeInRight 1s ease-out 0.6s both;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #056bf6;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.banner-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.5s ease;
}

.banner-btn:hover::before {
    left: 100%;
}

.banner-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

.banner-btn i {
    transition: transform 0.3s ease;
}

.banner-btn:hover i {
    transform: translateX(5px);
}

.banner-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.element-3 {
    width: 40px;
    height: 40px;
    top: 80%;
    right: 5%;
    animation-delay: 4s;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsividade do Banner */
@media (max-width: 768px) {
    .projects-banner {
        padding: 60px 0;
        margin: 40px auto;
        width: calc(100% - 20px);
        border-radius: 15px;
        display: block;
        left: 0;
        right: 0;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .banner-title {
        font-size: 2.2rem;
    }

    .banner-description {
        font-size: 1.1rem;
    }

    .banner-highlights {
        justify-content: center;
    }

    .highlight-item {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .banner-btn {
        padding: 16px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 1.8rem;
    }

    .banner-description {
        font-size: 1rem;
    }

    .banner-highlights {
        flex-direction: column;
        align-items: center;
    }

    .highlight-item {
        width: fit-content;
    }
}

.bloco {
    flex: 50%;
    width: 800px;
    display: inline-block;
    top: 50%;
    left: 50%;
}

.titulo3 {
    background: linear-gradient(270deg, #ffffff, #53d4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 42px;
    text-align: center;
    text-indent: 2px;
    padding-right: 1em;
    margin: 0 auto;
    line-height: 1.5;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: "Roboto", sans-serif;
}

.titulo4 {
    background: linear-gradient(270deg, #056bf6, #1bc7fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 42px;
    text-align: center;
    text-indent: 2px;
    padding-right: 1em;
    margin: 0 auto;
    line-height: 1.5;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: "Roboto", sans-serif;
}

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

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   PAGINA: dev.html
   Componentes: animacoes de entrada e container dos controles de busca
   ========================================================================== */

.buscador,
.filtro-categorias {
    animation: slideInFromTop 0.6s ease-out;
}

.filtro-categorias {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

/* Container para os controles de busca */
.controles-busca {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* Responsividade aprimorada */
@media screen and (max-width: 768px) {
    .filtro-categorias::after {
        transform: translate(50%, -50%) translateX(80px);
    }

    #buscaProjetos {
        width: 90%;
        max-width: 350px;
        padding: 12px 15px;
    }

    #categoriaFiltro {
        min-width: 200px;
        padding: 10px 15px;
    }
}

@media screen and (max-width: 480px) {
    .controles-busca {
        padding: 20px 15px;
        margin: 0 10px 30px;
    }

    .filtro-categorias::after {
        transform: translate(50%, -50%) translateX(60px);
    }

    #buscaProjetos {
        width: 95%;
        padding: 10px 12px;
        font-size: 14px;
    }

    #categoriaFiltro {
        min-width: 180px;
        padding: 8px 12px;
        font-size: 14px;
    }
}

/* Container para os controles de busca */
.controles-busca {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* Responsividade aprimorada */
@media screen and (max-width: 768px) {
    .buscador::before {
        transform: translate(-50%, -50%) translateX(-150px);
    }

    .filtro-categorias::before {
        transform: translate(-50%, -50%) translateX(-100px);
    }

    .filtro-categorias::after {
        transform: translate(50%, -50%) translateX(80px);
    }

    #buscaProjetos {
        width: 90%;
        max-width: 350px;
        padding: 12px 15px 12px 40px;
    }

    #categoriaFiltro {
        min-width: 200px;
        padding: 10px 15px 10px 35px;
    }
}

@media screen and (max-width: 480px) {
    .controles-busca {
        padding: 20px 15px;
        margin: 0 10px 30px;
    }

    .buscador::before {
        transform: translate(-50%, -50%) translateX(-130px);
        font-size: 16px;
    }

    .filtro-categorias::before {
        transform: translate(-50%, -50%) translateX(-80px);
        font-size: 14px;
    }

    .filtro-categorias::after {
        transform: translate(50%, -50%) translateX(60px);
    }

    #buscaProjetos {
        width: 95%;
        padding: 10px 12px 10px 35px;
        font-size: 14px;
    }

    #categoriaFiltro {
        min-width: 180px;
        padding: 8px 12px 8px 30px;
        font-size: 14px;
    }
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(5, 107, 246, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 30px rgba(27, 199, 251, 0.5);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

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

/* Indicador de carregamento */
.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    border: 4px solid #056bf6;
    border-top: 4px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.titulo5 {
    background: linear-gradient(270deg, #056bf6, #1bc7fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 100px;
    text-align: center;
    text-indent: 2px;
    padding-right: 0em;
    margin-top: 0%;
    overflow-wrap: break-word;
    font-family: "Roboto", sans-serif;
    position: relative;
    z-index: 1;
    -webkit-animation:
        titulo5 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both,
        fadeInUp 1s ease-out;
    animation:
        titulo5 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both,
        fadeInUp 1s ease-out;
}

/* ----------------------------------------------
 * Generated by Animista on 2024-7-11 23:8:43
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info.
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation focus-in-expand
 * ----------------------------------------
 */
@-webkit-keyframes titulo5 {
    0% {
        letter-spacing: -0.5em;
        -webkit-filter: blur(12px);
        filter: blur(12px);
        opacity: 0;
    }
    100% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}
@keyframes titulo5 {
    0% {
        letter-spacing: -0.5em;
        -webkit-filter: blur(12px);
        filter: blur(12px);
        opacity: 0;
    }
    100% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

/* Estilos específicos para dispositivos móveis */
@media screen and (max-width: 600px) {
    .titulo5 {
        font-size: 32px;
        line-height: 1.15;
        margin-top: 6px;
    }
}

@media screen and (max-width: 960px) {
    .titulo5 {
        font-size: 42px;
        line-height: 1.2;
    }
}

@media screen and (max-width: 600px) {
    .titulo4 {
        font-size: 25px;
        text-align: center;
        text-indent: 2px;
        padding-right: 1em;
        margin: 0 auto;
        line-height: 1;
        align-items: center;
        justify-content: center;
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

strong {
    font-style: normal;
    color: #464747;
    white-space: normal;
    word-spacing: normal;
    letter-spacing: normal;
}

/* --- Final Títulos, Textos e Parágrafos---*/

/* ==========================================================================
   PAGINA: index.html
   Componentes: galerias, icones e blocos visuais reaproveitados na home
   ========================================================================== */

/* -- Galeria  */

.gallery-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
}

.photo {
    width: calc(33.33% - 20px);
    /* 33.33% para mostrar 3 fotos por linha, 20px para a margem */
    height: 50px;
    background-size: cover;
    margin: 10px;
    transition: transform 0.3s ease-out;
}

.photo:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .photo {
        width: calc(50% - 20px);
        /* 50% para mostrar 2 fotos por linha em telas menores */
    }
}

@media only screen and (max-width: 700px) {
    .responsive {
        width: 49.99999%;
        margin: 6px 0;
    }
}

@media only screen and (max-width: 500px) {
    .responsive {
        width: 49.99999%;
    }
}

/* -- Galeria Learn  */

.larguradoicone2 {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: block;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.bordadoicone2 {
    width: 100%;
    height: 4px;
    margin: 0 auto 15px;
    background: linear-gradient(90deg, #056bf6 0%, #1bc7fb 100%);
    border-radius: 2px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.icone2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: calc(33.333% - 20px);
    min-width: 280px;
    max-width: 350px;
    padding: 20px;
    margin: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
    box-sizing: border-box;
}

.icone2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(5, 107, 246, 0.1) 0%,
        rgba(27, 199, 251, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.icone2:hover::before {
    opacity: 1;
}

.icone2 img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.9) contrast(1.1);
    background: linear-gradient(
        90deg,
        rgba(240, 240, 240, 0.8) 25%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(240, 240, 240, 0.8) 75%
    );
    background-size: 200% 100%;
    box-sizing: border-box;
}

.icone2:hover img {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.icone2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.icone2:hover .bordadoicone2 {
    opacity: 1;
    box-shadow: 0 0 10px rgba(27, 199, 251, 0.5);
}

.icone2 .paragrafo {
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    margin: 15px 0 0 0;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.icone2:hover .paragrafo {
    color: #056bf6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Container para organizar os cards .icone2 */
.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Responsividade Mobile Aprimorada */
@media (max-width: 960px) {
    .cards-container {
        gap: 15px;
        padding: 15px;
    }

    .icone2 {
        width: calc(50% - 15px);
        min-width: 250px;
        padding: 15px;
        margin: 8px;
    }
}

@media screen and (max-width: 812px) {
    .icone2 .bordadoicone2 {
        flex: 100%;
    }
}

@media (max-width: 768px) {
    .cards-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px 15px;
    }

    .icone2 {
        width: 100%;
        max-width: 400px;
        min-width: unset;
        margin: 0;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .cards-container {
        padding: 15px 10px;
        gap: 15px;
    }

    .icone2 {
        width: 100%;
        max-width: 100%;
        padding: 15px;
    }

    .larguradoicone2 {
        width: 100%;
        max-width: 100%;
    }

    .icone2 img {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: cover;
    }

    .icone2 .paragrafo {
        font-size: 0.85rem;
        margin: 6px 0 0 0;
    }
}

@media (max-width: 375px) {
    .cards-container {
        padding: 10px 8px;
    }

    .icone2 {
        padding: 12px;
    }

    .icone2 .paragrafo {
        font-size: 0.8rem;
        margin: 4px 0 0 0;
    }
}

@media (max-width: 320px) {
    .cards-container {
        gap: 4px;
        padding: 0 2px;
    }

    .icone2 {
        padding: 10px;
    }

    .icone2 .paragrafo {
        font-size: 0.75rem;
        margin: 2px 0 0 0;
    }
}

.link {
    color: rgb(255, 255, 255);
}

body::-webkit-scrollbar {
    width: 12px;
    /* largura de toda a barra de rolagem */
}

body::-webkit-scrollbar-track {
    background: rgb(255, 255, 255);
    /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
    background-color: #1bc7fb;
    /* cor da área de rastreamento */
    border-radius: 20px;
    /* arredondamento do polegar de rolagem */
    border: 3px solid #1bc7fb;
    /* cria preenchimento em torno do polegar de rolagem */
}

html {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-size: 1rem;
    line-height: 1.25;
    background-color: #ffffff;
    overflow-x: hidden; /* Previne scroll horizontal */
    box-sizing: border-box;
}

/* Box sizing global */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Container principal para evitar overflow */
.main-content {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
}

/* -- Galeria  */

.largura {
    width: 100%;
    max-width: 1000px;
    margin: auto;
}

.borda {
    width: 100px;
    height: 50px;
    margin: 20px auto;
}

.galeria .gallery {
    display: flex;
    flex-wrap: wrap-reverse;
    justify-content: center;
}

.galeria .imagem {
    margin: 50px;
    flex: 40%;
    overflow: hidden;
    cursor: pointer;
}

.galeria .imagem img {
    width: 100%;
    height: 100%;
    transition: 0.4s;
}

.galeria .imagem:hover img {
    transform: scale(1.4);
}

@media screen and (max-width: 960px) {
    .galeria .imagem {
        flex: 33.33%;
    }
}

@media screen and (max-width: 812px) {
    .galeria .imagem {
        flex: 100%;
    }
}

@media screen and (max-width: 768px) {
    .galeria .imagem {
        flex: 50%;
    }
}

@media screen and (max-width: 480px) {
    .galeria .imagem {
        flex: 100%;
    }
}

@media only screen and (max-width: 700px) {
    .responsive {
        width: 49.99999%;
        margin: 6px 0;
    }
}

@media only screen and (max-width: 500px) {
    .responsive {
        width: 100%;
    }
}

/* ---Final Galeria ---*/

/* -- Galeria  */

/* icones da página inicial*/

.larguradoicone {
    width: 100%;
    max-width: 100px;
    margin: 5% auto;
    display: block;
}

.bordadoicone {
    width: 100px;
    height: 2px;
    margin: 5% auto;
}

.icone {
    flex: 25%;
    width: 150px;
    display: inline-block;
    top: 50%;
    left: 50%;
}

.icone img {
    width: 100%;
    height: 100%;
    border-radius: 80px;
    transition: 0.4s;
}

.icone img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
    /* IE */
}

.icone img:hover {
    -webkit-filter: none;
    filter: none;
}

.icone:hover img {
    transform: scale(1.2);
    box-shadow:
        0 12px 12px 0 rgb(255, 255, 255),
        0 17px 50px 0 rgb(255, 255, 255);
}

@media screen and (max-width: 960px) {
    .icone .bordadoicone {
        flex: 33.33%;
    }
}

@media screen and (max-width: 812px) {
    .icone .bordadoicone {
        flex: 100%;
    }
}

@media screen and (max-width: 768px) {
    .icone .bordadoicone {
        flex: 50%;
    }
}

@media screen and (max-width: 480px) {
    .icone .bordadoicone {
        flex: 100%;
    }
}

/* -- Galeria Learn  */

.larguradoicone2 {
    width: 200%;
    max-width: 300px;
    margin: auto;
    display: block;
}

.bordadoicone2 {
    width: 100px;
    height: 10px;
    margin: auto;
}

/* Definir o estilo do elemento com o ID "Topo". */
#Topo {
    position: fixed;
    z-index: 9999;
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    text-indent: -9999px;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
    transition:
        background 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.08s ease,
        border-color 0.22s ease;
}
#Topo::before {
    content: "↑";
    text-indent: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    color: #0f172a;
}
#Topo:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}
html.dark #Topo {
    background: rgba(17, 24, 39, 0.55);
    border-color: rgba(148, 163, 184, 0.28);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}
html.dark #Topo::before {
    color: #e5e7eb;
}
@media (max-width: 480px) {
    #Topo {
        width: 40px;
        height: 40px;
        right: 12px;
        bottom: 12px;
    }
    #Topo::before {
        font-size: 16px;
    }
}
@media (prefers-reduced-motion: reduce) {
    #Topo {
        transition: none;
    }
}

@media screen and (max-width: 600px) {
    #texto-animado {
        font-size: 20px;
        text-align: center;
        text-indent: 2px;
        padding-right: 0.2em;
        margin: 0 auto;
        line-height: 1;
        align-items: center;
        justify-content: center;
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

/* Fundo animado */
.azul {
    background: linear-gradient(135deg, #056bf6 0%, #1bc7fb 100%);
    background-size: 600% 600%;
    max-width: 1200px;
    width: calc(100% - 40px);
    animation: GradientAnimation 15s ease infinite;
    text-align: center;
    padding: 40px 0;
    margin: 40px auto;
    border-radius: 20px;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(88, 166, 255, 0.3);
    position: relative;
    overflow: hidden;
    display: block;
    left: 0;
    right: 0;
}

.azul .glass1 {
    position: relative;
    top: 0;
    left: 0;
    width: 100%; /* Largura total como o banner */
    height: 100%;
    display: block;
    pointer-events: none;
    padding: 20px;
    z-index: 2;
}

/* Responsividade para a seção azul */
@media (max-width: 768px) {
    .azul {
        padding: 60px 0;
        margin: 40px auto;
        width: calc(100% - 20px);
        border-radius: 15px;
        display: block;
        left: 0;
        right: 0;
    }
}

@media (max-width: 480px) {
    .azul {
        padding: 40px 0;
        margin: 30px auto;
        width: calc(100% - 10px);
    }

    .projects-banner {
        margin: 30px auto;
        width: calc(100% - 10px);
    }
}
/* ---Final do Fundo --- */

/* ==========================================================================
   PAGINA: reconhecimentos.html
   Componentes: cards de reconhecimento (bloco base legado/melhorado)
   ========================================================================== */

/* === RECONHECIMENTOS MELHORADOS === */
.recognition-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin: 40px 0;
    padding: 0 15px;
    justify-items: center;
}

.recognition-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8faff 100%);
    border-radius: 24px;
    padding: 32px;
    box-shadow:
        0 4px 20px rgba(5, 107, 246, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(5, 107, 246, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 450px;
}

.recognition-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #056bf6 0%, #1bc7fb 50%, #056bf6 100%);
    background-size: 200% 100%;
    animation: shimmer 4s ease-in-out infinite;
}

.recognition-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 25px 50px rgba(5, 107, 246, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(5, 107, 246, 0.2);
}

.recognition-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(5, 107, 246, 0.1);
}

.company-logo {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #056bf6 0%, #1bc7fb 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(5, 107, 246, 0.3);
}

.placeholder-logo {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    color: #64748b;
    box-shadow: 0 8px 25px rgba(100, 116, 139, 0.2);
}

.recognition-meta {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.recognition-year {
    font-size: 1.1rem;
    font-weight: 700;
    color: #056bf6;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(5, 107, 246, 0.2);
}

.recognition-info {
    flex: 1;
    min-width: 0;
}

.company-name {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 8px 0;
}

.recognition-content {
    text-align: left;
}

.recognition-title {
    font-size: 1.4rem;
    text-align: left;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 8px 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
    word-wrap: break-word;
    hyphens: auto;
}

.recognition-subtitle {
    font-size: 1rem;
    text-align: left;
    color: #056bf6;
    font-weight: 600;
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.recognition-date {
    font-size: 0.9rem;
    color: #64748b;
    background: #f1f5f9;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 500;
}

.recognition-body {
    margin-top: 20px;
}

.recognition-description {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
    text-align: justify;
}

.recognition-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.tag {
    background: linear-gradient(135deg, #056bf6 0%, #1bc7fb 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(5, 107, 246, 0.3);
    transition: all 0.3s ease;
}

.tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 107, 246, 0.4);
}

.recognition-placeholder {
    background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px dashed #cbd5e1;
    opacity: 0.8;
}

.recognition-placeholder:hover {
    opacity: 1;
    border-color: #94a3b8;
    transform: translateY(-8px) scale(1.01);
}

.recognition-placeholder .recognition-title,
.recognition-placeholder .recognition-subtitle,
.recognition-placeholder .recognition-description {
    color: #64748b;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Responsividade Melhorada */
@media (max-width: 768px) {
    .recognition-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 10px;
        margin: 30px 0;
    }

    .recognition-card {
        padding: 24px;
        max-width: none;
    }

    .recognition-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .recognition-meta {
        text-align: center;
    }

    .company-logo {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .recognition-title {
        font-size: 1.2rem;
        text-align: center;
    }

    .recognition-subtitle {
        text-align: center;
    }

    .recognition-tags {
        justify-content: center;
    }
}

/* ==========================================================================
   PAGINA: obrigado.html
   Componentes: tela de confirmacao, passos seguintes e CTA de retorno
   ========================================================================== */

/* === ESTILOS PARA PÁGINA DE AGRADECIMENTO === */
.thank-you-section {
    background: linear-gradient(135deg, #056bf6 0%, #1bc7fb 50%, #58a6ff 100%);
    min-height: 100vh;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.thank-you-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(
            circle at 20% 80%,
            rgba(27, 199, 251, 0.3) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 20%,
            rgba(88, 166, 255, 0.3) 0%,
            transparent 50%
        );
    pointer-events: none;
}

.thank-you-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.thank-you-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.thank-you-title {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #ffffff, #e3f2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thank-you-message {
    color: #ffffff;
    font-size: 1.3rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.process-section {
    margin: 4rem 0;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.process-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 3rem;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 32px rgba(5, 107, 246, 0.2);
    transition: all 0.3s ease;
    width: 90%;
    margin: 0 auto;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 12px 40px rgba(5, 107, 246, 0.3);
}

.process-title {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.process-steps {
    display: grid;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    animation: slideInLeft 0.6s ease-out;
}

.step-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffffff, #e3f2fd);
    color: #056bf6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.step-text {
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 0;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.back-button-section {
    text-align: center;
    margin-top: 4rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.modern-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    color: #056bf6;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow:
        0 8px 25px rgba(255, 255, 255, 0.3),
        0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.modern-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 35px rgba(255, 255, 255, 0.4),
        0 6px 20px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

/* Animações para página de agradecimento */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsividade para página de agradecimento */
@media (max-width: 768px) {
    .thank-you-section {
        padding: 2rem 0;
    }

    .thank-you-container {
        padding: 0 1rem;
    }

    .thank-you-title {
        font-size: 2.5rem;
    }

    .thank-you-message {
        font-size: 1.1rem;
    }

    .process-card {
        padding: 2rem;
        width: 95%;
    }

    .process-title {
        font-size: 2.2rem;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .step-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .thank-you-title {
        font-size: 2rem;
    }

    .process-title {
        font-size: 1.8rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .recognition-card {
        padding: 20px;
        border-radius: 20px;
    }

    .recognition-header {
        margin-bottom: 20px;
        padding-bottom: 16px;
    }

    .company-logo {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .recognition-title {
        font-size: 1.1rem;
    }

    .recognition-year {
        font-size: 1rem;
        padding: 6px 12px;
    }

    .recognition-info {
        text-align: center;
    }

    .tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

@keyframes GradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes glass1 {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@media screen and (max-width: 600px) {
    .titulo3 {
        font-size: 25px;
        text-align: center;
        text-indent: 2px;
        padding-right: 1em;
        margin: 0 auto;
        line-height: 1;
        align-items: center;
        justify-content: center;
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

body::-webkit-scrollbar {
    width: 12px;
}

.image2 {
    float: right;
    margin-top: -23em;
    position: initial;
}

@media only screen and (max-width: 700px) {
    .image2 {
        padding: 100px;
    }
}

@media only screen and (max-width: 500px) {
    .image2 {
        width: 50%;
    }
}

.rod {
    color: rgb(74, 74, 74);
    height: 5vh;
    text-align: center;
    font-size: 20px;
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        "Segoe UI",
        Roboto,
        "Helvetica Neue",
        Arial,
        "Noto Sans",
        sans-serif;
    padding: 15px;
}

/* Showcase de Cases */
.cases-showcase {
    width: min(1120px, calc(100% - 32px));
    margin: 18px auto 26px;
    padding: 34px;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.16),
        rgba(27, 199, 251, 0.1)
    );
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 24px 56px rgba(2, 6, 23, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}
.cases-showcase::before {
    content: "";
    position: absolute;
    inset: auto -60px -80px auto;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(27, 199, 251, 0.28),
        transparent 65%
    );
}
.cases-showcase__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
}
.cases-showcase__copy {
    text-align: left;
}
.cases-showcase__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: #0f172a;
    font-weight: 800;
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 10px 26px rgba(2, 6, 23, 0.08);
}
.cases-showcase__title {
    margin-top: 18px;
    margin-bottom: 16px;
    text-align: left;
}
.cases-showcase__title::after {
    left: 0;
    transform: none;
    width: 92px;
    bottom: -12px;
}
.cases-showcase__text {
    max-width: 640px;
    text-align: left;
    margin: 0 0 24px;
    font-size: 1.02rem;
    line-height: 1.7;
    color: #334155;
}
.cases-showcase__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}
.cases-showcase__meta span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #0f172a;
    font-weight: 700;
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 6px 18px rgba(2, 6, 23, 0.06);
}
.cases-showcase__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}
.cases-showcase__stats div {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(148, 163, 184, 0.16);
}
.cases-showcase__stats strong {
    display: block;
    font-size: 1.15rem;
    color: #056bf6;
    margin-bottom: 4px;
}
.cases-showcase__stats span {
    color: #334155;
    font-size: 0.92rem;
}
.cases-showcase__actions {
    display: flex;
    justify-content: flex-start;
}
.cases-showcase__cta {
    box-shadow: 0 18px 40px rgba(5, 107, 246, 0.22);
}
.cases-showcase__visual {
    position: relative;
    min-height: 320px;
}
.cases-preview-card {
    position: relative;
    height: 100%;
    min-height: 320px;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 24px 50px rgba(2, 6, 23, 0.16);
}
.cases-preview-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.cases-preview-card__overlay {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.18),
        rgba(15, 23, 42, 0.82)
    );
    color: #fff;
    backdrop-filter: blur(12px);
}
.cases-preview-card__overlay span {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #93c5fd;
}
.cases-preview-card__overlay strong {
    font-size: 1.15rem;
    line-height: 1.4;
}
.cases-floating-chip {
    position: absolute;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #0f172a;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(2, 6, 23, 0.12);
}
.cases-floating-chip.chip-one {
    top: 18px;
    left: -10px;
}
.cases-floating-chip.chip-two {
    right: 8px;
    bottom: 22px;
}
.cases-swiper-shell {
    margin-top: 6px;
}
html.dark .cases-showcase {
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.88),
        rgba(15, 23, 42, 0.78)
    );
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 28px 60px rgba(2, 6, 23, 0.42);
}
html.dark .cases-showcase__badge,
html.dark .cases-showcase__meta span,
html.dark .cases-showcase__stats div,
html.dark .cases-floating-chip {
    background: rgba(15, 23, 42, 0.84);
    color: #e5e7eb;
    border-color: rgba(148, 163, 184, 0.22);
}
html.dark .cases-showcase__text,
html.dark .cases-showcase__stats span {
    color: #cbd5e1;
}
@media (max-width: 900px) {
    .cases-showcase__content {
        grid-template-columns: 1fr;
    }
    .cases-showcase__copy,
    .cases-showcase__title,
    .cases-showcase__text {
        text-align: center;
    }
    .cases-showcase__title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .cases-showcase__meta,
    .cases-showcase__actions {
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .cases-showcase {
        width: calc(100% - 20px);
        padding: 24px 18px;
        border-radius: 24px;
    }
    .cases-showcase__stats {
        grid-template-columns: 1fr;
    }
    .cases-showcase__visual {
        min-height: 260px;
    }
    .cases-preview-card {
        min-height: 260px;
    }
    .cases-floating-chip {
        font-size: 0.82rem;
    }
}

/* Modernização da Galeria Swiper - Glassmorphism */
.swiper-container {
    width: 85%;
    max-width: 900px;
    height: 450px;
    margin: 40px auto;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 20px 60px rgba(5, 107, 246, 0.05);
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
    display: block;
}

.swiper-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(5, 107, 246, 0.03) 0%,
        rgba(27, 199, 251, 0.03) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.swiper-container:hover {
    transform: translateY(-5px);
    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.15),
        0 25px 80px rgba(5, 107, 246, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Slides modernizados */
.swiper-slide {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.95) contrast(1.05);
}

.swiper-slide:hover img {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.1);
}

/* Overlay sutil nos slides */
.swiper-slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(5, 107, 246, 0.1) 0%,
        rgba(27, 199, 251, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
    z-index: 3;
}

.swiper-slide:hover::after {
    opacity: 1;
}

/* Paginação modernizada */
.swiper-pagination {
    bottom: 15px !important;
    z-index: 10;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 12px;
    height: 12px;
    margin: 0 6px;
    opacity: 0.7;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.swiper-pagination-bullet-active {
    background: linear-gradient(135deg, #056bf6, #1bc7fb);
    border: 1px solid rgba(255, 255, 255, 0.5);
    opacity: 1;
    transform: scale(1.2);
    box-shadow: 0 4px 15px rgba(5, 107, 246, 0.3);
}

.swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

/* Navegação modernizada */
.swiper-button-next,
.swiper-button-prev {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    color: #056bf6;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
}

.swiper-button-next:focus,
.swiper-button-prev:focus {
    outline: 2px solid #056bf6;
    outline-offset: 2px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(5, 107, 246, 0.2);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px;
    font-weight: bold;
}

/* Título da galeria modernizado */
.titulo4 {
    position: relative;
    margin-bottom: 30px;
}

.titulo4::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #056bf6, #1bc7fb);
    border-radius: 2px;
    opacity: 0.8;
}

.titulo4--spotlight {
    background: linear-gradient(
        90deg,
        #93c5fd 0%,
        #38bdf8 20%,
        #ffffff 50%,
        #38bdf8 80%,
        #056bf6 100%
    );
    background-size: 220% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation:
        titleSpotlight 6s ease-in-out infinite,
        titleFloatSoft 4.5s ease-in-out infinite;
    will-change: background-position, transform;
}

.titulo4--spotlight::after {
    width: 110px;
    background: linear-gradient(
        90deg,
        rgba(5, 107, 246, 0.4),
        #38bdf8,
        rgba(5, 107, 246, 0.4)
    );
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.35);
    animation: titleLinePulse 3.2s ease-in-out infinite;
}

@keyframes titleSpotlight {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes titleFloatSoft {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

@keyframes titleLinePulse {
    0%,
    100% {
        opacity: 0.65;
        transform: translateX(-50%) scaleX(0.96);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scaleX(1.08);
    }
}

@media (prefers-reduced-motion: reduce) {
    .titulo4--spotlight,
    .titulo4--spotlight::after {
        animation: none;
    }
}

/* Responsividade aprimorada */
@media (max-width: 768px) {
    .swiper-container {
        width: 95%;
        height: 300px; /* Altura mais adequada */
        padding: 15px;
        margin: 20px auto;
    }

    /* Botões maiores e mais acessíveis */
    .swiper-button-next,
    .swiper-button-prev {
        width: 45px;
        height: 45px;
        margin-top: -22px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
    }

    /* Paginação mais visível */
    .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        margin: 0 5px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .swiper-container {
        width: 100%;
        height: 250px;
        padding: 10px;
        margin: 15px auto;
        border-radius: 15px;
    }

    /* Slides com melhor proporção */
    .swiper-slide {
        border-radius: 12px;
    }

    .swiper-slide img {
        border-radius: 12px;
        object-fit: cover;
        object-position: center;
    }

    /* Título mais compacto */
    .titulo4 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }
}

@media (max-width: 360px) {
    .swiper-container {
        height: 220px;
        padding: 8px;
    }

    /* Botões menores em telas muito pequenas */
    .swiper-button-next,
    .swiper-button-prev {
        width: 35px;
        height: 35px;
        margin-top: -17px;
    }
}

/* Animação de entrada */
@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.swiper-container {
    animation: slideInFromBottom 0.8s ease-out;
}

.profile-pic {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.profile-pic::after {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid #056bf6;
    border-radius: 50%;
    opacity: 0;
    animation: ripple 2s ease-out infinite;
}

.profile-pic img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.3s ease;
}

/* ==========================================================================
   PAGINA: index.html
   Componentes: terminal simulado exibido na dobra inicial da home
   ========================================================================== */

.terminal-container {
    animation-fill-mode: backwards;
}

.terminal-window-shell {
    position: relative;
    display: flow-root;
}

.terminal-simulado {
    background: linear-gradient(
        135deg,
        rgba(16, 24, 40, 0.95) 0%,
        rgba(15, 23, 42, 0.92) 50%,
        rgba(16, 24, 40, 0.95) 100%
    );
    backdrop-filter: blur(20px);
    border: 1px solid rgba(56, 189, 248, 0.22);
    border-radius: 15px;
    padding: 2.5em 2em 2em 2em;
    color: #e5e7eb;
    font-family: "JetBrains Mono", "Fira Code", "Courier New", monospace;
    width: calc(100% - 110px);
    max-width: 790px;
    margin: 30px auto;
    box-shadow:
        0 20px 40px rgba(56, 189, 248, 0.12),
        0 8px 32px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(148, 163, 184, 0.18);
    text-align: left;
    position: relative;
    overflow: hidden;
    transform-origin: center;
    animation-fill-mode: backwards;
    transition:
        box-shadow 300ms ease,
        border-color 300ms ease,
        padding-bottom 320ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 220ms ease;
}

.terminal-header {
    position: absolute;
    top: 15px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: calc(100% - 40px);
    z-index: 3;
}

.terminal-header::after {
    content: none;
}

.terminal-title {
    min-width: 0;
    margin-left: 5px;
    overflow: hidden;
    color: rgba(148, 163, 184, 0.85);
    font-family: "JetBrains Mono", "Fira Code", monospace;
    font-size: 12px;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 220ms ease;
}

.terminal-simulado::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(56, 189, 248, 0.06) 50%,
        transparent 70%
    );
    pointer-events: none;
}

.terminal-simulado:not(.is-expanded):not(.is-minimized):not(.is-closing):hover {
    transform: translateY(-2px);
    box-shadow:
        0 25px 50px rgba(56, 189, 248, 0.18),
        0 12px 40px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(148, 163, 184, 0.22);
}

.terminal-dot {
    appearance: none;
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    display: inline-grid;
    place-items: center;
    position: relative;
    padding: 0;
    border: 0;
    border-radius: 50%;
    font: inherit;
    cursor: pointer;
    transition:
        filter 180ms ease,
        transform 180ms ease,
        box-shadow 180ms ease;
}

.terminal-dot::after {
    display: grid;
    position: absolute;
    inset: 0;
    place-items: center;
    color: rgba(15, 23, 42, 0.78);
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    opacity: 0;
    transition: opacity 160ms ease;
}

.dot-red::after {
    content: "×";
}

.dot-yellow::after {
    content: "−";
}

.dot-green::after {
    content: "+";
}

.dot-green[aria-pressed="true"]::after {
    content: "↙";
    font-size: 8px;
}

.terminal-header:hover .terminal-dot::after,
.terminal-dot:focus-visible::after {
    opacity: 0.78;
}

.terminal-dot:hover {
    filter: brightness(1.12);
    transform: scale(1.14);
}

.terminal-dot:focus-visible {
    outline: 2px solid #e0f2fe;
    outline-offset: 3px;
}

.dot-red {
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.4);
}

.dot-yellow {
    background: linear-gradient(135deg, #ffd93d, #ffb300);
    box-shadow: 0 2px 8px rgba(255, 217, 61, 0.4);
}

.dot-green {
    background: linear-gradient(135deg, #6bcf7f, #4caf50);
    box-shadow: 0 2px 8px rgba(107, 207, 127, 0.4);
}

.terminal-content {
    max-height: 36rem;
    position: relative;
    z-index: 2;
    overflow: auto;
    padding-top: 10px;
    font-size: 14px;
    line-height: 1.6;
    white-space: pre-line;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    transition:
        max-height 360ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 180ms ease,
        padding-top 320ms ease,
        transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s linear;
}

.terminal-token {
    transition: color 120ms ease;
}

.terminal-token--prompt {
    color: #67e8f9;
    font-weight: 700;
}

.terminal-token--command {
    color: #f8fafc;
    font-weight: 650;
}

.terminal-token--argument,
.terminal-token--identifier {
    color: #cbd5e1;
}

.terminal-token--path,
.terminal-token--number {
    color: #fbbf24;
}

.terminal-token--password-label {
    color: #fda4af;
    font-weight: 600;
}

.terminal-token--secret {
    color: #64748b;
    letter-spacing: 0.08em;
}

.terminal-token--keyword {
    color: #c084fc;
    font-weight: 650;
}

.terminal-token--builtin {
    color: #60a5fa;
    font-weight: 600;
}

.terminal-token--module {
    color: #f472b6;
}

.terminal-token--function {
    color: #38bdf8;
}

.terminal-token--string {
    color: #86efac;
}

.terminal-token--operator {
    color: #94a3b8;
}

.terminal-token--punctuation {
    color: #cbd5e1;
}

.terminal-token--comment {
    color: #94a3b8;
    font-style: italic;
}

html.dark .terminal-simulado {
    background: rgba(4, 8, 14, 0.94);
    border: 1px solid var(--dark-border);
    box-shadow:
        0 20px 40px rgba(0, 2, 6, 0.62),
        0 8px 32px rgba(0, 2, 6, 0.48),
        inset 0 1px 0 rgba(96, 165, 250, 0.08);
}

html.dark .terminal-title {
    color: rgba(203, 213, 225, 0.72);
}

html.dark .terminal-simulado::before {
    background: linear-gradient(
        45deg,
        transparent 32%,
        rgba(59, 130, 246, 0.035) 50%,
        transparent 68%
    );
}

html.dark .terminal-simulado:not(.is-expanded):not(.is-minimized):not(.is-closing):hover {
    box-shadow:
        0 24px 48px rgba(0, 2, 6, 0.68),
        0 10px 36px rgba(0, 2, 6, 0.56),
        inset 0 1px 0 rgba(96, 165, 250, 0.1);
}

html.dark .terminal-cursor {
    background-color: #60a5fa;
}

body.terminal-window-expanded {
    overflow: hidden;
}

.terminal-backdrop {
    position: fixed;
    z-index: 1000;
    inset: 0;
    background: rgba(2, 6, 23, 0.68);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 300ms ease,
        visibility 0s linear 300ms;
}

.terminal-window-shell.has-expanded-terminal .terminal-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
}

.terminal-simulado.is-minimized {
    min-height: 46px;
    padding-bottom: 0.75em;
    box-shadow:
        0 14px 30px rgba(56, 189, 248, 0.1),
        0 6px 22px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(148, 163, 184, 0.18);
}

.terminal-simulado.is-minimized .terminal-content {
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
        max-height 320ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 160ms ease,
        padding-top 280ms ease,
        transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s linear 320ms;
}

.terminal-simulado.is-expanded {
    position: fixed;
    z-index: 1001;
    inset: max(18px, 6vh) max(16px, calc((100vw - 1180px) / 2));
    display: flex;
    width: auto;
    max-width: none;
    min-height: 0;
    margin: 0;
    padding-bottom: 2em;
    flex-direction: column;
    border-color: rgba(56, 189, 248, 0.38);
    border-radius: 18px;
    box-shadow:
        0 38px 90px rgba(2, 6, 23, 0.55),
        0 16px 44px rgba(56, 189, 248, 0.16),
        inset 0 1px 0 rgba(186, 230, 253, 0.2);
}

.terminal-simulado.is-expanded .terminal-content {
    max-height: none;
    min-height: 0;
    padding-right: 0.5rem;
    flex: 1;
    overflow: auto;
}

.terminal-simulado.is-closing,
.terminal-simulado.is-opening {
    pointer-events: none;
    will-change: transform, opacity, filter;
}

.terminal-simulado.is-closing {
    animation: terminal-window-close 440ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

.terminal-simulado.is-opening {
    animation: terminal-window-open 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes terminal-window-close {
    0% {
        opacity: 1;
        filter: blur(0);
        transform: translate3d(0, 0, 0) scale(1);
    }
    38% {
        opacity: 0.92;
        filter: blur(0);
        transform: translate3d(0, 3px, 0) scale(0.985, 0.94);
    }
    100% {
        opacity: 0;
        filter: blur(4px);
        transform: translate3d(0, -12px, 0) scale(0.76, 0.04);
    }
}

@keyframes terminal-window-open {
    0% {
        opacity: 0;
        filter: blur(4px);
        transform: translate3d(0, -12px, 0) scale(0.76, 0.04);
    }
    68% {
        opacity: 1;
        filter: blur(0);
        transform: translate3d(0, 2px, 0) scale(1.012, 1.015);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translate3d(0, 0, 0) scale(1);
    }
}

.terminal-reopen {
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    margin: 30px auto;
    padding: 0.75rem 1.1rem;
    border: 1px solid rgba(5, 107, 246, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: #075bcf;
    box-shadow:
        0 10px 28px rgba(5, 107, 246, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition:
        border-color 200ms ease,
        box-shadow 200ms ease,
        color 200ms ease,
        transform 200ms ease;
}

.terminal-reopen[hidden],
.terminal-simulado[hidden] {
    display: none;
}

.terminal-reopen:hover {
    border-color: rgba(5, 107, 246, 0.48);
    color: #034db5;
    box-shadow:
        0 14px 34px rgba(5, 107, 246, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.terminal-reopen:focus-visible {
    outline: 3px solid rgba(56, 189, 248, 0.42);
    outline-offset: 4px;
}

html.dark .terminal-reopen {
    border-color: rgba(96, 165, 250, 0.28);
    background: rgba(10, 18, 31, 0.92);
    color: #93c5fd;
    box-shadow:
        0 12px 30px rgba(0, 2, 6, 0.38),
        inset 0 1px 0 rgba(148, 163, 184, 0.1);
}

html.dark .terminal-reopen:hover {
    border-color: rgba(96, 165, 250, 0.55);
    color: #bfdbfe;
    box-shadow:
        0 16px 38px rgba(0, 2, 6, 0.5),
        inset 0 1px 0 rgba(148, 163, 184, 0.14);
}

/* Cursor piscando */
.terminal-cursor {
    display: inline-block;
    background-color: #38bdf8;
    width: 2px;
    height: 1.2em;
    animation: blink 1.2s infinite;
    margin-left: 1px;
    vertical-align: text-bottom;
}

.terminal-cursor::before {
    content: "";
    /* Remove qualquer conteúdo de texto */
}

@keyframes blink {
    0%,
    45% {
        opacity: 1;
        box-shadow: 0 0 5px rgba(56, 189, 248, 0.5);
    }
    46%,
    100% {
        opacity: 0;
        box-shadow: none;
    }
}


@media screen and (max-width: 768px) {
    .terminal-simulado {
        width: calc(100% - 60px);
        margin: 20px auto;
        padding: 2em 1.5em 1.5em 1.5em;
        font-size: 12px;
    }

    .terminal-title {
        font-size: 11px;
    }

    .terminal-simulado.is-expanded {
        inset: max(12px, env(safe-area-inset-top)) max(10px, env(safe-area-inset-right)) max(12px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
        padding: 2.25em 1.25em 1.25em;
        border-radius: 14px;
    }
}

@media screen and (max-width: 480px) {
    .terminal-simulado {
        width: calc(100% - 50px);
        padding: 2em 1em 1em 1em;
        font-size: 11px;
    }

    .terminal-header {
        left: 16px;
        gap: 8px;
        width: calc(100% - 32px);
    }

    .terminal-title {
        margin-left: 3px;
        font-size: 10px;
    }

    .terminal-dot {
        width: 12px;
        height: 12px;
        flex-basis: 12px;
    }

    .terminal-reopen {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .terminal-simulado,
    .terminal-content,
    .terminal-backdrop,
    .terminal-dot,
    .terminal-reopen {
        animation: none !important;
        transition: none !important;
    }

    .terminal-cursor {
        animation: none;
        opacity: 1;
    }
}

/* ==========================================================================
   PAGINAS: projetos/*.html
   Componentes: botao GitHub, janelas macOS e blocos de codigo demonstrativos
   ========================================================================== */

.github-btn {
    text-align: center;
    margin: 20px 0;
}

.github-btn a {
    display: inline-flex;
    align-items: center;
    background: #056bf6;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: background 0.3s ease;
}

.github-btn a:hover {
    background: #428ffc;
}

.github-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.maccode-container {
    background: #2d2d2d;
    border-radius: 10px;
    margin: 30px auto;
    max-width: 700px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-family: "Courier New", monospace;
    overflow: hidden;
}

.maccode-header {
    background-color: #2d2d2d;
    padding: 10px 15px;
    display: flex;
    gap: 8px;
    align-items: center;
    height: 30px;
}

.maccode-header span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.maccode-header .red {
    background-color: #ff5f56;
}
.maccode-header .yellow {
    background-color: #ffbd2e;
}
.maccode-header .green {
    background-color: #27c93f;
}

.maccode-block {
    padding: 20px;
    color: #c0e1ff;
    font-size: 15px;
    line-height: 1.6;
    white-space: pre-wrap;
    text-align: left;
}

/* ==========================================================================
   PAGINA: dev.html
   Componentes: campo de busca principal da listagem de projetos
   ========================================================================== */

/* Modernização do Buscador com Glassmorphism - Versão Limpa */
.buscador {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

#buscaProjetos {
    padding: 15px 20px;
    width: 85%;
    max-width: 450px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    font-size: 16px;
    color: #333;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    outline: none;
}

#buscaProjetos::placeholder {
    color: rgba(51, 51, 51, 0.6);
    font-weight: 500;
}

#buscaProjetos:focus {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(5, 107, 246, 0.5);
    box-shadow:
        0 12px 40px rgba(5, 107, 246, 0.15),
        0 0 0 3px rgba(5, 107, 246, 0.1);
    transform: translateY(-2px);
}

#buscaProjetos:hover {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

/* ==========================================================================
   PAGINA: sobre.html
   Componentes: container principal, avatar, titulo e texto de apresentacao
   ========================================================================== */

.container {
    max-width: 900px;
    margin: auto;
    background: #fff; /* Fundo branco para o conteúdo */
    padding: 30px;
    border-radius: 8px; /* Bordas arredondadas */
}

.container2 {
    max-width: 9px;
    margin: auto;
    background: #fff; /* Fundo branco para o conteúdo */
    padding: 30px;
    border-radius: 8px; /* Bordas arredondadas */
}
.main-title {
    color: #007bff; /* Cor azul similar ao site */
    text-align: center;
    margin-bottom: 30px;
}
.profile-section {
    text-align: center;
    margin-bottom: 20px;
}
.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #007bff; /* Borda azul na imagem */
}
h2 {
    color: #0056b3; /* Tom de azul mais escuro para subtítulos */
    border-bottom: none;
    box-shadow: none;
    padding-bottom: 5px;
    margin-top: 30px;
    margin-bottom: 15px;
}
strong {
    color: #0056b3; /* Destacar palavras-chave com azul */
}

@media screen and (max-width: 500px) {
    .profile-section {
        text-align: center;
        margin-bottom: 10px;
    }
}

/* Estilos específicos para dispositivos móveis */
@media screen and (max-width: 768px) {
    .profile-section {
        text-align: center;
        margin-bottom: 10px;
    }
}

/* ==========================================================================
   PAGINA: dev.html
   Componentes: seletor de categorias e filtros complementares
   ========================================================================== */

/* Modernização do Seletor de Categorias */
.filtro-categorias {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

#categoriaFiltro {
    padding: 12px 20px;
    font-size: 16px;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    color: #333;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

#categoriaFiltro:focus {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(27, 199, 251, 0.5);
    box-shadow:
        0 12px 40px rgba(27, 199, 251, 0.15),
        0 0 0 3px rgba(27, 199, 251, 0.1);
    transform: translateY(-2px);
}

#categoriaFiltro:hover {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

/* Seta customizada para o select */
.filtro-categorias::after {
    content: "▼";
    position: absolute;
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%) translateX(100px);
    font-size: 12px;
    color: rgba(51, 51, 51, 0.7);
    pointer-events: none;
    transition: all 0.3s ease;
}

.filtro-categorias:hover::after {
    color: #056bf6;
    transform: translate(50%, -50%) translateX(100px) scale(1.1);
}

/* Estilos para as opções do select */
#categoriaFiltro option {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #333;
    padding: 10px;
    border: none;
}

#categoriaFiltro option:hover,
#categoriaFiltro option:checked {
    background: linear-gradient(
        135deg,
        rgba(5, 107, 246, 0.1) 0%,
        rgba(27, 199, 251, 0.1) 100%
    );
    color: #056bf6;
}

/* Animações */
@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.buscador,
.filtro-categorias {
    animation: slideInFromTop 0.6s ease-out;
}

.filtro-categorias {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

/* Responsividade Mobile */
@media screen and (max-width: 768px) {
    .filtro-categorias::after {
        transform: translate(50%, -50%) translateX(80px);
    }

    #buscaProjetos {
        width: 90%;
        max-width: 350px;
        padding: 12px 15px;
    }

    #categoriaFiltro {
        min-width: 200px;
        padding: 10px 15px;
    }
}

@media screen and (max-width: 480px) {
    .filtro-categorias::after {
        transform: translate(50%, -50%) translateX(60px);
    }

    #buscaProjetos {
        width: 95%;
        padding: 10px 12px;
        font-size: 14px;
    }

    #categoriaFiltro {
        min-width: 180px;
        padding: 8px 12px;
        font-size: 14px;
    }
}

/* ==========================================================================
   PAGINA: orcamento.html
   Componentes: formulario principal, validacao e estados dos campos
   ========================================================================== */

/* Estilos para o formulário de orçamento */
.form-orcamento {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

/* Labels com gradiente */
.form-orcamento label {
    background: linear-gradient(135deg, #056bf6, #1bc7fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
    display: block;
}

/* Modernização dos inputs também para consistência */
.form-orcamento input[type="text"],
.form-orcamento input[type="email"],
.form-orcamento input[type="tel"],
.form-orcamento input[type="date"],
.form-orcamento input[type="number"],
.form-orcamento textarea {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 15px 20px;
    font-size: 16px;
    color: #333;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    outline: none;
    width: 100%;
}

.form-orcamento input[type="text"]:focus,
.form-orcamento input[type="email"]:focus,
.form-orcamento input[type="tel"]:focus,
.form-orcamento input[type="date"]:focus,
.form-orcamento input[type="number"]:focus,
.form-orcamento textarea:focus {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(5, 107, 246, 0.5);
    box-shadow:
        0 12px 40px rgba(5, 107, 246, 0.15),
        0 0 0 3px rgba(5, 107, 246, 0.1);
    transform: translateY(-2px);
}

.form-orcamento input[type="text"]:hover,
.form-orcamento input[type="email"]:hover,
.form-orcamento input[type="tel"]:hover,
.form-orcamento input[type="date"]:hover,
.form-orcamento input[type="number"]:hover,
.form-orcamento textarea:hover {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Placeholder styling */
.form-orcamento input::placeholder,
.form-orcamento textarea::placeholder {
    color: rgba(51, 51, 51, 0.6);
    font-weight: 500;
}

/* Modernização dos Seletores do Formulário de Orçamento */
.form-orcamento select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #333;
    cursor: pointer;
    /* Transição específica para evitar animação da seta */
    transition:
        background-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 50px;
}

.form-orcamento select:focus {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(5, 107, 246, 0.5);
    box-shadow:
        0 12px 40px rgba(5, 107, 246, 0.15),
        0 0 0 3px rgba(5, 107, 246, 0.1);
    transform: translateY(-2px);
}

.form-orcamento select:hover {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Estilização das opções do select */
.form-orcamento select option {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #333;
    padding: 12px;
    border: none;
}

.form-orcamento select option:hover {
    background: linear-gradient(
        135deg,
        rgba(5, 107, 246, 0.1),
        rgba(27, 199, 251, 0.1)
    );
}

.form-orcamento select option:checked {
    background: linear-gradient(135deg, #056bf6, #1bc7fb);
    color: white;
}

.form-orcamento textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: linear-gradient(to right, #056bf6, #1bc7fb);
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 18px;
    border-radius: 30px;
    cursor: pointer;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
    display: block;
    margin: 30px auto 0;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(5, 107, 246, 0.4);
}

.btn-submit:active {
    transform: translateY(1px);
}

.btn-submit.loading {
    background: #7a7a7a;
    cursor: not-allowed;
    opacity: 0.8;
}

/* Estilos para validação do formulário */
.form-orcamento input.error,
.form-orcamento select.error,
.form-orcamento textarea.error {
    border-color: #ff3860;
    box-shadow: 0 0 0 1px #ff3860;
}

.error-message {
    color: #ff3860;
    font-size: 14px;
    margin-top: 5px;
    font-weight: bold;
}

/* Responsividade aprimorada */
@media (max-width: 768px) {
    .form-orcamento {
        padding: 15px;
        width: 90%;
    }

    .form-orcamento select,
    .form-orcamento input,
    .form-orcamento textarea {
        padding: 12px 16px;
        font-size: 14px;
    }

    .form-orcamento select {
        background-size: 14px;
        padding-right: 45px;
    }

    .form-orcamento label {
        font-size: 14px;
    }

    .btn-submit {
        padding: 12px 25px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .form-orcamento select,
    .form-orcamento input,
    .form-orcamento textarea {
        padding: 10px 14px;
        font-size: 13px;
        border-radius: 12px;
    }

    .form-orcamento select {
        background-size: 12px;
        padding-right: 40px;
    }
}

/* Melhorias de UX para o campo de data */
.form-group[data-field="date"] {
    position: relative;
}

/* Placeholder personalizado para campo de data */
.form-orcamento input[type="date"] {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 15px 20px;
    font-size: 16px;
    color: #333;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    outline: none;
    width: 100%;
    /* Forçar aparência nativa em mobile */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* Garantir que o campo seja visível */
    min-height: 50px;
    display: block;
    position: relative;
    z-index: 1;
}

/* Texto de ajuda quando campo está vazio */
.form-orcamento input[type="date"]:invalid {
    color: transparent;
}

.form-orcamento input[type="date"]:invalid:before {
    content: "Clique para selecionar uma data";
    color: rgba(51, 51, 51, 0.6);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-weight: 500;
}

/* Dica visual com ícone animado */
.form-group:has(input[type="date"]) {
    position: relative;
}

.form-group:has(input[type="date"]):after {
    content: "📅";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: rgba(5, 107, 246, 0.7);
    pointer-events: none;
    opacity: 1;
    transition: all 0.3s ease;
    animation: pulseHint 2s infinite;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-group:has(input[type="date"]:focus):after,
.form-group:has(input[type="date"]:valid):after {
    opacity: 0;
    transform: translateY(-50%) scale(0.8);
}

/* Animação de pulso para chamar atenção */
@keyframes pulseHint {
    0%,
    100% {
        transform: translateY(-50%) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-50%) scale(1.05);
        opacity: 1;
    }
}

/* Fallback para navegadores que não suportam :has() */
.date-field-container {
    position: relative;
}

.date-field-container .date-hint {
    content: "📅";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: rgba(5, 107, 246, 0.7);
    pointer-events: none;
    opacity: 1;
    transition: all 0.3s ease;
    animation: pulseHint 2s infinite;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

/* Estilo do ícone do calendário melhorado */
.form-orcamento input[type="date"]::-webkit-calendar-picker-indicator {
    background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23056bf6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3e%3c/rect%3e%3cline x1='16' y1='2' x2='16' y2='6'%3e%3c/line%3e%3cline x1='8' y1='2' x2='8' y2='6'%3e%3c/line%3e%3cline x1='3' y1='10' x2='21' y2='10'%3e%3c/line%3e%3c/svg%3e")
        no-repeat;
    background-size: 20px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(5, 107, 246, 0.2));
}

.form-orcamento input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(5, 107, 246, 0.3));
}

/* Tooltip adicional */
.form-orcamento input[type="date"] {
    position: relative;
}

.form-orcamento input[type="date"]:hover:before {
    content: "Clique no ícone do calendário para selecionar";
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(5, 107, 246, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 1000;
    opacity: 0;
    animation: fadeInTooltip 0.3s ease forwards;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInTooltip {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Correções específicas para mobile */
@media (max-width: 768px) {
    .form-orcamento input[type="date"] {
        padding: 12px 16px;
        font-size: 16px; /* Manter 16px para evitar zoom no iOS */
        min-height: 48px;
        /* Garantir visibilidade total */
        opacity: 1;
        visibility: visible;
        display: block !important;
    }

    .form-orcamento input[type="date"]::-webkit-calendar-picker-indicator {
        background-size: 18px;
        width: 18px;
        height: 18px;
    }

    .form-group:has(input[type="date"]):after,
    .date-field-container .date-hint {
        font-size: 11px;
        padding: 3px 6px;
        right: 12px;
    }

    .form-orcamento input[type="date"]:hover:before {
        font-size: 11px;
        padding: 5px 10px;
        bottom: -30px;
    }
}

@media (max-width: 480px) {
    .form-orcamento input[type="date"] {
        padding: 12px 14px;
        font-size: 16px; /* Importante: manter 16px no mobile */
        border-radius: 12px;
        min-height: 44px;
        /* Forçar exibição */
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .form-orcamento input[type="date"]::-webkit-calendar-picker-indicator {
        background-size: 16px;
        width: 16px;
        height: 16px;
    }

    .form-group:has(input[type="date"]):after,
    .date-field-container .date-hint {
        content: "📅";
        font-size: 16px;
        padding: 2px 4px;
    }

    .form-orcamento input[type="date"]:hover:before {
        content: "Toque no calendário";
        font-size: 10px;
        bottom: -25px;
    }
}

/* Fallback para navegadores que não suportam input date */
.form-orcamento input[type="date"]:valid {
    color: #333;
}

/* Garantir que o label do campo de data seja visível */
.form-orcamento label[for="prazo"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-bottom: 8px;
}

/* ==========================================================================
   PAGINA: reconhecimentos.html
   Componentes: refinamentos finais e overrides aplicados aos cards
   ========================================================================== */

/* === RECONHECIMENTOS === */
.recognition-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin: 30px 0;
    padding: 0 10px;
}

.recognition-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(5, 107, 246, 0.1);
    border: 1px solid rgba(5, 107, 246, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.recognition-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #056bf6, #1bc7fb, #056bf6);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.recognition-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(5, 107, 246, 0.2);
    border-color: rgba(5, 107, 246, 0.2);
}

.recognition-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.company-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #056bf6, #1bc7fb);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.placeholder-logo {
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    color: #6366f1;
}

.recognition-info {
    flex: 1;
}

.recognition-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.company-name {
    font-size: 1rem;
    color: #056bf6;
    font-weight: 600;
    margin: 0;
}

.recognition-date {
    font-size: 0.9rem;
    color: #64748b;
    background: #f1f5f9;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 8px;
}

.recognition-body {
    margin-top: 15px;
}

.recognition-description {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
    text-align: left;
}

.recognition-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: linear-gradient(135deg, #056bf6, #1bc7fb);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.recognition-placeholder {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px dashed #cbd5e1;
    opacity: 0.7;
}

.recognition-placeholder:hover {
    opacity: 1;
    border-color: #94a3b8;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .recognition-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 5px;
    }

    .recognition-card {
        padding: 20px;
    }

    .company-logo {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .recognition-title {
        font-size: 1.1rem;
    }

    .recognition-header {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .recognition-card {
        padding: 15px;
        border-radius: 15px;
    }

    .recognition-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .recognition-info {
        text-align: center;
    }

    .recognition-tags {
        justify-content: center;
    }
}
.menu .theme-toggle .icon {
    font-size: 16px;
    position: relative;
    z-index: 1;
    color: #111827;
    opacity: 0.95;
    transition:
        color 0.25s ease,
        opacity 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    cursor: pointer;
    pointer-events: auto;
}
.menu .theme-toggle .icon svg {
    width: 16px;
    height: 16px;
    display: block;
    fill: currentColor;
}
.menu .theme-toggle .thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    right: auto;
    width: 48px;
    height: 34px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.55);
    box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.15),
        inset 0 0 10px rgba(255, 255, 255, 0.45);
    transition:
        left 0.25s ease,
        right 0.25s ease,
        background 0.25s ease;
    z-index: 0;
    pointer-events: none;
}
.menu .theme-toggle.mode-light .thumb {
    left: 3px;
    right: auto;
}
.menu .theme-toggle.mode-dark .thumb {
    left: auto;
    right: 3px;
}
.menu .theme-toggle.mode-light .icon-sun {
    color: #111827;
    opacity: 1;
}
.menu .theme-toggle.mode-dark .icon-moon {
    color: #e5e7eb;
    opacity: 1;
}
.menu .theme-toggle.mode-dark .icon-sun {
    color: #e5e7eb;
    opacity: 0.7;
}
.menu .theme-toggle.mode-light .icon-moon {
    color: #1f2937;
    opacity: 0.7;
}
.menu .theme-toggle.mode-dark .icon-sun {
    color: #e5e7eb;
    opacity: 0.85;
}

/* ==========================================================================
   COMPARTILHADO | utilitarios auxiliares
   Componentes: paginacao de listagens e recursos de compartilhamento
   ========================================================================== */

/* Controle de paginação de projetos */
.paginacao-projetos {
    text-align: center;
    margin: 20px 0 40px;
}
#verMaisBtn {
    padding: 12px 24px;
    border-radius: 9999px;
    background: linear-gradient(to right, #056bf6, #1bc7fb);
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    border: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
#verMaisBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* Botão de compartilhar */
.btn-share {
    border: 2px solid #ffffff;
    color: #ffffff;
}
.btn-share:hover {
    background: #ffffff;
    color: #056bf6;
    transform: translateY(-3px);
}
.share-fab {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(to right, #056bf6, #1bc7fb);
    color: #fff;
    border: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 1000;
}
.share-fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}
.share-popover {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}
.share-popover .share-options {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    width: 320px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    display: grid;
    gap: 10px;
    position: relative;
}
.share-popover .share-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.08);
    color: #111827;
    font-size: 18px;
    cursor: pointer;
}
.share-option {
    display: block;
    text-align: center;
    padding: 10px 14px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #056bf6, #1bc7fb);
    border: none;
}
.share-option.share-copy {
    color: #056bf6;
    background: #f1f5f9;
    border: 1px solid rgba(5, 107, 246, 0.25);
}
html.dark .share-popover .share-options {
    background: #0f172a;
    box-shadow: 0 20px 45px rgba(2, 6, 23, 0.6);
}
html.dark .share-popover .share-close {
    background: rgba(148, 163, 184, 0.25);
    color: #e5e7eb;
}
html.dark .share-option.share-copy {
    color: #e5e7eb;
    background: rgba(17, 24, 39, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.25);
}
/* ==========================================================================
   COMPARTILHADO | rodape moderno
   Usado em `index.html`, `sobre.html`, `dev.html` e `projetos/*.html`
   ========================================================================== */

.rodapé {
    width: min(1120px, calc(100% - 32px));
    margin: 28px auto 24px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.rodapé br {
    display: none;
}

.rodapé > article:empty {
    display: none;
}

.footer-social {
    padding: 0;
}

.footer-shell {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 24px;
    padding: 28px;
    border-radius: 30px;
    background:
        radial-gradient(
            circle at top right,
            rgba(27, 199, 251, 0.12),
            transparent 26%
        ),
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.96),
            rgba(247, 250, 255, 0.92)
        );
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.1);
}

.footer-shell::before {
    content: "";
    position: absolute;
    inset: auto -110px -120px auto;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(5, 107, 246, 0.14),
        transparent 70%
    );
    pointer-events: none;
}

.footer-brand,
.footer-links {
    position: relative;
    z-index: 1;
}

.footer-brand {
    display: grid;
    align-content: start;
    gap: 14px;
}

.footer-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(5, 107, 246, 0.08);
    border: 1px solid rgba(5, 107, 246, 0.12);
    color: #056bf6;
    font-weight: 700;
}

.footer-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #0f172a;
}

.footer-description {
    max-width: 480px;
    color: #475569;
    line-height: 1.75;
    font-size: 1rem;
}

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

.footer-badges span {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.14);
    color: #334155;
    font-weight: 600;
}

.footer-links {
    padding: 22px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.footer-links__head {
    margin-bottom: 18px;
}

.footer-links__head strong {
    display: block;
    margin-bottom: 6px;
    color: #0f172a;
    font-size: 1.05rem;
}

.footer-links__head span {
    color: #64748b;
    line-height: 1.6;
}

.footer-links .social-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: none;
    margin: 0;
    padding: 0;
}

.footer-links .social-btn {
    display: grid;
    grid-template-columns: 48px 1fr 18px;
    align-items: center;
    gap: 14px;
    width: 100%;
    min-width: 0;
    padding: 14px 16px;
    border-radius: 20px;
    color: #0f172a;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease;
}

.footer-links .social-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(5, 107, 246, 0.22);
    box-shadow: 0 18px 36px rgba(5, 107, 246, 0.14);
    background: rgba(255, 255, 255, 0.96);
}

.social-btn__icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #056bf6, #1bc7fb);
    color: #ffffff;
    font-size: 1.1rem;
    box-shadow: 0 12px 24px rgba(5, 107, 246, 0.2);
}

.social-btn__body {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.social-btn__body strong {
    color: inherit;
    font-size: 0.98rem;
    line-height: 1.2;
}

.social-btn__body small {
    color: #64748b;
    font-size: 0.82rem;
    line-height: 1.35;
}

.social-btn__arrow {
    color: #94a3b8;
    font-size: 0.95rem;
    transition:
        transform 0.2s ease,
        color 0.2s ease;
}

.footer-links .social-btn:hover .social-btn__arrow {
    color: #056bf6;
    transform: translate(2px, -2px);
}

.social-btn.github .social-btn__icon {
    background: linear-gradient(135deg, #111827, #374151);
}

.social-btn.linkedin .social-btn__icon {
    background: linear-gradient(135deg, #0077b5, #1498d5);
}

.social-btn.instagram .social-btn__icon {
    background: linear-gradient(135deg, #f58529, #dd2a7b 55%, #8134af);
}

.social-btn.behance .social-btn__icon {
    background: linear-gradient(135deg, #1769ff, #4f7bff);
}

.social-btn.artstation .social-btn__icon {
    background: linear-gradient(135deg, #13aff0, #1cc8ff);
}

.social-btn.fivehundredpx .social-btn__icon {
    background: linear-gradient(135deg, #0099e5, #00b5f6);
}

.social-btn.hackaday .social-btn__icon {
    background: linear-gradient(135deg, #ff6600, #ff8a3d);
}

.social-btn.workana .social-btn__icon {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.rod {
    width: fit-content;
    max-width: 100%;
    margin: 18px auto 0;
    padding: 10px 14px;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px 12px;
    text-align: center;
    color: #64748b;
    font-size: 0.8rem;
    line-height: 1.45;
    letter-spacing: 0.01em;
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        "Segoe UI",
        Roboto,
        "Helvetica Neue",
        Arial,
        "Noto Sans",
        sans-serif;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.055);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.rod-item {
    display: inline-flex;
    align-items: center;
    min-height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    white-space: nowrap;
}

.rod-item--company {
    color: #334155;
    font-weight: 700;
    letter-spacing: 0.015em;
}

.rod-separator {
    width: 4px;
    height: 4px;
    align-self: center;
    border-radius: 999px;
    color: transparent;
    background: rgba(100, 116, 139, 0.34);
    font-size: 0;
    overflow: hidden;
}

html.dark .rodapé {
    background: transparent;
    border: 0;
    box-shadow: none;
}

html.dark .footer-shell {
    background:
        radial-gradient(
            circle at top right,
            rgba(59, 130, 246, 0.035),
            transparent 22%
        ),
        rgba(4, 8, 14, 0.94);
    border-color: rgba(96, 165, 250, 0.08);
    box-shadow: 0 24px 50px rgba(0, 2, 6, 0.62);
}

html.dark .footer-kicker {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(96, 165, 250, 0.12);
    color: #93c5fd;
}

html.dark .footer-title,
html.dark .footer-links__head strong,
html.dark .footer-links .social-btn,
html.dark .social-btn__body strong {
    color: #e5eefc;
}

html.dark .footer-description,
html.dark .footer-links__head span,
html.dark .social-btn__body small,
html.dark .rod {
    color: #94a3b8;
}

html.dark .rod {
    background: rgba(4, 8, 14, 0.72);
    border-color: rgba(96, 165, 250, 0.09);
    box-shadow: none;
}

html.dark .rod-item--company {
    color: #e5eefc;
}

html.dark .rod-separator {
    background: rgba(148, 163, 184, 0.34);
}

html.dark .footer-badges span,
html.dark .footer-links,
html.dark .footer-links .social-btn {
    background: rgba(4, 8, 14, 0.94);
    border-color: rgba(96, 165, 250, 0.08);
    box-shadow: none;
}

html.dark .footer-links {
    box-shadow: inset 0 1px 0 rgba(96, 165, 250, 0.025);
}

html.dark .social-btn__arrow {
    color: #94a3b8;
}

html.dark .footer-links .social-btn:hover {
    border-color: rgba(96, 165, 250, 0.14);
    box-shadow: 0 16px 30px rgba(0, 2, 6, 0.36);
    background: rgba(4, 8, 14, 0.94);
}

@media (max-width: 900px) {
    .footer-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .rodapé {
        width: calc(100% - 20px);
        margin: 22px auto 18px;
    }

    .footer-shell {
        padding: 22px 18px;
        border-radius: 24px;
        gap: 18px;
    }

    .footer-links {
        padding: 18px;
        border-radius: 22px;
    }

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

    .footer-links .social-btn {
        width: 100%;
        justify-self: stretch;
    }

    .rod {
        width: 100%;
        padding: 12px 14px;
        border-radius: 22px;
        gap: 6px;
    }

    .rod-item {
        width: 100%;
        justify-content: center;
        white-space: normal;
    }

    .rod-separator {
        display: none;
    }
}

/* ==========================================================================
   PAGINAS: projetos/*.html
   Refinamento mobile do card de apresentacao
   ========================================================================== */

@media (max-width: 768px) {
    :where(html[class*="projetos-"]) .project-hero {
        width: calc(100% - 20px);
        margin: 18px auto 32px;
        padding: 30px 18px 34px;
        border-radius: 28px;
    }

    :where(html[class*="projetos-"]) .project-hero-content {
        max-width: 100%;
        display: grid;
        justify-items: center;
        gap: 18px;
        text-align: center;
    }

    :where(html[class*="projetos-"]) .project-title,
    :where(html[class*="projetos-"]) .project-subtitle {
        width: min(100%, 34rem);
        margin-left: auto;
        margin-right: auto;
        padding-left: 5px;
        padding-right: 5px;
        text-align: left;
        white-space: normal;
        word-spacing: normal;
        letter-spacing: normal;
        hyphens: auto;
    }

    :where(html[class*="projetos-"]) .project-title {
        margin-top: 0;
        margin-bottom: 0;
        font-size: clamp(1.85rem, 8.4vw, 2.45rem);
        line-height: 1.12;
        letter-spacing: -0.04em;
        text-wrap: balance;
        overflow-wrap: anywhere;
    }

    :where(html[class*="projetos-"]) .project-subtitle {
        margin-top: 0;
        color: rgba(255, 255, 255, 0.92);
        font-size: clamp(0.98rem, 4.4vw, 1.08rem);
        line-height: 1.58;
        text-wrap: pretty;
        word-break: normal;
        overflow-wrap: break-word;
    }

    :where(html[class*="projetos-"]) .container .titulo4 {
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 5px;
        padding-right: 5px;
        text-align: left;
        text-indent: 0;
        line-height: 1.2;
    }

    :where(html[class*="projetos-"]) .container .text {
        max-width: 900px;
        padding-left: 5px;
        padding-right: 5px;
    }

    :where(html[class*="projetos-"]) .tech-badges {
        width: min(100%, 34rem);
        margin: 4px auto 2px;
        padding-left: 5px;
        padding-right: 5px;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 10px;
    }

    :where(html[class*="projetos-"]) .tech-badge {
        min-height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 9px 14px;
        border-radius: 999px;
        max-width: 100%;
        font-size: 0.95rem;
        line-height: 1.25;
        text-align: center;
        white-space: normal;
        text-transform: none;
        letter-spacing: 0;
        background: rgba(255, 255, 255, 0.16);
        border-color: rgba(255, 255, 255, 0.26);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    }

    :where(html[class*="projetos-"]) .action-buttons {
        width: 100%;
        margin-top: 10px;
        display: grid;
        justify-items: center;
        gap: 12px;
    }

    :where(html[class*="projetos-"]) .btn-primary,
    :where(html[class*="projetos-"]) .btn-secondary {
        width: min(100%, 286px);
        min-height: 56px;
        justify-content: center;
        padding: 0 22px;
        border-radius: 999px;
        font-size: 1rem;
    }
}

@media (max-width: 420px) {
    :where(html[class*="projetos-"]) .project-hero {
        width: calc(100% - 16px);
        padding: 28px 16px 32px;
        border-radius: 26px;
    }

    :where(html[class*="projetos-"]) .project-hero-content {
        gap: 16px;
    }

    :where(html[class*="projetos-"]) .project-title {
        font-size: clamp(1.75rem, 8.8vw, 2.2rem);
        line-height: 1.13;
    }

    :where(html[class*="projetos-"]) .project-subtitle {
        font-size: 0.98rem;
        line-height: 1.62;
    }

    :where(html[class*="projetos-"]) .tech-badges {
        gap: 8px;
    }

    :where(html[class*="projetos-"]) .tech-badge {
        min-height: 40px;
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

/* ========================================================================== 
   PAGINA: index.html
   Componentes: bloco "Quem sou eu" da home
   ========================================================================== */

.who-card {
    max-width: 1100px;
    width: calc(100% - 32px);
    margin: 28px auto;
    padding: 30px;
    border-radius: 28px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.12),
        rgba(255, 255, 255, 0.08)
    );
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow: 0 24px 56px rgba(2, 6, 23, 0.16);
    position: relative;
    overflow: hidden;
}
.who-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top right,
        rgba(27, 199, 251, 0.16),
        transparent 30%
    );
    pointer-events: none;
}
.who-head {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 22px;
}
.who-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(5, 107, 246, 0.12);
    border: 1px solid rgba(5, 107, 246, 0.18);
    color: #38bdf8;
    font-weight: 700;
    margin: 0 auto 14px;
}
.who-title {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(270deg, #056bf6, #1bc7fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}
.who-description {
    max-width: 640px;
    margin: 0 auto;
    color: #475569;
    line-height: 1.75;
    text-align: center;
    word-spacing: normal;
    letter-spacing: normal;
}
.who-list {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 16px;
}
.who-item {
    position: relative;
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(226, 232, 240, 0.42);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}
.who-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(5, 107, 246, 0.12),
        transparent 55%
    );
    opacity: 0;
    transition: opacity 0.25s ease;
}
.who-item:hover {
    transform: translateY(-6px);
    border-color: rgba(56, 189, 248, 0.34);
    box-shadow: 0 18px 36px rgba(5, 107, 246, 0.14);
}
.who-item:hover::before {
    opacity: 1;
}
.who-item i {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #056bf6, #1bc7fb);
    color: #fff !important;
    font-size: 1.1rem;
    box-shadow: 0 14px 28px rgba(5, 107, 246, 0.22);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}
.who-item:hover i {
    transform: scale(1.08) translateY(-2px);
}
.who-item__content {
    min-width: 0;
}
.who-item__content strong {
    display: block;
    color: #0f172a;
    font-size: 1.05rem;
    margin-bottom: 6px;
    text-align: left;
}
.who-item__content span {
    display: block;
    color: #475569;
    line-height: 1.6;
    text-align: left;
}
.who-item small {
    grid-column: 2;
    justify-self: start;
    margin-top: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.2);
    color: #056bf6;
    font-weight: 700;
    letter-spacing: 0.02em;
}
html.dark .who-card {
    background: rgba(4, 8, 14, 0.94);
    border-color: var(--dark-border);
    box-shadow: none;
}
html.dark .who-description,
html.dark .who-item__content span {
    color: #cbd5e1;
}
html.dark .who-item {
    background: rgba(4, 8, 14, 0.94);
    border-color: var(--dark-border);
    box-shadow: none;
}
html.dark .who-item__content strong {
    color: #e5eefc;
}
html.dark .who-item small {
    background: rgba(4, 8, 14, 0.94);
    border-color: var(--dark-border);
    color: #7dd3fc;
}
html.dark .who-card::before {
    display: none;
}
@media (max-width: 768px) {
    .who-card {
        width: calc(100% - 20px);
        padding: 24px;
        border-radius: 24px;
    }
    .who-head {
        margin-bottom: 18px;
    }
    .who-kicker {
        margin-bottom: 12px;
    }
    .who-title {
        font-size: 1.7rem;
    }
    .who-description {
        max-width: none;
    }
    .who-item {
        grid-template-columns: 44px 1fr;
        padding: 16px;
    }
    .who-item i {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }
    .who-item small {
        grid-column: 2;
        justify-self: start;
        margin-top: 6px;
    }
}

.feature-card {
    position: relative;
}
.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(90deg, #056bf6, #1bc7fb);
    opacity: 0;
    transform: scale(0.985);
    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
    pointer-events: none;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}
.feature-card:hover::before {
    opacity: 1;
    transform: scale(1);
}
html.dark .feature-card::before {
    background: linear-gradient(90deg, #1e3a8a, #38bdf8);
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
    will-change: opacity, transform;
}
.reveal.reveal-from-left {
    transform: translateX(-24px);
}
.reveal.reveal-from-right {
    transform: translateX(24px);
}
.reveal-visible {
    opacity: 1;
    transform: none;
}
@media (prefers-reduced-motion: reduce) {
    .reveal {
        transition: none;
    }
}

h1,
h2,
h3,
h4,
h5,
h6,
.titulo3,
.titulo4,
.feature-title,
.who-title,
.cta-title {
    font-family:
        "Geist Variable",
        "Inter",
        system-ui,
        -apple-system,
        "Segoe UI",
        Roboto,
        "Helvetica Neue",
        Arial,
        "Noto Sans",
        sans-serif;
    letter-spacing: -0.01em;
}

/* ==========================================================================
   PAGINA: index.html
   Componentes: CTA da home para `orcamento.html`
   ========================================================================== */

/* CTA de orçamento na home */
.budget-cta-home {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 30px;
}

.budget-cta-home__intro {
    text-align: center;
    margin-bottom: 26px;
}

.budget-cta-home__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(5, 107, 246, 0.08);
    border: 1px solid rgba(5, 107, 246, 0.14);
    color: #056bf6;
    font-weight: 700;
}

.budget-cta-home__card {
    position: relative;
    overflow: hidden;
    max-width: 1120px;
    margin: 0 auto;
    border-radius: 32px;
    padding: 34px;
    background:
        radial-gradient(
            circle at top right,
            rgba(27, 199, 251, 0.16),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.96),
            rgba(240, 247, 255, 0.92)
        );
    border: 1px solid rgba(5, 107, 246, 0.12);
    box-shadow: 0 22px 50px rgba(5, 107, 246, 0.12);
    text-align: left;
}

.budget-cta-home__card::before {
    content: "";
    position: absolute;
    inset: auto -120px -140px auto;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(5, 107, 246, 0.12),
        transparent 68%
    );
    pointer-events: none;
}

.budget-cta-home__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: 24px;
    align-items: start;
}

.budget-cta-home__copy {
    text-align: left;
}

.budget-cta-home__copy > * {
    max-width: 680px;
}

.budget-cta-home__copy h4 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    line-height: 1.18;
    color: #0f172a;
    margin-bottom: 14px;
    letter-spacing: -0.03em;
}

.budget-cta-home__copy p {
    margin-bottom: 22px;
    line-height: 1.7;
    color: #334155;
}

.budget-cta-home__benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.budget-cta-home__benefits span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    min-height: 56px;
    flex: 1 1 calc(50% - 7px);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.16);
    color: #0f172a;
    font-weight: 600;
}

.budget-cta-home__benefits i {
    color: #056bf6;
}

.budget-cta-home__side {
    display: grid;
    gap: 16px;
    align-content: center;
    align-self: stretch;
    padding: 22px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
    text-align: left;
}

.budget-cta-home__mini-card {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
}

.budget-cta-home__mini-card strong {
    display: block;
    margin-bottom: 8px;
    color: #0f172a;
    font-size: 1rem;
}

.budget-cta-home__mini-card span {
    display: block;
    line-height: 1.6;
    color: #475569;
}

.budget-cta-home__button {
    width: fit-content;
    margin-top: 4px;
}

html.dark .budget-cta-home__eyebrow {
    background: rgba(27, 199, 251, 0.12);
    border-color: rgba(56, 189, 248, 0.2);
    color: #7dd3fc;
}

html.dark .budget-cta-home__card {
    background: rgba(4, 8, 14, 0.94);
    border-color: var(--dark-border);
    box-shadow: 0 22px 50px rgba(0, 2, 6, 0.58);
}
html.dark .budget-cta-home__card::before {
    display: none;
}

html.dark .budget-cta-home__copy h4,
html.dark .budget-cta-home__benefits span,
html.dark .budget-cta-home__mini-card strong {
    color: #e5eefc;
}

html.dark .budget-cta-home__copy p,
html.dark .budget-cta-home__mini-card span {
    color: #cbd5e1;
}

html.dark .budget-cta-home__benefits span,
html.dark .budget-cta-home__mini-card {
    background: rgba(4, 8, 14, 0.94);
    border-color: var(--dark-border);
    box-shadow: none;
}

html.dark .budget-cta-home__side {
    background: rgba(4, 8, 14, 0.94);
    border-color: var(--dark-border);
    box-shadow: inset 0 1px 0 rgba(96, 165, 250, 0.04);
}

@media (max-width: 960px) {
    .budget-cta-home__content {
        grid-template-columns: 1fr;
    }

    .budget-cta-home__button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .budget-cta-home {
        padding: 0 16px 24px;
    }

    .budget-cta-home__card {
        padding: 22px 18px;
        border-radius: 24px;
    }

    .budget-cta-home__benefits {
        display: grid;
        grid-template-columns: 1fr;
    }

    .budget-cta-home__benefits span {
        flex: initial;
    }

    .budget-cta-home__side {
        padding: 18px;
    }
}

/* ==========================================================================
   PAGINA: index.html
   Componentes: CTA da home para `reconhecimentos.html`
   ========================================================================== */

/* CTA de reconhecimentos na home */
.recognition-cta-home {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 30px;
}

.recognition-cta-home__intro {
    text-align: center;
    margin-bottom: 26px;
}

.recognition-cta-home__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.18);
    color: #c27a07;
    font-weight: 700;
}

.recognition-cta-home__card {
    position: relative;
    overflow: hidden;
    max-width: 1120px;
    margin: 0 auto;
    border-radius: 32px;
    padding: 34px;
    background:
        radial-gradient(
            circle at top right,
            rgba(245, 158, 11, 0.12),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.96),
            rgba(255, 248, 235, 0.92)
        );
    border: 1px solid rgba(245, 158, 11, 0.16);
    box-shadow: 0 22px 50px rgba(245, 158, 11, 0.12);
    text-align: left;
}

.recognition-cta-home__card::before {
    content: "";
    position: absolute;
    inset: auto -120px -140px auto;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(245, 158, 11, 0.12),
        transparent 68%
    );
    pointer-events: none;
}

.recognition-cta-home__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 24px;
    align-items: start;
}

.recognition-cta-home__copy > * {
    max-width: 700px;
}

.recognition-cta-home__copy h4 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    line-height: 1.18;
    color: #0f172a;
    margin-bottom: 14px;
    letter-spacing: -0.03em;
}

.recognition-cta-home__copy p {
    margin-bottom: 22px;
    line-height: 1.7;
    color: #334155;
}

.recognition-cta-home__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.recognition-cta-home__chips span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.16);
    color: #0f172a;
    font-weight: 600;
}

.recognition-cta-home__chips i {
    color: #c27a07;
}

.recognition-cta-home__side {
    display: grid;
    gap: 16px;
    align-content: center;
    align-self: stretch;
    padding: 22px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.recognition-cta-home__mini-card {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
}

.recognition-cta-home__mini-card strong {
    display: block;
    margin-bottom: 8px;
    color: #0f172a;
    font-size: 1rem;
}

.recognition-cta-home__mini-card span {
    display: block;
    line-height: 1.6;
    color: #475569;
}

.recognition-cta-home__button {
    width: fit-content;
    margin-top: 4px;
}

html.dark .recognition-cta-home__eyebrow {
    background: rgba(245, 158, 11, 0.14);
    border-color: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
}

html.dark .recognition-cta-home__card {
    background: rgba(4, 8, 14, 0.94);
    border-color: var(--dark-border);
    box-shadow: 0 22px 50px rgba(0, 2, 6, 0.58);
}
html.dark .recognition-cta-home__card::before {
    display: none;
}

html.dark .recognition-cta-home__copy h4,
html.dark .recognition-cta-home__chips span,
html.dark .recognition-cta-home__mini-card strong {
    color: #e5eefc;
}

html.dark .recognition-cta-home__copy p,
html.dark .recognition-cta-home__mini-card span {
    color: #cbd5e1;
}

html.dark .recognition-cta-home__chips span,
html.dark .recognition-cta-home__mini-card {
    background: rgba(4, 8, 14, 0.94);
    border-color: var(--dark-border);
    box-shadow: none;
}

html.dark .recognition-cta-home__side {
    background: rgba(4, 8, 14, 0.94);
    border-color: var(--dark-border);
    box-shadow: inset 0 1px 0 rgba(96, 165, 250, 0.04);
}

@media (max-width: 960px) {
    .recognition-cta-home__content {
        grid-template-columns: 1fr;
    }

    .recognition-cta-home__button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .recognition-cta-home {
        padding: 0 16px 24px;
    }

    .recognition-cta-home__card {
        padding: 22px 18px;
        border-radius: 24px;
    }

    .recognition-cta-home__chips {
        display: grid;
        grid-template-columns: 1fr;
    }

    .recognition-cta-home__side {
        padding: 18px;
    }
}

/* ==========================================================================
   COMPARTILHADO | navbar alternativa das paginas internas
   Usado quando a navegacao vem dentro de `.header .navbar`
   ========================================================================== */

/* Navbar global no estilo da página de orçamento */
.header .navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: min(1180px, calc(100% - 24px));
    margin: 0;
    padding: 14px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    letter-spacing: normal;
    overflow: visible;
}

.header .navbar.scrolled {
    box-shadow: 0 26px 58px rgba(15, 23, 42, 0.16);
}

.header .navbar .logo {
    width: 130px;
    height: 64px;
    margin: 0;
    padding: 0;
    line-height: normal;
    flex-shrink: 0;
    position: relative;
    z-index: 0;
    background: none;
}

.header .navbar .logo::before {
    content: none;
}

.header .navbar .logo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../img/logo_light.png) no-repeat 50% 50%;
    background-size: contain;
    pointer-events: none;
}

.header .navbar .menu {
    position: static;
    right: auto;
    left: auto;
    top: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    width: auto;
    max-height: none;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
}

.header .navbar .menu a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 10px 14px;
    border-radius: 999px;
    color: #0f172a;
    font-weight: 700;
    text-transform: none;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.header .navbar .menu a::after {
    content: none;
}

.header .navbar .menu a:hover,
.header .navbar .menu a.is-active {
    background: linear-gradient(135deg, #056bf6, #1bc7fb);
    color: #ffffff;
    transform: translateY(-1px);
}

.header .navbar .nav-actions {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header .navbar .btn {
    display: none;
    position: static;
    cursor: pointer;
}

.header .navbar .btn span {
    display: block;
    width: 28px;
    height: 3px;
    margin: 5px 0;
    border-radius: 999px;
    background: #0f172a;
    transition: background 0.2s ease;
}

.header .navbar #theme-toggle.theme-toggle,
.header .navbar .theme-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 96px;
    height: 46px;
    margin: 0;
    padding: 0 14px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #0f172a;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    cursor: pointer;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.header .navbar #theme-toggle.theme-toggle:hover,
.header .navbar .theme-toggle:hover {
    transform: translateY(-1px);
    border-color: rgba(5, 107, 246, 0.28);
}

.header .navbar #theme-toggle.theme-toggle .icon,
.header .navbar .theme-toggle .icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    font-size: 0.95rem;
    color: #0f172a;
    opacity: 0.82;
    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}

.header .navbar #theme-toggle.theme-toggle .thumb,
.header .navbar .theme-toggle .thumb {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 38px;
    height: 36px;
    border-radius: 999px;
    background: linear-gradient(135deg, #056bf6, #1bc7fb);
    box-shadow: 0 12px 22px rgba(5, 107, 246, 0.24);
    transition:
        left 0.22s ease,
        right 0.22s ease;
}

.header .navbar #theme-toggle.theme-toggle.mode-dark .thumb,
.header .navbar .theme-toggle.mode-dark .thumb {
    left: calc(100% - 42px);
}

.header .navbar #theme-toggle.theme-toggle.mode-light .icon-sun,
.header .navbar .theme-toggle.mode-light .icon-sun,
.header .navbar #theme-toggle.theme-toggle.mode-dark .icon-moon,
.header .navbar .theme-toggle.mode-dark .icon-moon {
    color: #ffffff;
    opacity: 1;
}

html.dark .header .navbar {
    background: rgba(4, 8, 14, 0.94);
    border-color: var(--dark-border);
    box-shadow: 0 24px 50px rgba(0, 2, 6, 0.56);
}

html.dark .header .navbar .logo::before {
    content: none;
}

html.dark .header .navbar .logo::after {
    background-image: url(../img/logo.png);
    filter: none;
}

html.dark .header .navbar.scrolled {
    box-shadow: 0 26px 58px rgba(1, 3, 8, 0.54);
}

html.dark .header .navbar .menu a {
    color: #e5eefc;
}

html.dark .header .navbar .menu a:hover,
html.dark .header .navbar .menu a.is-active {
    color: #ffffff;
}

html.dark .header .navbar .btn span {
    background: #e5eefc;
}

html.dark .header .navbar #theme-toggle.theme-toggle,
html.dark .header .navbar .theme-toggle {
    background: rgba(4, 8, 14, 0.94);
    border-color: var(--dark-border);
    color: #e5eefc;
    box-shadow: 0 10px 24px rgba(0, 2, 6, 0.36);
}

html.dark .header .navbar #theme-toggle.theme-toggle .icon,
html.dark .header .navbar .theme-toggle .icon {
    color: #e5eefc;
}

@media (max-width: 768px) {
    .header .navbar {
        width: calc(100% - 20px);
        padding: 14px 16px;
        border-radius: 24px;
    }

    .header .navbar .btn {
        display: block;
    }

    .header .navbar .menu {
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 10px);
        display: grid;
        gap: 8px;
        padding: 14px;
        margin: 0;
        width: auto;
        max-height: none;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.92);
        border: 1px solid rgba(148, 163, 184, 0.22);
        box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: 0.2s ease;
        overflow: visible;
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .header .navbar .menu.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .header .navbar .menu a {
        width: 100%;
        text-align: center;
        justify-content: center;
        min-height: 48px;
        padding: 10px 14px;
        border-radius: 16px;
        font-size: 1.02rem;
    }

    .header .navbar .menu a:hover,
    .header .navbar .menu a.is-active {
        background: linear-gradient(135deg, #056bf6, #1bc7fb);
        color: #ffffff;
    }

    .header .navbar .nav-actions {
        gap: 10px;
    }

    .header .navbar #theme-toggle.theme-toggle,
    .header .navbar .theme-toggle {
        width: 88px;
        height: 42px;
        padding: 0 12px;
    }

    .header .navbar #theme-toggle.theme-toggle .thumb,
    .header .navbar .theme-toggle .thumb {
        width: 34px;
        height: 32px;
    }

    .header .navbar #theme-toggle.theme-toggle.mode-dark .thumb,
    .header .navbar .theme-toggle.mode-dark .thumb {
        left: calc(100% - 38px);
    }

    html.dark .header .navbar .menu {
        background: rgba(4, 8, 14, 0.94);
        border-color: var(--dark-border);
        box-shadow: 0 24px 50px rgba(0, 2, 6, 0.54);
    }

    html.dark .header .navbar .menu a {
        color: #e5eefc;
    }

    html.dark .header .navbar .menu a:hover,
    html.dark .header .navbar .menu a.is-active {
        color: #ffffff;
    }
}

/* Card com gráfico de automação (ECharts) */
.automation-insight-container {
    max-width: 1200px;
    margin: 36px auto 44px;
    background: transparent;
    padding: 0 20px;
    box-shadow: none;
    border: none;
}

.automation-insight-card {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    align-items: center;
    gap: 28px;
    width: 100%;
    padding: 34px;
    border-radius: 28px;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.96),
        rgba(241, 247, 255, 0.94)
    );
    border: 1px solid rgba(5, 107, 246, 0.12);
    box-shadow: 0 24px 55px rgba(5, 107, 246, 0.14);
    overflow: hidden;
    position: relative;
}

.automation-insight-card::before {
    content: "";
    position: absolute;
    inset: -120px auto auto -80px;
    width: 240px;
    height: 240px;
    border-radius: 999px;
    background: radial-gradient(
        circle,
        rgba(27, 199, 251, 0.22),
        transparent 68%
    );
    pointer-events: none;
}

.automation-insight-copy,
.automation-chart-wrap {
    position: relative;
    z-index: 1;
}

.automation-insight-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(5, 107, 246, 0.1);
    color: #056bf6;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.automation-insight-copy h2 {
    margin: 0 0 16px;
    color: #0f172a;
    font-size: clamp(1.75rem, 3vw, 2.8rem);
    line-height: 1.08;
    border: 0;
    box-shadow: none;
}

.automation-insight-copy p {
    margin: 0 0 14px;
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
    text-align: left;
    text-wrap: pretty;
}

.automation-insight-source {
    display: inline-flex;
    margin-top: 8px !important;
    padding-top: 12px;
    border-top: 1px solid rgba(5, 107, 246, 0.16);
    color: #64748b !important;
    font-size: 0.88rem !important;
    font-weight: 700;
}

.automation-chart-wrap {
    min-height: 360px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.automation-chart {
    width: 100%;
    height: 360px;
}

html.dark .automation-insight-container {
    background: transparent;
}

html.dark .automation-insight-card {
    background: rgba(4, 8, 14, 0.94);
    border-color: var(--dark-border);
    box-shadow: 0 24px 55px rgba(0, 2, 6, 0.64);
}

html.dark .automation-insight-card::before {
    background: radial-gradient(
        circle,
        rgba(27, 199, 251, 0.16),
        transparent 68%
    );
}

html.dark .automation-insight-kicker {
    background: rgba(27, 199, 251, 0.12);
    color: #38bdf8;
}

html.dark .automation-insight-copy h2 {
    color: #e5eefc;
}

html.dark .automation-insight-copy p {
    color: #cbd5e1;
}

html.dark .automation-insight-source {
    border-top-color: rgba(56, 189, 248, 0.22);
    color: #94a3b8 !important;
}

html.dark .automation-chart-wrap {
    background: rgba(2, 6, 12, 0.78);
    border-color: var(--dark-border);
}

@media (max-width: 900px) {
    .automation-insight-card {
        grid-template-columns: 1fr;
        padding: 28px 22px;
    }

    .automation-chart-wrap,
    .automation-chart {
        min-height: 320px;
        height: 320px;
    }
}

@media (max-width: 480px) {
    .automation-insight-container {
        padding: 0 10px;
        margin: 28px auto 34px;
    }

    .automation-insight-card {
        border-radius: 22px;
        padding: 24px 16px;
    }

    .automation-chart-wrap,
    .automation-chart {
        min-height: 280px;
        height: 280px;
    }
}

/* ==========================================================================
   HOME: motion sincronizado do titulo principal e subtitulo rotativo
   ========================================================================== */

html.page-index .hero-motion-lockup {
    position: relative;
    isolation: isolate;
    width: min(100%, 980px);
    margin: 0 auto 18px;
    padding: 14px 16px 24px;
    display: grid;
    justify-items: center;
    gap: 6px;
    text-align: center;
}

html.page-index .hero-motion-lockup::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 46%;
    width: min(72vw, 640px);
    height: 180px;
    border-radius: 999px;
    background: radial-gradient(
        ellipse,
        rgba(27, 199, 251, 0.16),
        rgba(5, 107, 246, 0.06) 42%,
        transparent 72%
    );
    filter: blur(24px);
    transform: translate3d(-50%, -50%, 0) scale(0.72);
    opacity: 0;
    animation: homeHeroGlowIn 1.3s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
    pointer-events: none;
}

html.page-index .hero-motion-lockup::after {
    content: "";
    width: min(180px, 42vw);
    height: 3px;
    margin-top: 7px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, #056bf6, #1bc7fb, transparent);
    box-shadow: 0 0 22px rgba(27, 199, 251, 0.28);
    transform: scaleX(0);
    transform-origin: center;
    animation: homeHeroLineIn 0.82s cubic-bezier(0.22, 1, 0.36, 1) 0.72s both;
}

html.page-index .hero-motion-lockup .titulo5 {
    margin: 0;
    padding: 0 0.1em;
    font-size: clamp(3.2rem, 8.5vw, 6.25rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.055em;
    text-indent: 0;
    background: linear-gradient(110deg, #056bf6 8%, #1bc7fb 48%, #7dd3fc 68%, #056bf6 94%);
    background-size: 220% 100%;
    background-position: 0% 50%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: blur(0);
    transform-origin: center bottom;
    will-change: transform, opacity, filter, background-position;
    animation:
        homePortfolioReveal 1.08s cubic-bezier(0.16, 1, 0.3, 1) both,
        homePortfolioGradient 7s ease-in-out 1.2s infinite alternate;
}

html.page-index .hero-motion-lockup #rotating-title {
    display: grid;
    width: min(100%, 760px);
    height: 1.45em;
    min-height: 0;
    place-items: center;
    overflow: hidden;
    margin: 4px auto 0;
    padding: 0 12px;
    color: #334155;
    font-size: clamp(1.35rem, 3.6vw, 2.35rem);
    font-weight: 650;
    line-height: 1.25;
    letter-spacing: -0.025em;
    text-align: center;
    text-wrap: balance;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
    will-change: transform, opacity, filter;
    transition: none;
    animation: none;
}

html.page-index .hero-motion-lockup #rotating-title.is-initializing {
    animation: homeSubtitleFirstIn 1.08s cubic-bezier(0.16, 1, 0.3, 1) both;
}

html.dark.page-index .hero-motion-lockup #rotating-title {
    color: #cbd5e1;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.32);
}

html.page-index .hero-motion-lockup #rotating-title.is-leaving {
    animation: homeSubtitleOut 0.36s cubic-bezier(0.4, 0, 1, 1) both;
}

html.page-index .hero-motion-lockup #rotating-title.is-entering {
    animation: homeSubtitleIn 0.62s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes homePortfolioReveal {
    0% {
        opacity: 0;
        filter: blur(16px);
        transform: translate3d(0, 34px, 0) scale(0.92);
        letter-spacing: -0.11em;
    }

    62% {
        opacity: 1;
        filter: blur(0);
        transform: translate3d(0, -3px, 0) scale(1.012);
    }

    100% {
        opacity: 1;
        filter: blur(0);
        transform: translate3d(0, 0, 0) scale(1);
        letter-spacing: -0.055em;
    }
}

@keyframes homePortfolioGradient {
    from {
        background-position: 0% 50%;
    }

    to {
        background-position: 100% 50%;
    }
}

@keyframes homeSubtitleFirstIn {
    0% {
        opacity: 0;
        filter: blur(12px);
        transform: translate3d(0, 34px, 0) scale(0.92);
    }

    62% {
        opacity: 1;
        filter: blur(0);
        transform: translate3d(0, -3px, 0) scale(1.012);
    }

    100% {
        opacity: 1;
        filter: blur(0);
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes homeSubtitleOut {
    from {
        opacity: 1;
        filter: blur(0);
        transform: translate3d(0, 0, 0);
    }

    to {
        opacity: 0;
        filter: blur(6px);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes homeSubtitleIn {
    from {
        opacity: 0;
        filter: blur(6px);
        transform: translate3d(0, 0, 0);
    }

    to {
        opacity: 1;
        filter: blur(0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes homeHeroGlowIn {
    from {
        opacity: 0;
        transform: translate3d(-50%, -50%, 0) scale(0.72);
    }

    to {
        opacity: 1;
        transform: translate3d(-50%, -50%, 0) scale(1);
    }
}

@keyframes homeHeroLineIn {
    from {
        opacity: 0;
        transform: scaleX(0);
    }

    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

@media (max-width: 600px) {
    html.page-index .hero-motion-lockup {
        margin-bottom: 12px;
        padding: 10px 12px 18px;
        gap: 4px;
    }

    html.page-index .hero-motion-lockup .titulo5 {
        font-size: clamp(2.65rem, 14vw, 4rem);
        line-height: 1;
    }

    html.page-index .hero-motion-lockup #rotating-title {
        height: 2.6em;
        min-height: 0;
        margin-top: 2px;
        padding: 0 6px;
        font-size: clamp(1.12rem, 5.8vw, 1.55rem);
        line-height: 1.3;
    }
}

@media (prefers-reduced-motion: reduce) {
    html.page-index .hero-motion-lockup::before,
    html.page-index .hero-motion-lockup::after,
    html.page-index .hero-motion-lockup .titulo5,
    html.page-index .hero-motion-lockup #rotating-title,
    html.page-index .hero-motion-lockup #rotating-title.is-initializing,
    html.page-index .hero-motion-lockup #rotating-title.is-leaving,
    html.page-index .hero-motion-lockup #rotating-title.is-entering {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        filter: none !important;
        transform: none !important;
        will-change: auto !important;
    }
}
