/* ============================================
   JT Consultoria em TI — Dark & Amber (Opah-inspired)
   ============================================ */

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

:root {
    /* Dark palette */
    --bg-dark: #0a0a0f;
    --bg-darker: #060609;
    --bg-card: #111118;
    --bg-card-hover: #16161f;
    --bg-surface: #1a1a24;

    /* Accent — warm amber/orange */
    --accent: #e8850c;
    --accent-light: #f5a623;
    --accent-dark: #c66d08;
    --accent-glow: rgba(232, 133, 12, 0.2);
    --accent-subtle: rgba(232, 133, 12, 0.08);

    /* Text */
    --text-primary: #f0eff4;
    --text-secondary: #a8a4b8;
    --text-muted: #6b6780;
    --text-dim: #3d3a4d;

    /* Borders */
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --border-accent: rgba(232, 133, 12, 0.25);

    /* Misc */
    --font: 'Inter', -apple-system, sans-serif;
    --mono: 'JetBrains Mono', monospace;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: var(--font);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* 7. Noise texture overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

h1, h2, h3, h4 { line-height: 1.15; font-weight: 700; letter-spacing: -0.025em; }
h1 { font-size: clamp(2.5rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.2rem; font-weight: 600; }
p { color: var(--text-secondary); }
strong { color: var(--text-primary); font-weight: 600; }

.text-accent { color: var(--accent-light); }
.section__header .text-accent {
    text-shadow: 0 0 40px rgba(232, 133, 12, 0.5);
}

/* 2. Hero gradient text */
.hero .text-accent {
    background: linear-gradient(135deg, var(--accent-light) 0%, #ffd080 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================== NAV ===================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: 0.35s var(--ease);
}
.nav.scrolled {
    background: rgba(10, 10, 15, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}
.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav__links {
    display: flex;
    gap: 32px;
    list-style: none;
}
.nav__links a {
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: 0.2s;
    letter-spacing: 0.01em;
}
.nav__links a:hover { color: var(--accent-light); }

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav__toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: 0.3s;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo__jt {
    font-family: var(--mono);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--accent-light);
    letter-spacing: -0.04em;
}
.logo__sep {
    width: 1px;
    height: 20px;
    background: var(--text-dim);
}
.logo__text {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.01em;
}

/* ===================== BUTTONS ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.25s var(--ease);
    white-space: nowrap;
    font-size: 0.88rem;
}
.btn--accent {
    background: var(--accent);
    color: white;
}
.btn--accent:hover {
    background: var(--accent-light);
    box-shadow: 0 4px 24px var(--accent-glow);
}
.btn--outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border-hover);
}
.btn--outline:hover {
    border-color: var(--accent);
    color: var(--accent-light);
}
.btn--nav { padding: 10px 22px; }
.btn--lg { padding: 16px 32px; font-size: 0.92rem; }
.btn--full { width: 100%; justify-content: center; }

/* 4. CTA button pulse */
.btn--pulse {
    position: relative;
}
.btn--pulse::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(232, 133, 12, 0.5);
    animation: btnPulse 2.5s ease-in-out infinite;
}
@keyframes btnPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(232, 133, 12, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(232, 133, 12, 0); }
}

/* ===================== HERO ===================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(232, 133, 12, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(232, 133, 12, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(10, 10, 15, 1) 0%, transparent 60%);
    z-index: 1;
}
#particleCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.hero__orb {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    transition: transform 0.3s ease-out;
}
.hero__orb--1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232,133,12,0.08) 0%, transparent 70%);
    top: 5%;
    right: 10%;
    animation: drift 25s ease-in-out infinite;
}
.hero__orb--2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(232,133,12,0.06) 0%, transparent 70%);
    bottom: 15%;
    left: 5%;
    animation: drift 20s ease-in-out infinite reverse;
}
.hero__orb--3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(245,166,35,0.1) 0%, transparent 70%);
    top: 40%;
    left: 50%;
    animation: drift 18s ease-in-out infinite;
    animation-delay: -6s;
}
@keyframes drift {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(25px, -20px); }
    66% { transform: translate(-20px, 15px); }
}

.hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}
.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 10px;
    background: rgba(232, 133, 12, 0.08);
    border: 1px solid rgba(232, 133, 12, 0.28);
    border-radius: 99px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--accent-light);
}
.hero__tag--remote {
    background: rgba(40, 200, 120, 0.07);
    border-color: rgba(40, 200, 120, 0.3);
    color: #5ddba8;
}
.hero__tag--remote::before {
    background: #28c878;
    animation: tagBlink 2.4s ease-in-out infinite;
}
.hero__tag::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
    animation: tagBlink 2s ease-in-out infinite;
}
@keyframes tagBlink {
    0%, 100% { box-shadow: 0 0 0 0 rgba(232, 133, 12, 0.5); }
    50% { box-shadow: 0 0 0 5px rgba(232, 133, 12, 0); }
}
.hero h1 {
    margin-bottom: 24px;
}
.hero__desc {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 580px;
}
.hero__ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* 9. Scroll indicator fade on scroll */
.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    transition: opacity 0.4s ease;
}
.hero__scroll.faded {
    opacity: 0;
    pointer-events: none;
}
.hero__scroll-dot {
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { cy: 10; opacity: 1; }
    50% { cy: 22; opacity: 0.3; }
}

