:root {
    --bg: #050505;
    --bg-soft: #070707;
    --surface: #101014;
    --surface-2: #15151c;
    --surface-3: #191924;
    --purple: #7c3cff;
    --purple-light: #b57cff;
    --whatsapp: #25d366;
    --text: #f5f5f7;
    --muted: #a1a1aa;
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(181, 124, 255, 0.28);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
    --container: 1180px;
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 15% 5%, rgba(124, 60, 255, 0.20), transparent 32rem),
        radial-gradient(circle at 88% 12%, rgba(181, 124, 255, 0.12), transparent 28rem),
        linear-gradient(180deg, var(--bg), var(--bg-soft));
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    content: "";
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 78%);
}

a {
    color: inherit;
    text-decoration: none;
}

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

button,
input,
textarea {
    font: inherit;
}

[v-cloak] {
    display: none;
}

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}

/* Isola o Tailwind CDN da seção React para não sobrescrever os containers globais. */
.container {
    width: min(100% - 40px, var(--container)) !important;
    margin-inline: auto !important;
}

.header-inner {
    width: min(100% - 40px, 980px) !important;
    margin-inline: auto !important;
}

.section {
    position: relative;
    padding: 104px 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-heading.align-left {
    margin-inline: 0;
    text-align: left;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--purple-light);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--purple);
    box-shadow: 0 0 28px rgba(124, 60, 255, 0.95);
    content: "";
}

h1,
h2,
h3 {
    margin: 0;
    font-family: Sora, Inter, sans-serif;
    line-height: 1.05;
    letter-spacing: 0;
}

h1 {
    max-width: 600px;
    font-size: clamp(2.65rem, 4.25vw, 4rem);
}

h1 span {
    color: var(--purple-light);
    text-shadow: 0 0 34px rgba(124, 60, 255, 0.35);
}

h2 {
    font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
    font-size: 1.05rem;
}

p {
    margin: 0;
    color: var(--muted);
}

.btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0 22px;
    font-weight: 800;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    color: white;
    box-shadow: 0 16px 46px rgba(124, 60, 255, 0.34);
}

.btn-secondary {
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.btn-small {
    min-height: 42px;
    padding-inline: 18px;
    font-size: 0.92rem;
}

.site-header {
    position: fixed;
    top: 14px;
    right: 0;
    left: 0;
    z-index: 20;
    background: transparent;
    pointer-events: none;
}

.header-inner {
    display: flex;
    width: min(100% - 40px, 980px);
    min-height: 64px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 999px;
    padding: 8px 18px 8px 22px;
    background: rgba(5, 5, 5, 0.74);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(18px);
    pointer-events: auto;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    display: grid;
    width: auto;
    min-width: 48px;
    height: 36px;
    place-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: white;
    font-family: Sora, Inter, sans-serif;
    font-weight: 800;
    font-size: 1.06rem;
    letter-spacing: 0;
}

.brand-sub {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.desktop-nav a:hover {
    color: var(--text);
}

.header-cta {
    min-height: 44px;
    padding-inline: 24px;
    color: #070707;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: white;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: currentColor;
}

.mobile-nav {
    display: none;
}

.hero {
    min-height: 100vh;
    padding-top: 92px;
    padding-bottom: 32px;
    background:
        radial-gradient(circle at 20% 30%, rgba(124, 60, 255, 0.14), transparent 32%),
        radial-gradient(circle at 78% 28%, rgba(124, 60, 255, 0.22), transparent 34%),
        #050505;
    overflow: hidden;
}

.hero::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    opacity: 0.35;
    content: "";
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 77% 36%, rgba(124, 60, 255, 0.36), transparent 29rem),
        radial-gradient(circle at 19% 86%, rgba(124, 60, 255, 0.12), transparent 24rem),
        linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.92) 43%, rgba(5, 5, 5, 0.7) 100%);
}

.hero::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.96) 26%, rgba(5, 5, 5, 0.34) 52%, rgba(5, 5, 5, 0.02) 72%),
        linear-gradient(0deg, #050505 0%, rgba(5, 5, 5, 0.82) 7%, transparent 26%),
        radial-gradient(circle at 75% 38%, rgba(124, 60, 255, 0.24), transparent 36rem);
    content: "";
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    min-height: calc(100vh - 124px);
    grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
    gap: 42px;
}

