@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* --- DESIGN SYSTEM & CSS VARIABLES --- */
:root {
    /* Colors */
    --bg-navy-dark: #050a1e;
    --bg-navy-mid: #0a1128;
    --bg-navy-light: #101b3b;
    --brand-orange: #FF6B00;
    --brand-orange-light: #ff8533;
    --brand-orange-dark: #cc5200;

    --text-white: #ffffff;
    --text-muted: #d2d2d2;
    --text-dark: #050a1e;
    --text-dark-muted: #666666;

    /* Fonts */
    --font-primary: 'Plus Jakarta Sans', 'Poppins', sans-serif;

    /* Dimensions & Spacing */
    --nav-height: 80px;
    --container-width: 1240px;
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 8px;

    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-orange: 0 10px 25px -5px rgba(242, 122, 26, 0.35);
}

/* --- BASICS & RESET --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-navy-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

button,
.btn {
    font-family: var(--font-primary);
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
    transition: all 0.2s ease;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--border-radius-sm);
    font-size: 15px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: var(--brand-orange);
    color: var(--text-white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--brand-orange-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

.btn-secondary {
    border: 2px solid var(--text-white);
    color: var(--text-white);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.highlight-orange {
    color: var(--brand-orange);
}

/* Scroll Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- S1 â€” NAVBAR --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: rgba(5, 10, 30, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.header.scrolled {
    background-color: rgba(5, 10, 30, 0.95);
    height: 70px;
    box-shadow: var(--shadow-md);
}

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

.logo-wrapper img,
.logo-wrapper svg {
    height: 36px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand-orange);
    transition: all 0.2s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-nav {
    background-color: var(--brand-orange);
    color: var(--text-white);
    font-weight: 700;
    padding: 10px 22px;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
}

.btn-nav:hover {
    background-color: var(--brand-orange-light);
    transform: translateY(-1px);
}

/* Hamburguer menu trigger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    height: 24px;
    justify-content: center;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--nav-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background-color: var(--bg-navy-dark);
        flex-direction: column;
        padding: 48px 24px;
        gap: 28px;
        transition: all 0.3s ease;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        z-index: 999;
    }

    .nav-menu.open {
        left: 0;
    }
}

/* --- S2 â€” HERO --- */
.hero {
    padding: calc(var(--nav-height) + 60px) 0 80px 0;
    position: relative;
    overflow: hidden;
    /* CORREÃ‡ÃƒO CRÃTICA: corta Duo e Vector 1 exatamente no fim de S2, sem invadir o laranja */
    background-image: radial-gradient(circle at 80% 20%, rgba(242, 122, 26, 0.08) 0%, transparent 50%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 15%;
    right: -5%;
    width: 500px;
    height: 500px;
    background-color: var(--brand-orange);
    filter: blur(160px);
    opacity: 0.07;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 56px;
        text-align: center;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2rem, 4.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 28px;
}

.hero-title span {
    color: var(--brand-orange);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
}

.hero-checklist {
    list-style: none;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-muted);
    text-align: left;
}

@media (max-width: 1024px) {
    .hero-check-item {
        justify-content: flex-start;
    }
}

.hero-check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.hero-rating-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

@media (max-width: 1024px) {
    .hero-rating-badge {
        justify-content: center;
    }
}

.hero-avatars {
    display: flex;
    align-items: center;
}

.hero-avatar-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--bg-navy-dark);
    background-color: var(--bg-navy-light);
    margin-right: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-avatar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-avatar-count {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--bg-navy-dark);
    background-color: var(--brand-orange);
    color: var(--text-white);
    font-size: 0.85rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.hero-rating-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.hero-stars {
    display: flex;
    gap: 4px;
    align-items: center;
}

.hero-star-icon {
    width: 16px;
    height: 16px;
    fill: #ffb800;
}

.hero-rating-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-cta-group .btn-secondary {
    background-color: var(--bg-navy-dark);
    border: 2px solid var(--brand-orange);
}

.hero-cta-group .btn-secondary:hover {
    background-color: var(--brand-orange);
}

@media (max-width: 1024px) {
    .hero-cta-group {
        justify-content: center;
    }
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    z-index: 2;
    width: 100%;
    align-self: end;
}

.hero-mascot-bg {
    position: absolute;
    bottom: -180px;
    right: -165px;
    width: 140%;
    max-width: 530px;
    height: auto;
    object-fit: contain;
    z-index: 1;
    pointer-events: none;
    opacity: 1;
}

.hero-mascot-img {
    width: 100%;
    max-width: 440px;
    object-fit: contain;
    align-self: flex-end;
    margin-bottom: -80px;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12));
    z-index: 2;
    position: relative;
    right: -140px;
}

/* Floating speech bubble using custom image */
.speech-bubble {
    position: absolute;
    top: -95px;
    left: 40px;
    width: 300px;
    height: 280px;
    background-image: url('/static/img/balao-de-fala.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    color: var(--text-dark);
    padding: 25px 25px 40px 25px;
    z-index: 10;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.4;
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bubble-dot {
    position: absolute;
    background-color: #ffffff;
    border: 2px solid var(--brand-orange);
    border-radius: 50%;
    display: block;
    z-index: 9;
}

.bubble-dot-1 {
    width: 18px;
    height: 18px;
    bottom: 12px;
    right: 35px;
    /* inÃ­cio do caminho de balÃµes recalculado */
}

.bubble-dot-2 {
    width: 13px;
    height: 13px;
    bottom: 2px;
    right: 23px;
}

.bubble-dot-3 {
    width: 9px;
    height: 9px;
    bottom: -10px;
    right: 14px;
}

.bubble-dot-4 {
    width: 6px;
    height: 6px;
    bottom: -20px;
    right: 8px;
    /* aponta com precisÃ£o em direÃ§Ã£o Ã  cabeÃ§a da Duo */
}

@media (min-width: 1024px) {
    .hero-mascot-img {
        position: relative;
        right: min(-24px, calc(-50vw + 596px));
        width: 100%;
        max-width: 440px;
        z-index: 2;
    }

    .hero-mascot-bg {
        position: absolute;
        right: min(-49px, calc(-50vw + 571px));
        bottom: -180px;
        width: 140%;
        max-width: 530px;
        z-index: 1;
    }

    .speech-bubble {
        left: auto;
        right: calc(min(-24px, calc(-50vw + 596px)) + 290px);
    }
}

@media (max-width: 1023px) {
    .hero {
        padding-top: calc(var(--nav-height) + 15px);
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 10;
        position: relative;
    }

    .hero-checklist {
        align-items: flex-start;
        width: fit-content;
        max-width: 100%;
        margin: 0 auto 40px auto;
    }

    .hero-image-container {
        justify-content: flex-end;
        margin-top: 150px;
    }

    .hero-mascot-img {
        right: -10px;
        max-width: 280px;
        transform: none;
    }

    .hero-mascot-bg {
        left: auto;
        transform: none;
        right: -50px;
        width: 120vw;
        max-width: 420px;
        bottom: -200px;
    }

    .speech-bubble {
        top: 20px;
        right: 180px;
        left: auto;
        transform: none;
        width: 180px;
        height: 160px;
        padding: 12px 10px 20px 10px;
        font-size: 0.55rem;
    }

    .bubble-dot-1 {
        bottom: 15px;
        left: auto;
        right: -15px;
        transform: none;
    }

    .bubble-dot-2 {
        bottom: 0px;
        left: auto;
        right: -25px;
        transform: none;
    }

    .bubble-dot-3 {
        bottom: -10px;
        left: auto;
        right: -35px;
        transform: none;
    }

    .bubble-dot-4 {
        bottom: -20px;
        left: auto;
        right: -45px;
        transform: none;
    }
}

/* --- MIDDLE ORANGE SECTION (GRID WRAPPER) --- */
.orange-wrapper {
    background-color: var(--brand-orange);
    color: var(--text-white);
    padding: 90px 0;
    position: relative;
}

.orange-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

/* --- S3 â€” FAIXA DE LOGOS --- */
/* --- S3 â€” FAIXA DE LOGOS --- */
.companies {
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 80px;
}

.companies-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 40px;
    text-align: center;
}

.companies .companies-title {
    display: inline-block;
    position: relative;
    font-size: clamp(2rem, 2vw, 3rem);
    font-weight: 800;
    margin-bottom: 24px;
    padding-bottom: 12px;
    letter-spacing: -1px;
}

.bold-dark {
    font-weight: 800;
    color: #050a1e;
    /* Azul escuro/preto de alto contraste do Figma */
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    align-items: center;
    justify-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }
}

.company-logo {
    width: auto;
    opacity: 1;
    transition: all 0.2s ease;
}

.company-logo:hover {
    transform: scale(1.08);
}

.company-logo.logo-vivars {
    height: 5.5rem;
    filter: none;
    /* MantÃ©m o fundo circular branco com detalhes pretos */
}

.company-logo.logo-superauto {
    height: 10rem;
    filter: brightness(0) invert(1);
    /* Branco puro */
}

.company-logo.logo-empreende {
    height: 4rem;
    filter: brightness(0) invert(1);
    /* Branco puro */
}

.company-logo.logo-solum {
    height: 6rem;
    filter: brightness(0) invert(1);
    /* Branco puro */
}

/* --- S4 â€” COMO FUNCIONA --- */
.how-it-works {
    margin-bottom: 0;
    padding: 90px 0;
    text-align: center;
    background-color: #ffffff;
    position: relative;
    z-index: 2;
}

.how-it-works .section-subtitle {
    color: var(--text-dark-muted);
}

.how-it-works .section-title {
    display: inline-block;
    position: relative;
    font-size: clamp(2.4rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
    padding-bottom: 12px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.15rem;
    font-weight: 500;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 56px auto;
}

.how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1000px;
    /* Limitador proporcional do Figma */
    margin: 0 auto;
    text-align: left;
}

@media (max-width: 768px) {
    .how-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.how-card {
    background-color: #FFF6F6;
    /* Fundo rosa-claro solicitado */
    border-radius: 15px;
    /* Cantos de 15px solicitados */
    padding: 40px 36px;
    color: #000733;
    /* Texto unificado azul-escuro marinho */

    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
}

@media (max-width: 480px) {
    .how-card {
        padding: 32px 20px;
    }
}

.how-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px #000733;
}

.how-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    border-bottom: 2px dashed rgba(0, 7, 51, 0.15);
    /* DivisÃ³ria com base na cor da borda */
    padding-bottom: 20px;
}

.how-icon-box {
    width: 48px;
    height: 48px;
    background-color: rgba(242, 122, 26, 0.1);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-orange);
}

.how-icon-box svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.how-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #000733;
    /* Cor coordenada */
}

.how-steps-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.how-step-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 0;
    background-color: transparent !important;
}

