:root {
    --c-bg: #ffffff;
    --c-bg-surface: #f4f4f4;
    --c-bg-surface-hover: #eaeaea;
    --c-text-main: #111111;
    --c-text-muted: #444444;
    --c-text-dark: #000000;
    --c-accent-primary: #fcb017;
    --c-accent-secondary: #1f334a;
    --c-accent-success: #69f0ae;
    --c-gradient-main: linear-gradient(135deg, #fcb017 0%, #e89100 50%, #cc7a00 100%);
    --font-heading: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1320px;
    --header-height: 90px;
    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

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

html {
    font-size: 16px;
    width: 100%;
}

body {
    background-color: var(--c-bg);
    color: var(--c-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    cursor: default;
}

:focus-visible {
    outline: 2px solid var(--c-accent-primary);
    outline-offset: 2px;
}

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

a:hover {
    color: #e69000;
}

.internal-links a,
.post-content a {
    color: #d48800;
    text-decoration: underline;
    text-underline-offset: 4px;
    word-wrap: break-word;
}

ul {
    list-style: none;
}

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

.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    margin-left: -4px;
    margin-top: -4px;
    will-change: transform;
}

@media (max-width: 991px) {
    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--c-accent-primary);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    transition: width 0.2s, height 0.2s, background-color 0.2s, margin-left 0.2s, margin-top 0.2s, border-color 0.2s;
    margin-left: -20px;
    margin-top: -20px;
}

.cursor-outline.cursor-hover {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: transparent;
    margin-left: -30px;
    margin-top: -30px;
}

#reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--c-gradient-main);
    z-index: 99999;
    transition: width 0.1s ease-out;
    pointer-events: none;
}

.text-gradient {
    background: var(--c-gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title-lg {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-wrap: balance;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--c-text-muted);
    max-width: 600px;
    letter-spacing: 0.01em;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 5rem 0;
}

@media (min-width: 992px) {
    .section-padding {
        padding: 7rem 0;
    }
}

.section-with-noise {
    position: relative;
    background-color: var(--c-bg);
}

.section-with-noise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.4"/%3E%3C/svg%3E');
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
    filter: invert(1);
}

@media (max-width: 991px) {
    .section-with-noise::before {
        opacity: 0.05;
    }
}

.section-with-noise>.container,
.section-with-noise>.trust-bar-content {
    position: relative;
    z-index: 1;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 992px) {
    .grid-2-col {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.site-header {
    height: var(--header-height);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-desktop ul {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-desktop a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--c-text-muted);
    transition: color 0.2s;
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--c-accent-primary);
    transition: width 0.3s var(--ease-out-expo);
}

.nav-desktop a:hover {
    color: #000;
}

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

@media (max-width: 991px) {
    .nav-desktop {
        display: none;
    }
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 10px 0;
    text-decoration: none;
    box-sizing: border-box;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
}

.btn-header {
    background: #000;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s var(--ease-out-expo);
    border: 2px solid #000;
}

.btn-header:hover {
    background: transparent;
    color: #000;
}

.menu-toggle {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    background: #000;
    transition: 0.3s;
}

.menu-toggle:hover span {
    width: 40px;
    background: var(--c-accent-primary);
}

.off-canvas-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.6s var(--ease-out-expo);
    visibility: hidden;
}

.off-canvas-menu.active {
    right: 0;
    visibility: visible;
}

.menu-nav ul {
    text-align: center;
}

.menu-nav a {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    display: block;
    color: rgba(0, 0, 0, 0.6);
    transition: 0.4s;
    margin: 0.5rem 0;
}

.menu-nav a:hover,
.menu-nav a:focus {
    color: #000;
    transform: translateX(20px);
    outline: none;
}

.hero-manifesto {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: var(--header-height);
}

.hero-manifesto h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.hero-manifesto .line {
    display: block;
}

@media (max-width: 768px) {
    .hero-manifesto .line+.line {
        margin-top: 0.5rem;
    }
}

