* {
    font-family: "Source Sans 3", sans-serif;
}

body {
    cursor: none;
}

body * {
    cursor: none !important;
}

/*Hero Slider*/
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    cursor: none;
}

.hero-slider * {
    cursor: none;
}

#heroCols {
    display: flex;
    width: 100%;
    height: 100%;
}

.hero-col {
    flex: 1;
}

.hero-col-section {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-col-section img {
    width: 100vw;
    max-width: none;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: var(--img-x);
    pointer-events: none;
}

#heroOverlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 2;
    pointer-events: none;
}

#heroContent {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
}

.hero-panel {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.hero-panel.hero-panel--active {
    opacity: 1;
    pointer-events: none;
}

/* Only actual interactive children inside the active panel receive clicks */
.hero-panel.hero-panel--active a,
.hero-panel.hero-panel--active button {
    pointer-events: auto;
}

/* Prevent inactive panels from intercepting pointer events on active panel */
.hero-panel:not(.hero-panel--active),
.hero-panel:not(.hero-panel--active) * {
    pointer-events: none !important;
}

.hero-cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    mix-blend-mode: difference;
    pointer-events: none;
    z-index: 99999;
    display: none;
}

.hero-cursor-f {
    position: fixed;
    width: 42px;
    height: 42px;
    mix-blend-mode: difference;
    pointer-events: none;
    z-index: 99999;
    opacity: 0.7;
    display: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M92,43.07 L77,17.13 Q73,10.2 65,10.2 L35,10.2 Q27,10.2 23,17.13 L8,43.07 Q4,50 8,56.93 L23,82.87 Q27,89.8 35,89.8 L65,89.8 Q73,89.8 77,82.87 L92,56.93 Q96,50 92,43.07 Z' fill='none' stroke='white' stroke-width='3'/%3E%3Cpath d='M85.5,43.94 L73,22.29 Q69.5,16.23 62.5,16.23 L37.5,16.23 Q30.5,16.23 27,22.29 L14.5,43.94 Q11,50 14.5,56.06 L27,77.71 Q30.5,83.77 37.5,83.77 L62.5,83.77 Q69.5,83.77 73,77.71 L85.5,56.06 Q89,50 85.5,43.94 Z' fill='none' stroke='white' stroke-width='1.5' opacity='0.45'/%3E%3C/svg%3E") no-repeat center / contain;
}

.slider__control {
    z-index: 10;
    position: absolute;
    top: 50%;
    left: 5%;
    width: 60px;
    height: 60px;
    margin-left: -30px;
    margin-top: -30px;
    border-radius: 50%;
    background: transparent;
    border-color: #41b1fb;
    border-width: 1px;
    transition: background-color 0.3s;
    cursor: pointer;
    transition: .5s;
}

.slider__control--right {
    left: 95%;
}

.slider__control:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: scale(1.05);
}

.slider__control-line {
    position: absolute;
    left: 23px;
    top: 50%;
    width: 3px;
    height: 14px;
    transform-origin: 50% 0;
    transform: rotate(-45deg);
}

.slider__control-line:nth-child(2) {
    transform: translateY(1px) rotate(-135deg);
}

.slider__control--right .slider__control-line {
    left: 37px;
    transform-origin: 1px 0;
    transform: rotate(45deg);
}

.slider__control--right .slider__control-line:nth-child(2) {
    transform: translateY(1px) rotate(135deg);
}

.slider__control-line:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #e2e2e2;
    transition: background-color 0.3s;
}

.slider__control:hover .slider__control-line:after {
    background-color: #fff;
}

.slider__control.a--rotation .slider__control-line:after {
    animation: arrowLineRotation 0.49s;
}

.slider__control.a--rotation .slider__control-line:nth-child(1):after {
    animation: arrowLineRotationRev 0.49s;
}

@keyframes arrowLineRotation {
    to {
        transform: rotate(180deg);
    }
}

@keyframes arrowLineRotationRev {
    to {
        transform: rotate(-180deg);
    }
}


/* Bullets */
.slider__bullets {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider__bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: .5s;
}