.hero-copy {
    position: relative;
    z-index: 1;
    padding-top: 0;
}

.hero-lead {
    max-width: 580px;
    margin-top: 14px;
    font-size: clamp(0.98rem, 1.15vw, 1.08rem);
    line-height: 1.62;
}

.hero-eyebrow {
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 9px 15px;
    background: rgba(255, 255, 255, 0.035);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-bullets {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-width: 590px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.hero-bullets li {
    position: relative;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    min-height: 54px;
    padding: 10px 12px 10px 44px;
    background: rgba(8, 8, 12, 0.56);
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.35;
}

.hero-bullets li::before {
    position: absolute;
    top: 17px;
    left: 14px;
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border: 1px solid rgba(37, 211, 102, 0.62);
    border-radius: 999px;
    color: var(--whatsapp);
    font-size: 0.82rem;
    content: "✓";
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 18px;
}

.hero-actions .btn {
    min-width: 188px;
}

.hero-trust {
    position: relative;
    margin-top: 12px;
    padding-left: 28px;
    color: rgba(245, 245, 247, 0.48);
    font-size: 0.9rem;
    font-weight: 700;
}

.hero-trust::before {
    position: absolute;
    top: 1px;
    left: 0;
    display: grid;
    width: 18px;
    height: 18px;
    place-items: center;
    border: 1px solid rgba(181, 124, 255, 0.55);
    border-radius: 999px;
    color: var(--purple-light);
    font-size: 0.72rem;
    content: "✓";
}

.hero-visual {
    position: relative;
    min-height: 540px;
    perspective: 1000px;
    isolation: isolate;
    overflow: visible;
}

.hero-visual::before {
    position: absolute;
    inset: -70px -220px -90px -260px;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 62% 38%, rgba(124, 60, 255, 0.38), transparent 34%),
        radial-gradient(circle at 72% 52%, rgba(181, 124, 255, 0.18), transparent 32%);
    filter: blur(2px);
    -webkit-mask-image: radial-gradient(circle at 70% 50%, #000 0%, #000 48%, rgba(0, 0, 0, 0.65) 62%, transparent 84%);
    mask-image: radial-gradient(circle at 70% 50%, #000 0%, #000 48%, rgba(0, 0, 0, 0.65) 62%, transparent 84%);
    content: "";
}

.hero-visual::after {
    display: none;
}

.hero-person {
    position: absolute;
    right: -170px;
    bottom: 0;
    z-index: 1;
    width: min(1500px, 105vw);
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: right bottom;
    filter: saturate(1.04) contrast(1.05);
    transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
    transform-style: preserve-3d;
    transition: transform 240ms ease;

    -webkit-mask-image:
        linear-gradient(90deg, transparent 0%, #000 13%, #000 88%, transparent 100%),
        linear-gradient(180deg, transparent 0%, #000 7%, #000 74%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
        linear-gradient(90deg, transparent 0%, #000 13%, #000 88%, transparent 100%),
        linear-gradient(180deg, transparent 0%, #000 7%, #000 74%, transparent 100%);
    mask-composite: intersect;
}

.hero-glow {
    position: absolute;
    top: 72px;
    right: -6px;
    z-index: 1;
    width: 560px;
    height: 560px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(124, 60, 255, 0.36), transparent 68%);
    filter: blur(22px);
    pointer-events: none;
}

.hero-orbit {
    position: absolute;
    top: 28px;
    right: 80px;
    z-index: 1;
    width: 470px;
    height: 470px;
    border: 1px dashed rgba(181, 124, 255, 0.26);
    border-radius: 999px;
    animation: heroOrbit 18s linear infinite;
}

.hero-orbit::before,
.hero-orbit::after {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--purple-light);
    box-shadow: 0 0 28px rgba(181, 124, 255, 0.8);
    content: "";
}

.hero-orbit::before {
    top: 32px;
    left: 62px;
}

.hero-orbit::after {
    right: 34px;
    bottom: 74px;
}

.hero-float-card {
    position: absolute;
    z-index: 5;
    display: flex;
    width: 300px;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 18px;
    background: rgba(16, 16, 20, 0.72);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    animation: heroFloat 5.6s ease-in-out infinite;
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.hero-float-card::before {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(181, 124, 255, 0.18), transparent 58%);
    opacity: 0;
    transition: opacity 220ms ease;
    content: "";
}

.hero-float-card div,
.hero-float-card strong,
.hero-float-card small,
.hero-card-icon {
    position: relative;
}

.hero-card-icon {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(181, 124, 255, 0.24);
    border-radius: 8px;
    background: rgba(124, 60, 255, 0.16);
    color: var(--purple-light);
    font-size: 1.4rem;
    font-weight: 900;
}

.hero-float-card strong {
    display: block;
    color: var(--text);
    font-family: Sora, Inter, sans-serif;
    font-size: 1rem;
    line-height: 1.25;
}

.hero-float-card small {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.4;
}

.hero-float-card.is-active {
    border-color: var(--border-strong);
    background: rgba(25, 25, 36, 0.9);
    transform: translateY(-6px) scale(1.02);
}

.hero-float-card.is-active::before {
    opacity: 1;
}

.hero-card-one {
    top: 76px;
    left: 150px;
}

.hero-card-two {
    top: 210px;
    left: 112px;
    animation-delay: -1.2s;
}

.hero-card-three {
    bottom: 72px;
    left: 162px;
    animation-delay: -2.4s;
}

.browser-card {
    position: absolute;
    inset: 24px 0 auto auto;
    width: min(100%, 430px);
    overflow: hidden;
    border: 1px solid var(--border-strong);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(25, 25, 36, 0.95), rgba(10, 10, 14, 0.95));
    box-shadow: var(--shadow), 0 0 100px rgba(124, 60, 255, 0.16);
}

.browser-top {
    display: flex;
    gap: 8px;
    padding: 16px;
    border-bottom: 1px solid var(--border);
}

.browser-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
}

.browser-body {
    padding: 24px;
}

.browser-line,
.browser-cta {
    height: 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.browser-line.wide {
    width: 74%;
    height: 28px;
    margin-bottom: 14px;
    background: linear-gradient(90deg, rgba(181, 124, 255, 0.9), rgba(124, 60, 255, 0.25));
}

.browser-line:not(.wide) {
    width: 52%;
}

.browser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 34px;
}

.browser-grid div {
    height: 76px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.05);
}

.browser-cta {
    width: 190px;
    height: 38px;
    margin-top: 22px;
    background: var(--whatsapp);
}

.metric-card {
    position: absolute;
    display: grid;
    min-width: 132px;
    gap: 2px;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px;
    background: rgba(16, 16, 20, 0.76);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.metric-card strong {
    font-family: Sora, Inter, sans-serif;
    font-size: 1.28rem;
}

.metric-card span {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.metric-one {
    top: 18px;
    left: 0;
}

.metric-two {
    right: 20px;
    bottom: 60px;
}

.metric-three {
    bottom: 0;
    left: 42px;
}

.pain-grid,
.number-grid,
.portfolio-grid,
.plans-grid,
.testimonial-grid {
    display: grid;
    gap: 18px;
}

.pain-grid {
    grid-template-columns: repeat(3, 1fr);
}

.pain-card,
.service-item,
.bento-card,
.timeline-item,
.number-card,
.testimonial-card,
.portfolio-card,
.plan-card,
.faq-item,
.final-cta-box,
.review-slot {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(21, 21, 28, 0.86), rgba(10, 10, 14, 0.76));
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
}

.pain-card {
    min-height: 150px;
    padding: 22px;
    transition: transform 180ms ease, border-color 180ms ease;
}

.pain-card:hover,
.bento-card:hover,
.portfolio-card:hover,
.plan-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
}

.pain-card span {
    display: block;
    width: 34px;
    height: 3px;
    margin-bottom: 26px;
    border-radius: 999px;
    background: var(--purple);
}

.closing-line {
    max-width: 860px;
    margin: 34px auto 0;
    color: var(--text);
    font-size: 1.16rem;
    font-weight: 800;
    text-align: center;
}

.solution-grid,
.faq-grid {
    display: grid;
    align-items: start;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 56px;
}

.service-list {
    display: grid;
    gap: 14px;
}

.service-item {
    display: flex;
    gap: 16px;
    padding: 20px;
}

.service-dot {
    flex: 0 0 auto;
    width: 12px;
    height: 12px;
    margin-top: 6px;
    border-radius: 999px;
    background: var(--purple-light);
    box-shadow: 0 0 28px rgba(181, 124, 255, 0.6);
}

.service-item p,
.number-card p,
.testimonial-card p,
.plan-card p {
    margin-top: 10px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.bento-card {
    min-height: 230px;
    padding: 24px;
}

.bento-large {
    grid-column: span 2;
}

.bento-icon {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    margin-bottom: 34px;
    border: 1px solid var(--border-strong);
    border-radius: 8px;
    background: rgba(124, 60, 255, 0.16);
    color: var(--purple-light);
    font-weight: 900;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.timeline-item {
    display: flex;
    gap: 18px;
    min-height: 190px;
    padding: 24px;
}

.timeline-number,
.number-card span {
    color: rgba(181, 124, 255, 0.62);
    font-family: Sora, Inter, sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
}

.center-action {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

.number-grid {
    grid-template-columns: repeat(3, 1fr);
}

.number-card {
    min-height: 250px;
    padding: 26px;
}

.number-card h3 {
    margin-top: 36px;
}

.testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
}

.testimonial-card {
    display: grid;
    min-height: 270px;
    align-content: space-between;
    gap: 26px;
    padding: 24px;
}

.stars {
    color: var(--purple-light);
    letter-spacing: 0;
}

.testimonial-card strong,
.testimonial-card span {
    display: block;
}

.testimonial-card span {
    color: var(--muted);
}

.review-slot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-top: 18px;
    padding: 22px;
}

.review-slot span {
    color: var(--muted);
    font-weight: 700;
}

.portfolio-grid {
    grid-template-columns: repeat(4, 1fr);
}

.portfolio-card {
    overflow: hidden;
    transition: transform 180ms ease, border-color 180ms ease;
}

.portfolio-card img {
    width: 100%;
    aspect-ratio: 1.45;
    object-fit: cover;
    border-bottom: 1px solid var(--border);
    background: var(--surface-2);
}

.portfolio-card div {
    padding: 18px;
}

.portfolio-card span,
.plan-label {
    color: var(--purple-light);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.portfolio-card h3 {
    margin-top: 10px;
}

.portfolio-card p {
    margin-top: 10px;
    font-size: 0.92rem;
}

.portfolio-card a {
    display: inline-flex;
    margin-top: 18px;
    color: var(--text);
    font-weight: 800;
}

.plans-grid {
    grid-template-columns: repeat(3, 1fr);
}

.plan-card {
    display: flex;
    min-height: 620px;
    flex-direction: column;
    padding: 26px;
}

.plan-card.is-featured {
    border-color: var(--border-strong);
    background: linear-gradient(180deg, rgba(124, 60, 255, 0.2), rgba(10, 10, 14, 0.86));
    box-shadow: 0 24px 90px rgba(124, 60, 255, 0.18);
}

.plan-card h3 {
    margin-top: 16px;
    font-size: 1.45rem;
}

.plan-card > strong {
    display: block;
    min-height: 58px;
    margin-top: 18px;
    color: var(--text);
    font-family: Sora, Inter, sans-serif;
    font-size: 1.55rem;
    line-height: 1.2;
}

.plan-card ul {
    display: grid;
    gap: 12px;
    margin: 24px 0 28px;
    padding: 0;
    list-style: none;
}

.plan-card li {
    position: relative;
    padding-left: 24px;
    color: var(--muted);
}

.plan-card li::before {
    position: absolute;
    left: 0;
    color: var(--whatsapp);
    content: "✓";
}

.plan-card .btn {
    margin-top: auto;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    overflow: hidden;
}

.faq-item button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 0;
    padding: 22px;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    text-align: left;
}

.faq-item button span {
    font-weight: 800;
}

.faq-item button strong {
    display: grid;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--purple-light);
}

.faq-item.is-open button strong {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 22px 22px;
}

.final-cta-box {
    padding: clamp(32px, 6vw, 72px);
    background:
        radial-gradient(circle at 78% 18%, rgba(181, 124, 255, 0.22), transparent 22rem),
        linear-gradient(135deg, rgba(25, 25, 36, 0.95), rgba(10, 10, 14, 0.9));
}

.final-cta-box h2 {
    max-width: 850px;
}

.final-cta-box p {
    max-width: 680px;
    margin-top: 20px;
    font-size: 1.12rem;
}

.site-footer {
    border-top: 1px solid var(--border);
    padding: 64px 0 32px;
    background: rgba(0, 0, 0, 0.38);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 1fr 0.7fr;
    gap: 42px;
}

.footer-grid h3 {
    margin-bottom: 16px;
    font-size: 0.94rem;
}

.footer-grid a,
.footer-grid span {
    display: block;
    margin-top: 10px;
    color: var(--muted);
}

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

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 42px;
    border-top: 1px solid var(--border);
    padding-top: 24px;
    color: var(--muted);
    font-size: 0.88rem;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 30;
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    border-radius: 999px;
    padding: 0;
    background: var(--whatsapp);
    color: #05130a;
    box-shadow: 0 18px 50px rgba(37, 211, 102, 0.28);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 60px rgba(37, 211, 102, 0.36);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 92px;
    z-index: 30;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(16, 16, 20, 0.8);
    color: var(--text);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes heroFloat {
    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -10px;
    }
}

@keyframes heroOrbit {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1180px) {
    .desktop-nav {
        gap: 16px;
    }

    .hero-grid,
    .solution-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 560px;
    }

    .hero-person {
        right: -190px;
        width: 1120px;
        max-height: none;
    }

    .hero-card-one {
        left: 120px;
    }

    .hero-card-two {
        left: 88px;
    }

    .hero-card-three {
        left: 132px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .desktop-nav,
    .header-cta {
        display: none;
    }

    .site-header {
        top: 12px;
    }

    .header-inner {
        width: min(100% - 28px, var(--container));
        border-radius: 999px;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-nav {
        display: grid;
        gap: 6px;
        width: min(100% - 40px, var(--container));
        margin: 0 auto 18px;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 12px;
        background: rgba(16, 16, 20, 0.96);
    }

    .mobile-nav a {
        padding: 12px;
        color: var(--muted);
        font-weight: 800;
    }

    .mobile-nav .btn {
        margin-top: 6px;
        color: white;
    }

    .pain-grid,
    .timeline,
    .number-grid,
    .testimonial-grid,
    .plans-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .section {
        padding: 76px 0;
    }

    .hero {
        min-height: auto;
        padding-top: 112px;
    }

    .hero-bullets,
    .pain-grid,
    .timeline,
    .number-grid,
    .testimonial-grid,
    .plans-grid,
    .portfolio-grid,
    .footer-grid,
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-large {
        grid-column: auto;
    }

    .hero-visual {
        min-height: 500px;
    }

    .hero-person {
        right: -250px;
        width: 940px;
        max-height: none;
    }

    .hero-glow {
        right: -60px;
        top: 70px;
        width: 420px;
        height: 420px;
    }

    .hero-orbit {
        top: 84px;
        right: 12px;
        width: 280px;
        height: 280px;
    }

    .hero-float-card {
        width: min(280px, 82vw);
        padding: 14px;
    }

    .hero-card-one {
        top: 16px;
        left: 10px;
    }

    .hero-card-two {
        top: 112px;
        left: auto;
        right: 2px;
    }

    .hero-card-three {
        bottom: 66px;
        left: 10px;
    }

    .review-slot,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.72rem;
    }

    .brand-sub {
        display: none;
    }

    .hero-actions,
    .hero-actions .btn,
    .center-action .btn,
    .plan-card .btn {
        width: 100%;
    }

    .hero-visual {
        min-height: 500px;
    }

    .hero-person {
        right: -330px;
        bottom: -4px;
        width: 920px;
        max-width: none;
        max-height: none;
    }

    .hero-glow {
        right: -110px;
        top: 108px;
        width: 320px;
        height: 320px;
    }

    .hero-orbit {
        top: 142px;
        right: -38px;
        width: 230px;
        height: 230px;
    }

    .hero-float-card {
        width: 178px;
        padding: 10px 12px;
        gap: 10px;
    }

    .hero-float-card.is-active {
        transform: translateY(-4px);
    }

    .hero-card-icon {
        width: 34px;
        height: 34px;
        font-size: 1.05rem;
    }

    .hero-float-card strong {
        font-size: 0.88rem;
    }

    .hero-float-card small {
        font-size: 0.7rem;
    }

    .hero-card-one {
        top: 0;
        left: 0;
    }

    .hero-card-two {
        top: 88px;
        left: auto;
        right: 0;
    }

    .hero-card-three {
        bottom: 58px;
        left: 0;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 56px;
        height: 56px;
    }

    .back-to-top {
        right: 14px;
        bottom: 82px;
    }
}

.market-presence {
    position: relative;
    overflow: hidden;
    padding: 42px 24px 54px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at 50% 45%, rgba(124, 60, 255, 0.10), transparent 42%),
        linear-gradient(180deg, rgba(5, 5, 5, 0.96), rgba(10, 10, 14, 0.98));
}

