/* Global & Reset */
:root {
    --bg-dark: #050505;
    --bg-card: #121212;
    --bg-card-light: #1f1f1f;
    --text-main: #ffffff;
    --text-muted: #888888;

    /* Blue colors */
    --primary: #0055ff;
    --primary-light: #3388ff;
    --primary-dark: #0033cc;
    --primary-glow: rgba(0, 85, 255, 0.4);

    --font-main: 'Outfit', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 999px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: clip;
    /* FIX: 'hidden' quebra globalmente o position: sticky em dispositivos mobile/iOS. 'clip' bloqueia o vazamento sem quebrar a física. */
    position: relative;
}

/* Typography & Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.text-primary {
    color: var(--primary);
}

.text-white {
    color: var(--text-main);
}

.text-black {
    color: var(--bg-dark);
}

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

.text-right {
    text-align: right;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Buttons */
.btn-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--text-main);
    color: var(--bg-dark);
    padding: 6px 6px 6px 20px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-contact-icon {
    background: var(--primary);
    color: var(--text-main);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-contact:hover {
    transform: scale(1.05);
}

.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--text-main);
    padding: 16px 32px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 8px 30px var(--primary-glow);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px var(--primary-glow);
}

.btn-consult-white {
    display: inline-block;
    background: var(--text-main);
    color: var(--bg-dark);
    padding: 16px 32px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-consult-white:hover {
    transform: scale(1.05);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 24px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(12px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo {
    font-size: 1.25rem;
    text-decoration: none;
    color: var(--text-main);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-icon {
    color: var(--text-main);
    background: var(--bg-card);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* Background Glows */
.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    pointer-events: none;
}

.glow-1 {
    top: 10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(0, 85, 255, 0.2);
}

.glow-2 {
    top: 40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(0, 85, 255, 0.15);
}

/* Hero Section */
.hero-section {
    padding-top: 160px;
    padding-bottom: 60px;
    position: relative;
}

.hero-02-style {
    position: relative;
    overflow: hidden;
    padding-top: 180px;
    padding-bottom: 80px;
}

.hero-container-02 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.hero-left-copy {
    position: relative;
    z-index: 10;
}

.hero-title-02 {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.text-glow-primary {
    text-shadow: 0 0 20px var(--primary-glow);
}

.hero-subtitle-02 {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.6;
}

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.btn-glow {
    box-shadow: 0 0 30px var(--primary-glow), 0 0 10px var(--primary);
    padding: 20px 40px;
    font-size: 1.1rem;
}

.hero-subtext-cta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-left: 16px;
}

.hero-right-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.hero-orb-glow {
    position: absolute;
    width: 900px;
    height: 900px;
    background: var(--primary);
    filter: blur(220px);
    border-radius: 50%;
    opacity: 0.4;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-main-img {
    width: 160%;
    max-width: none;
    position: absolute;
    right: -30%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
    /* Fades perfectly to transparent before hitting the hard edges */
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 40%, transparent 75%);
    mask-image: radial-gradient(ellipse at 50% 50%, black 40%, transparent 75%);
}

.float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(18, 18, 18, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: var(--radius-lg);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: float 4s ease-in-out infinite;
}

.badge-1 {
    top: 15%;
    right: 5%;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 20%;
    left: 0%;
    animation-delay: 2s;
}

.badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text span {
    font-weight: 700;
    font-size: 0.95rem;
}

.badge-text small {
    color: var(--text-muted);
    font-size: 0.75rem;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@media (max-width: 992px) {
    .hero-02-style {
        padding-top: 140px;
        padding-bottom: 40px;
        min-height: auto;
    }

    .hero-container-02 {
        display: flex;
        flex-direction: column-reverse;
        text-align: center;
        gap: 0px;
    }

    .hero-cta-wrapper {
        align-items: center;
        margin: 0 auto 40px auto;
        justify-content: center;
    }

    .hero-subtitle-02 {
        margin: 0 auto 24px;
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-title-02 {
        font-size: clamp(2.4rem, 8vw, 3rem);
        margin-bottom: 16px;
    }

    .hero-right-visual {
        position: relative;
        min-height: 400px;
        width: 100%;
        margin-top: -20px;
        margin-bottom: 20px;
        overflow: visible;
        display: flex;
        justify-content: center;
    }

    .hero-main-img {
        width: 100%;
        max-width: 400px;
        position: absolute;
        right: auto;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) scale(1.3);
        mask-image: radial-gradient(ellipse at 50% 50%, black 50%, transparent 80%);
        -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 50%, transparent 80%);
    }

    .hero-orb-glow {
        width: 300px;
        height: 300px;
    }

    .badge-1 {
        top: 10%;
        right: 0%;
        transform: scale(0.85);
        transform-origin: right top;
    }

    .badge-2 {
        bottom: 10%;
        left: 0%;
        transform: scale(0.85);
        transform-origin: left bottom;
    }
}

.hero-pills {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
    z-index: 10;
}

.pill-card {
    background: var(--text-main);
    color: var(--bg-dark);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    transition: var(--transition);
    cursor: pointer;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pill-card h4 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.pill-card p {
    font-size: 0.85rem;
    color: #444;
    opacity: 0.8;
}

.active-pill,
.pill-card:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--text-main);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--primary-glow);
}

.active-pill p,
.pill-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Impact Section */
.impact-section {
    padding: 120px 0;
}

.impact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.section-title {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    letter-spacing: -3px;
    line-height: 0.9;
    margin-bottom: 40px;
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-pill {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-muted);
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    font-family: var(--font-main);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-pill.active,
.filter-pill:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-main);
}

.impact-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.impact-card {
    background: var(--text-main);
    color: var(--bg-dark);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.impact-card h4 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.impact-card p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 32px;
}

.impact-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.i-stat {
    display: flex;
    flex-direction: column;
}

.i-stat span {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.i-stat small {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
    max-width: 150px;
}

.large-number {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -2px;
}

/* Solutions Section (Baunfire Style) */
.bf-section {
    padding: 120px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bf-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: flex-start;
}

.bf-side-label {
    position: absolute;
    right: 40px;
    top: 120px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
}

.bf-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: -2px;
    position: sticky;
    top: 120px;
}

.bf-list {
    display: flex;
    flex-direction: column;
}

.bf-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-muted);
}