.slider__bullet.active {
    background: linear-gradient(135deg, #4daaff, #00e5ff);
    transform: scale(1.3);
    width: 30px;
    border-radius: 10px;
}


/* Barra de progresso */
.slider__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.slider__progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(135deg, #0085ff, #00e5ff);
    transition: width linear;
}




.hero-section {
    width: 100%;
    padding: 0 10%;
    pointer-events: all;
}

.hero-inner {
    max-width: 992px;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

@media screen and (max-width:620px) {
    .slider__control {
        border: none;
    }

}


.cert-card-hover:hover {
    /* transform: translatey(-10px) scale(1.02); */
    border-color: rgba(0, 178, 255, 0.5);
    box-shadow: 0 20px 40px -15px rgba(0, 178, 255, 0.3);
    background: rgba(255, 255, 255, 0.07)
}

.text-gradient {
    background: linear-gradient(#456fe8, #19b0ec);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-green {
    background: linear-gradient(135deg, #0abb6b, #AAD35D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.section-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(15, 23, 42, 0.05);
    border-left: 3px solid #00b2ff;
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    padding: 0.25rem 0.75rem;
    border-left: 4px solid #00b2ff;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    width: 32%;
}

.badge .material-symbols-outlined {
    font-size: 1rem;
    color: #4dff4d;
}

@media (max-width: 1024px) {
    .badge {
        width: 100%;
    }
}


.hero-heading {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin: 0;
}

.text-gradient {
    background: linear-gradient(135deg, #4daaff, #00e5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Parágrafo */
.hero-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 520px;
    margin: 0;
}

/* Botões */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-primary {
    background: #2da6ff;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(45, 166, 255, 0.35);
    transition: filter 0.2s;
}

.btn-primary:hover {
    filter: brightness(1.15);
}

.btn-secondary {
    background: #fff;
    color: #1a2a3a;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid #e2e8f0;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-secondary:hover {
    background: #f1f5f9;
}

/* Responsivo */
@media (max-width: 640px) {
    .hero-heading {
        font-size: 2.2rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

.dark-section-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(15, 23, 42, 0.9);
    border-left: 3px solid #00b2ff;
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #00b2ff
}

/* Redesigned Section Styles */
.split-section-container {
    display: flex;
    min-height: 700px;
    background-color: #fcfbf8;
    overflow: hidden;
    position: relative
}

.split-left {
    width: 65%;
    padding: 80px 60px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;

}

.split-right {
    width: 35%;
    position: relative;
    display: flex;
    align-items: center;
    overflow: visible;
}

.carousel-track-diferenciais {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    padding-left: 0;
    will-change: transform
}

.floating-card {
    min-width: 320px;
    max-width: 320px;
    background: white;
    border-radius: 1.5rem;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.5s ease;
    opacity: 0.2;
    transform: scale(0.9);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: .5s;
}

.floating-card:hover {

    background-image: url(../img/bg-clients-solutions.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
}

.floating-card.active {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(24, 68, 165, 0.12);
    z-index: 30;
    border-color: rgba(24, 68, 165, 0.1)
}


.floating-card[data-aos] {
    opacity: 0.2 !important;
    transform: scale(0.9) !important;
}

.floating-card[data-aos].active {
    opacity: 1 !important;
    transform: scale(1.05) !important;
}

.carousel-container {
    position: absolute;
    /* left: -160px; */
    left: 85px;
    width: auto;
    display: flex;
    align-items: center;
    pointer-events: none
}

.carousel-track-diferenciais {
    pointer-events: auto
}

.card-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #339dff, #00e5ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 24px;
    box-shadow: 0 10px 20px #00b2ff4d
}

.card-line {
    width: 1px;
    height: 40px;
    background-color: #e5e7eb;
    margin-bottom: 24px
}

.nav-button {
    width: 52px;
    height: 52px;
    border: 1px solid;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border-color: #41b1fb
}

.nav-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: scale(1.05)
}

.nav-button:active {
    transform: scale(0.95)
}

.nav-button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Background image integration */
.split-left-overlay {
    position: absolute;
    inset: 0;
    background-image: url(https://lh3.googleusercontent.com/aida/ADBb0ugau8L3K8-WGU17jp3XWCwhNUYCPk1_Y69Irj3B1s5ct1L2QmtIaZlZ7VZ5cxJjCDzFCiuV29EVsFOcxII_OImEZTaEjx09hvrAiFot5eYDvppFqiKwTIrCDtdGIAFkJwDLIrfYKv7dSWArMwM7ZyRjEA4z9WNbSiwgvsucinqtDaq81ykppBzsxXYySGhtxBzGPnRyqDXQoPZzJ51wjmWcUiN79pGGvVjJY1i2PSq0Amdm-suKwZke7iW_P-H2dtpktm8F_oGS8A);
    background-size: cover;
    background-position: center;
    z-index: -1
}

.split-left-gradient2 {
    position: absolute;
    inset: 0;
    width: 85%;
    z-index: 32;
    background-image: url(../img/bg-diferencial.webp);
    background-size: cover;
    background-position: center;
}

/*Historia*/

.hist-carousel {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 520px;
    margin: 0 auto;
}

.hist-carousel--blob {
    position: absolute;
    z-index: 0;
    top: 6%;
    left: 6%;
    width: 88%;
    height: 88%;
    background: rgba(24, 68, 165, 0.10);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    will-change: border-radius;
}

.hist-carousel--images {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    will-change: border-radius;
}

.hist-carousel img {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.6s cubic-bezier(0.29, 0.57, 0.12, 0.99), transform 0.6s cubic-bezier(0.29, 0.57, 0.12, 0.99);
    opacity: 0;
    transform: scale(0.92) translateZ(0);
}

.hist-carousel img.active {
    transform: scale(1) translateZ(0);
    opacity: 1;
}

.hist-carousel--nav {
    position: absolute;
    z-index: 10;
    bottom: 8%;
    left: 8%;
    display: flex;
    gap: 10px;
}

.hist-carousel--btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.2s, background 0.2s;
    color: #fff;
}

.hist-carousel--btn.prev {
    background: #00b2ff;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hist-carousel--btn.prev:hover {
    background: rgba(255, 255, 255, 0.25);
}

.hist-carousel--btn.next {
    background: #00b2ff;
    box-shadow: 0 8px 20px -4px rgba(0, 178, 255, 0.5);
}

.hist-carousel--btn.next:hover {
    transform: scale(1.08);
}

.hist-carousel--btn:active {
    transform: scale(0.92);
}

.hist-carousel--dots {
    position: absolute;
    z-index: 10;
    bottom: 8%;
    right: 8%;
    display: flex;
    gap: 6px;
    align-items: center;
}

.hist-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00b2ff;
    transition: all 0.3s;
    cursor: pointer;
}

.hist-dot.active {
    background: #00b2ff;
    width: 20px;
    border-radius: 3px;
}



.grid-line {
    background-image: linear-gradient(rgba(226, 232, 240, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(226, 232, 240, 0.1) 1px, transparent 1px), linear-gradient(rgba(226, 232, 240, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(226, 232, 240, 0.05) 1px, transparent 1px);
    background-size: 80px 80px, 80px 80px, 20px 20px, 20px 20px
}

.bg-gradient-bonin {
    /* background: linear-gradient(135deg, #0a0e17 0%, #1844a5 100%);
    background-color: rgb(10 14 23 / var(--tw-bg-opacity, 1)); */
    background:
        radial-gradient(ellipse 125% 100% at 95% 75%, rgba(100, 140, 200, 0.3) 0%, transparent 55%),
        radial-gradient(ellipse 90% 75% at 100% 100%, rgba(26, 58, 110, 0.85) 0%, transparent 70%),
        linear-gradient(160deg, #04050c 0%, #060b17 100%);
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
}

.glass-card::before,
.glass-card::after {
    border-radius: inherit;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    transition: opacity 500ms;
    width: 100%;
}

.glass-card:hover::before {
    opacity: 1;
}

#cert-cards:hover .glass-card::after {
    opacity: 1;
}

.glass-card::before {
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y),
            rgba(255, 255, 255, 0.06),
            transparent 40%);
    z-index: 3;
}

.glass-card::after {
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y),
            rgba(0, 179, 255, 0.245),
            transparent 40%);
    z-index: 1;
}

.cert-card-body {
    background: transparent;
    border-radius: calc(1rem - 1px);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    margin: 1px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

/* Responsivo: breakpoint mobile */
@media (max-width: 768px) {
    .split-section-container {
        flex-direction: column;
        min-height: auto;
    }

    .split-left {
        width: 100%;
        padding: 60px 24px 40px;
    }

    .split-right {
        width: 100%;
        min-height: 420px;
        overflow: hidden;
        display: flex;
        align-items: center;
        padding: 3em 0;
    }

    .carousel-container {
        position: relative;
        left: 200px;
        width: 100%;
        padding: 0 24px;
        box-sizing: border-box;
    }

    .carousel-track-diferenciais {
        width: 100%;
    }


    .split-left-gradient2 {
        width: 100%;

    }
}

@media (max-width: 610px) {

    .carousel-container {
        left: 0px !important;
    }

    .floating-card {
        min-width: calc(100vw - 48px);
        max-width: calc(100vw - 48px);
    }

}

/*Soluções*/

.solution-section {
    position: relative;
    background: #0a0e17
}

.solution-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    background-attachment: fixed;
}

.solution-bg.active {
    opacity: 0.35
}

.solution-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to bottom, rgba(10, 14, 23, 0.8) 0%, rgba(10, 14, 23, 0.4) 50%, rgba(10, 14, 23, 0.9) 100%); */
    z-index: 1
}