.market-presence::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.38;
    content: "";
}

.market-presence__inner {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
}

.market-presence__eyebrow {
    display: block;
    margin-bottom: 20px;
    color: rgba(245, 245, 247, 0.42);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.32em;
    text-transform: uppercase;
}

.market-presence__subtitle {
    margin: 0 0 42px;
    color: rgba(245, 245, 247, 0.72);
    font-size: clamp(18px, 2vw, 26px);
    line-height: 1.4;
}

.market-presence__countries {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.market-presence__pill {
    display: inline-flex;
    min-width: 112px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 11px 18px;
    background: rgba(18, 18, 22, 0.74);
    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    color: #f5f5f7;
    font-size: 15px;
    font-weight: 700;
    backdrop-filter: blur(14px);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.market-presence__pill:hover {
    border-color: rgba(181, 124, 255, 0.68);
    box-shadow:
        0 24px 70px rgba(124, 60, 255, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.flag-icon {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 17px;
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 3px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.flag-br {
    background: #159447;
}

.flag-br::before {
    position: absolute;
    top: 3px;
    left: 6px;
    width: 12px;
    height: 11px;
    background: #f7d34a;
    transform: rotate(45deg);
    content: "";
}

.flag-br::after {
    position: absolute;
    top: 5px;
    left: 9px;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #2446a6;
    content: "";
}

.flag-pt {
    background: linear-gradient(90deg, #078847 0 42%, #d52b1e 42% 100%);
}

.flag-ch {
    background: #e31b23;
}

.flag-ch::before,
.flag-ch::after {
    position: absolute;
    background: white;
    content: "";
}

.flag-ch::before {
    top: 7px;
    left: 5px;
    width: 14px;
    height: 3px;
}

.flag-ch::after {
    top: 3px;
    left: 10px;
    width: 3px;
    height: 11px;
}

.flag-ae {
    background:
        linear-gradient(90deg, #ef3340 0 28%, transparent 28% 100%),
        linear-gradient(180deg, #009739 0 33.33%, #fff 33.33% 66.66%, #000 66.66% 100%);
}

.flag-ie {
    background: linear-gradient(90deg, #169b62 0 33.33%, #fff 33.33% 66.66%, #ff883e 66.66% 100%);
}

.flag-us {
    background:
        linear-gradient(180deg, #b22234 0 7.69%, #fff 7.69% 15.38%, #b22234 15.38% 23.07%, #fff 23.07% 30.76%, #b22234 30.76% 38.45%, #fff 38.45% 46.14%, #b22234 46.14% 53.83%, #fff 53.83% 61.52%, #b22234 61.52% 69.21%, #fff 69.21% 76.9%, #b22234 76.9% 84.59%, #fff 84.59% 92.28%, #b22234 92.28% 100%);
}

.flag-us::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 9px;
    background: #3c3b6e;
    content: "";
}

@media (max-width: 768px) {
    .market-presence {
        padding: 38px 20px 44px;
    }

    .market-presence__eyebrow {
        font-size: 11px;
        letter-spacing: 0.2em;
    }

    .market-presence__subtitle {
        margin-bottom: 30px;
        font-size: 18px;
    }

    .market-presence__countries {
        gap: 12px;
    }

    .market-presence__pill {
        min-width: calc(50% - 8px);
        padding: 12px 16px;
        font-size: 15px;
    }
}

@media (max-width: 420px) {
    .market-presence__pill {
        min-width: 100%;
    }
}

.digital-structure {
    position: relative;
    overflow: hidden;
    padding: 46px 0 36px;
    background:
        radial-gradient(circle at 50% 54%, rgba(168, 85, 247, 0.18), transparent 23rem),
        radial-gradient(circle at 50% 45%, rgba(124, 58, 237, 0.10), transparent 34rem),
        #08070c;
}

.digital-structure::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 50%, rgba(192, 132, 252, 0.12), transparent 18rem),
        linear-gradient(180deg, rgba(8, 7, 12, 0), #08070c 94%);
    opacity: 0.9;
    content: "";
}

.digital-structure::after {
    position: absolute;
    top: 53%;
    left: 50%;
    width: 500px;
    height: 500px;
    border-radius: 999px;
    background: rgba(168, 85, 247, 0.14);
    filter: blur(76px);
    transform: translate(-50%, -50%);
    content: "";
}

.digital-structure__inner {
    position: relative;
    z-index: 2;
    width: min(100% - 32px, 992px);
    margin: 0 auto;
}

.digital-structure__heading {
    max-width: 660px;
    margin: 0 auto 86px;
    text-align: center;
}

.digital-structure__heading .eyebrow {
    justify-content: center;
    gap: 0;
    margin-bottom: 8px;
    color: #c084fc;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.46em;
    line-height: 1.2;
}

.digital-structure__heading .eyebrow::before {
    display: none;
}

.digital-structure__heading h2 {
    max-width: 620px;
    margin: 0;
    font-family: Sora, Inter, sans-serif;
    font-size: clamp(2rem, 3.43vw, 2.24rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 0;
}

.structure-map {
    position: relative;
    max-width: 992px;
    min-height: 424px;
    margin: 0 auto;
}

.structure-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 424px;
    overflow: visible;
    pointer-events: none;
}

.structure-line {
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.structure-line--base {
    stroke: rgba(168, 85, 247, 0.16);
}

.structure-line--active {
    stroke: rgba(192, 132, 252, 0.72);
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.78));
    animation: structure-line-cycle 12s linear infinite;
    animation-delay: calc(var(--i) * 0.9s);
}

.structure-pulse {
    fill: #d8b4fe;
    filter: drop-shadow(0 0 10px rgba(192, 132, 252, 0.95));
}

.structure-module,
.structure-core {
    position: absolute;
    z-index: 2;
}

.structure-module {
    width: 200px;
    min-height: 82px;
    border: 1px solid rgba(168, 85, 247, 0.22);
    border-radius: 12px;
    padding: 11px 14px 13px;
    background: #141119;
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
    opacity: 0;
    transform: translateY(8px) scale(0.96);
    animation: structure-card-cycle 12s ease-in-out infinite;
    animation-delay: calc(2.05s + (var(--i) * 0.9s));
}

.structure-module::before {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.12), transparent 52%);
    opacity: 0;
    transition: opacity 0.28s ease;
    content: "";
}

.structure-module:hover::before {
    opacity: 1;
}

.structure-module:hover {
    border-color: rgba(192, 132, 252, 0.5);
    box-shadow: 0 18px 70px rgba(168, 85, 247, 0.22);
    transform: translateY(-4px) scale(1.015);
}

.structure-module__accent {
    position: relative;
    display: block;
    width: 18px;
    height: 3px;
    margin-bottom: 9px;
    border-radius: 999px;
    background: #a855f7;
    box-shadow: 0 0 14px rgba(168, 85, 247, 0.7);
}

.structure-module h3,
.structure-module p {
    position: relative;
}

.structure-module h3 {
    margin: 0;
    color: #fff;
    font-family: Sora, Inter, sans-serif;
    font-size: 0.86rem;
    font-weight: 850;
    line-height: 1.12;
}

.structure-module p {
    margin: 5px 0 0;
    color: rgba(229, 231, 235, 0.62);
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.35;
}

.module-strategy {
    top: 0;
    left: 76px;
}

.module-design {
    top: 0;
    right: 76px;
}

.module-responsive {
    top: 127px;
    left: 68px;
}

.module-conversion {
    top: 127px;
    right: 68px;
}

.module-seo {
    top: 255px;
    left: 76px;
}

.module-whatsapp {
    top: 255px;
    right: 76px;
}

.module-support {
    top: 342px;
    left: calc(50% - 100px);
}

.structure-core {
    top: 92px;
    left: calc(50% - 140px);
    width: 280px;
    min-height: 132px;
    border: 1px solid rgba(168, 85, 247, 0.5);
    border-radius: 16px;
    padding: 31px 28px 28px;
    background: #100d16;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.03) inset,
        0 0 36px rgba(168, 85, 247, 0.26),
        0 24px 80px rgba(0, 0, 0, 0.44);
    text-align: center;
    animation: structure-core-breathe 2.9s ease-in-out infinite;
}

.structure-core::before {
    position: absolute;
    inset: -16px;
    z-index: -1;
    border-radius: 24px;
    background: rgba(168, 85, 247, 0.2);
    filter: blur(32px);
    opacity: 0.66;
    content: "";
}

.structure-core::after {
    position: absolute;
    inset: 1px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.045);
    pointer-events: none;
    content: "";
}

.structure-core__label {
    display: inline-flex;
    margin-bottom: 8px;
    color: #c084fc;
    font-size: 0.67rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.structure-core h3 {
    margin: 0;
    color: #fff;
    font-family: Sora, Inter, sans-serif;
    font-size: 1.34rem;
    font-weight: 850;
    line-height: 1.08;
    letter-spacing: 0;
}

.digital-structure__cta {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.structure-cta {
    min-width: 306px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    box-shadow: 0 16px 54px rgba(168, 85, 247, 0.28);
    font-size: 0.9rem;
}

@keyframes structure-core-breathe {
    0%,
    100% {
        box-shadow:
            0 0 0 1px rgba(255, 255, 255, 0.03) inset,
            0 0 28px rgba(168, 85, 247, 0.24),
            0 24px 80px rgba(0, 0, 0, 0.44);
    }

    50% {
        box-shadow:
            0 0 0 1px rgba(255, 255, 255, 0.04) inset,
            0 0 56px rgba(168, 85, 247, 0.44),
            0 24px 80px rgba(0, 0, 0, 0.44);
    }
}

@keyframes structure-line-cycle {
    0% {
        opacity: 0;
        stroke-dashoffset: 1;
    }

    9%,
    84% {
        opacity: 1;
        stroke-dashoffset: 0;
    }

    91%,
    100% {
        opacity: 0;
        stroke-dashoffset: 1;
    }
}

@keyframes structure-card-cycle {
    0% {
        opacity: 0;
        transform: translateY(8px) scale(0.96);
    }

    4%,
    96% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(8px) scale(0.96);
    }
}

@media (max-width: 1024px) {
    .digital-structure {
        padding: 96px 0;
    }

    .digital-structure__heading {
        margin-bottom: 50px;
    }

    .structure-map {
        display: grid;
        max-width: 760px;
        min-height: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .structure-lines {
        display: none;
    }

    .structure-module,
    .structure-core {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: auto;
        min-height: auto;
        transform: none;
    }

    .structure-core {
        grid-column: 1 / -1;
        order: -1;
        width: 100%;
        min-height: 0;
    }
}

@media (max-width: 640px) {
    .digital-structure {
        padding: 82px 0;
    }

    .digital-structure__inner {
        width: min(100% - 28px, var(--container));
    }

    .digital-structure__heading {
        margin-bottom: 34px;
    }

    .digital-structure__heading h2 {
        font-size: clamp(2rem, 10vw, 2.8rem);
    }

    .structure-map {
        grid-template-columns: 1fr;
    }

    .structure-core {
        padding: 28px 22px;
    }

    .digital-structure__cta .btn {
        width: 100%;
    }
}