.bf-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bf-item h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 500;
    margin: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s ease;
}

.bf-plus {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    color: var(--primary);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s ease;
}

.bf-item:hover {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.bf-item:hover h3 {
    transform: translateX(20px);
    color: #fff;
}

.bf-item:hover .bf-plus {
    transform: rotate(90deg) scale(1.2);
    color: #fff;
}

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

    .bf-title {
        position: static;
    }
}

@media (max-width: 768px) {
    .bf-side-label {
        display: none;
    }

    .bf-item {
        padding: 30px 0;
    }

    .bf-item:hover h3 {
        transform: translateX(10px);
    }
}

/* Baunfire Sticky Scroll Slider Engine */
.bf-scroll-track {
    height: 400vh;
    position: relative;
    background: transparent;
    z-index: 1;
}

.bf-sticky-container {
    position: -webkit-sticky;
    /* iOS Mobile Fallback */
    position: sticky;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    transform: translateZ(0);
    /* Força Aceleração de Hardware do iOS pra renderizar o Sticky */
}

.bf-massive-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bf-massive-text {
    position: absolute;
    font-size: clamp(6rem, 18vw, 22rem);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.02);
    /* Preenchimento extremamente sutil */
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.15);
    /* Contorno bem mais visivel e reforçado */
    letter-spacing: -2px;
    white-space: nowrap;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.bf-massive-text.is-active {
    opacity: 1;
    transform: translateY(0);
}