.how-step-num {
    width: 28px;
    height: 28px;
    background-color: #ff6b00;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}

.how-step-content {
    display: flex;
    flex-direction: column;
}

.how-step-text {
    color: #000733;
    /* Texto azul escuro marinho de alta legibilidade */
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.step-bold-title {
    color: #ff6b00;
    font-weight: 700;
}

/* --- S5 â€” VANTAGENS --- */
.advantages {
    text-align: center;
    padding-top: 90px;
}

.advantages .container {
    max-width: 1960px;
    /* Aumenta a largura Ãºtil da seÃ§Ã£o para expandir os cards lateralmente */
}

.advantages .section-title {
    display: inline-block;
    position: relative;
    font-size: clamp(2.4rem, 2vw, 3rem);
    font-weight: 800;
    margin-bottom: 24px;
    padding-bottom: 12px;
    letter-spacing: -1px;
}

.advantages-grid {
    display: flex;
    flex-direction: row;
    text-align: left;

    justify-content: center;
    /* Centraliza horizontalmente o grupo de cards na tela */
    align-items: stretch;
    gap: 40px;
    margin-top: 56px;
}

@media (max-width: 1023px) {
    .advantages-grid {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
}

.adv-card {
    background-color: #050a1e;
    /* Fundo azul-escuro profundo igual ao Hero */
    border-radius: 15px;
    /* Cantos unificados de 15px */
    color: var(--text-white);
    flex: 1;
    /* Distribui igualmente a largura disponÃ­vel */
    width: 100%;
    max-width: 740px;
    /* Aumentado de 580px para 640px para preencher perfeitamente o espaÃ§o */
    position: relative;
    /* CRÃTICO: Essencial para posicionar a foto no canto do card! */
    overflow: hidden;
    transition: all 0.2s ease;
    min-height: 440px;
    /* CartÃµes mais baixos e harmoniosos */
}

.adv-card:hover {
    transform: translate(-2px, -2px);
}

@media (max-width: 1023px) {
    .adv-card {
        max-width: 640px;
        /* Aumentado proporcionalmente para stack layouts */
    }
}

.adv-card-content {
    padding: 40px;
    max-width: 58%;
    /* Limita o texto para nÃ£o encavalar com o rosto da imagem Ã  direita */
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    position: relative;
    z-index: 2;
}

@media (max-width: 1023px) {
    .adv-card-content {
        max-width: 100%;
        /* Libera largura total no tablet/mobile onde a imagem é oculta */
        padding: 32px 24px 380px 24px;
    }
}

.adv-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--bg-navy-light);
    padding: 10px 18px;
    border-radius: 30px;
    align-self: flex-start;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.adv-card-top svg {
    width: 16px;
    height: 16px;
    fill: var(--brand-orange);
}

.adv-card-title {
    font-size: clamp(1.6rem, 3.5vw, 2rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 8px;
}

.adv-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 12px;
}

.adv-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.4;
}

.adv-item svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.adv-card-img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    /* Ocupa exatamente a metade direita do card */
    height: 100%;
    object-fit: contain;
    /* NÃ£o corta a mÃ¡scara orgÃ¢nica do Figma */
    object-position: right bottom;
    z-index: 1;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.adv-card:hover .adv-card-img {
    transform: scale(1.04);
}

@media (max-width: 1023px) {
    .adv-card {
        min-height: 750px;
    }

    .adv-card-img {
        display: block;
        width: 100%;
        height: auto;
        max-height: 360px;
        opacity: 1;
        position: absolute;
        right: 0;
        bottom: 0;
    }
}

.adv-btn {
    align-self: flex-start;
    margin-top: auto;
}

/* --- S6 â€” NOSSO PROPÃ“SITO --- */
.purpose {
    padding: 100px 0 120px 0;
    background-color: var(--bg-navy-dark);
    text-align: center;
    position: relative;
}

.purpose::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 300px;
    height: 300px;
    background-color: var(--brand-orange);
    filter: blur(150px);
    opacity: 0.05;
    border-radius: 50%;
    pointer-events: none;
}

.purpose-tag {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--brand-orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 16px;
    background-color: rgba(242, 122, 26, 0.08);
    padding: 8px 18px;
    border-radius: 30px;
}

.purpose-title {
    color: var(--text-white);
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.3;
    max-width: 800px;
    margin: 0 auto 36px auto;
}

.purpose-title span {
    color: var(--brand-orange);
}

.purpose-content {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

.purpose-p {
    font-size: 1.25rem;
    color: var(--text-white);
    line-height: 1.6;
}

/* --- S7 â€” BANNER CTA FINAL --- */
.cta-banner {
    background: var(--brand-orange);
    border-radius: 12px;
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 80px auto 0 auto;
    max-width: 1040px;
    box-shadow: var(--shadow-lg);
    position: relative;
    /* NecessÃ¡rio para posicionamento absoluto da Duo */
    overflow: visible !important;
    /* CRÃTICO: Permite que a cabeÃ§a e corpo da Duo extrapolem as bordas */
}

@media (max-width: 768px) {
    .cta-banner {
        flex-direction: column;
        gap: 24px;
        text-align: center;
        padding: 32px 24px;
        margin-left: 20px;
        margin-right: 20px;
    }
}

.cta-left-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .cta-left-content {
        flex-direction: column;
        gap: 16px;
    }
}

.cta-rocket-circle {
    width: 52px;
    height: 52px;
    background-color: #050a1e;
    /* CÃ­rculo escuro navy do Figma */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-rocket-circle img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.cta-banner-text {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    text-align: left;
}

@media (max-width: 768px) {
    .cta-banner-text {
        text-align: center;
    }
}

.cta-banner-btn {
    background-color: #ffffff;
    color: var(--brand-orange);
    padding: 14px 28px;
    border-radius: var(--border-radius-sm);
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.2s ease;
    margin-right: 150px;
    /* Abre espaÃ§o para a Duo piscando no canto direito */
}

.cta-banner-btn:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
}

.cta-mascot {
    position: absolute;
    right: 15px;
    /* Alinhamento perfeito no canto direito */
    bottom: 0px;
    /* Alinha a base rente ao banner */
    height: 152%;
    /* Duo ampliada para extrapolar o topo com a mesma proporÃ§Ã£o do figma */
    width: auto;
    z-index: 10;
    pointer-events: none;
}

@media (max-width: 768px) {
    .cta-mascot {
        display: none;
        /* Oculta a Duo no mobile para nÃ£o sobrepor elementos */
    }

    .cta-banner-btn {
        margin-right: 0;
        /* Reseta o espaÃ§amento no mobile */
    }
}

/* --- S8 â€” FOOTER --- */
.footer {
    background-color: var(--bg-navy-dark);
    color: var(--text-white);
    padding: 80px 0 48px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 64px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo img,
.footer-logo svg {
    height: 32px;
    width: auto;
    display: block;
}

.footer-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-navy-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social-btn img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
}

.footer-social-btn:hover {
    background-color: var(--brand-orange);
    color: var(--text-white);
    border-color: var(--brand-orange);
    transform: translateY(-2px);
}

.footer-social-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-col-title {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-white);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-link a {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.footer-link a:hover {
    color: var(--text-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 480px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

@media (max-width: 480px) {
    .footer-bottom-links {
        justify-content: center;
    }
}

.footer-bottom-link {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom-link:hover {
    color: var(--text-white);
}

/* --- CARDS ALIGNMENT RESTORED --- */

/* CSS Login  */
/* --- LOGIN PAGE STYLING --- */
.login-page-body {
    background-color: var(--bg-navy-dark) !important;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.login-header {
    position: static !important;
    /* Non-fixed header on login page to avoid overlapping the centered form */
    background-color: var(--bg-navy-dark) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: none;
    display: flex;
    align-items: center;
    height: 80px;
    width: 100%;
}

.login-header .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.login-header .logo-wrapper img {
    height: 36px;
    width: auto;
    display: block;
}

.btn-nav {
    background-color: var(--brand-orange);
    color: var(--text-white) !important;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
}

.btn-nav:hover {
    background-color: var(--brand-orange-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 107, 0, 0.4);
}

.login-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem !important;
    /* Corrigido de 20rem para 2rem para ficar perfeito e responsivo */
    background-image: radial-gradient(circle at 50% 50%, rgba(242, 122, 26, 0.05) 0%, transparent 60%) !important;
    max-width: none !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    margin: 0 !important;
}

.login-container {
    width: 100%;
    max-width: 580px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    flex: none !important;
}

/* Toggle Group */
.login-toggle-group {
    display: flex;
    background-color: rgba(10, 17, 40, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 4px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 330px;
}

.login-toggle-btn {
    flex: 1;
    padding: 12px 0;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.6) !important;
    text-align: center;
    background: transparent;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
}

.login-toggle-btn.active {
    background-color: #000F73 !important;
    /* Azul do Figma */
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0, 15, 115, 0.5);
}

.login-toggle-btn:not(.active):hover {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.05);
}

/* Login Form */
.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.login-field-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
}

.login-input {
    width: 100% !important;
    height: 56px !important;
    background-color: rgba(53, 48, 43, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 0 24px !important;
    color: #ffffff !important;
    font-family: var(--font-primary) !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    outline: none !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-radius: 0 !important;
}

.login-input::placeholder {
    color: rgba(255, 255, 255, 0.47) !important;
}

.login-input.input-top {
    border-top-left-radius: 15px !important;
    border-top-right-radius: 15px !important;
    border-bottom: none !important;
}

.login-input.input-bottom {
    border-bottom-left-radius: 15px !important;
    border-bottom-right-radius: 15px !important;
    padding-right: 60px !important;
    /* EspaÃ§o para o olho da senha */
}

.login-input:focus {
    border-color: var(--brand-orange) !important;
    background-color: rgba(53, 48, 43, 0.6) !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15) !important;
}

/* Eye Toggle Password Button Position */
#toggle-password,
#toggle-confirm-password,
.reg-eye-btn {
    position: absolute;
    right: 20px;
    bottom: 14px;
    /* Centered relative to bottom input */
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.4);
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: color 0.2s ease;
}

#toggle-password:hover,
#toggle-confirm-password:hover,
.reg-eye-btn:hover {
    color: var(--brand-orange) !important;
}

#toggle-password svg,
#toggle-confirm-password svg,
.reg-eye-btn svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
}

/* Actions Grid (Two Columns) */
.login-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
    width: 100%;
}

@media (max-width: 480px) {
    .login-actions-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
}

.login-left-action-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.login-submit-btn {
    background-color: var(--brand-orange) !important;
    color: #ffffff !important;
    font-family: var(--font-primary) !important;
    font-size: 1.25rem !important;
    font-weight: 900 !important;
    padding: 12px 52px !important;
    border-radius: 30px !important;
    border: none !important;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.3) !important;
    transition: all 0.2s ease !important;
    width: auto !important;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25) !important;
}

.login-submit-btn:hover {
    background-color: var(--brand-orange-light) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.5) !important;
}

.login-register-link {
    color: #78EB19 !important;
    /* Verde/Ciano do design original */
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    text-decoration: underline !important;
    text-align: center;
    line-height: 1.45 !important;
    transition: all 0.2s ease !important;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25) !important;
}

.login-register-link:hover {
    color: #9aff3b !important;
    transform: translateY(-1px) !important;
}

.login-right-action-stack {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-forgot-link {
    color: var(--brand-orange) !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    text-align: center;
    line-height: 1.4 !important;
    transition: all 0.2s ease !important;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25) !important;
}

.login-forgot-link:hover {
    color: var(--brand-orange-light) !important;
    transform: translateY(-1px) !important;
}

/* Hide global CTA bar on modern auth pages */
.global-cta-bar {
    display: none !important;
}


.terms-checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.terms-checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.terms-custom-checkbox {
    width: 22px;
    height: 22px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid #ffffff;
    border-radius: 7px;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.terms-checkbox-label input:checked~.terms-custom-checkbox {
    background-color: var(--brand-orange);
    border-color: var(--brand-orange);
}

.terms-custom-checkbox::after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
}

.terms-checkbox-label input:checked~.terms-custom-checkbox::after {
    display: block;
}

.terms-text {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    text-transform: uppercase;
}


/* ==========================================================================
   FAQ PAGE STYLES (faq.html)
   ========================================================================== */
.faq-body {
    background-color: #000733;
    color: #ffffff;
    font-family: var(--font-primary);
}

.faq-header {
    background-color: #000733 !important;
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: 100;
}

.faq-hero-section {
    background-color: #000733;
    padding: 80px 0 100px 0;
    text-align: center;
}

.faq-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.faq-title .highlight-orange {
    color: #eb7819;
}

.faq-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    opacity: 0.9;
}

.faq-content-section {
    background-color: #ffffff;
    padding: 80px 0;
    color: #1a1a1a;
    border-radius: 40px 40px 0 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
}