/* ===================== SECTIONS ===================== */
.section {
    padding: 110px 0;
    position: relative;
    background-image: radial-gradient(rgba(255,255,255,0.022) 1px, transparent 1px);
    background-size: 30px 30px;
}
.section--dark {
    background-color: var(--bg-darker);
    background-image: radial-gradient(rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* 1. Gradient dividers between sections */
.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(90%, 900px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232,133,12,0.6) 30%, rgba(232,133,12,0.6) 70%, transparent);
    box-shadow: 0 0 18px rgba(232,133,12,0.25);
    z-index: 1;
}
.section::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: var(--accent);
    box-shadow: 0 0 14px rgba(232,133,12,0.8);
    z-index: 2;
}
/* Hero is a <header>, not <section>, so all sections get the divider */

.section__header {
    margin-bottom: 64px;
}
.section__label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--accent);
    margin-bottom: 16px;
    text-transform: uppercase;
}
.section__header h2 { margin-bottom: 12px; }
.section__sub {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 520px;
}

/* ===================== CARDS ===================== */
.cards-grid {
    display: grid;
    gap: 20px;
}
.cards-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 30px;
    position: relative;
    transition: 0.3s var(--ease);
    overflow: hidden;
}
.card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

/* 3. Card highlight with animated gradient border */
.card--highlight {
    border-color: transparent;
    background-clip: padding-box;
    position: relative;
}
.card--highlight::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius);
    padding: 1px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark), var(--accent-light), var(--accent));
    background-size: 300% 300%;
    animation: gradientBorder 4s ease infinite;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 0;
}
.card--highlight:hover {
    border-color: transparent;
}
@keyframes gradientBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.card__glow {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.card__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 12px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: var(--accent-subtle);
    color: var(--accent-light);
    border-radius: 99px;
    border: 1px solid rgba(232,133,12,0.15);
    z-index: 1;
}
.card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-subtle);
    color: var(--accent-light);
    border-radius: 12px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.card h3 { margin-bottom: 12px; color: var(--text-primary); position: relative; z-index: 1; }
.card > p {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.card__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
}
.card__list li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
}
.card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