.hero-footer {
    position: absolute;
    bottom: 3rem;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    color: var(--c-text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-bg-noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.4"/%3E%3C/svg%3E');
    pointer-events: none;
    z-index: -1;
    opacity: 0.15;
    filter: invert(1);
}

p {
    margin-bottom: 1.5rem;
}

.btn-primary {
    background: #000;
    color: #fff;
    margin-top: 30px;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s var(--ease-out-expo);
    border: 2px solid #000;
}

.btn-primary:hover {
    background: transparent;
    color: #000;
    transform: translateY(-5px);
}

.btn-outline {
    background: transparent;
    color: #000;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s var(--ease-out-expo);
    border: 2px solid #000;
}

.btn-outline:hover {
    background: #000;
    color: #fff;
    transform: translateY(-5px);
}

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.hero-ctas .btn-primary,
.hero-ctas .btn-outline {
    margin-top: 0;
}

@media (max-width: 991px) {
    .d-none-mobile {
        display: none !important;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .hero-ctas a {
        width: 100%;
        text-align: center;
    }
}

.btn-giant {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    background-color: var(--c-accent-primary);
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(252, 176, 23, 0.3);
    border: none;
    transition: 0.4s;
    position: relative;
    text-decoration: none;
    cursor: pointer;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 10px 30px rgba(252, 176, 23, 0.3); }
    50% { box-shadow: 0 10px 50px rgba(252, 176, 23, 0.6); }
}

.btn-giant:hover {
    background-color: #e69000;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(252, 176, 23, 0.5);
    color: #fff;
    animation: none;
}

.marquee-section {
    background: var(--c-accent-primary);
    color: #000;
    padding: 1.5rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    transform: rotate(-2deg) scale(1.05);
    width: 102%;
    left: -1%;
    margin-left: 0;
    margin-bottom: 4rem;
    z-index: 10;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-weight: 900;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.capabilities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 992px) {
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
        align-items: stretch;
    }

    .capabilities-grid>.capability-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }
}

.capability-card {
    background: var(--c-bg-surface);
    padding: 3rem;
    border-radius: var(--radius-md);
    transition: 0.4s var(--ease-out-expo);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.capability-card:hover {
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02), 0 10px 20px rgba(0, 0, 0, 0.06);
    transform: translateY(-5px);
    border-color: var(--c-accent-primary);
}

.cap-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.05);
    display: block;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.capability-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.capability-card p {
    color: var(--c-text-muted);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.cap-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cap-tags li {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 50px;
}

.segments-section {
    background: var(--c-bg-surface);
}

.segments-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .segments-grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: stretch;
    }
}

.segment-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    transition: 0.4s var(--ease-out-expo);
    border: 1px solid rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.segment-card.featured {
    border-color: var(--c-accent-primary);
    box-shadow: 0 8px 30px rgba(252, 176, 23, 0.15);
}

.segment-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--c-accent-primary);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
}

.segment-icon {
    color: var(--c-accent-primary);
    margin-bottom: 1.5rem;
}