#solCols {
    position: absolute;
    inset: 0;
    display: flex;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.sol-col {
    flex: 1;
    position: relative;
}

.sol-col-section {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.sol-col-section img {
    width: 100vw;
    max-width: none;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: var(--img-x);
    pointer-events: none;
    opacity: 0.35;
}

.tab-button.active {
    background: rgba(0, 178, 255, 0.3);
    color: white;
    box-shadow: 0 15px 30px -5px rgba(0, 178, 255, 0.2);
    border-color: #00b2ff;
    transform: translatey(-4px)
}

.content-panel {
    display: none
}

.content-panel.active {
    display: block;
    animation: contentFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards
}

/* ── Solution sub-service pills ── */
.sol-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.sol-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.22s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    position: relative;
}

.sol-pill::after {
    content: '\203A';
    font-size: 16px;
    line-height: 1;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.sol-pill:hover {
    border-color: rgba(0, 178, 255, 0.6);
    color: #fff;
    background: rgba(0, 178, 255, 0.18);
    box-shadow: 0 4px 16px rgba(0, 178, 255, 0.2);
    transform: translateY(-2px);
}

.sol-pill:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.sol-pill.active {
    border-color: #00b2ff;
    color: #fff;
    background: rgba(0, 178, 255, 0.28);
    box-shadow: 0 4px 16px rgba(0, 178, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.sol-pill.active::after {
    opacity: 1;
    transform: translateX(0);
    color: #00b2ff;
}

.sol-pill .material-symbols-outlined {
    font-size: 16px;
    opacity: 0.85;
}

.sol-dynamic {
    transition: opacity 0.2s ease;
}

.sol-dynamic.fading {
    opacity: 0;
}


.tab-button {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3)
}

.tab-button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    transition: background 0.4s ease;
    z-index: 1
}

.tab-button.active::before {
    background: rgba(0, 178, 255, 0.5)
}

.tab-button:hover::before {
    background: rgba(0, 178, 255, 0.3)
}

.tab-button:hover {
    transform: translatey(-4px);
    border-color: rgba(255, 255, 255, 0.4) !important
}

.tab-button>* {
    position: relative;
    z-index: 2
}

@media (max-width: 768px) {
    .solution-section {
        min-height: 100svh;
        padding-bottom: 0;
    }

    /* Conteúdo principal */
    .max-w-7xl.mx-auto.px-6.flex-grow {
        padding-top: 6rem;
        padding-bottom: 260px;
        /* espaço para os tabs */
        align-items: flex-start;
    }

    /* Título menor no mobile */
    .content-panel h1 {
        font-size: 2.5rem;
    }

    .content-panel p {
        font-size: 1rem;
    }

    /* Container dos tabs */
    .absolute.bottom-12 {
        bottom: 0;
        padding: 0;
    }

    .absolute.bottom-12 .max-w-7xl {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 12px 16px 20px;
        gap: 10px;
        /* Esconde scrollbar visualmente */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .absolute.bottom-12 .max-w-7xl::-webkit-scrollbar {
        display: none;
    }

    /* Cada tab no mobile */
    .tab-button {
        min-width: 160px !important;
        flex: 0 0 160px !important;
        padding: 20px 16px !important;
        border-radius: 16px !important;
        scroll-snap-align: start;
        font-size: 12px !important;
    }

    /* Tab ativo no mobile sobe levemente */
    .tab-button.active {
        transform: translateY(-4px);
    }
}

@media (max-width: 768px) {
    .absolute.bottom-12 .max-w-7xl {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 12px 16px 20px;
        gap: 10px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        /* Remove max-width para ocupar tela toda */
        max-width: 100% !important;
        box-sizing: border-box;
        margin-left: 24px;
        margin-right: 24px;
    }

    .tab-button {
        min-width: calc(40% - 15px) !important;
        flex: 0 0 calc(0% - 0px) !important;
        padding: 20px 12px !important;
        border-radius: 16px !important;
        scroll-snap-align: start;
        font-size: 12px !important;
        box-sizing: border-box;
        height: 100px;
    }


}

@media screen and (max-width:425px) {
    .tab-button {
        /* Cada tab ocupa exatamente 1/4 da tela menos gaps e padding */
        min-width: calc(50% - 21px) !important;
        flex: 0 0 calc(80% - 0px) !important;
        padding: 20px 12px !important;
        border-radius: 16px !important;
        scroll-snap-align: start;
        font-size: 12px !important;
        box-sizing: border-box;
    }
}

/* Contact Section Specific Styles */
.contact-input {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    transition: all 0.3s ease;
    font-family: "Source Sans 3", sans-serif;
}

.contact-input:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: #00b2ff;
    box-shadow: 0 0 0 2px rgba(0, 178, 255, 0.4);
    outline: none
}

.contact-input::placeholder {
    color: #e2e8f0;
    font-weight: 600
}

.contact-section-container {
    background-color: rgb(10 14 23 / var(--tw-bg-opacity, 1));
}

/*Clientes*/

.carousel-marquee-row {
    overflow: hidden;
    width: 100%;
}

.carousel-track-row {
    display: flex;
    width: max-content;
    align-items: center;
}

.carousel-track-left {
    animation: marquee-left 25s linear infinite;
}

.carousel-track-right {
    animation: marquee-right 25s linear infinite;
}

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

    100% {
        transform: translateX(calc(-250px * 10));
    }
}