.faq-category-block {
    margin-bottom: 64px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-category-block:last-child {
    margin-bottom: 0;
}

.faq-category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.faq-category-indicator {
    width: 10px;
    height: 50px;
    background-color: #eb7819;
    border-radius: 4px;
}

.faq-category-title {
    font-size: 32px;
    font-weight: 800;
    color: #000733;
    margin: 0;
    letter-spacing: -0.5px;
}

.faq-accordion-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-accordion-card {
    background-color: #ffffff;
    border: 2px solid #000000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 4px 4px 0px #000000;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-accordion-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #000000;
}

.faq-accordion-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 24px 32px;
    text-align: left;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.faq-accordion-trigger:hover {
    color: #eb7819;
}

.faq-chevron {
    color: #eb7819;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    flex-shrink: 0;
}

.faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.3s ease;
    padding: 0 32px;
}

.faq-accordion-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
}

/* Active accordion states */
.faq-accordion-card.active {
    border-color: #eb7819;
    box-shadow: 4px 4px 0px #eb7819;
}

.faq-accordion-card.active .faq-accordion-trigger {
    color: #eb7819;
}

.faq-accordion-card.active .faq-accordion-content {
    max-height: 500px;
    padding-bottom: 28px;
}

.faq-accordion-card.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-footer-banner-section {
    background-color: #000733;
    padding: 100px 0;
    text-align: center;
    color: #ffffff;
    border-top: 1.5px solid rgba(255, 255, 255, 0.1);
}

.faq-footer-banner-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.faq-footer-banner-title .highlight-orange {
    color: #eb7819;
}

.faq-footer-banner-desc {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.faq-contact-btn {
    background-color: #eb7819;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    padding: 18px 48px;
    border: 2.5px solid #000000;
    border-radius: 12px;
    box-shadow: 4px 4px 0px #000000;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.faq-contact-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #000000;
    background-color: #ff8933;
}

.faq-contact-btn:active {
    transform: translate(1px, 1px);
    box-shadow: 2px 2px 0px #000000;
}

/* Mobile Responsiveness for FAQ */
@media (max-width: 768px) {
    .faq-title {
        font-size: 36px;
    }

    .faq-subtitle {
        font-size: 16px;
    }

    .faq-category-title {
        font-size: 26px;
    }

    .faq-accordion-trigger {
        padding: 20px 24px;
        font-size: 17px;
    }

    .faq-accordion-content {
        padding: 0 24px;
    }

    .faq-accordion-card.active .faq-accordion-content {
        padding-bottom: 20px;
    }

    .faq-footer-banner-title {
        font-size: 30px;
    }

    .faq-footer-banner-desc {
        font-size: 15px;
        padding: 0 20px;
    }

    .faq-contact-btn {
        padding: 14px 36px;
        font-size: 16px;
    }
}

/* ==========================================================================
   BENEFITS PAGES STYLES (beneficios-freela.html & beneficios-empresa.html)
   ========================================================================== */
.benefits-body {
    background-color: #000733;
    color: #ffffff;
    font-family: var(--font-primary);
}

.benefits-header {
    background-color: #000733 !important;
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: 100;
}

.benefits-hero-section {
    background-color: #000733;
    padding: 80px 0 100px 0;
    text-align: center;
}

.benefits-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #ffffff;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.benefits-title .highlight-orange {
    color: #eb7819;
}

.benefits-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    max-width: 655px;
    margin: 24px auto 40px;
    line-height: 1.6;
}

.benefits-hero-btn {
    background-color: #eb7819;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    padding: 16px 40px;
    border: 2px solid #eb7819;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(235, 120, 25, 0.35);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.benefits-hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(235, 120, 25, 0.45);
    background-color: #ff8524;
}

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

.benefits-content-section {
    background-color: #ffffff;
    padding: 100px 0;
    color: #1a1a1a;
    border-radius: 40px 40px 0 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-card {
    background-color: #ffffff;
    border: 2px solid #000000;
    border-radius: 20px;
    padding: 48px 32px;
    text-align: center;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 340px;
}

.benefits-card:hover {
    transform: translateY(-4px);
    border-color: #eb7819;
}

.benefits-card:hover .benefits-card-icon-wrapper {
    border-color: #eb7819;
    background-color: #fff4ec;
}

.benefits-card-icon-wrapper {
    width: 90px;
    height: 90px;
    background-color: #fcf1e8;
    border: 2px solid #000000;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    transition: all 0.2s ease;
}

.benefits-card-icon-wrapper svg {
    color: #eb7819;
}

.benefits-card-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #000733;
    letter-spacing: -0.5px;
}

.benefits-card-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
}

.benefits-card-icon-wrapper img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 24px;
    }

    .benefits-title {
        font-size: 36px;
    }

    .benefits-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }

    .benefits-card {
        padding: 36px 24px;
        min-height: auto;
    }
}

/* --- GLOBAL FLOATING CHATBOT WIDGET --- */
.global-duo-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
}

.global-duo-trigger {
    width: 80px;
    height: 80px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.25));
}

.global-duo-trigger:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.35));
}

.global-duo-trigger img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.global-duo-speech {
    position: absolute;
    bottom: 96px;
    right: 12px;
    background-color: #ffffff;
    color: #000000;
    border: 1.5px solid #000000;
    border-radius: 16px 16px 4px 16px;
    padding: 14px 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
    font-size: 0.88rem;
    font-weight: 700;
    width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.85) translateY(10px);
    transform-origin: bottom right;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    line-height: 1.4;
}

.global-duo-speech.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

.global-chat-window {
    position: fixed;
    bottom: 140px;
    right: 40px;
    width: 380px;
    height: 440px;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.85) translateY(20px);
    transform-origin: bottom right;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10000;
}

.global-chat-window.open {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

.global-chat-header {
    background-color: #ffffff;
    color: #1A1A1A;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.global-chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.global-chat-header-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--brand-orange);
    background-color: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.global-chat-header-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.global-chat-header-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.global-chat-header-text h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #111827;
    margin: 0;
    line-height: 1.2;
}

.global-chat-header-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: #6B7280;
    margin: 0;
    line-height: 1.2;
}

.global-chat-close-btn {
    background: none;
    border: none;
    color: #9CA3AF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.global-chat-close-btn:hover {
    color: #4B5563;
    transform: scale(1.1);
}

.global-chat-thread {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background-color: #F0F4F8;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.global-chat-msg {
    max-width: 85%;
    padding: 14px 18px;
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.5;
    border-radius: 16px;
    word-wrap: break-word;
    font-family: 'Poppins', sans-serif;
}

.global-chat-msg.received {
    background-color: #ffffff;
    color: #1F2937;
    border: none;
    border-radius: 16px;
    align-self: flex-start;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.global-chat-msg.received strong {
    font-weight: 700;
}

.global-chat-msg.sent {
    background-color: var(--brand-orange);
    color: #ffffff;
    border: none;
    border-radius: 16px;
    align-self: flex-end;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.15);
}

.global-chat-input-bar {
    display: flex;
    padding: 16px 20px;
    background-color: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    gap: 12px;
    align-items: center;
}

.global-chat-input-bar input {
    flex: 1;
    height: 48px;
    border: 1.5px solid #E2E8F0;
    border-radius: 12px;
    padding: 0 16px;
    font-size: 0.9rem;
    font-weight: 500;
    outline: none;
    font-family: 'Poppins', sans-serif;
    color: #1F2937;
    transition: border-color 0.2s ease;
}

.global-chat-input-bar input::placeholder {
    color: #9CA3AF;
    font-weight: 400;
}

.global-chat-input-bar input:focus {
    border-color: var(--brand-orange);
}

.global-chat-send-btn {
    width: 48px;
    height: 48px;
    background-color: var(--brand-orange);
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.2);
}

.global-chat-send-btn:hover {
    background-color: var(--brand-orange-light, #FF8533);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 107, 0, 0.35);
}

.global-chat-send-btn svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* --- CHAT-OPEN TRIGGERS TRANSITIONS --- */
.global-duo-trigger.chat-open,
.explore-mascot-head.chat-open,
.history-duo-floating-bubble.chat-open {
    background-color: var(--brand-orange) !important;
    border-color: var(--brand-orange) !important;
    border-radius: 50% !important;
    border: 3.5px solid var(--brand-orange) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 80px !important;
    height: 80px !important;
    overflow: visible !important;
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.4) !important;
}

.global-duo-trigger.chat-open img,
.explore-mascot-head.chat-open img,
.history-duo-floating-bubble.chat-open img {
    opacity: 0 !important;
    transform: scale(0.5) !important;
    pointer-events: none !important;
    display: none !important;
}

.global-duo-trigger.chat-open::after,
.explore-mascot-head.chat-open::after,
.history-duo-floating-bubble.chat-open::after {
    content: '\2715';
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 40px;
    font-weight: 300;
    line-height: 1;
    display: block !important;
}

/* ==========================================================================
   --- PROFILE STYLES (perfil.html & perfil-empresa.html) ---
   ========================================================================== */