.bf-center-col {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bf-slant-image {
    width: 500px;
    height: 520px;
    -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    /* Suporte iOS */
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    overflow: hidden;
    position: relative;
    background: #111;
    z-index: 5;
    transform: translateZ(0);
}

.bf-slant-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    height: 100%;
    object-fit: cover;
    transform: translateX(-15%) scale(1.1);
    /* initial hidden state */
    opacity: 0;
    transition: opacity 0.8s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.bf-slant-image img.is-active {
    opacity: 1;
    transform: translateX(-15%) scale(1);
}

@media (max-width: 992px) {
    .bf-scroll-track {
        height: auto;
        min-height: 50vh;
        padding: 40px 0;
    }

    .bf-sticky-container {
        position: relative;
        height: auto;
        min-height: 380px;
        padding: 0;
    }

    .bf-massive-text {
        font-size: 16vw;
    }

    .bf-slant-image {
        width: 80vw;
        max-width: 300px;
        height: 320px;
    }
}

@media (max-width: 576px) {
    .bf-scroll-track {
        min-height: 40vh;
        padding: 20px 0;
    }

    .bf-sticky-container {
        min-height: 320px;
    }

    .bf-massive-text {
        font-size: 15vw;
    }

    .bf-slant-image {
        width: 70vw;
        max-width: 280px;
        height: 300px;
    }
}

.bg-white {
    background: #fff !important;
}

/* Work Section */
.work-section {
    padding: 100px 0;
}

.work-header {
    margin-bottom: 60px;
}

.work-title {
    font-size: clamp(3rem, 6vw, 5rem);
    letter-spacing: -2px;
}

.work-slider {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
    height: 500px;
    margin-bottom: 40px;
}

.work-slide {
    width: 250px;
    height: 380px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    transition: var(--transition);
    overflow: hidden;
    position: relative;
    opacity: 0.4;
    cursor: pointer;
}

.work-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: var(--transition);
}

.work-slide.active {
    width: 320px;
    height: auto;
    min-height: 480px;
    opacity: 1;
    z-index: 2;
    box-shadow: 0 20px 50px var(--primary-glow);
    padding-bottom: 30px;
}

.work-slide.active img {
    filter: grayscale(0%);
    height: 250px;
}

.slide-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.slide-info {
    padding: 24px;
    color: var(--text-main);
}

.slide-info h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.slide-info p {
    font-size: 0.8rem;
    opacity: 0.9;
}

.slide-link-btn {
    position: absolute;
    bottom: -24px;
    left: 20px;
    width: 48px;
    height: 48px;
    background: var(--text-main);
    color: var(--bg-dark);
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
}

.work-slide.active:hover .slide-link-btn {
    bottom: 24px;
    opacity: 1;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: var(--transition);
    cursor: pointer;
}

.dot.active {
    width: 24px;
    border-radius: 10px;
    background: var(--primary);
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: var(--bg-card-light);
    border-radius: 40px;
    margin: 40px;
}

.team-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.team-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -2px;
}

.team-header-flex .slider-controls {
    position: static;
}

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

.team-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 16px;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.team-img {
    width: 100%;
    height: 250px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 20px;
}

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

.role {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-info h5 {
    font-size: 1.25rem;
    margin-top: 4px;
}

/* Footer / Contact */
.footer-contact {
    padding: 160px 0 60px;
    position: relative;
    overflow: hidden;
}

.contact-ring-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
    position: relative;
}

.circular-text {
    animation: rotate 20s linear infinite;
    transform-origin: center;
    z-index: 2;
}

.glow-bg-primary-center {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary);
    filter: blur(150px);
    border-radius: 50%;
    opacity: 0.3;
}

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

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-brand {
    font-size: 1.25rem;
}

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

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

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

.footer-cta h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -2px;
    margin-bottom: 40px;
}

.contact-action {
    display: flex;
    align-items: center;
    gap: 32px;
    justify-content: flex-end;
}