/* ===================== STEPS ===================== */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.step {
    position: relative;
    padding: 40px 28px 40px 28px;
    text-align: center;
}
.step__line {
    position: absolute;
    top: 32px;
    left: 50%;
    right: -50%;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), var(--border));
}
.step:last-child .step__line { display: none; }
.step__dot {
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 20px var(--accent-glow);
}
.step__num {
    font-family: var(--mono);
    font-size: 3.2rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(232, 133, 12, 0.25);
    letter-spacing: -0.05em;
    margin-bottom: 4px;
    line-height: 1;
}
.step h3 {
    margin-bottom: 10px;
    font-size: 1.05rem;
}
.step p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===================== SOBRE ===================== */
.sobre-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}
.sobre__content .section__label { margin-bottom: 16px; }
.sobre__content h2 { margin-bottom: 20px; }
.sobre__content > p {
    font-size: 0.98rem;
    line-height: 1.75;
    margin-bottom: 14px;
}
.sobre__highlights {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.sobre__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.sobre__item-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-subtle);
    color: var(--accent-light);
    border-radius: 10px;
    flex-shrink: 0;
}
.sobre__item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}
.sobre__item span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* 5. Metrics box with gradient border */
.sobre__box {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 40px;
    position: relative;
    border: none;
}
.sobre__box::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    padding: 1px;
    background: linear-gradient(160deg, var(--accent), rgba(232,133,12,0.15), var(--accent-light));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}
.sobre__box::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    background: radial-gradient(ellipse at 50% 0%, rgba(232,133,12,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.sobre__box-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    position: relative;
    z-index: 1;
}
.metric {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.metric__icon {
    color: var(--accent-light);
    margin-bottom: 4px;
}
.metric__val {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    font-family: var(--mono);
    letter-spacing: -0.03em;
}
.metric__label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ===================== FAQ ===================== */
.faq-list {
    max-width: 740px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: 0.2s var(--ease);
}
.faq:hover, .faq[open] {
    border-color: var(--border-accent);
}
.faq summary {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    transition: 0.2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent-light); }
.faq__icon {
    position: relative;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.faq__icon::before,
.faq__icon::after {
    content: '';
    position: absolute;
    background: var(--text-muted);
    border-radius: 2px;
    transition: 0.3s var(--ease);
}
.faq__icon::before {
    width: 14px; height: 2px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.faq__icon::after {
    width: 2px; height: 14px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.faq[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq[open] .faq__icon::before { background: var(--accent); }

/* 6. FAQ smooth open animation */
.faq__answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s var(--ease);
}
.faq[open] .faq__answer {
    grid-template-rows: 1fr;
}
.faq__answer-inner {
    overflow: hidden;
}
.faq__answer-inner p {
    padding: 0 24px 20px;
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Legacy FAQ p (fallback) */
.faq > p {
    padding: 0 24px 20px;
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ===================== CTA / CONTATO ===================== */
.cta-section { padding-bottom: 100px; }
.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}
.cta__info h2 { margin-bottom: 14px; }
.cta__info > p {
    font-size: 1rem;
    margin-bottom: 36px;
}
.cta__channels {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.cta-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: 0.2s;
}
.cta-link svg { color: var(--accent); flex-shrink: 0; }
.cta-link:hover { color: var(--accent-light); }

.cta__form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
}
.form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.form__field {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font);
    font-size: 0.88rem;
    background: var(--bg-surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xs);
    color: var(--text-primary);
    outline: none;
    transition: 0.2s;
}
.form__field::placeholder { color: var(--text-dim); }
.form__field:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}
select.form__field {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6780' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
select.form__field option {
    background: var(--bg-card);
    color: var(--text-primary);
}
textarea.form__field { resize: vertical; min-height: 90px; }

/* ===================== FOOTER ===================== */
.footer {
    padding-top: 48px;
    border-top: 1px solid var(--border);
}
.footer__inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 48px;
    align-items: start;
    padding-bottom: 32px;
}
.footer__left p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 8px;
}
.footer__center {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer__center span {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer__center svg {
    color: var(--accent);
    flex-shrink: 0;
}
.footer__right {
    display: flex;
    gap: 28px;
}
.footer__right a {
    text-decoration: none;
    font-size: 0.82rem;
    color: var(--text-muted);
    transition: 0.2s;
}
.footer__right a:hover { color: var(--accent-light); }
.footer__socials {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}
.footer__socials a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-muted);
    transition: 0.2s;
    text-decoration: none;
}
.footer__socials a:hover {
    border-color: var(--accent);
    color: var(--accent-light);
}
.footer__bar {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer__bar p {
    font-size: 0.75rem;
    color: var(--text-dim);
}
.footer__bar-cnpj {
    font-size: 0.72rem;
    color: var(--text-dim);
    font-family: var(--mono);
}

/* ===================== WHATSAPP FLOAT ===================== */
.wpp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: 0.25s var(--ease);
}
.wpp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.4);
}