.profile-nav-btn {
    background-color: var(--brand-orange);
    color: white;
    border: 1.5px solid #000000;
    box-shadow: 0 3px 0 #000000;
    border-radius: 8px;
    padding: 8px 20px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.profile-nav-btn:hover {
    background-color: var(--brand-orange-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 0 #000000;
}

.profile-layout-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 32px;
    margin-top: 40px;
    margin-bottom: 80px;
    align-items: start;
}

@media (max-width: 1024px) {
    .profile-layout-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.profile-card-brutalist {
    background-color: #f5f5f5;
    border: 2px solid #000000;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 6px 0 #000000;
    color: #333333;
    margin-bottom: 28px;
}

.profile-card-title {
    font-size: 1.25rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    border-bottom: 1.5px solid #dddddd;
    padding-bottom: 8px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 640px) {
    .form-row {
        flex-direction: column;
        gap: 16px;
    }
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group.w-60 {
    flex: 1.5;
}

.form-group.w-40 {
    flex: 1;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 800;
    color: #555555;
    margin-bottom: 6px;
    font-family: 'Poppins', sans-serif;
}

.form-group input,
.form-group select {
    height: 42px;
    border: 2px solid #000000;
    border-radius: 8px;
    padding: 0 14px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #000000;
    outline: none;
    background-color: #ffffff;
    box-shadow: 0 2px 0 #000000;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--brand-orange);
}

.form-group textarea {
    height: 120px;
    border: 2px solid #000000;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #000000;
    outline: none;
    background-color: #ffffff;
    box-shadow: 0 2px 0 #000000;
    font-family: 'Poppins', sans-serif;
    resize: none;
}

.form-group textarea:focus {
    border-color: var(--brand-orange);
}

.custom-file-box {
    display: flex;
    align-items: center;
    border: 2px dashed var(--brand-orange);
    border-radius: 10px;
    padding: 10px 14px;
    background: #ffffff;
    box-shadow: 0 2px 0 #000000;
    margin-top: 4px;
}

.custom-file-btn {
    background-color: var(--brand-orange);
    color: white;
    border: 1.5px solid #000000;
    box-shadow: 0 2px 0 #000000;
    padding: 6px 14px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.78rem;
    cursor: pointer;
    margin-right: 12px;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}

.custom-file-text {
    font-size: 0.78rem;
    color: #666666;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.availability-title {
    font-size: 0.82rem;
    font-weight: 800;
    color: #555555;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 12px;
}

.availability-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.availability-table th {
    font-size: 0.75rem;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    padding: 8px 4px;
    text-transform: capitalize;
}

.availability-table td {
    padding: 8px 4px;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 800;
    color: #444444;
}

.availability-table td.row-header {
    text-align: left;
    font-size: 0.78rem;
    font-weight: 800;
    color: #333333;
    padding-right: 12px;
}

.avail-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #000000;
    background-color: #ffffff;
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: all 0.2s ease;
    box-shadow: 0 1.5px 0 #000000;
}

.avail-checkbox:checked {
    background-color: var(--brand-orange);
    border-color: #000000;
}

.avail-checkbox:checked::after {
    content: '\2713';
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
}

.save-profile-btn {
    background-color: var(--brand-orange);
    color: white;
    border: 2px solid #000000;
    box-shadow: 0 4px 0 #000000;
    border-radius: 12px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
}

.save-profile-btn:hover {
    background-color: var(--brand-orange-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #000000;
}

.save-profile-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 0 #000000;
}

.back-search-btn {
    background-color: var(--brand-orange);
    color: white;
    border: 2px solid #000000;
    box-shadow: 0 4px 0 #000000;
    border-radius: 12px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    width: 100%;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.back-search-btn:hover {
    background-color: var(--brand-orange-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #000000;
}

.back-search-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 0 #000000;
}

/* ==========================================================================
   --- EXPLORER STYLES (explorar.html) ---
   ========================================================================== */
.explore-header-block {
    text-align: left;
    margin-top: 40px;
    margin-bottom: 32px;
}

.explore-title {
    font-size: 2.6rem;
    font-weight: 900;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.explore-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.explore-search-row {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    align-items: center;
}

.explore-search-box {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
}

.explore-search-box input {
    width: 100%;
    height: 52px;
    border: 1.5px solid #000000;
    border-radius: 30px;
    padding: 0 60px 0 24px;
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    outline: none;
    background-color: #ffffff;
    box-shadow: 0 4px 0 #000000;
}

.explore-search-box input::placeholder {
    color: #888888;
    font-weight: 500;
}

.explore-search-btn {
    position: absolute;
    right: 8px;
    width: 38px;
    height: 38px;
    background-color: var(--brand-orange);
    border: 1.5px solid #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 0 #000000;
    transition: all 0.2s ease;
}

.explore-search-btn:hover {
    background-color: var(--brand-orange-light);
    transform: translateY(-1px);
    box-shadow: 0 3px 0 #000000;
}

.explore-search-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #000000;
    stroke-width: 3;
}

.explore-layout {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 36px;
    margin-bottom: 80px;
    align-items: start;
}

@media (max-width: 768px) {
    .explore-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

.explore-filters-card {
    background-color: #ffffff;
    border: 1.5px solid #000000;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 6px 0 #000000;
    color: #000000;
}

.explore-filters-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.01em;
}

.explore-filter-field {
    margin-bottom: 20px;
}

.explore-filter-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    color: #666666;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-family: 'Poppins', sans-serif;
}

.explore-filter-input {
    width: 100%;
    height: 40px;
    border: 1.5px solid #000000;
    border-radius: 8px;
    padding: 0 12px;
    font-size: 0.92rem;
    font-weight: 800;
    color: #000000;
    outline: none;
    background-color: #ffffff;
}

.explore-filter-input:focus {
    border-color: var(--brand-orange);
}

.explore-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.explore-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    font-weight: 800;
    color: #333333;
    cursor: pointer;
}

.explore-checkbox-label input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.explore-custom-checkbox {
    width: 18px;
    height: 18px;
    background-color: #ffffff;
    border: 1.5px solid #000000;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.explore-checkbox-label input:checked~.explore-custom-checkbox {
    background-color: var(--brand-orange);
}

.explore-custom-checkbox::after {
    content: "";
    display: none;
    width: 4px;
    height: 8px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-0.5px, -1px);
}

.explore-checkbox-label input:checked~.explore-custom-checkbox::after {
    display: block;
}

.explore-filter-apply-btn {
    width: 100%;
    height: 44px;
    background-color: var(--brand-orange);
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 900;
    border: 1.5px solid #000000;
    border-radius: 12px;
    box-shadow: 0 3px 0 #000000;
    cursor: pointer;
    margin-bottom: 12px;
    transition: all 0.15s ease;
    font-family: 'Poppins', sans-serif;
}

.explore-filter-apply-btn:hover {
    background-color: var(--brand-orange-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 0 #000000;
}

.explore-filter-apply-btn:active {
    transform: translateY(1px);
    box-shadow: 0 1px 0 #000000;
}

.explore-filter-clear-btn {
    width: 100%;
    height: 44px;
    background-color: #ffffff;
    color: #666666;
    font-size: 0.98rem;
    font-weight: 800;
    border: 1.5px solid #000000;
    border-radius: 12px;
    box-shadow: 0 3px 0 #000000;
    cursor: pointer;
    transition: all 0.15s ease;
    font-family: 'Poppins', sans-serif;
}

.explore-filter-clear-btn:hover {
    background-color: #f5f5f5;
    transform: translateY(-1px);
    box-shadow: 0 4px 0 #000000;
}

.explore-filter-clear-btn:active {
    transform: translateY(1px);
    box-shadow: 0 1px 0 #000000;
}

.explore-jobs-feed {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.explore-job-card {
    background-color: #ffffff;
    border: 1.5px solid #000000;
    border-radius: 16px;
    padding: 32px 36px;
    box-shadow: 0 6px 0 #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000000;
    gap: 28px;
    transition: all 0.2s ease;
}

.explore-job-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 0 #000000;
}

@media (max-width: 992px) {
    .explore-job-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        gap: 20px;
    }

    .explore-job-card-btn-col {
        width: 100%;
    }
}

.explore-job-main-col {
    flex: 1;
}

.explore-job-title {
    font-size: 1.7rem;
    font-weight: 900;
    color: #000000;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.explore-job-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    font-size: 0.92rem;
    font-weight: 800;
    color: #555555;
}

.explore-job-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.explore-job-meta-item strong {
    color: #000000;
    font-weight: 900;
}

.explore-job-apply-btn {
    background-color: #0a2296;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 800;
    padding: 12px 28px;
    border-radius: 8px;
    border: 1.5px solid #000000;
    cursor: pointer;
    box-shadow: 0 3px 0 #000000;
    transition: all 0.15s ease;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}

.explore-job-apply-btn:hover {
    background-color: #001a9c;
    transform: translateY(-1px);
    box-shadow: 0 4px 0 #000000;
}

.explore-job-apply-btn:active {
    transform: translateY(1px);
    box-shadow: 0 1px 0 #000000;
}

.explore-job-apply-btn.applied {
    background-color: #2ECC71 !important;
    border-color: #000000;
    color: #ffffff;
    cursor: default;
    box-shadow: none;
    transform: none;
}

.explore-mascot-head {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 92px;
    height: 92px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3));
    z-index: 1000;
}

.explore-mascot-head:hover {
    transform: scale(1.08) rotate(5deg);
    filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.4));
}

.explore-mascot-head img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* ==========================================================================
   --- SIMULATOR STYLES (simulador-custos.html & simulador-ganhos.html) ---
   ========================================================================== */
.sim-page-title {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 900;
    margin-top: 40px;
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.sim-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin-bottom: 80px;
    align-items: start;
}

@media (max-width: 992px) {
    .sim-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

.sim-card {
    background-color: #ffffff;
    border: 1.5px solid #000000;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 8px 0 rgba(0, 0, 0, 1);
    color: #000000;
}

.sim-card.dark-theme {
    background-color: #161d2d;
    border: 1.5px solid #000000;
    box-shadow: 0 8px 0 rgba(0, 0, 0, 1);
    color: #ffffff;
}

.sim-card-title {
    font-size: 1.3rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.01em;
}

.sim-card.dark-theme .sim-card-title {
    color: #ffffff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
    margin-bottom: 32px;
}

.sim-field {
    margin-bottom: 20px;
}

.sim-field label {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.sim-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.sim-input-wrapper span {
    position: absolute;
    left: 16px;
    font-size: 1rem;
    font-weight: 800;
    color: #000000;
    pointer-events: none;
}

.sim-input-wrapper input {
    width: 100%;
    height: 48px;
    border: 1.5px solid #000000;
    border-radius: 8px;
    padding: 0 16px;
    font-size: 1rem;
    font-weight: 800;
    color: #000000;
    outline: none;
    background-color: #ffffff;
    transition: border-color 0.2s ease;
}

.sim-input-wrapper span~input {
    padding-left: 44px;
}

.sim-input-wrapper input:focus {
    border-color: var(--brand-orange);
}

.sim-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.sim-btn-orange {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    min-height: 58px;
    background-color: var(--brand-orange);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 900;
    border: 1.5px solid #000000;
    border-radius: 12px;
    box-shadow: 0 4px 0 #000000;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 16px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    padding: 10px;
}

.sim-btn-orange:hover {
    background-color: var(--brand-orange-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #000000;
}

.sim-btn-orange:active {
    transform: translateY(1px);
    box-shadow: 0 2px 0 #000000;
}

.sim-btn-white {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    background-color: #ffffff;
    color: #333333;
    font-size: 0.95rem;
    font-weight: 800;
    border: 1.5px solid #000000;
    border-radius: 12px;
    box-shadow: 0 4px 0 #000000;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.sim-btn-white:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #000000;
}

.sim-btn-white:active {
    transform: translateY(1px);
    box-shadow: 0 2px 0 #000000;
}

.hours-presets-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1.6fr;
    gap: 12px;
    margin-top: 12px;
}

.hours-preset-btn {
    height: 44px;
    background-color: #ffffff;
    border: 1.5px solid #000000;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 800;
    color: #000000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.hours-preset-btn:hover {
    background-color: #f5f5f5;
    transform: translateY(-1px);
}

.hours-preset-btn.active {
    background-color: #ffe6d5;
    border-color: var(--brand-orange);
    color: var(--brand-orange);
}

.custo-result-box {
    border: 1.5px solid #000000;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    background-color: #ffffff;
    margin-bottom: 24px;
}

.custo-result-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: #666666;
    margin-bottom: 6px;
    font-family: 'Poppins', sans-serif;
}

.custo-result-value {
    font-size: 2.4rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
    font-family: 'Poppins', sans-serif;
}

.custo-result-subtitle {
    font-size: 0.8rem;
    color: #888888;
    font-weight: 700;
}

.custo-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.08);
    font-size: 0.98rem;
    font-weight: 800;
}

.custo-row:last-of-type {
    border-bottom: none;
    margin-bottom: 28px;
}

.custo-row-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333333;
}

.custo-row-label span {
    color: var(--brand-orange);
    font-weight: 900;
}

.custo-row-value {
    color: #000000;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
}

.custo-presets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.custo-preset-card {
    background-color: #ffffff;
    border: 1.5px solid #000000;
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.custo-preset-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 0 #000000;
}

.custo-preset-card.active {
    background-color: #ffe6d5;
    border-color: var(--brand-orange);
    box-shadow: 0 3px 0 #000000;
}

.custo-preset-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 4px;
    font-family: 'Poppins', sans-serif;
}

.custo-preset-subtitle {
    font-size: 0.82rem;
    font-weight: 700;
    color: #555555;
}

.ganhos-result-header {
    margin-bottom: 40px;
}

.ganhos-result-value {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--brand-orange);
    margin-bottom: 4px;
    letter-spacing: -0.02em;
    font-family: 'Poppins', sans-serif;
}

.ganhos-result-subtitle {
    font-size: 0.95rem;
    color: #a2aabf;
    font-weight: 600;
}

.ganhos-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.08);
    font-size: 1rem;
    font-weight: 800;
}

.ganhos-row:last-of-type {
    border-bottom: none;
    margin-bottom: 40px;
}

.ganhos-row-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d2d8e6;
}

.ganhos-row-label span {
    color: var(--brand-orange);
    font-weight: 900;
}

.ganhos-row-value {
    color: #ffffff;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
}

.ganhos-row.text-green .ganhos-row-label {
    color: #2ECC71;
}

.ganhos-row.text-green .ganhos-row-value {
    color: #2ECC71;
}

.ganhos-info-card {
    background-color: #5c3417;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #ffd4b8;
}