.segment-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.segment-subtitle {
    color: var(--c-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.segment-features {
    margin-top: auto;
}

.segment-features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--c-text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.segment-features li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--c-accent-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.diferenciais-section {
    background: #fff;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .diferenciais-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.diferencial-card {
    background: var(--c-bg-surface);
    padding: 2rem;
    border-radius: var(--radius-md);
    transition: 0.4s var(--ease-out-expo);
    border: 1px solid transparent;
}

.diferencial-card:hover {
    border-color: var(--c-accent-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.diferencial-icon {
    color: var(--c-accent-primary);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(252, 176, 23, 0.1);
    border-radius: 12px;
}

.diferencial-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.diferencial-card p {
    color: var(--c-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem 0;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
    gap: 1.5rem;
}

.faq-question h3 {
    font-size: 1.25rem;
    margin: 0;
    color: var(--c-accent-secondary);
    transition: color 0.3s;
}

.faq-question:hover h3 {
    color: var(--c-accent-primary);
}

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.4s var(--ease-out-expo);
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::before {
    width: 2px;
    height: 100%;
}

.faq-icon::after {
    width: 100%;
    height: 2px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out-expo), padding 0.3s;
    color: var(--c-text-muted);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 1rem;
}

.main-footer {
    padding: 8rem 0 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.cta-wrapper {
    text-align: center;
    margin-bottom: 8rem;
    padding: 0 1rem;
}

.cta-wrapper h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 3rem;
    line-height: 1.1;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: space-between;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
    color: #4a4a4a;
    transition: 0.3s;
}

.footer-col ul li:hover {
    color: #000;
    transform: translateX(10px);
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpAnim 0.8s var(--ease-out-expo) forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

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

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .hero-manifesto h1 {
        font-size: 3rem;
    }

    .section-padding {
        padding: 4rem 0;
    }

    .grid-2-col,
    .footer-bottom {
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .footer-col {
        width: 100%;
        text-align: left;
    }

    .btn-header {
        display: none;
    }

    .capabilities-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .capability-card {
        padding: 1.5rem;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
    }

    html,
    body {
        overflow-x: hidden;
        width: 100%;
    }

    .hero-manifesto {
        flex-direction: column;
        justify-content: center;
        padding-top: calc(var(--header-height) + 4rem);
        padding-bottom: 4rem;
        height: auto;
        min-height: 100vh;
    }

    .hero-footer {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 3rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .hero-manifesto h1 {
        font-size: 2.8rem;
    }

    .scroll-indicator {
        display: none;
    }

    .site-header,
    .off-canvas-menu {
        width: 100%;
        max-width: 100vw;
    }

    .mobile-sticky-cta {
        display: block;
    }

    .whatsapp-float {
        display: none !important;
    }
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 2rem;
    right: 2rem;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.3);
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}



.capability-card, .portfolio-card {
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo), border-color 0.4s;
    will-change: transform;
}

.dark-bg,
.section-separator-bg {
    background-color: transparent;
    color: var(--c-text-main);
    position: relative;
    overflow: hidden;
}

.dark-bg p,
.section-separator-bg p {
    color: var(--c-text-muted);
}

.dark-bg .section-title-lg,
.section-separator-bg .section-title-lg {
    color: var(--c-text-main);
}

.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 1rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.mobile-sticky-cta.active {
    transform: translateY(0);
}

.sticky-whatsapp-btn {
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.u-d-none {
    display: none !important;
}

.u-d-block {
    display: block !important;
}

.u-text-center {
    text-align: center;
}

.u-fw-700 {
    font-weight: 700;
}

.u-fw-900 {
    font-weight: 900;
}

.u-flex-center {
    display: flex;
    align-items: center;
}

.u-flex-center-vh {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
}

.u-flex-wrap-center {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.u-mt-4 {
    margin-top: 4rem;
}

.u-mb-2 {
    margin-bottom: 2rem;
}

.u-mb-3 {
    margin-bottom: 3rem;
}

.u-mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.u-max-w-700 {
    max-width: 700px;
}

.u-max-w-800 {
    max-width: 800px;
}

.u-bg-surface {
    background: var(--c-bg-surface);
}

.u-rounded-md {
    border-radius: var(--radius-md);
}

.u-w-full {
    width: 100%;
}

/* --- HOST-SPECIFIC STYLES --- */

.host-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #1f334a 100%);
    color: #fff;
    overflow: hidden;
}

.host-hero .hero-bg-noise {
    opacity: 0.08;
    filter: none;
}

.host-hero h1 .text-gradient {
    background: linear-gradient(135deg, #fcb017 0%, #fbbf24 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.host-hero .hero-subtitle {
    color: #94a3b8;
    font-size: 1.25rem;
    max-width: 640px;
    margin: 1.5rem auto;
}

.host-hero .btn-primary {
    background: var(--c-accent-primary);
    color: #000;
    border-color: var(--c-accent-primary);
}

.host-hero .btn-primary:hover {
    background: transparent;
    color: var(--c-accent-primary);
}

.host-hero .btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.host-hero .btn-outline:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: stretch;
    }
}

.pricing-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: 0.4s var(--ease-out-expo);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--c-accent-primary);
}

.pricing-card.featured {
    border-color: var(--c-accent-primary);
    box-shadow: 0 8px 30px rgba(252, 176, 23, 0.15);
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--c-accent-primary);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--c-text-muted);
}