/* ===================== SCROLL PROGRESS BAR ===================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-dark), var(--accent-light));
    z-index: 1100;
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px var(--accent-glow);
}

/* ===================== ACTIVE NAV ===================== */
.nav__links a.active {
    color: var(--accent-light);
}
.nav__links a.active::after {
    content: '';
    display: block;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    margin-top: 2px;
    animation: navUnderline 0.25s ease forwards;
}
@keyframes navUnderline {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

/* ===================== JUNTE-SE ===================== */
.junte-se__card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: start;
    background: linear-gradient(135deg, rgba(232, 133, 12, 0.06) 0%, rgba(232, 133, 12, 0.02) 100%);
    border: 1px solid rgba(232, 133, 12, 0.15);
    border-radius: var(--radius);
    padding: 56px;
    position: relative;
    overflow: hidden;
}
.junte-se__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent), rgba(232, 133, 12, 0.2));
}
.junte-se__icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 133, 12, 0.1);
    border: 1px solid rgba(232, 133, 12, 0.2);
    border-radius: 16px;
    color: var(--accent);
    flex-shrink: 0;
}
.junte-se__body {
    display: flex;
    flex-direction: column;
}
.junte-se__body h2 {
    margin-bottom: 8px;
}
.junte-se__intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}
.junte-se__steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}
.junte-se__step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.junte-se__step-num {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 133, 12, 0.12);
    border: 1px solid rgba(232, 133, 12, 0.25);
    border-radius: 50%;
    color: var(--accent);
    font-family: var(--mono);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.junte-se__step p {
    color: var(--text-secondary);
    line-height: 1.6;
    padding-top: 4px;
}
.junte-se__email {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(232, 133, 12, 0.3);
    transition: border-color 0.2s ease;
}
.junte-se__email:hover {
    border-color: var(--accent);
}
.junte-se__btn {
    align-self: flex-start;
}
@media (max-width: 768px) {
    .junte-se__card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 36px 28px;
    }
}

/* ===================== PAGE ENTRANCE ===================== */
.page-enter {
    opacity: 0;
    transform: translateY(16px);
}
.page-enter.entered {
    animation: enterFade 0.7s var(--ease) forwards;
}
@keyframes enterFade {
    to { opacity: 1; transform: translateY(0); }
}

/* ===================== HERO ===================== */
.hero__text { max-width: none; }