.ganhos-info-title {
    font-size: 1.05rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.ganhos-info-desc {
    font-size: 0.88rem;
    line-height: 1.5;
    font-weight: 500;
    color: #ffe0cc;
}


/* ==========================================================================
   ANUNCIAR VAGA & PUBLICAR VAGA STYLES (Employer Job Posting Flow)
   ========================================================================== */
.announce-container {
    position: relative;
    margin-top: 40px;
    margin-bottom: 80px;
    z-index: 5;
}

.announce-glow-1 {
    position: absolute;
    top: 5%;
    left: -15%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.announce-glow-2 {
    position: absolute;
    bottom: 10%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(9, 0, 143, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.announce-page-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-top: 20px;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.announce-form-wrapper {
    max-width: 880px;
    margin: 0 auto;
}

.announce-card {
    background-color: #f2f2f2;
    border: 1.5px solid #000000;
    border-radius: 16px;
    padding: 36px 40px;
    box-shadow: 0 6px 0px #000000;
    color: #000000;
    margin-bottom: 36px;
    position: relative;
}

.announce-card-title {
    font-size: 2.25rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 28px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
    text-align: center;
}

.announce-form-row {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .announce-form-row {
        flex-direction: column;
        gap: 16px;
    }
}

.announce-form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.announce-form-group label {
    font-size: 1rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-family: 'Poppins', sans-serif;
}

.announce-form-group input,
.announce-form-group textarea,
.announce-form-group select {
    height: 44px;
    border: 1.5px solid #000000;
    border-radius: 10px;
    padding: 0 16px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #000000;
    outline: none;
    background-color: rgba(255, 251, 251, 0);
    font-family: 'Poppins', sans-serif;
    transition: all 0.2s ease;
}

.announce-form-group textarea {
    height: 120px;
    padding: 12px 16px;
    resize: vertical;
}

.announce-form-group input::placeholder,
.announce-form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.45);
    font-weight: 700;
}

.announce-form-group input:focus,
.announce-form-group textarea:focus,
.announce-form-group select:focus {
    border-color: #FF6B00;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.1);
}

.input-subtext {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.45);
    margin-top: 6px;
    padding-left: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

@media (max-width: 640px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.benefit-item-card {
    border: 1.5px solid #000000;
    border-radius: 10px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(255, 251, 251, 0);
    position: relative;
}

.benefit-item-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.benefit-icon-wrapper {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f7f9fa;
    border-radius: 8px;
}

.benefit-item-info {
    display: flex;
    flex-direction: column;
}

.benefit-tag {
    font-size: 1.25rem;
    font-weight: 900;
    color: #000000;
    text-transform: none;
    letter-spacing: normal;
    line-height: 1.2;
}

.benefit-name {
    font-size: 1.25rem;
    font-weight: 900;
    color: #000000;
    line-height: 1.3;
}

.benefit-toggle-switch {
    position: relative;
    display: inline-block;
    width: 58px;
    height: 28px;
}

.benefit-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.benefit-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f2f2f2;
    border: 1.5px solid #eb7819;
    border-radius: 14px;
    transition: .3s;
}

.benefit-slider::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 2.5px;
    background-color: #ffffff;
    border: 1.5px solid #eb7819;
    border-radius: 50%;
    transition: .3s;
}

.benefit-toggle-switch input:checked+.benefit-slider {
    background-color: #eb7819;
}

.benefit-toggle-switch input:checked+.benefit-slider::before {
    transform: translateX(28px);
    background-color: #ffffff;
}

.announce-submit-btn {
    width: 100%;
    height: 52px;
    background-color: #eb7819 !important;
    color: #ffffff !important;
    border: 1.5px solid #000000 !important;
    border-radius: 10px !important;
    font-size: 2rem !important;
    font-weight: 900 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    font-family: 'Poppins', sans-serif !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 0px #000000 !important;
    margin-bottom: 20px;
}

.announce-submit-btn:hover {
    background-color: #ff8533 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 0px #000000 !important;
}

.announce-submit-btn:active {
    transform: translateY(1px) !important;
    box-shadow: 0 2px 0px #000000 !important;
}

.announce-cancel-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 52px !important;
    background-color: #eb7819 !important;
    color: #ffffff !important;
    border: 1.5px solid #000000 !important;
    border-radius: 10px !important;
    font-size: 2rem !important;
    font-weight: 900 !important;
    cursor: pointer !important;
    font-family: 'Poppins', sans-serif !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
    box-shadow: 0 4px 0px #000000 !important;
    margin-top: 16px !important;
}

.announce-cancel-btn:hover {
    background-color: #ff8533 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 0px #000000 !important;
}

.announce-cancel-btn:active {
    transform: translateY(1px) !important;
    box-shadow: 0 2px 0px #000000 !important;
}

/* ==========================================================================
   VAGAS PUBLICADAS - EMPRESÃRIO HISTORICO
   ========================================================================== */
.history-container {
    max-width: 1100px;
    margin: 40px auto 80px;
    padding: 0 40px;
}

.history-header {
    margin-bottom: 40px;
}

.history-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.history-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.66);
    font-weight: 500;
}

.search-filter-row {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    align-items: center;
}

@media (max-width: 768px) {
    .search-filter-row {
        flex-direction: column;
        align-items: stretch;
    }
}

.search-pill-container {
    flex: 1;
    background-color: #ffffff;
    border: 1.5px solid #000000;
    border-radius: 40px;
    height: 64px;
    display: flex;
    align-items: center;
    padding: 0 8px 0 24px;
    box-shadow: 0 4px 0px #000000;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.15rem;
    font-weight: 500;
    color: #000000;
    background: transparent;
    height: 100%;
}

.search-input::placeholder {
    color: rgba(0, 0, 0, 0.35);
}

.search-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-publish-vaga {
    background-color: #041688;
    color: #ffffff;
    border: none;
    height: 48px;
    padding: 0 24px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-publish-vaga:hover {
    background-color: #0c25c2;
    transform: translateY(-1.5px);
}

.btn-search-orange {
    background-color: #eb7819;
    border: 1.5px solid #000000;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.btn-search-orange:hover {
    background-color: #ff8b2b;
    transform: scale(1.05);
}

.btn-filter-square {
    background-color: #ffffff;
    border: 1.5px solid #000000;
    width: 60px;
    height: 53px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 0px #000000;
    transition: all 0.2s ease;
    flex-shrink: 0;
    padding: 0;
}

.btn-filter-square:hover {
    background-color: #f5f5f5;
    transform: translateY(-1px);
}

.company-job-card {
    background-color: #ffffff;
    border: 1.5px solid #000000;
    border-radius: 16px;
    padding: 28px 36px;
    box-shadow: 0 6px 0px #000000;
    color: #000000;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: transform 0.2s ease;
}

.company-job-card:hover {
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .company-job-card {
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
    }

    .job-divider-line {
        display: none;
    }

    .job-candidates-col {
        width: 100% !important;
        margin: 12px 0;
        padding: 12px 0;
        border-top: 1.5px solid rgba(0, 0, 0, 0.1);
        border-bottom: 1.5px solid rgba(0, 0, 0, 0.1);
    }

    .job-buttons-col {
        width: 100% !important;
    }
}

.job-left-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.badge-aprovado {
    background-color: #041688;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 10px;
    align-self: flex-start;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.job-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.job-meta-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 24px;
}

.job-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.65);
}

.job-meta-item strong {
    color: #000000;
    font-weight: 900;
}

.job-meta-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.job-divider-line {
    width: 1.5px;
    height: 95px;
    background-color: #000000;
    opacity: 0.15;
    flex-shrink: 0;
}

.job-candidates-col {
    width: 110px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.candidates-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: #000733;
    line-height: 1;
}

.candidates-label {
    font-size: 0.78rem;
    color: rgba(0, 0, 0, 0.4);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 4px;
}

.job-buttons-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 148px;
    flex-shrink: 0;
}

.btn-job-action {
    height: 42px;
    border: 1.5px solid #000000;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 800;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 0px #000000;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-job-action:active {
    transform: translateY(1px);
    box-shadow: 0 1px 0px #000000;
}

.btn-action-pagar {
    background-color: #eb7819 !important;
}

.btn-action-pagar:hover {
    background-color: #ff8524 !important;
}

.btn-action-editar {
    background-color: #707070 !important;
}

.btn-action-editar:hover {
    background-color: #8c8c8c !important;
}

.btn-action-ver {
    background-color: #041688 !important;
}

.btn-action-ver:hover {
    background-color: #0c25c2 !important;
}

.btn-action-cancelar {
    background-color: #a33636 !important;
}

.btn-action-cancelar:hover {
    background-color: #c44545 !important;
}

/* ==========================================================================
   APROVAR CANDIDATOS FLOW (Employer Candidates Management)
   ========================================================================== */
.candidates-container {
    max-width: 1000px;
    margin: 40px auto 80px;
    padding: 0 40px;
}

.candidates-header {
    margin-bottom: 40px;
}

.candidates-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.candidates-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.49);
    font-weight: 500;
}

.filter-vagas-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    background-color: #ffffff;
    border: 1.5px solid #000000;
    border-radius: 15px;
    padding: 16px 24px;
    color: #000000;
    box-shadow: 0 4px 0px #000000;
}

@media (max-width: 640px) {
    .filter-vagas-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

.filter-label {
    font-size: 1.5rem;
    font-weight: 900;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 12px;
}

.filter-label svg {
    width: 24px;
    height: 24px;
    color: #000000;
    flex-shrink: 0;
}

.filter-select-wrapper {
    position: relative;
}

.filter-select {
    background-color: #eb7819;
    color: #ffffff;
    border: 1.5px solid #eb7819;
    border-radius: 10px;
    height: 45px;
    padding: 0 40px 0 20px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    appearance: none;
    outline: none;
    box-shadow: 0 2px 0px #000000;
    font-family: 'Poppins', sans-serif;
}

.filter-select-wrapper::after {
    content: "â–¼";
    font-size: 0.8rem;
    color: #ffffff;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.candidates-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.candidate-card {
    background-color: #ffffff;
    border: 1.5px solid #000000;
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 4px 0px #000000;
    color: #000000;
    transition: transform 0.2s ease;
}

.candidate-card:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .candidate-card {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
    }

    .candidate-initials-badge {
        width: 100% !important;
        height: 60px !important;
    }

    .candidate-actions-col {
        width: 100% !important;
        margin-top: 12px;
    }
}

.candidate-initials-badge {
    width: 133px;
    height: 92px;
    background-color: #eb7819;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2.25rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 2px 0px #000000;
}

.candidate-info-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.candidate-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #000000;
}

.candidate-address {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    gap: 6px;
}

.candidate-address svg {
    width: 14px;
    height: 14px;
    color: #eb7819;
    flex-shrink: 0;
}

.candidate-vaga {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.6);
    margin-top: 2px;
}

.candidate-actions-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 108px;
    flex-shrink: 0;
}

.btn-candidate-action {
    height: 24px;
    border: 1.5px solid #000000;
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    box-shadow: 0 1.5px 0px #000000;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-candidate-action:active {
    transform: translateY(1px);
    box-shadow: 0 0.5px 0px #000000;
}

.btn-action-aprovar {
    background-color: #041688 !important;
}

.btn-action-aprovar:hover {
    background-color: #0c25c2 !important;
}

.btn-action-reprovar {
    background-color: #a33636 !important;
}

.btn-action-reprovar:hover {
    background-color: #c44545 !important;
}

.btn-action-realocar {
    background-color: #eb7819 !important;
}

.btn-action-realocar:hover {
    background-color: #ff8524 !important;
}

.back-btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #eb7819;
    color: #ffffff;
    border: 1.5px solid #000000;
    border-radius: 10px;
    padding: 8px 24px;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 3px 0px #000000;
    margin-top: 32px;
    transition: all 0.2s ease;
}

.back-btn-pill:hover {
    background-color: #ff8533;
    transform: translateY(-1.5px);
    box-shadow: 0 4.5px 0px #000000;
}

/* Relocate Modal Overlay & Backdrop */
.relocate-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 11, 29, 0.8);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.relocate-backdrop.show {
    display: flex;
}