.pricing-period {
    color: var(--c-text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.pricing-features {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--c-text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pricing-features li::before {
    content: "✓";
    color: var(--c-accent-primary);
    font-weight: 900;
}

.tech-stack {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    align-items: center;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .specs-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.spec-card {
    background: var(--c-bg-surface);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.spec-card:hover {
    border-color: var(--c-accent-primary);
    transform: translateY(-3px);
}

.spec-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--c-accent-primary);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.spec-label {
    font-size: 0.9rem;
    color: var(--c-text-muted);
}

.approach-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}

.stat-item {
    background: var(--c-bg-surface);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    display: block;
    color: #d48800;
}

.stat-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.lead {
    font-size: 1.4rem;
    font-family: var(--font-serif);
    font-style: italic;
    color: #555;
    border-left: 4px solid var(--c-accent-primary);
    padding-left: 1.5rem;
}

.quote-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.quote-author {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sm-caps {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 0.6;
}

/* --- HOST HERO FOOTER TEXT CONTRAST --- */
.host-hero .hero-footer {
    color: #94a3b8;
}

.host-hero .scroll-indicator {
    color: #64748b;
}

/* --- PLANOS PAGE HEADER BACKGROUND --- */
.page-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #1f334a 100%);
    color: #fff;
}

.page-header .section-subtitle {
    color: #94a3b8;
}

/* --- APPROACH SECTION TEXT ON DARK BG --- */
.approach-section.dark-bg .section-title-lg,
.approach-section.dark-bg .lead,
.approach-section.dark-bg p {
    color: inherit;
}

/* --- MENU NAV CONTRAST --- */
.menu-nav a {
    color: rgba(0, 0, 0, 0.75);
}

.menu-nav a:hover,
.menu-nav a:focus {
    color: #000;
}

/* --- NEWSLETTER INPUT FOCUS --- */
.newsletter-form input:focus {
    outline: 2px solid var(--c-accent-primary);
    outline-offset: 2px;
}

/* --- EXIT-INTENT POPUP --- */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.exit-popup.active {
    pointer-events: auto;
    opacity: 1;
}

.exit-popup-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.exit-popup-content {
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s var(--ease-out-expo);
}

.exit-popup.active .exit-popup-content {
    transform: scale(1) translateY(0);
}

.exit-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    line-height: 1;
    padding: 0.5rem;
    transition: color 0.2s;
}

.exit-popup-close:hover {
    color: #000;
}

.exit-content-inner {
    text-align: center;
}

.exit-content-inner h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.exit-content-inner p {
    color: var(--c-text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.exit-content-inner .btn-primary {
    margin-top: 0;
}

.exit-dismiss {
    display: inline-block;
    background: none;
    border: none;
    text-decoration: underline;
    cursor: pointer;
    color: #999;
    font-size: 0.9rem;
    padding: 0.5rem;
    transition: color 0.2s;
}

.exit-dismiss:hover {
    color: #666;
}

@media (max-width: 768px) {
    .exit-popup-content {
        padding: 2rem 1.5rem;
        width: 95%;
    }
    .exit-content-inner h3 {
        font-size: 1.4rem;
    }
}

/* --- HOST HERO FOOTER FIX (text contrast on dark bg) --- */
.host-hero .hero-footer {
    color: #94a3b8;
}

.host-hero .scroll-indicator {
    color: #64748b;
}

/* --- PLANOS PAGE HEADER --- */
.page-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #1f334a 100%);
    color: #fff;
}

.page-header .section-subtitle {
    color: #94a3b8;
}

/* --- MENU NAV CONTRAST --- */
.menu-nav a {
    color: rgba(0, 0, 0, 0.75);
}

.menu-nav a:hover,
.menu-nav a:focus {
    color: #000;
}

/* --- FOOTER NEWSLETTER INPUT --- */
.newsletter-form input:focus {
    outline: 2px solid var(--c-accent-primary);
    outline-offset: 2px;
}