@keyframes marquee-right {
    0% {
        transform: translateX(calc(-250px * 10));
    }

    100% {
        transform: translateX(0);
    }
}



/*Cases de Sucesso*/
.case-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -15px rgba(44, 76, 146, 0.15);
}

.case-card:hover .case-image {
    transform: scale(1.08);
}

.cases-container {
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.cases-container::-webkit-scrollbar {
    display: none;
}





/*Bonews*/
.bg-bonews {
    background-image: url(../img/bg-clients-solutions\ 1.webp);
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    background-attachment: fixed;
}


/*Preloader*/

.loader-container {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 24px;
    background-image: url(../img/Wallpaper.webp);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;

    /* Transição de saída suave */
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-container.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-container img {
    width: 600px;
    height: auto;
}

.loader {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
        box-shadow: 0 -1px 0 rgb(0, 32, 81);
    }

    50% {
        transform: rotate(180deg);
        box-shadow: 0 -1px 0 rgb(0, 32, 81);
        ;
    }

    100% {
        transform: rotate(360deg);
        box-shadow: 0 -1px 0 rgb(0, 32, 81);
        ;
    }
}



/*Mouse Icon Amimation*/
.icon-scroll,
.icon-scroll:before {
    position: absolute;
    left: 50%;
}

.icon-scroll {
    width: 40px;
    height: 70px;
    margin-left: -20px;
    bottom: 5%;
    margin-top: -35px;
    box-shadow: inset 0 0 0 1px #fff;
    border-radius: 25px
}

.icon-scroll:before {
    content: '';
    width: 8px;
    height: 8px;
    background: #fff;
    margin-left: -4px;
    top: 8px;
    border-radius: 4px;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-name: scroll;
}

@keyframes scroll {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(46px);
    }
}

.box-shadow {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}