.relocate-modal {
    background-color: #ffffff;
    border: 2px solid #000000;
    border-radius: 16px;
    padding: 36px 40px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 8px 0px #000000;
    color: #000000;
    position: relative;
    animation: modalSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.relocate-modal-title {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.relocate-modal-desc {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.65);
    margin-bottom: 24px;
    line-height: 1.4;
}

.relocate-select-wrapper {
    position: relative;
    margin-bottom: 32px;
}

.relocate-select {
    width: 100%;
    background-color: #f5f5f5;
    color: #000000;
    border: 1.5px solid #000000;
    border-radius: 10px;
    height: 48px;
    padding: 0 40px 0 16px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    appearance: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

.relocate-select-wrapper::after {
    content: "â–¼";
    font-size: 0.8rem;
    color: #000000;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.relocate-modal-actions {
    display: flex;
    gap: 16px;
}

.btn-modal-action {
    flex: 1;
    height: 48px;
    border: 1.5px solid #000000;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 0px #000000;
    transition: all 0.2s ease;
}

.btn-modal-action:active {
    transform: translateY(1px);
    box-shadow: 0 1.5px 0px #000000;
}

.btn-modal-confirm {
    background-color: #041688;
    color: #ffffff;
}

.btn-modal-confirm:hover {
    background-color: #0c25c2;
}

.btn-modal-cancel {
    background-color: #707070;
    color: #ffffff;
}

.btn-modal-cancel:hover {
    background-color: #8c8c8c;
}

/* ==========================================================================
   MINHA CARTEIRA & CARTEIRA DA EMPRESA STYLES
   ========================================================================== */
.wallet-container {
    position: relative;
    margin-top: 40px;
    margin-bottom: 80px;
    z-index: 5;
}

.wallet-glow-1 {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.wallet-glow-2 {
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(9, 0, 143, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.balance-banner {
    background: linear-gradient(90.11deg, rgb(35, 50, 87) 0%, rgb(5, 0, 143) 100%) !important;
    border: 1.5px solid #000000 !important;
    border-radius: 15px !important;
    padding: 30px 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 154px !important;
    box-shadow: none !important;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.balance-banner-left {
    font-family: 'Poppins', sans-serif !important;
    font-size: 32px !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    letter-spacing: 0.4px !important;
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    z-index: 2;
}

@media (max-width: 768px) {
    .balance-banner {
        flex-direction: column;
        height: auto !important;
        align-items: flex-start;
        gap: 16px;
        padding: 24px !important;
    }

    .balance-banner-left {
        font-size: 24px !important;
        flex-wrap: wrap;
    }
}

.balance-value {
    color: #eb7819 !important;
    font-weight: 900 !important;
}

.auto-payments-pill {
    background-color: rgba(235, 120, 25, 0.45) !important;
    border: 1px solid #eb7819 !important;
    border-radius: 5px !important;
    padding: 8px 24px !important;
    color: #eb7819 !important;
    font-size: 20px !important;
    font-weight: 900 !important;
    text-align: center !important;
    white-space: nowrap !important;
    font-family: 'Poppins', sans-serif !important;
    z-index: 2;
    transition: all 0.2s ease;
    cursor: pointer;
}

.auto-payments-pill:hover {
    background-color: rgba(235, 120, 25, 0.6) !important;
    transform: translateY(-1px);
}

.wallet-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 32px;
    align-items: start;
}

@media (max-width: 1024px) {
    .wallet-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

.wallet-card {
    background-color: #ffffff;
    border: 1.5px solid #000000;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 6px 0px #000000;
    color: #333333;
    margin-bottom: 32px;
    position: relative;
}

.wallet-card-title {
    font-size: 1.35rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.01em;
}

.wallet-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 640px) {
    .wallet-form-row {
        flex-direction: column;
        gap: 16px;
    }
}

.wallet-form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wallet-form-group label {
    font-size: 0.82rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.wallet-form-group input,
.wallet-form-group select {
    height: 44px;
    border: 1.5px solid #4a4a4a;
    border-radius: 6px;
    padding: 0 16px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #000000;
    outline: none;
    background-color: #ddd;
    font-family: 'Poppins', sans-serif;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.wallet-form-group input::placeholder {
    color: #696969;
}

.wallet-form-group input:focus,
.wallet-form-group select:focus {
    border-color: #FF6B00;
    background-color: #ffffff;
}

.method-row-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pix-logo-brand {
    width: 80px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f3fcfb;
    border: 1.5px solid #32BCAD;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(50, 188, 173, 0.15);
}

.wallet-btn {
    background-color: #FF6B00 !important;
    color: #ffffff !important;
    border: 1.5px solid #000000 !important;
    border-radius: 10px !important;
    padding: 12px 28px !important;
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    font-family: 'Poppins', sans-serif !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 0px #000000 !important;
}

.wallet-btn:hover {
    background-color: #ff8533 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 0px #000000 !important;
}

.wallet-btn:active {
    transform: translateY(1px) !important;
    box-shadow: 0 2px 0px #000000 !important;
}

.trans-table-wrapper {
    overflow-x: auto;
}

.trans-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.trans-table th {
    font-size: 0.88rem;
    font-weight: 800;
    color: #575757;
    padding: 12px 16px;
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.08);
    text-transform: capitalize;
}

.trans-table td {
    padding: 16px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #333333;
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.04);
}

.trans-table tr:last-child td {
    border-bottom: none;
}

.trans-desc {
    color: #111111;
    font-weight: 800;
}

.trans-value {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
}

.trans-value.income {
    color: #178c00;
}

.trans-value.expense {
    color: #c0392b;
}

.status-capsule {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    min-width: 110px;
}

.status-capsule.confirmed {
    background-color: #178c00;
}

.status-capsule.pending {
    background-color: #eb7819;
}

.status-capsule.processed {
    background-color: #2980b9;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.06);
}

.metric-row:last-child {
    border-bottom: none;
}

.metric-label {
    font-size: 0.92rem;
    font-weight: 800;
    color: #000000;
}

.metric-value {
    font-size: 1.05rem;
    font-weight: 900;
    color: #333333;
}

.metric-value.highlight-green {
    color: #178c00;
}

.extrato-notice {
    font-size: 0.72rem;
    color: rgba(0, 0, 0, 0.45);
    font-weight: 700;
    margin-top: 18px;
    text-align: right;
    line-height: 1.3;
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tips-list li {
    position: relative;
    padding-left: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.4;
}

.tips-list li::before {
    content: 'â€¢';
    position: absolute;
    left: 4px;
    color: #FF6B00;
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1;
    top: -2px;
}

/* ==========================================================================
   PERFIL DO EMPRESÃRIO STYLES
   ========================================================================== */
.mockup-grid-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 32px;
    margin-top: 24px;
    margin-bottom: 80px;
    align-items: start;
}

@media (max-width: 1024px) {
    .mockup-grid-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.mockup-card {
    background-color: #ffffff;
    border: none;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    color: #333333;
    margin-bottom: 32px;
}

.mockup-card-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #FF6B00;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
}

.mockup-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 640px) {
    .mockup-form-row {
        flex-direction: column;
        gap: 16px;
    }
}

.mockup-form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mockup-form-group.w-60 {
    flex: 1.5;
}

.mockup-form-group.w-40 {
    flex: 1;
}

.mockup-form-group label {
    font-size: 0.82rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.mockup-form-group input {
    height: 42px;
    border: 1.5px solid #4a4a4a;
    border-radius: 20px;
    padding: 0 18px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #333333;
    outline: none;
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.2s ease;
}

.mockup-form-group input::placeholder {
    color: #777777;
    font-weight: 700;
}

.mockup-form-group input:focus {
    border-color: #FF6B00;
}

.mockup-btn-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

.mockup-capsule-btn {
    background-color: #E05A00 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 14px !important;
    padding: 14px 24px !important;
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    cursor: pointer !important;
    width: 100% !important;
    text-align: center !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    font-family: 'Poppins', sans-serif !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 14px rgba(224, 90, 0, 0.3) !important;
    line-height: 1.2 !important;
}

.mockup-capsule-btn:hover {
    background-color: #ff6b00 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(255, 107, 0, 0.45) !important;
}

.mockup-capsule-btn:active {
    transform: translateY(1px) !important;
    box-shadow: 0 2px 6px rgba(255, 107, 0, 0.1) !important;
}

.chat-trigger-top-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
    margin-bottom: 24px;
    padding-right: 4px;
}

.chat-trigger-top-btn {
    width: 44px;
    height: 44px;
    background-color: #ffffff;
    border: 1.5px solid #4a4a4a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 0 #000000;
    transition: all 0.2s ease;
}

.chat-trigger-top-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #000000;
}

.chat-trigger-top-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 0 #000000;
}


/* --- DASHBOARD (APP) PAGE STYLING --- */
.app-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.app-nav-btn {
    background-color: var(--brand-orange) !important;
    color: #ffffff !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    padding: 10px 24px !important;
    font-size: 0.95rem !important;
    box-shadow: none !important;
}

.app-nav-btn:hover {
    background-color: var(--brand-orange-light) !important;
    transform: translateY(-2px) !important;
}

.app-user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--bg-navy-light);
    flex-shrink: 0;
}

.app-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* App Section */
.app-section {
    padding: 60px 0 100px 0;
    flex: 1;
}

.app-container {
    max-width: var(--container-width);
}

.app-welcome-row {
    margin-bottom: 24px;
}

.app-welcome-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}

/* Search Row */
.app-search-row {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    width: 100%;
}

.app-search-box {
    position: relative;
    flex: 1;
    max-width: 634px;
    height: 58px;
}

.app-search-box input {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    border: 3px solid #1A1A1A;
    border-radius: 15px;
    padding: 0 70px 0 24px;
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 500;
    color: #1A1A1A;
    outline: none;
    box-shadow: 4px 4px 0px #1A1A1A;
}

.app-search-box input::placeholder {
    color: rgba(0, 0, 0, 0.3);
}

.app-search-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background-color: var(--brand-orange);
    border: 1.5px solid #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 0 #000000;
    transition: all 0.2s ease;
}

.app-search-btn:hover {
    background-color: var(--brand-orange-light);
    transform: translateY(calc(-50% - 1px));
    box-shadow: 0 3px 0 #000000;
}

.app-search-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #000000;
    stroke-width: 3;
}


.app-filter-btn {
    width: 74px;
    height: 58px;
    background-color: #ffffff;
    border: 3px solid #575757;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;

}

.app-filter-btn:hover {
    transform: translate(-1px, -1px);
}

.app-filter-btn svg {
    width: 28px;
    height: 28px;
    fill: #000000;
}

/* App Grid */
.app-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: start;
}