.footer-email {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-email:hover {
    color: var(--text-main);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-left-desc {
        margin: 0 auto;
    }

    .hero-right {
        align-items: center;
        flex-direction: row;
        justify-content: center;
    }

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

    .impact-container {
        grid-template-columns: 1fr;
    }

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

    .sol-02 {
        grid-column: 1 / 3;
    }

    .sol-04,
    .sol-05,
    .sol-06 {
        grid-column: auto;
    }

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

@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden !important;
        position: relative;
        width: 100%;
        max-width: 100vw;
    }

    .glow-1,
    .glow-2 {
        display: none !important;
    }

    .container {
        padding: 0 24px;
    }

    .nav-links {
        display: none;
    }

    .hide-on-mobile {
        display: none;
    }

    .btn-contact {
        padding: 4px;
        gap: 0;
        border-radius: 50%;
    }

    .btn-contact-icon {
        width: 36px;
        height: 36px;
        margin: 0;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero-title-02 {
        font-size: clamp(2.4rem, 12vw, 2.8rem);
        margin-bottom: 16px;
    }

    .hero-pills {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 40px !important;
    }

    .pill-card {
        padding: 20px;
        border-radius: 12px;
    }

    .pill-card h4 {
        font-size: 1.15rem;
        margin-bottom: 8px;
    }

    .pill-card p {
        font-size: 0.9rem;
    }

    .impact-stats-grid {
        grid-template-columns: 1fr;
    }

    .solutions-header {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 40px;
    }

    .solutions-title-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .solutions-subtitle {
        font-size: 1.2rem;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }

    .work-slider {
        gap: 10px;
    }

    .work-slide {
        display: none;
    }

    .work-slide.active {
        display: block;
        width: 100%;
        height: auto;
        min-height: 400px;
        padding-bottom: 40px;
    }

    .work-slide.active img {
        height: 220px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-section {
        margin: 20px;
        padding: 60px 20px;
    }

    .hidden-mobile {
        display: none !important;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    .contact-action {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        justify-content: center;
    }

    .footer-cta {
        text-align: center;
        width: 100%;
    }
}

/* Compare Section (Antes vs Depois) */
.transformation-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.compare-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.compare-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    flex: 1;
    text-align: left;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.compare-card.after {
    background: var(--bg-card-light);
    border-color: rgba(0, 85, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 85, 255, 0.15);
}

.compare-badge {
    position: absolute;
    top: -16px;
    left: 40px;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.bg-dark {
    background: #000 !important;
    color: #fff !important;
    border: 1px solid #333;
}

.compare-card h3 {
    font-size: 2rem;
    margin-bottom: 24px;
}

.compare-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-muted);
}

.compare-card.after .compare-list li {
    color: var(--text-main);
    font-weight: 500;
}

.compare-arrow {
    width: 64px;
    height: 64px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 900px) {
    .compare-grid {
        flex-direction: column;
        gap: 40px;
    }

    .compare-arrow {
        transform: rotate(90deg);
        margin: -10px 0;
    }

    .compare-card {
        width: 100%;
        padding: 40px 24px;
    }

    .compare-badge {
        left: 24px;
    }

    .footer-cta h2 {
        font-size: 2rem !important;
    }
}

/* =========================================
   PREMIUM CONVERSION FEATURES
   ========================================= */

/* 1. Scroll Animations (AOS Custom) */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

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

.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

/* 2. Floating WhatsApp Button */
.float-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    text-decoration: none;
    transition: var(--transition);
}

.float-wa svg {
    width: 32px;
    height: 32px;
}

.float-wa:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.wa-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: wa_ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes wa_ping {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .float-wa {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}

/* 3. FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--bg-card);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-item {
    background: var(--bg-card-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: var(--text-main);
    padding: 24px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-main);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    color: var(--primary);
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 30px 24px 30px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

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

.faq-item.active {
    border-color: rgba(0, 85, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* 4. Logo Infinite Carousel */
.logo-carousel-wrapper {
    background: var(--bg-card);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

/* Fading edges */
.logo-carousel-wrapper::before,
.logo-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-card) 0%, transparent 100%);
}

.logo-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-card) 0%, transparent 100%);
}

.logo-carousel-title {
    text-align: center;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-weight: 700;
}

.logo-track {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: scroll_track 30s linear infinite;
    align-items: center;
}

.logo-item {
    font-size: 1.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -1px;
    transition: var(--transition);
}

.logo-item:hover {
    color: var(--text-main);
}

.logo-img {
    height: 46px;
    opacity: 0.6;
    filter: grayscale(100%) brightness(250%);
    transition: var(--transition);
}

.logo-item:hover .logo-img {
    opacity: 1;
    filter: grayscale(0%) brightness(100%);
}

@keyframes scroll_track {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-25% - 20px));
    }
}

@media (max-width: 768px) {

    .logo-carousel-wrapper::before,
    .logo-carousel-wrapper::after {
        width: 50px;
    }

    .logo-track {
        gap: 50px;
    }

    @keyframes scroll_track {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-25% - 12.5px));
        }
    }
}