/* ===================== ANIMATIONS ===================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .hero__content { grid-template-columns: 1fr; max-width: 720px; }
    .hero__visual { display: none; }
    .cards-grid--3 { grid-template-columns: 1fr; max-width: 500px; }
    .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
    .cta-grid { grid-template-columns: 1fr; gap: 48px; }
    .steps { grid-template-columns: 1fr 1fr; gap: 20px; }
    .step__line { display: none; }
    .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    .stack-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; }
}
@media (max-width: 640px) {
    .stack-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .nav__links, .btn--nav { display: none; }
    .nav__links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10,10,15,0.96);
        backdrop-filter: blur(20px);
        padding: 20px 28px;
        gap: 14px;
        border-bottom: 1px solid var(--border);
    }
    .nav__toggle { display: flex; }

    .hero { min-height: auto; padding: 130px 0 60px; }
    .stack-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .form__row { grid-template-columns: 1fr; }
    .footer__inner { grid-template-columns: 1fr; gap: 20px; text-align: center; }
    .footer__center { align-items: center; }
    .footer__right { justify-content: center; }
    .footer__socials { justify-content: center; }
    .footer__bar { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
    .hero__ctas { flex-direction: column; }
    .hero__ctas .btn { width: 100%; justify-content: center; }
    .sobre__box { padding: 28px 20px; }
}

/* ===================== STACK DE TECNOLOGIAS ===================== */
.stack-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.stack-group {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 24px;
    transition: 0.25s var(--ease);
}
.stack-group:hover {
    border-color: var(--border-accent);
    background: var(--bg-card-hover);
}
.stack-group__label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 14px;
}
.stack-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.stack-tags span {
    padding: 4px 10px;
    font-size: 0.78rem;
    font-family: var(--mono);
    font-weight: 500;
    background: var(--bg-surface);
    color: var(--text-secondary);
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: 0.2s;
}
.stack-tags span:hover {
    border-color: var(--border-accent);
    color: var(--accent-light);
}

/* ===================== DEPOIMENTOS ===================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: 0.3s var(--ease);
}
.testimonial:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.testimonial__stars {
    color: var(--accent);
    font-size: 0.88rem;
    letter-spacing: 3px;
}
.testimonial__text {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text-secondary);
    flex-grow: 1;
    font-style: italic;
}
.testimonial__author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-subtle);
    border: 1px solid var(--border-accent);
    color: var(--accent-light);
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--mono);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.testimonial__author strong {
    display: block;
    font-size: 0.88rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}
.testimonial__author span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ===================== TOAST ===================== */
.toast {
    position: fixed;
    bottom: 100px;
    right: 28px;
    background: var(--bg-surface);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    font-size: 0.85rem;
    color: var(--text-primary);
    z-index: 2000;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
    max-width: 320px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.toast--visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================== HERO TERMINAL / VISUAL ===================== */
.hero__visual {
    position: relative;
}
.hero__terminal {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow:
        0 24px 60px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255,255,255,0.04),
        0 0 40px rgba(232,133,12,0.06);
}
.hero__terminal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 18px;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border);
}
.hero__terminal-dots {
    display: flex;
    gap: 6px;
}
.hero__terminal-dots span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}
.hero__terminal-dots span:nth-child(1) { background: #ff5f57; }
.hero__terminal-dots span:nth-child(2) { background: #ffbd2e; }
.hero__terminal-dots span:nth-child(3) { background: #28c840; }
.hero__terminal-title {
    font-family: var(--mono);
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-left: auto;
}
.hero__terminal-body {
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.hero__terminal-line {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: 0.8rem;
    line-height: 1.5;
}
.hero__terminal-line--gap {
    margin-top: 8px;
}
.t-prompt {
    color: var(--accent);
    user-select: none;
    flex-shrink: 0;
}
.t-cmd {
    color: var(--text-primary);
}
.t-out {
    color: var(--text-muted);
    padding-left: 20px;
    gap: 8px;
}
.t-out--block {
    display: block;
    line-height: 1.6;
}
.t-hash {
    color: var(--accent);
    font-weight: 600;
    flex-shrink: 0;
}
.t-success {
    color: #28c840;
    flex-shrink: 0;
}
.t-cursor {
    display: inline-block;
    width: 8px;
    height: 15px;
    background: var(--accent);
    animation: blink 1s step-end infinite;
    vertical-align: middle;
    border-radius: 1px;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

.hero__stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}
.hero__stack-tag {
    padding: 5px 12px;
    font-size: 0.74rem;
    font-weight: 600;
    font-family: var(--mono);
    background: var(--accent-subtle);
    color: var(--accent-light);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-xs);
    transition: 0.2s var(--ease);
}
.hero__stack-tag:hover {
    background: rgba(232, 133, 12, 0.14);
    border-color: rgba(232, 133, 12, 0.4);
}