@media (max-width: 1024px) {
    .app-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.app-section-subtitle {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
}

/* Map Card */
.app-map-card {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid #1A1A1A;
    background-color: #0c122c;
    display: flex;
    flex-direction: column;
}

.app-map-container {
    width: 100%;
    height: 480px;
    position: relative;
    overflow: hidden;
}

.app-map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-map-info-bar {
    background-color: #000733;
    /* Fundo preto/azul escuro */
    border-top: 3px solid #1A1A1A;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

@media (max-width: 768px) {
    .app-map-info-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

.app-info-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.app-building-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.app-building-icon svg {
    width: 24px;
    height: 24px;
}

.app-address-text {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.45;
}

.app-info-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.app-vertical-divider {
    width: 2px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
    .app-vertical-divider {
        display: none;
    }
}

.app-freela-profile {
    display: flex;
    align-items: center;
    gap: 16px;
}

.app-freela-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.app-freela-price {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--brand-orange);
}

.app-doc-icon {
    width: 33px;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.app-doc-icon svg {
    width: 100%;
    height: 100%;
}

/* App Widgets */
.app-widget {
    background-color: #ffffff;
    border: 2px solid #000000;
    border-radius: 15px;
    padding: 28px;
    color: #000000;
    margin-bottom: 32px;
    box-shadow: 6px 6px 0px #000733;
}

.app-widget-title {
    font-size: 1.4rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}

/* History Widget */
.app-history-row {
    margin-bottom: 20px;
}

.app-history-date {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.65);
    margin-bottom: 12px;
}

.app-history-item-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background-color: #f7f7f7;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 16px;
}

@media (max-width: 480px) {
    .app-history-item-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

.app-history-address {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.app-history-building-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.app-history-address-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.4;
}

.app-history-divider {
    width: 1px;
    height: 48px;
    background-color: rgba(0, 0, 0, 0.1);
}

@media (max-width: 480px) {
    .app-history-divider {
        display: none;
    }
}

.app-history-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.app-history-freela-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 2px;
}

.app-history-freela-price {
    font-size: 0.95rem;
    font-weight: 800;
    color: #E65100;
}

.app-history-doc-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.app-history-link {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 800;
    color: #000000;
    text-decoration: underline;
    margin-top: 12px;
    transition: all 0.2s ease;
}

.app-history-link:hover {
    color: var(--brand-orange);
}

/* Simulator Widget */
.simulator-title-main {
    font-size: 1.5rem !important;
    text-align: center;
    margin-bottom: 28px !important;
}

.app-simulator-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.app-sim-field label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #000000;
}

.app-sim-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.app-sim-prefix {
    position: absolute;
    left: 16px;
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
}

.app-sim-input-wrapper input {
    width: 100%;
    height: 48px;
    background-color: rgba(207, 207, 207, 0.4);
    border: 2px solid #575757;
    border-radius: 10px;
    padding: 0 16px;
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.8);
    outline: none;
    transition: all 0.2s ease;
}

.app-sim-input-wrapper span~input {
    padding-left: 42px;
}

.app-sim-input-wrapper input:focus {
    border-color: var(--brand-orange);
    background-color: rgba(207, 207, 207, 0.6);
}

.app-sim-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.app-sim-food-label {
    display: flex;
    align-items: center;
    height: 20px;
}

.app-sim-calc-btn {
    background-color: var(--brand-orange);
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 1.35rem;
    font-weight: 900;
    padding: 12px 0;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
    transition: all 0.2s ease;
    text-align: center;
    margin-top: 10px;
}

.app-sim-calc-btn:hover {
    background-color: var(--brand-orange-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 107, 0, 0.4);
}

.app-sim-result-box {
    background-color: rgba(217, 217, 217, 0.2);
    border: 2px dashed var(--brand-orange);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-top: 8px;
}

.app-sim-result-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--brand-orange);
    margin-bottom: 4px;
}

.app-sim-result-value {
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--brand-orange);
    margin-bottom: 6px;
}

.app-sim-result-tax {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.46);
}

/* Duo AI Chatbot Widget */
.app-duo-widget {
    padding: 24px;
    position: relative;
    overflow: visible !important;
}

.app-duo-avatar-wrapper {
    position: absolute;
    top: -35px;
    left: -37px;
    width: 138px;
    height: 138px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
    pointer-events: none;
}

.app-duo-avatar-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: auto;
}

.app-duo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 16px;
    padding-left: 94px;
    /* Abre espaÃ§o para o avatar absoluto de 138px alinhado em -37px de forma perfeita */
    position: relative;
}

.app-duo-header-text {
    display: flex;
    flex-direction: column;
}

.app-duo-name {
    font-size: 1.35rem;
    font-weight: 900;
    color: #000000;
    font-family: 'Poppins', sans-serif;
}

.app-duo-sub {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.5);
    margin-top: 2px;
}

.app-duo-chat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    /* Totalmente visÃ­vel e preto como no figma */
}

.app-duo-chat-thread {
    height: 200px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
    padding-right: 4px;
}

.app-duo-message {
    max-width: 88%;
    padding: 14px 18px;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;
    border-radius: 5px;
    /* Bordas quadradas de 5px como no print */
    border: 1.5px solid #000000;
    /* Borda preta em volta dos balÃµes */
}

.app-duo-message.duo-received {
    background-color: #EBEBEB;
    /* Cinza claro idÃªntico ao print */
    color: #000000;
    align-self: flex-start;
}

.app-duo-message.duo-sent {
    background-color: var(--brand-orange);
    color: #ffffff;
    align-self: flex-end;
}

.app-duo-chat-input-bar {
    display: flex;
    gap: 8px;
    align-items: center;
    width: 100%;
}

.app-duo-chat-input-bar input {
    flex: 1;
    height: 40px;
    background-color: #ffffff;
    border: 1.5px solid #000000;
    border-radius: 5px;
    padding: 0 16px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    color: #000000;
    outline: none;
}

.app-duo-chat-input-bar input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.app-duo-send-btn {
    width: 40px;
    height: 40px;
    background-color: var(--brand-orange);
    border: 1.5px solid #000000;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.app-duo-send-btn:hover {
    background-color: var(--brand-orange-light);
    transform: scale(1.03);
}

.app-duo-send-btn svg {
    transform: rotate(0deg);
}

/* --- APP FILTERS ROW STYLING --- */
.app-filters-row {
    display: none;
    /* Ocultado por padrÃ£o */
    gap: 16px;
    margin-bottom: 24px;
    position: relative;
    z-index: 100;
    animation: filterRowFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-filters-row.show {
    display: flex;
    /* Exibido quando ativo */
}

@keyframes filterRowFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efeito visual no botÃ£o de filtro do cabeÃ§alho quando ativado */
.app-filter-btn.active {
    background-color: var(--brand-orange) !important;
    border-color: var(--brand-orange) !important;
}

.app-filter-btn.active img {
    filter: brightness(0) invert(1);
    /* Deixa o Ã­cone de filtro branco */
}

.app-filter-dropdown-wrapper {
    position: relative;
}

.app-filter-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 30px;
    padding: 10px 24px;
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 700;
    color: #1A1C3d;
    /* Azul escuro do figma */
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.app-filter-pill-btn:hover {
    background-color: #f7f9ff;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.app-filter-pill-btn.active {
    background-color: #f0f4ff;
    border-color: #000F73;
}

.app-filter-pill-btn.active-filter {
    background-color: #000F73;
    color: #ffffff;
    border-color: #000F73;
}

.app-filter-pill-btn.active-filter .app-filter-pill-icon,
.app-filter-pill-btn.active-filter .app-filter-pill-icon-text {
    color: #ffffff !important;
}

.app-filter-pill-btn.active-filter .app-filter-chevron {
    color: rgba(255, 255, 255, 0.8);
}

.app-filter-pill-icon {
    width: 20px;
    height: 20px;
    color: #3b5998;
    /* Azul dos Ã­cones */
    flex-shrink: 0;
}

.app-filter-pill-icon-text {
    font-size: 1.15rem;
    font-weight: 900;
    color: #3b5998;
    margin-right: 2px;
}

.app-filter-chevron {
    width: 18px;
    height: 18px;
    color: rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease;
}

.app-filter-pill-btn.active .app-filter-chevron {
    transform: rotate(180deg);
}

/* Dropdown Content */
.app-dropdown-content {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 20px 24px;
    width: 250px;
    z-index: 200;
    display: none;
    /* Escondido por padrÃ£o */
    flex-direction: column;
    gap: 12px;
    animation: dropdownFadeIn 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-dropdown-content.open {
    display: flex;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.app-dropdown-title {
    font-size: 0.75rem;
    font-weight: 800;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 4px;
}

/* Custom Radio inside dropdown */
.app-dropdown-option {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    user-select: none;
    padding: 4px 0;
}

.app-dropdown-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.app-radio-checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #bdc3c7;
    border-radius: 50%;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.app-dropdown-option:hover input~.app-radio-checkmark {
    border-color: #000F73;
}

.app-dropdown-option input:checked~.app-radio-checkmark {
    border-color: #000F73;
}

.app-radio-checkmark::after {
    content: "";
    position: absolute;
    display: none;
    width: 10px;
    height: 10px;
    background-color: #000F73;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.app-dropdown-option input:checked~.app-radio-checkmark::after {
    display: block;
}

/* History Widget Highlight Micro-animation */
@keyframes widgetPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 20px 8px rgba(255, 107, 0, 0.65);
        transform: scale(1.02);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
        transform: scale(1);
    }
}

.app-history-widget.highlight-pulse {
    animation: widgetPulse 1.2s ease-in-out;
    border-color: var(--brand-orange) !important;
}

/* --- ADVANCED CALCULATOR PAGE STYLES --- */

/* Direct link from small simulator card */
.app-sim-precise-link {
    display: block;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--brand-orange);
    margin-top: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
}

.app-sim-precise-link:hover {
    color: var(--brand-orange-light);
    transform: translateY(-1px);
    text-decoration: underline;
}

/* Main Back Link */
.calc-back-link {
    display: inline-block;
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.7;
    transition: all 0.2s ease;
}

.calc-back-link:hover {
    opacity: 1;
    color: var(--brand-orange);
}

/* Calculator Grid */
.calc-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    margin-top: 32px;
    margin-bottom: 64px;
    align-items: start;
}

/* Input & Result Cards */
.calc-inputs-card,
.calc-results-card {
    background-color: var(--bg-navy-light);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius-md);
    padding: 32px;
    box-shadow: var(--shadow-lg);
}

.calc-card-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
}

.calc-card-title.text-orange {
    color: var(--brand-orange);
}

/* Inputs Form Groups */
.calc-form-group {
    margin-bottom: 28px;
}

.calc-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.calc-label-row label {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.calc-value-bubble {
    background-color: rgba(255, 107, 0, 0.12);
    color: var(--brand-orange);
    font-size: 0.85rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 0, 0.25);
    min-width: 60px;
    text-align: center;
}

/* Custom Orange Sliders */
.calc-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    transition: background 0.3s ease;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--brand-orange);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
    transition: transform 0.1s ease, background 0.2s ease;
}

.calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: var(--brand-orange-light);
}

.calc-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--brand-orange);
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
    transition: transform 0.1s ease, background 0.2s ease;
}

.calc-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    background: var(--brand-orange-light);
}

/* Custom Checkbox Group styling */
.calc-checkbox-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.calc-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
    cursor: pointer;
}

.calc-checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.calc-checkbox-box {
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.calc-checkbox-label:hover input~.calc-checkbox-box {
    border-color: var(--brand-orange);
    background-color: rgba(255, 107, 0, 0.04);
}

.calc-checkbox-label input:checked~.calc-checkbox-box {
    background-color: var(--brand-orange);
    border-color: var(--brand-orange);
}

.calc-checkbox-box::after {
    content: "";
    display: none;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg) translate(-1px, -1px);
}

.calc-checkbox-label input:checked~.calc-checkbox-box::after {
    display: block;
}

.calc-help-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-left: 32px;
    margin-top: 4px;
}

/* Results Display Box */
.calc-net-display {
    text-align: center;
    background: rgba(255, 107, 0, 0.05);
    border: 1.5px dashed var(--brand-orange);
    border-radius: var(--border-radius-md);
    padding: 24px;
    margin-bottom: 24px;
}

.calc-net-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.calc-net-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--brand-orange);
    margin: 6px 0;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
}

.calc-net-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

/* Financial Breakdown Table */
.calc-breakdown-box {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius-sm);
    padding: 20px;
    margin-bottom: 24px;
}

.calc-breakdown-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.calc-breakdown-row.text-red {
    color: #ff5e5e;
}

.calc-breakdown-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    margin: 6px 0;
}

.calc-breakdown-row.total-row {
    font-size: 1rem;
    font-weight: 800;
}

/* Projections Box */
.calc-projection-box {
    display: flex;
    gap: 16px;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius-sm);
    padding: 16px;
    margin-bottom: 24px;
}

.projection-icon {
    background: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.projection-text-area {
    flex: 1;
}

.projection-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 2px;
}

.projection-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.projection-desc strong {
    font-weight: 800;
}

/* Helper note icon and text row */
.calc-note {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.4;
}

/* Responsive Grid styling */
@media (max-width: 992px) {
    .calc-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* --- DEDICATED HISTORY PAGE STYLES --- */

/* Active Link State */
.active-nav {
    background-color: var(--brand-orange) !important;
    border-color: var(--brand-orange) !important;
    color: var(--text-white) !important;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3) !important;
}

.history-page-header {
    margin-bottom: 32px;
    text-align: left;
}

.history-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
}

.history-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 6px;
}

/* Stats Cards Grid */
.history-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.history-stat-card {
    background-color: #ffffff;
    border: 1.5px solid #000000;
    border-radius: 24px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.history-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--brand-orange);
    font-family: 'Poppins', sans-serif;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.45);
    margin-top: 8px;
    text-transform: none;
}

/* History Jobs List */
.history-jobs-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 64px;
}

.history-job-card {
    background-color: #ffffff;
    border: 1.5px solid #000000;
    border-radius: 24px;
    padding: 36px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    gap: 32px;
    transition: transform 0.2s ease;
}

.history-job-card:hover {
    transform: translateY(-1px);
}

/* Left Info Col */
.job-card-main-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.job-badge-status {
    background-color: #000733;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.job-card-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #000000;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
    text-align: left;
}

.job-card-location {
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
}

.job-card-meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.45);
}

.meta-divider {
    color: rgba(0, 0, 0, 0.15);
}

.meta-item strong {
    font-weight: 900;
    color: #000000;
}

/* Right Toggles Col */
.job-card-toggles-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 280px;
}

.job-toggle-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    border: 1.5px solid #000000;
    border-radius: 12px;
    padding: 10px 16px;
    gap: 16px;
}

.toggle-icon-label-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toggle-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    opacity: 0.9;
}

.toggle-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.toggle-title {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1;
    margin-bottom: 2px;
}

.toggle-desc {
    font-size: 0.9rem;
    font-weight: 800;
    color: #000000;
    line-height: 1;
}

/* Toggle Switch Control */
.toggle-switch {
    width: 42px;
    height: 22px;
    background-color: #e2e2e2;
    border-radius: 11px;
    position: relative;
    transition: background-color 0.25s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.toggle-switch.active {
    background-color: var(--brand-orange);
}

.toggle-knob {
    width: 16px;
    height: 16px;
    background-color: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: left 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.toggle-switch.active .toggle-knob {
    left: 23px;
}

/* --- Dropdown do Avatar --- */
.user-avatar-container {
    position: relative;
}

.avatar-dropdown {
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid #edf2f7;
    display: none;
    flex-direction: column;
    padding: 8px 0;
    z-index: 9999;
}

.avatar-dropdown.active {
    display: flex;
}

.avatar-dropdown a {
    padding: 12px 20px;
    font-size: 14px;
    color: #4a5568;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.avatar-dropdown a:hover {
    background-color: #f7fafc;
    color: #3E62AD;
}

/* --- Toast Alerts (Success/Error) --- */
.perfil-alert-glass {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 24px;
    border-radius: 16px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.alert-success {
    background: rgba(72, 187, 120, 0.1);
    color: #48bb78;
    border: 1px solid rgba(72, 187, 120, 0.3);
}

.alert-error {
    background: rgba(245, 101, 101, 0.1);
    color: #f56565;
    border: 1px solid rgba(245, 101, 101, 0.3);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVIDADE DOS DASHBOARDS (FREELANCER & BUSINESS)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 900px) {

    /* Barra de NavegaÃ§Ã£o (Header) */
    .app-header-right {
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 4px;
        /* Esconder scrollbar */
        scrollbar-width: none;
        -ms-overflow-style: none;
        width: 100%;
        justify-content: flex-start;
    }

    .app-header-right::-webkit-scrollbar {
        display: none;
    }

    .app-nav-btn {
        padding: 8px 14px !important;
        font-size: 0.85rem !important;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .user-avatar-container {
        margin-left: auto;
        flex-shrink: 0;
    }

    .nav-container {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
        padding: 12px 0;
    }

    .login-header {
        height: auto;
        min-height: 70px;
    }

    /* Bem-vindo e Pesquisa */
    .app-welcome-title {
        font-size: 1.75rem;
    }

    .app-search-row {
        flex-direction: column;
        margin-bottom: 32px;
        gap: 12px;
    }

    .app-search-box {
        max-width: 100%;
    }

    .app-filter-btn {
        width: 100%;
        justify-content: center;
    }

    /* Filtros (Pills) */
    .app-filters-row {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 12px;
        gap: 10px;
        scrollbar-width: none;
        display: flex;
    }

    .app-filters-row::-webkit-scrollbar {
        display: none;
    }

    .app-filter-dropdown-wrapper {
        display: inline-block;
    }

    .app-filter-pill-btn {
        padding: 8px 16px;
        white-space: nowrap;
    }

    /* Carteira / HistÃ³rico (Classes cw-) */
    .cw-dashboard-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cw-sidebar {
        margin-top: 10px;
    }

    .cw-table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .cw-tx-table {
        min-width: 600px;
    }

    .cw-summary-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 600px) {
    .app-welcome-title {
        font-size: 1.45rem;
    }

    .app-search-box input {
        font-size: 1rem;
        padding-right: 50px;
    }

    /* Layout de Perfil (cw-) */
    .cw-profile-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .cw-profile-info {
        align-items: center;
    }

    .cw-profile-stats {
        flex-direction: column;
        gap: 10px;
    }

    .cw-stat-card {
        width: 100%;
    }
}

/* Hero Section */
#home-map {
    height: 100%;
    width: 100%;
    border-radius: 20px;
    z-index: 1;
}

.map-container-hero {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    height: 450px;
    width: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.landing-main {
    max-width: none !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
    background-color: transparent !important;
}

.purpose-content {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left;
}

.hero-section {
    background-color: #4b6cb7;
    color: white;
    padding: 30px 24px;
    min-height: 350px;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
    text-align: left;
}

.hero-content .highlight {
    color: #f48024;
}

.hero-content p {
    font-size: 18px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 32px;
}

.hero-bullets {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.check-icon {
    color: #10b981;
    flex-shrink: 0;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.btn-hero-primary {
    background: #f48024;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-hero-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(244, 128, 36, 0.3);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Purpose Section */
.purpose-section {
    background-color: #ffffff;
    padding: 20px 24px;
    border-top: 1px solid #f1f5f9;
}

.purpose-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.purpose-title {
    color: var(--text-white);
    font-size: 42px;
    font-weight: 900;

    margin-bottom: 20px;
    line-height: 1.1;
}

.purpose-title .highlight {
    color: #f48024;
}

.purpose-text-wrapper {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.purpose-lead {
    font-size: 24px;
    font-weight: 700;
    color: #4b6cb7;
    margin-bottom: 24px;
    line-height: 1.4;
}

.purpose-description {
    font-size: 18px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 32px;
}

/* Sections Common */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
}

.text-center {
    text-align: center;
    margin-bottom: 20px;
}

.section-tag {
    color: #f48024;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.landing-page h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 15px;
}


/* How it Works */
.how-it-works-section {
    background-color: white;
}

.how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.how-column {
    background: #f8fafc;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid #f1f5f9;
}

.how-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 25px;
}

.how-icon.orange {
    background: #f48024;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #f48024;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
}

.step-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.step-text strong {
    font-size: 16px;
    line-height: 1.4;
}

.step-text span {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

/* Testimonials */
.testimonials-section {
    background-color: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.testi-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-author strong {
    display: block;
    font-size: 14px;
}

.testi-author span {
    font-size: 12px;
    color: #64748b;
}

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 20px 0;
    }

    .hero-content h1 {
        text-align: center;
        font-size: 32px;
        margin-bottom: 16px;
    }

    .hero-content p {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
    }

    .hero-bullets {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 30px;
    }

    .hero-bullets li {
        font-size: 14px;
        text-align: left;
        width: 100%;
        max-width: 250px;
    }

    .map-container-hero {
        height: 300px;
        border-radius: 16px;
    }

    .how-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .how-column {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .section-container {
        padding: 40px 20px;
    }

    .landing-page h2 {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .purpose-section {
        padding: 40px 20px;
    }

    .purpose-title {
        color: var(--text-white);
        font-size: 28px;
        margin-bottom: 16px;
    }

    .purpose-lead {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .purpose-description {
        font-size: 15px;
        line-height: 1.6;
    }

    .purpose-content {
        text-align: center;
    }
}
/* ========================================
   MOBILE NAV RESPONSIVE - Copied from style.css
   ======================================== */
@media (max-width: 900px) {
    .app-header-right {
        display: none !important;
    }
    .app-hamburger-btn {
        display: flex !important;
    }
}

/* ========================================
   HAMBURGUER BUTTON — base styles (global)
   ======================================== */
.app-hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: #060b19;
    border: none;
    border-radius: 10px;
    box-shadow: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: transform 0.1s ease;
    z-index: 1100;
}
.app-hamburger-btn:active {
    transform: translateY(2px);
}
.app-hamburger-btn span {
    display: block;
    width: 20px;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}
.app-hamburger-btn.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.app-hamburger-btn.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.app-hamburger-btn.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ========================================
   MOBILE OVERLAY
   ======================================== */
.app-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1200;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.app-mobile-overlay.open {
    display: block;
    opacity: 1;
}

/* ========================================
   MOBILE DRAWER (Gaveta lateral)
   ======================================== */
.app-mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    background: var(--bg-dark, #0d1b2a);
    z-index: 1300;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow-y: auto;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 32px rgba(0, 0, 0, 0.4);
}
.app-mobile-drawer.open {
    right: 0;
}
.app-drawer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 8px 0;
}
.app-drawer-nav {
    list-style: none;
    margin: 8px 0;
    padding: 0 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.app-drawer-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}
.app-drawer-link:hover,
.app-drawer-link:focus {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}
.app-drawer-link svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    stroke: var(--brand-orange, #EB7819);
}
.app-drawer-logout {
    color: #ff6b6b !important;
}
.app-drawer-logout svg {
    stroke: #ff6b6b !important;
}
.app-drawer-logout:hover {
    background: rgba(255, 107, 107, 0.1) !important;
}


/* ========================================
   MOBILE DRAWER FIXES
   ======================================== */
@media (min-width: 901px) {
    .app-mobile-drawer {
        display: none !important;
    }
}
.app-mobile-drawer {
    z-index: 999999 !important;
}
.app-mobile-overlay {
    z-index: 999998 !important;
}
.app-hamburger-btn {
    z-index: 999997 !important;
}


/* --- Perfil no topo do drawer --- */
.app-drawer-profile {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 32px 20px 20px 20px;
    background: linear-gradient(135deg, #1a2a3a 0%, #0d1b2a 100%);
}

.app-drawer-avatar {
    width: 52px;
    height: 52px;
    background: #3E62AD;
    border-radius: 50%;
    border: 2.5px solid #EB7819;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.4rem;
    color: #fff;
    text-transform: uppercase;
    flex-shrink: 0;
    overflow: hidden;
}

.app-drawer-user-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
}

.app-drawer-name {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.app-drawer-email {
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* --- Garantir que o cabeÃ§alho (e o hambÃºrguer) fiquem fixos no topo no mobile --- */
@media (max-width: 900px) {
    .login-header {
        position: fixed !important;
        z-index: 1000 !important;
        top: 0;
        left: 0;
        width: 100%;
    }
    /* Adicionar um pequeno espaÃ§o para compensar o header fixo */
    body {
        padding-top: 80px;
    }
}


/* Garantir 100% que a tela nÃ£o expanda horizontalmente no mobile e esconda elementos na direita */
body {
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
}
html {
    overflow-x: hidden !important;
    width: 100vw;
}
