:root {
    --brand-red: #c62626;

    --brand-white: #ffffff;

    --brand-black: #0c0b0b;

    --text: #e9e9e9;
    --muted: #bdbdbd;
    --card: #141414;
    --ring: rgba(198, 38, 38, 0.35);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
    color: var(--text);
    background: linear-gradient(180deg, #0c0b0b 0%, #0a0a0a 100%);
}

a {
    color: inherit;
    text-decoration: none;
    pointer-events: auto;
    cursor: pointer;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1120px, 92%);
    margin-inline: auto;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 0 0.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        width: 98%;
        padding: 0 0.5rem;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .9rem 1.2rem;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
    font-size: 0.95rem;
    text-align: center;
    justify-content: center;
    min-height: 44px;
    pointer-events: auto;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

@media (max-width: 768px) {
    .btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 250px;
    }
}

.achievement-section {
    margin-top: -200px;
    position: relative;
    z-index: 9;
}

.achievement-section-3 {
    background-color: var(--theme);
    position: relative;
}

.achievement-section-3 .shape-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: -50px;
}

@media (max-width: 1399px) {
    .achievement-section-3 .shape-image {
        display: none;
    }
}

.achievement-section-3 .shape-image img {
    width: 100%;
    height: 100%;
}

.achievement-wrapper {
    padding: 100px 80px;
    background-color: #0A2DA4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-right: -25%;
    position: relative;
    z-index: 9;
}

@media (max-width: 1600px) {
    .achievement-wrapper {
        margin-right: 0;
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .achievement-wrapper {
        padding: 50px 40px;
    }
}

@media (max-width: 575px) {
    .achievement-wrapper {
        padding: 60px 50px;
        text-align: center;
        justify-self: center;
        gap: 30px;
    }
}

.achievement-wrapper .counter-area {
    display: flex;
    align-items: center;
    gap: 100px;
}

@media (max-width: 1399px) {
    .achievement-wrapper .counter-area {
        flex-wrap: wrap;
        gap: 40px;
        justify-content: space-between;
        width: 100%;
    }
}

@media (max-width: 575px) {
    .achievement-wrapper .counter-area {
        text-align: center;
        justify-content: center;
        gap: 20px;
    }
}

.achievement-wrapper .counter-area .counter-items:not(:last-child) {
    border-right: 1px solid var(--border3);
    padding-right: 70px;
}

@media (max-width: 1199px) {
    .achievement-wrapper .counter-area .counter-items:not(:last-child) {
        padding-right: 0;
        border: none;
    }
}

.achievement-wrapper .counter-area .counter-items .content {
    margin-top: 20px;
}

.achievement-wrapper .counter-area .counter-items .content h2 {
    color: var(--white);
}

.achievement-wrapper .counter-area .counter-items .content p {
    color: var(--white);
    margin-top: 5px;
}

.achievement-wrapper.style-2 {
    background-color: initial;
    margin-right: 0;
    padding: 80px 0;
}

.achievement-wrapper.style-2 .counter-area {
    gap: 70px;
}

@media (max-width: 575px) {
    .achievement-wrapper.style-2 .counter-area {
        gap: 30px;
    }
}

.achievement-wrapper.style-2 .counter-area .counter-items:not(:last-child) {
    border-right: 2px solid rgba(243, 247, 251, 0.16);
}

@media (max-width: 1199px) {
    .achievement-wrapper.style-2 .counter-area .counter-items:not(:last-child) {
        border: none;
    }
}

.btn-primary {
    background: var(--brand-red);
    color: var(--brand-white);
    box-shadow: 0 8px 20px var(--ring);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px var(--ring);
}

.btn-ghost {
    color: var(--text);
    background: transparent;
}

.btn-ghost:hover {
    background: #161616;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(12, 11, 11, 0.65);
    border-bottom: 1px solid #161616;
}

/* Garantir que elementos do header sejam clicáveis */
header a,
header button,
header .btn,
header .menu-btn,
header .nav-links a,
header .nav-cta a {
    pointer-events: auto !important;
    cursor: pointer !important;
    position: relative;
    z-index: 1003 !important;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-weight: 800;
    letter-spacing: .3px;
}

.brand-badge {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    background: var(--brand-red);
    box-shadow: 0 0 0 6px rgba(198, 38, 38, .15);
}

.nav-links {
    display: none;
    gap: 1.2rem;
    align-items: center;
}

.nav-links a {
    color: var(--muted);
    font-weight: 600;
    font-size: .95rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    pointer-events: auto;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.nav-links a:hover {
    color: var(--brand-white);
    background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
    display: none;
    gap: 0.5rem;
    pointer-events: auto;
    position: relative;
    z-index: 1001;
}

/* === MENU MOBILE SIMPLES === */

/* Menu button */
.menu-btn {
    background: transparent;
    color: var(--brand-white);
    border: 1px solid #2a2a2a;
    padding: .75rem 1rem;
    border-radius: 10px;
    display: none;
    align-items: center;
    min-height: 44px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ff4444;
}

/* Mobile panel */
.mobile-panel {
    display: none;
    padding: 20px;
    border-top: 1px solid #333;
    background: rgba(12, 11, 11, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease-out;
    height: 100vh;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-panel a {
    display: block;
    padding: 15px 0;
    color: var(--muted);
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 1px solid #1a1a1a;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mobile-panel a:hover {
    color: var(--brand-white);
    background: rgba(255, 68, 68, 0.1);
    padding-left: 15px;
    border-left: 3px solid #ff4444;
}

.mobile-panel a:last-of-type {
    border-bottom: none;
}

.mobile-cta-buttons {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.mobile-cta-buttons .btn {
    width: 90%;
    max-width: 280px;
    justify-content: center;
    text-align: center;
    padding: 12px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 68, 68, 0.3);
}

/* Desktop - mostrar nav normal */
@media (min-width: 769px) {
    .nav-links {
        display: flex !important;
        gap: 1.2rem;
        align-items: center;
    }

    .nav-cta {
        display: inline-flex !important;
    }

    .menu-btn {
        display: none !important;
    }

    .mobile-panel {
        display: none !important;
    }
}

/* Mobile - mostrar menu button */
@media (max-width: 768px) {
    .nav-links {
        display: none !important;
    }

    .nav-cta {
        display: none !important;
    }

    .menu-btn {
        display: inline-flex !important;
    }

    .nav {
        padding: 1rem 0;
    }

    .brand {
        font-size: 1.1rem;
    }
}

.hero-photo {
    position: relative;
    overflow: hidden;
}

.hero-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1200px 600px at 80% -10%, rgba(198, 38, 38, .22), transparent 55%),
        radial-gradient(800px 400px at 10% 10%, rgba(198, 38, 38, .14), transparent 50%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1600" height="900"><defs><linearGradient id="g" x1="0" y1="0" x2="1" y2="1"><stop offset="0%" stop-color="%230c0b0b"/><stop offset="100%" stop-color="%23070707"/></linearGradient></defs><rect width="100%" height="100%" fill="url(%23g)"/><g opacity="0.18" fill="none" stroke="%23ffffff" stroke-opacity="0.06"><path d="M0,750 C400,680 800,820 1200,750 1400,720 1600,780 1600,780 L1600,900 0,900Z"/></g></svg>');
    background-size: cover;
    background-position: center;
    filter: saturate(120%);
}

.hero-photo .container {
    position: relative;
    padding: 80px 0 0 0;
}

@media (max-width: 768px) {
    .hero-photo .container {
        padding: 40px 0 0 0;
    }
}

@media (max-width: 480px) {
    .hero-photo .container {
        padding: 20px 0 0 0;
    }
}

.photo-frame {
    height: clamp(220px, 40vw, 380px);
    border-radius: 22px;
    outline: 1px solid #1f1f1f;
    background: linear-gradient(180deg, #101010 0%, #0b0b0b 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .45), inset 0 0 0 1px rgba(255, 255, 255, .03);
}

@media (max-width: 768px) {
    .photo-frame {
        height: clamp(180px, 35vw, 300px);
        border-radius: 16px;
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .photo-frame {
        height: clamp(160px, 40vw, 250px);
        border-radius: 12px;
        margin: 0 0.5rem;
    }
}

.photo-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 36px 36px, 36px 36px;
}

.photo-orbit {
    position: absolute;
    inset: -20%;
    background: radial-gradient(closest-side, rgba(198, 38, 38, .24), transparent 70%);
    filter: blur(16px);
    animation: float 12s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }

    100% {
        transform: translateY(0)
    }
}

.hero {
    padding: 44px 0 80px;
}

/* Seção Hero Responsiva */
.hero-responsive {
    height: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
}

@media (max-width: 768px) {
    .hero {
        padding: 30px 0 60px;
        text-align: center;
    }

    .hero-responsive {
        padding: 20px 1rem 40px;
        justify-content: center;
        min-height: 100vh;
        min-height: 100dvh;
        /* Tela cheia dinâmica */
        height: 100vh;
        height: 100dvh;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px;
    }

    .hero-responsive {
        padding: 20px 1rem 40px;
        justify-content: flex-end;
        min-height: 100vh;
        min-height: 100dvh;
        /* Garante tela cheia no mobile */
        height: 100vh;
        height: 100dvh;
    }
}

.eyebrow {
    color: var(--brand-red);
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-size: .78rem;
}

@media (max-width: 480px) {
    .eyebrow {
        font-size: 0.75rem;
    }
}

.title {
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    line-height: 1.1;
    margin: .6rem 0 1rem;
    color: var(--brand-white);
    font-weight: 850;
}

@media (max-width: 768px) {
    .title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        line-height: 1.2;
        margin: 1rem 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: clamp(1.5rem, 7vw, 2rem);
        margin: 0.8rem 0 1.2rem;
    }
}

.subtitle {
    color: var(--muted);
    font-size: clamp(1rem, 1.6vw, 1.1rem);
    max-width: 820px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .subtitle {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
        max-width: 100%;
        line-height: 1.7;
        margin: 0 auto;
    }
}

.hero-ctas {
    display: flex;
    gap: .8rem;
    margin-top: 1.4rem;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        gap: 0.8rem;
        margin-top: 1.5rem;
    }
}

/* Botões Hero Responsivos */
.hero-ctas-responsive {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    pointer-events: auto;
    position: relative;
    z-index: 10;
}

.hero-ctas-responsive .btn {
    padding: 16px 38px;
    font-size: 1.1em;
    border-radius: 12px;
    font-weight: 700;
    min-width: 200px;
    pointer-events: auto;
    cursor: pointer;
    position: relative;
    z-index: 11;
}

@media (max-width: 768px) {
    .hero-ctas-responsive {
        flex-direction: column;
        gap: 15px;
        margin-top: 2.5rem;
    }

    .hero-ctas-responsive .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 32px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-ctas-responsive {
        gap: 12px;
        margin-top: 2rem;
    }

    .hero-ctas-responsive .btn {
        max-width: 250px;
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}

.carousel-section {
    border-top: 1px solid #151515;
    border-bottom: 1px solid #151515;
    background: #0b0b0b;
    padding: 20px 0;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.carousel-track {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

.carousel-slide {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    padding: 18px 0;
    animation: slideIn 0.5s ease-in-out;
}

.carousel-slide.active {
    display: grid;
}

.carousel-btn {
    background: var(--card);
    border: 1px solid #2a2a2a;
    color: var(--brand-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--brand-red);
    border-color: var(--brand-red);
    transform: scale(1.05);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

@media (max-width: 760px) {
    .dot-btn {
        width: 2px !important;
        height: 2px !important;
        border-radius: 100%;
        border: none;
        background: #2a2a2a;
        cursor: pointer;
        transition: all 0.3s ease;
    }
}

.dot-btn {
    width: 2px;
    height: 2px;
    border-radius: 100%;
    border: none;
    background: #2a2a2a;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot-btn.active,
.dot-btn:hover {
    background: var(--brand-red);
    transform: scale(1.2);
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .7rem 1rem;
    border: 1px solid #1b1b1b;
    border-radius: 999px;
    background: #101010;
    color: #cfcfcf;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.chip:hover {
    border-color: var(--brand-red);
    background: #141414;
    transform: translateY(-2px);
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-red);
    box-shadow: 0 0 0 6px rgba(198, 38, 38, .12);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .carousel-wrapper {
        gap: 10px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .carousel-slide {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .chip {
        padding: .6rem .8rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 300px;
        justify-content: center;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .carousel-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .chip {
        padding: .7rem 1rem;
        font-size: 1rem;
    }
}

section {
    padding: 64px 0;
}

@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    section {
        padding: 30px 0;
    }
}

.grid {
    display: grid;
    gap: 18px;
}

@media (max-width: 768px) {
    .grid {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .grid {
        gap: 12px;
    }
}

.cards {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

@media (max-width: 768px) {
    .cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.card {
    background: var(--card);
    border: 1px solid #1a1a1a;
    border-radius: 18px;
    padding: 20px;
    transition: transform .15s ease, border-color .15s ease;
}

@media (max-width: 768px) {
    .card {
        padding: 18px;
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .card {
        padding: 16px;
        border-radius: 12px;
    }
}

.card:hover {
    transform: translateY(-2px);
    border-color: #2a2a2a;
}

@media (max-width: 768px) {
    .card:hover {
        transform: translateY(-1px);
    }
}

.kicker {
    color: var(--brand-red);
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: .78rem;
}

.h2 {
    color: var(--brand-white);
    font-size: clamp(1.5rem, 3.2vw, 2rem);
    margin: 10px 0 16px;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .h2 {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
        margin: 8px 0 14px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .h2 {
        font-size: clamp(1.2rem, 6vw, 1.6rem);
        margin: 6px 0 12px;
    }
}

.p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .p {
        line-height: 1.8;
        font-size: 0.95rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .p {
        font-size: 0.9rem;
        line-height: 1.7;
    }
}

footer {
    border-top: 1px solid #151515;
    background: #0a0a0a;
}

.footer-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    padding: 36px 0;
}

.footer-col h4 {
    margin: 0 0 10px;
    color: var(--brand-white);
}

.footer-col a {
    display: block;
    color: var(--muted);
    padding: 6px 0;
}

.copyright {
    border-top: 1px solid #121212;
    color: #9a9a9a;
    padding: 16px 0 22px;
    font-size: .92rem;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}



.mobile-panel a {
    display: block;
    padding: 12px 0;
    color: var(--muted);
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 1px solid #1a1a1a;
    transition: all 0.3s ease;
}

.mobile-panel a:hover {
    color: var(--brand-white);
    background: rgba(255, 255, 255, 0.05);
    padding-left: 10px;
}

.mobile-panel a:last-child {
    border-bottom: none;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {

    section+section {
        margin-top: 20px;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        text-align: center;
        margin-bottom: 1rem;
    }

    p {
        text-align: center;
        margin-bottom: 1rem;
    }

    img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }

    a,
    button,
    .btn {
        min-height: 44px;
        min-width: 44px;
    }

    a,
    button,
    .btn .dot-btn {
        min-height: 14px;
        min-width: 14px;
    }

    input,
    textarea,
    select {
        font-size: 16px;
    }
}

@media (max-width: 480px) {

    .container {
        padding: 0 0.75rem;
    }

    section {
        padding: 25px 0;
    }

    h1,
    h2,
    h3 {
        line-height: 1.2;
    }
}

@media (max-width: 768px) {
    .hero-video-fullscreen {
        height: 50vh;
        min-height: 300px;
    }

    .hero-video-fullscreen video,
    .hero-video-fullscreen iframe {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 768px) {

    .glass-dark,
    .glass-effect {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {

    .glass-dark,
    .glass-effect {
        margin: 0px;
        padding: 25px 15px;
    }
}

@media (max-width: 768px) {
    .about-section .row {
        flex-direction: column !important;
    }
    
    .about-section .col-lg-6 {
        flex: 1 !important;
        max-width: 100% !important;
        margin-bottom: 30px !important;
    }
    
    .about-section .col-lg-6:last-child {
        margin-top: 20px !important;
    }

    [style*="display: flex"],
    [style*="display:flex"] {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 20px !important;
    }

    [style*="flex-wrap: wrap"],
    [style*="flex-wrap:wrap"] {
        flex-direction: column !important;
    }
}

@media (max-width: 768px) {

    [style*="grid-template-columns"],
    [class*="col-"] {
        display: block !important;
        width: 100% !important;
        flex: none !important;
        max-width: 100% !important;
    }

    /* Melhorar tabelas responsivas */
    table {
        font-size: 0.8rem !important;
        width: 100% !important;
        border-collapse: collapse !important;
    }

    th,
    td {
        padding: 8px 6px !important;
        font-size: 0.75rem !important;
        text-align: center !important;
    }

    /* Container de scroll horizontal para tabelas */
    .table-container {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        margin: 0 -20px !important;
        padding: 0 20px !important;
    }
}

@media (max-width: 768px) {

    [style*="margin-top"],
    [style*="margin-bottom"] {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }

    [style*="padding: 80px"],
    [style*="padding:80px"] {
        padding: 40px 20px !important;
    }

    [style*="padding: 60px"],
    [style*="padding:60px"] {
        padding: 30px 15px !important;
    }
}

@media (max-width: 480px) {

    [style*="padding: 40px"],
    [style*="padding:40px"] {
        padding: 25px 15px !important;
    }

    [style*="padding: 30px"],
    [style*="padding:30px"] {
        padding: 20px 10px !important;
    }
}

@media (max-width: 768px) {

    [style*="font-size: 2.5rem"],
    [style*="font-size:2.5rem"] {
        font-size: 1.8rem !important;
    }

    [style*="font-size: 2rem"],
    [style*="font-size:2rem"] {
        font-size: 1.5rem !important;
    }

    [style*="font-size: 1.5rem"],
    [style*="font-size:1.5rem"] {
        font-size: 1.3rem !important;
    }
}

@media (max-width: 480px) {
    [style*="font-size: 1.8rem"] {
        font-size: 1.4rem !important;
    }

    [style*="font-size: 1.5rem"] {
        font-size: 1.2rem !important;
    }

    [style*="font-size: 1.3rem"] {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 768px) {

    [style*="width: 80px"],
    [style*="height: 80px"] {
        width: 60px !important;
        height: 60px !important;
    }

    [style*="width: 60px"],
    [style*="height: 60px"] {
        width: 50px !important;
        height: 50px !important;
    }
}

@media (max-width: 768px) {

    .whatsapp-header-banner,
    [style*="background: linear-gradient(135deg, #25D366"] {
        padding: 20px !important;
        text-align: center !important;
        flex-direction: column !important;
    }
}

@media (max-width: 768px) {
    .contact-professional-section {
        padding: 40px 20px !important;
    }

    .contact-professional-section .container {
        padding: 0 10px !important;
    }
}

@media (max-width: 768px) {

    *,
    *::before,
    *::after {
        animation-duration: 0.3s !important;
        animation-delay: 0s !important;
        transition-duration: 0.3s !important;
    }

    [style*="backdrop-filter"],
    [style*="filter: blur"] {
        backdrop-filter: none !important;
        filter: none !important;
    }
}

.hide-mobile {
    display: block;
}

.show-mobile {
    display: none;
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }

    .show-mobile {
        display: block !important;
    }
}

.mt-mobile {
    margin-top: 0;
}

.mb-mobile {
    margin-bottom: 0;
}

.pt-mobile {
    padding-top: 0;
}

.pb-mobile {
    padding-bottom: 0;
}

@media (max-width: 768px) {
    .mt-mobile {
        margin-top: 20px !important;
    }

    .mb-mobile {
        margin-bottom: 20px !important;
    }

    .pt-mobile {
        padding-top: 20px !important;
    }

    .pb-mobile {
        padding-bottom: 20px !important;
    }
}

.stack-mobile {
    display: flex;
}

@media (max-width: 768px) {
    .stack-mobile {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 15px !important;
    }
}

.text-center-mobile {
    text-align: left;
}

@media (max-width: 768px) {
    .text-center-mobile {
        text-align: center !important;
    }
}

.full-width-mobile {
    width: auto;
}

@media (max-width: 768px) {
    .full-width-mobile {
        width: 100% !important;
    }
}

@media (max-width: 768px) {

    html {
        scroll-behavior: smooth;
    }

    body {
        -webkit-text-size-adjust: 100%;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    .btn,
    .chip,
    .nav-links a {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }

    .carousel-track {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
}

@media print {
    * {
        background: transparent !important;
        color: black !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    .back-to-top,
    .menu-btn,
    .carousel-btn,
    video {
        display: none !important;
    }

    a {
        text-decoration: underline;
    }

    .container {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

html,
body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
    background: radial-gradient(ellipse at center, #0a0a0a 0%, #000000 70%);
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 241, 217, 0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 241, 217, 0.01) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
    opacity: 0.3;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(1px 1px at 20% 30%, rgba(255, 68, 68, 0.2), transparent),
        radial-gradient(1px 1px at 60% 90%, rgba(255, 68, 68, 0.15), transparent);
    background-size: 500px 500px, 450px 450px;
    animation: float-particles 30s linear infinite;
    z-index: -1;
    pointer-events: none;
    opacity: 0.4;
}

.futuristic-scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 50%,
            rgba(0, 241, 217, 0.005) 50%);
    background-size: 100% 4px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.3;
}

.holographic-border {
    position: relative;
    overflow: hidden;
}



.holographic-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(0, 241, 217, 0.4),
            rgba(255, 68, 68, 0.4),
            transparent);
    animation: holographic-sweep 19s ease-in-out infinite;
    z-index: 1;
}
@media (max-width: 768px) {
    .holographic-border::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        z-index: 1;
        animation: holographic-sweep 19s ease-in-out;
    }
    .none {
        display: none !important;
    }
}

.hero-video-fullscreen {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
    left: 0;
    right: 0;
}

.hero-video-fullscreen iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    z-index: 1;
    max-width: 100%;
}

.video-overlay-fullscreen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(198, 38, 38, 0.05) 50%,
            rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
    pointer-events: auto;
}

.hero {
    margin-top: 0;
    position: relative;
    z-index: 3;
    pointer-events: auto;
}

/* Garantir que elementos interativos dentro do hero funcionem */
.hero a,
.hero button,
.hero .btn,
.hero-ctas-responsive a,
.hero-ctas-responsive button,
.hero-ctas-responsive .btn {
    pointer-events: auto !important;
    cursor: pointer !important;
    position: relative;
    z-index: 15 !important;
}

* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden !important;
}

.container {
    max-width: 100%;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    display: none;
}

* {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body,
html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    display: none;
}

.scroll-x-visible {
    overflow-x: auto !important;
    -ms-overflow-style: auto !important;

    scrollbar-width: thin !important;

    scrollbar-color: rgba(255, 68, 68, 0.8) rgba(255, 255, 255, 0.08) !important;
    padding-bottom: 8px;

    -webkit-overflow-scrolling: touch;

    position: relative;

}

.scroll-x-visible::-webkit-scrollbar {
    height: 10px !important;

    display: block !important;
}

.scroll-x-visible::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08) !important;
    border-radius: 8px !important;
}

.scroll-x-visible::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff4444, #cc0000) !important;
    border-radius: 8px !important;
}

.scroll-x-visible::before,
.scroll-x-visible::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 24px;
    pointer-events: none;
    z-index: 2;
}

.scroll-x-visible::before {
    left: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
}

.scroll-x-visible::after {
    right: 0;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
}

.comparativo-table thead th {
    position: sticky;
    top: 0;
    z-index: 1;
}

@media (max-width: 575px) {

    .comparativo-table th,
    .comparativo-table td {
        padding: 10px !important;
        font-size: 0.85rem !important;
    }

    .comparativo-table td[style*="font-size: 1rem"] {
        font-size: 0.95rem !important;
    }

    .comparativo-table td[style*="font-size: 0.95rem"] {
        font-size: 0.9rem !important;
    }
}

.glass-effect {
    border-radius: 0px;
    margin-top: 3;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

.glass-dark {
    background: rgba(0, 0, 0, 0.25) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 24px !important;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4) !important;
}

* {
    transition: all 0.10s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.hover-lift:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(255, 68, 68, 0.3) !important;
}

@keyframes float-elegant {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes glow-pulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 68, 68, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 68, 68, 0.4);
    }
}

@keyframes gridPulse {

    0%,
    100% {
        opacity: 0.3;
        background-size: 50px 50px;
    }

    50% {
        opacity: 0.6;
        background-size: 60px 60px;
    }
}

@keyframes float-particles {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-10px) rotate(120deg);
    }

    66% {
        transform: translateY(-5px) rotate(240deg);
    }

    100% {
        transform: translateY(0px) rotate(360deg);
    }
}

@keyframes scanlines {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(4px);
    }
}

@keyframes holographic-sweep {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes cyber-glow {

    0%,
    100% {
        text-shadow:
            0 0 5px rgba(0, 241, 217, 0.5),
            0 0 10px rgba(0, 241, 217, 0.3),
            0 0 15px rgba(0, 241, 217, 0.1);
    }

    50% {
        text-shadow:
            0 0 10px rgba(0, 241, 217, 0.8),
            0 0 20px rgba(0, 241, 217, 0.5),
            0 0 30px rgba(0, 241, 217, 0.3),
            0 0 40px rgba(255, 68, 68, 0.2);
    }
}

@keyframes matrix-rain {
    0% {
        transform: translateY(-100vh);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

@keyframes neural-network {
    0% {
        box-shadow:
            0 0 0 0 rgba(0, 241, 217, 0.7),
            0 0 0 0 rgba(255, 68, 68, 0.4);
    }

    50% {
        box-shadow:
            0 0 0 10px rgba(0, 241, 217, 0.3),
            0 0 0 20px rgba(255, 68, 68, 0.1);
    }

    100% {
        box-shadow:
            0 0 0 20px rgba(0, 241, 217, 0),
            0 0 0 40px rgba(255, 68, 68, 0);
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (max-width: 768px) {
    body::after {
        display: none;

    }

    .futuristic-scanlines {
        opacity: 0.15;

    }

    .card:hover {
        transform: translateY(-3px) scale(1.01) !important;

    }

    .card,
    .btn,
    .chip {
        -webkit-tap-highlight-color: rgba(0, 241, 217, 0.2);
    }

    .grid.cards {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        padding: 0 5px !important;
    }
}

@media (max-width: 480px) {
    .card {
        margin: 8px !important;
    }

    .grid.cards {
        gap: 12px !important;
        padding: 0 3px !important;
    }

    section {
        padding: 20px 5px !important;
    }
}

section[id] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

section[id].visible {
    opacity: 1;
    transform: translateY(0);
}

section[id]:first-of-type {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .testimonials-section>div:first-of-type {
        gap: 20px !important;
    }
}

@media (max-width: 768px) {
    .testimonials-section>div:first-of-type {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

.glass-dark {
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 241, 217, 0.05) 50%,
            rgba(0, 0, 0, 0.7) 100%) !important;
    border: 1px solid rgba(0, 241, 217, 0.2) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    position: relative !important;
}

.glass-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(0, 241, 217, 0.5),
            transparent);
}

.card {
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 241, 217, 0.05) 50%,
            rgba(0, 0, 0, 0.6) 100%) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    will-change: transform;
}

.card:hover {
    transform: translateY(-5px) scale(1.02) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
}

.btn {
    backdrop-filter: blur(10px) !important;
    border-radius: 12px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    will-change: transform;
}

.btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #00f1d9;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

.chip {
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 241, 217, 0.1) 50%,
            rgba(0, 0, 0, 0.4) 100%) !important;
    backdrop-filter: blur(15px) saturate(180%) !important;
    border: 1px solid rgba(0, 241, 217, 0.3) !important;
    border-radius: 25px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    pointer-events: none !important;

    cursor: default !important;
}

.chip::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(0, 241, 217, 0.3),
            transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.chip:hover {
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 241, 217, 0.1) 50%,
            rgba(0, 0, 0, 0.4) 100%) !important;
    border-color: rgba(0, 241, 217, 0.3) !important;
    transform: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

.chip:hover::before {
    left: -100% !important;
}

.chip .dot {
    background: radial-gradient(circle,
            rgba(0, 241, 217, 0.8) 0%,
            rgba(255, 68, 68, 0.6) 70%,
            transparent 100%) !important;
    animation: neural-network 6s ease-in-out infinite !important;
}

@media (max-width: 560px) {
    .dot-btn {
        background: rgba(255, 255, 255, 0.3) !important;
        border: 2px solid rgba(255, 255, 255, 0.5) !important;
        backdrop-filter: blur(5px) !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
}

.dot-btn {
    background: rgba(255, 255, 255, 0.3) !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    backdrop-filter: blur(5px) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.dot-btn.active {
    background: rgba(255, 68, 68, 0.8) !important;
    border-color: #ff4444 !important;
    box-shadow: 0 0 15px rgba(255, 68, 68, 0.5) !important;
}

.dot-btn:hover {
    transform: scale(1.2) !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3) !important;
}

header {
    background: rgba(0, 0, 0, 0.15) !important;
    backdrop-filter: blur(15px) !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    transition: all 0.3s ease !important;
    padding: 15px 0 !important;
}

header:hover {
    background: rgba(0, 0, 0, 0.3) !important;
}

.hero-container {
    background: transparent !important;
}

.hero-container h1,
.hero-container h2,
.hero-container p,
.hero-container .btn {
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.8),
        0 4px 16px rgba(0, 0, 0, 0.4) !important;
    font-weight: 600 !important;
    color: #ffffff !important;
}

.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 100px;
    z-index: 1000;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    cursor: pointer;
    backdrop-filter: blur(20px) saturate(180%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(198, 38, 38, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    stroke: rgba(255, 255, 255, 0.8);
    stroke-width: 2;
    transition: all 0.3s ease;
}

.back-to-top:hover svg {
    stroke: #c62626;
    transform: translateY(-1px);
}

@keyframes quantum-flow {
    0% {
        background-position: 0% 50%;
        text-shadow: 0 0 20px rgba(255, 68, 68, 0.8), 0 0 40px rgba(255, 68, 68, 0.4);
    }

    25% {
        background-position: 100% 50%;
        text-shadow: 0 0 25px rgba(255, 102, 102, 0.9), 0 0 50px rgba(255, 68, 68, 0.5);
    }

    50% {
        background-position: 200% 50%;
        text-shadow: 0 0 30px rgba(255, 68, 68, 1), 0 0 60px rgba(255, 68, 68, 0.6);
    }

    75% {
        background-position: 300% 50%;
        text-shadow: 0 0 25px rgba(204, 0, 0, 0.9), 0 0 50px rgba(255, 68, 68, 0.5);
    }

    100% {
        background-position: 400% 50%;
        text-shadow: 0 0 20px rgba(255, 68, 68, 0.8), 0 0 40px rgba(255, 68, 68, 0.4);
    }
}

@keyframes elegant-glow {

    0%,
    100% {
        background-position: 0% 50%;
        text-shadow: 0 0 8px rgba(255, 68, 68, 0.4);
        filter: brightness(1.1);
    }

    50% {
        background-position: 100% 50%;
        text-shadow: 0 0 12px rgba(255, 68, 68, 0.6);
        filter: brightness(1.3);
    }
}

@keyframes smooth-float {

    0%,
    100% {
        transform: translateY(-2px) scale(1);
    }

    50% {
        transform: translateY(-4px) scale(1.02);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(200%);
    }
}

@keyframes orbit1 {
    0% {
        transform: rotate(0deg) translateX(25px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(25px) rotate(-360deg);
    }
}

@keyframes orbit2 {
    0% {
        transform: rotate(0deg) translateX(20px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(20px) rotate(-360deg);
    }
}

@keyframes orbit3 {
    0% {
        transform: rotate(0deg) translateX(30px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(30px) rotate(-360deg);
    }
}

@keyframes orbit4 {
    0% {
        transform: rotate(0deg) translateX(22px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(22px) rotate(-360deg);
    }
}

@keyframes orbit5 {
    0% {
        transform: rotate(0deg) translateX(18px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(18px) rotate(-360deg);
    }
}

@keyframes orbit6 {
    0% {
        transform: rotate(0deg) translateX(28px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(28px) rotate(-360deg);
    }
}

@keyframes orbit7 {
    0% {
        transform: rotate(0deg) translateX(24px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(24px) rotate(-360deg);
    }
}

@keyframes orbit8 {
    0% {
        transform: rotate(0deg) translateX(32px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(32px) rotate(-360deg);
    }
}

@keyframes orbit9 {
    0% {
        transform: rotate(0deg) translateX(21px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(21px) rotate(-360deg);
    }
}

@keyframes orbit10 {
    0% {
        transform: rotate(0deg) translateX(27px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(27px) rotate(-360deg);
    }
}

@keyframes orbit11 {
    0% {
        transform: rotate(0deg) translateX(19px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(19px) rotate(-360deg);
    }
}

@keyframes orbit12 {
    0% {
        transform: rotate(0deg) translateX(26px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(26px) rotate(-360deg);
    }
}

@keyframes barGlow {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleX(0.8);
    }

    50% {
        opacity: 1;
        transform: scaleX(1.2);
    }
}

@keyframes rotate360 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 68, 68, 0.7);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 30px rgba(255, 68, 68, 0.9), 0 0 50px rgba(255, 68, 68, 0.5);
    }
}

.nav-links a {
    position: relative;
    overflow: hidden;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 68, 68, 0.7), transparent);
    transform: translateX(-50%);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: transparent !important;
    background: linear-gradient(90deg, #ff4444, #ff6666, #ff4444) !important;
    background-size: 200% 100% !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    animation: elegant-glow 2s ease-in-out infinite, smooth-float 2.5s ease-in-out infinite !important;
    letter-spacing: 1px !important;
    font-weight: 600 !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.nav-links a:hover::after {
    width: 100% !important;
}

@media (max-width: 768px) {
    .back-to-top {
        width: 44px;
        height: 44px;
        bottom: 24px;
        right: 24px;
        border-radius: 10px;
    }

    .back-to-top svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 768px) {
    .hero-video-fullscreen {
        height: 50vh;
        width: 100%;
    }

    .hero-video-fullscreen iframe {
        width: 100%;
        height: 28.125vw;
        min-height: 50vh;
        min-width: 88.89vh;
        max-width: 100%;
    }
}

.ba {
    position: relative;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    will-change: transform;
    transform: translateZ(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --cut: 10%;
}

.ba:active {
    cursor: grabbing;
}

.ba-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.ba-top {
    position: absolute;
    inset: 0;
    clip-path: polygon(0 0, var(--cut, 10%) 0, var(--cut, 10%) 100%, 0 100%);
    transition: clip-path 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: clip-path;
}

.ba-handle {
    position: absolute;
    top: 50%;
    left: var(--cut, 10%);
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8) 0%, transparent 50%),
        linear-gradient(135deg, #ff4444 0%, #cc0000 50%, #ff4444 100%);
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    cursor: grab;
    z-index: 15;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, left;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.3),
        0 2px 8px rgba(255, 68, 68, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
}

.ba-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 100vh;
    background:
        linear-gradient(to bottom,
            transparent 0%,
            rgba(255, 68, 68, 0.1) 15%,
            rgba(255, 68, 68, 0.3) 35%,
            rgba(0, 241, 217, 0.6) 48%,
            #ffffff 50%,
            rgba(0, 241, 217, 0.6) 52%,
            rgba(255, 68, 68, 0.3) 65%,
            rgba(255, 68, 68, 0.1) 85%,
            transparent 100%);
    box-shadow: 0 0 8px rgba(255, 68, 68, 0.3);
    z-index: -1;
}

.ba-handle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background:
        radial-gradient(circle, #ffffff 0%, rgba(0, 241, 217, 0.8) 70%, transparent 100%);
    border-radius: 50%;
    box-shadow:
        0 0 6px rgba(0, 241, 217, 0.6),
        inset 0 0 3px rgba(255, 255, 255, 0.8);
}

.ba-handle:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.4),
        0 3px 12px rgba(255, 68, 68, 0.5),
        0 0 0 2px rgba(0, 241, 217, 0.3),
        0 0 15px rgba(0, 241, 217, 0.2),
        inset 0 1px 3px rgba(255, 255, 255, 0.4);
}

.ba-handle:hover::before {
    background:
        linear-gradient(to bottom,
            transparent 0%,
            rgba(255, 68, 68, 0.2) 15%,
            rgba(255, 68, 68, 0.4) 35%,
            rgba(0, 241, 217, 0.8) 48%,
            #ffffff 50%,
            rgba(0, 241, 217, 0.8) 52%,
            rgba(255, 68, 68, 0.4) 65%,
            rgba(255, 68, 68, 0.2) 85%,
            transparent 100%);
    box-shadow: 0 0 12px rgba(0, 241, 217, 0.4);
}

.ba-handle:hover::after {
    box-shadow:
        0 0 10px rgba(0, 241, 217, 0.8),
        inset 0 0 4px rgba(255, 255, 255, 1);
}

.ba-handle:active {
    cursor: grabbing;
    transform: translate(-50%, -50%) scale(0.98);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.5),
        0 1px 4px rgba(255, 68, 68, 0.6),
        0 0 0 1px rgba(0, 241, 217, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.ba-handle .orbit-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.ba-handle .orbit-particle-1 {
    width: 3px;
    height: 3px;
    background: rgba(255, 68, 68, 0.7);
    top: -15px;
    left: 8px;
    animation: orbit1 4s linear infinite;
    box-shadow: 0 0 4px rgba(255, 68, 68, 0.5);
}

.ba-handle .orbit-particle-2 {
    width: 2px;
    height: 2px;
    background: rgba(0, 241, 217, 0.8);
    bottom: -12px;
    right: 5px;
    animation: orbit2 3s linear infinite reverse;
    box-shadow: 0 0 3px rgba(0, 241, 217, 0.6);
}

.ba-handle .orbit-particle-3 {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    top: 5px;
    right: -18px;
    animation: orbit3 5s linear infinite;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.4);
}

.ba-handle .orbit-particle-4 {
    width: 2px;
    height: 2px;
    background: rgba(255, 68, 68, 0.5);
    bottom: 8px;
    left: -14px;
    animation: orbit4 3.5s linear infinite reverse;
    box-shadow: 0 0 3px rgba(255, 68, 68, 0.3);
}

.ba-handle .orbit-particle-5 {
    width: 1px;
    height: 1px;
    background: rgba(0, 241, 217, 0.9);
    top: -8px;
    right: -10px;
    animation: orbit5 2.5s linear infinite;
    box-shadow: 0 0 2px rgba(0, 241, 217, 0.7);
}

.ba-handle .orbit-particle-6 {
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    top: -20px;
    left: -8px;
    animation: orbit6 4.5s linear infinite reverse;
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.6);
}

.ba-handle .orbit-particle-7 {
    width: 1px;
    height: 1px;
    background: rgba(255, 68, 68, 0.6);
    bottom: -18px;
    left: 12px;
    animation: orbit7 3.2s linear infinite;
    box-shadow: 0 0 2px rgba(255, 68, 68, 0.4);
}

.ba-handle .orbit-particle-8 {
    width: 3px;
    height: 3px;
    background: rgba(0, 241, 217, 0.5);
    top: 12px;
    left: -22px;
    animation: orbit8 5.5s linear infinite reverse;
    box-shadow: 0 0 4px rgba(0, 241, 217, 0.4);
}

.ba-handle .orbit-particle-9 {
    width: 1px;
    height: 1px;
    background: rgba(255, 255, 255, 0.7);
    bottom: 2px;
    right: -16px;
    animation: orbit9 2.8s linear infinite;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
}

.ba-handle .orbit-particle-10 {
    width: 2px;
    height: 2px;
    background: rgba(255, 68, 68, 0.8);
    top: -5px;
    left: -12px;
    animation: orbit10 6s linear infinite reverse;
    box-shadow: 0 0 3px rgba(255, 68, 68, 0.6);
}

.ba-handle .orbit-particle-11 {
    width: 1px;
    height: 1px;
    background: rgba(0, 241, 217, 0.7);
    bottom: -10px;
    right: 15px;
    animation: orbit11 3.8s linear infinite;
    box-shadow: 0 0 2px rgba(0, 241, 217, 0.5);
}

.ba-handle .orbit-particle-12 {
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    top: 18px;
    right: -12px;
    animation: orbit12 4.2s linear infinite reverse;
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.3);
}

.ba-range {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    outline: none;
    opacity: 0;
    cursor: grab;
    z-index: 5;
}

.ba-range:active {
    cursor: grabbing;
}

.ba-label {
    position: absolute;
    top: 20px;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 8;
}

.ba-label.left {
    left: 20px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.9) 0%, rgba(139, 0, 0, 0.8) 100%);
    color: white;
    border-color: rgba(255, 153, 153, 0.4);
}

.ba-label.right {
    right: 20px;
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.9) 0%, rgba(198, 38, 38, 0.8) 100%);
    color: white;
    border-color: rgba(255, 68, 68, 0.4);
}

.ba-label:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.ba-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b 0%, #ff4444 100%);
    width: var(--cut);
    transition: width 0.15s ease;
    z-index: 2;
    border-radius: 0 2px 0 0;
}

@media (max-width: 768px) {
    .ba-handle {
        width: 40px;
        height: 40px;
    }

    .ba-label {
        font-size: 10px;
        padding: 8px 15px;
        top: 15px;
    }

    .ba-label.left {
        left: 15px;
    }

    .ba-label.right {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .ba-handle {
        width: 35px;
        height: 35px;
    }

    .ba-label {
        font-size: 9px;
        padding: 6px 12px;
        top: 12px;
    }
}

#cases-demo {
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    #cases-demo {
        margin-top: 60px !important;
        padding-top: 20px !important;
        margin-bottom: 50px;
    }

    #tecnologia {
        margin-top: 60px !important;
        padding-top: 40px !important;
    }
}

@media (max-width: 480px) {
    #cases-demo {
        margin-top: 40px !important;
        padding-top: 15px !important;
        margin-bottom: 30px;
    }

    #tecnologia {
        margin-top: 40px !important;
        padding-top: 30px !important;
    }
}

@media (max-width: 991px) {
    .hero.container {
        margin-top: 12px !important;
        padding: 0 12px !important;
    }

    .hero .title {
        font-size: 2.2rem !important;
    }

    .hero .subtitle {
        font-size: 1.05rem !important;
    }

    .hero-ctas {
        gap: 12px !important;
    }
}

@media (max-width: 575px) {
    .hero.container {
        margin-top: -106px !important;
        padding: 0 6px !important;
    }

    .hero .title {
        font-size: 1.3rem !important;
    }

    .hero .subtitle {
        font-size: 0.98rem !important;
    }

    .hero-ctas a {
        padding: 12px 18px !important;
        font-size: 1em !important;
        border-radius: 8px !important;
    }
}

@media (max-width: 991px) {
    .carousel-dots {
        margin-bottom: 16px !important;
    }
}

@media (max-width: 575px) {
    .carousel-dots {
        margin-bottom: 8px !important;
    }
}

@keyframes float-bob-y {
    0% {
        transform: translateY(-30px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(-30px);
    }
}

@keyframes cir36 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

@media (max-width: 991px) {
    .col-lg-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .row {
        flex-direction: column !important;
    }

    .about-image-items .counter-shape {
        left: 0 !important;
        position: relative !important;
        margin: 20px auto !important;
        bottom: auto !important;
        transform: none !important;
    }

    .about-image-1 {
        max-width: 100% !important;
        height: 300px !important;
        margin-top: 20px !important;
    }

    .about-image-1 .about-image-2 {
        bottom: -13% !important;
        right: -20% !important;
    }

    .section-title {
        margin-top: 40px !important;
        text-align: center !important;
    }

    .about-icon-items {
        margin-left: 0 !important;
        justify-content: center !important;
    }
}

@media (max-width: 767px) {
    .about-section {
        padding: 30px 20px !important;
        margin-top: 30px !important;
    }

    .about-icon-items {
        flex-direction: column !important;
        gap: 20px !important;
        margin-left: 0 !important;
        margin-top: 30px !important;
    }

    .icon-items {
        min-width: auto !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .icon {
        width: 60px !important;
        height: 60px !important;
    }

    .icon img {
        width: 30px !important;
        height: 30px !important;
    }

    .section-title h2 {
        font-size: clamp(1.5rem, 4vw, 2rem) !important;
    }

    .video-box {
        transform: translate(-50%, -50%) scale(0.8) !important;
    }

    #benefits {
        padding: 40px 0 20px 0 !important;
    }

    .beneficios-list {
        padding: 0 15px !important;
    }
}

@media (max-width: 575px) {
    .about-section {
        padding: 20px 15px !important;
        margin-top: 20px !important;
    }

    .counter-shape {
        left: 0 !important;
        padding: 12px !important;
        position: relative !important;
        margin: 15px auto !important;
        width: fit-content !important;
        bottom: auto !important;
        transform: none !important;
        gap: 10px !important;
    }

    .counter-shape .icon img {
        width: 30px !important;
    }

    .counter-shape .content h3 {
        font-size: 20px !important;
    }

    .about-image-1 {
        height: 250px !important;
        margin-top: 15px !important;
    }

    .about-image-1 .about-image-2 {
        width: 120px !important;
        bottom: initial !important;
        top: 0 !important;
        right: 0 !important;
    }

    .section-title {
        margin-top: 20px !important;
    }

    .section-title h2 {
        font-size: clamp(1.3rem, 5vw, 1.8rem) !important;
        line-height: 1.2 !important;
    }

    .about-icon-items {
        margin-top: 20px !important;
        gap: 15px !important;
    }

    .icon-items {
        flex-direction: column !important;
        text-align: center !important;
        gap: 15px !important;
    }

    .icon {
        width: 50px !important;
        height: 50px !important;
    }

    .video-box {
        transform: translate(-50%, -50%) scale(0.6) !important;
    }

    .beneficios-titulo {
        font-size: clamp(1.1em, 4vw, 1.5em) !important;
        margin-bottom: 20px !important;
        padding: 0 10px !important;
    }

    .beneficios-item {
        flex-direction: column !important;
        text-align: center !important;
        gap: 12px !important;
        margin-bottom: 18px !important;
    }

    .beneficios-text {
        font-size: 0.95em !important;
        line-height: 1.4 !important;
    }

    .beneficios-icon {
        width: 36px !important;
        height: 36px !important;
        flex: 0 0 36px !important;
    }

    .beneficios-item {
        gap: 12px !important;
        font-size: 0.98em !important;
    }

    .beneficios-icon {
        width: 30px !important;
        height: 30px !important;
        min-width: 30px !important;
    }

    .beneficios-icon svg {
        width: 16px !important;
        height: 16px !important;
    }
}

@media (max-width: 768px) and (min-width: 576px) {
    .beneficios-item {
        gap: 14px !important;
    }

    .beneficios-icon {
        width: 38px !important;
        height: 38px !important;
        flex: 0 0 38px !important;
    }

    .beneficios-text {
        font-size: 1.0em !important;
    }

    #benefits a[href="#contato"] {
        padding: 14px 32px !important;
        font-size: 1.1em !important;
    }

    .counter-shape {
        position: relative !important;
        left: 0 !important;
        bottom: auto !important;
        margin: 20px auto !important;
        padding: 16px !important;
        gap: 12px !important;
    }

    .counter-shape .icon img {
        width: 40px !important;
    }

    .counter-shape .content h3 {
        font-size: 24px !important;
    }
}

@media (max-width: 575px) {
    #benefits a[href="#contato"] {
        padding: 12px 24px !important;
        font-size: 1em !important;
        margin-top: 28px !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 280px !important;
        letter-spacing: 0.3px !important;
    }
}

@media (min-width: 1024px) {
    .beneficios-titulo {
        white-space: nowrap;
    }
}

.acc-header::after {
    content: "›";
    position: absolute;
    right: 14px;
    top: 50%;
    translate: 0 -50%;
    font-size: 20px;
    transform: rotate(0deg);
    transition: transform 0.25s ease;
    color: #fff;
    opacity: 0.75;
}

.acc-item.open .acc-header::after {
    transform: rotate(90deg);
    color: #e41212;
}

.acc-item {
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0) !important;
}

.acc-item .acc-header {
    color: white !important;
}

.acc-item:hover {
    border-color: rgba(255, 68, 68, 0.3) !important;
    background: rgba(255, 68, 68, 0.08) !important;
    transform: translateX(3px);
}

.acc-item.open {
    box-shadow: 0 6px 18px rgba(0, 0, 0, .04) !important;
    background: rgba(255, 68, 68, 0.08) !important;
    border-color: rgba(255, 68, 68, 0.3) !important;
    transform: translateX(3px);
}

.acc-item.open .acc-header {
    color: #e41212 !important;
}

.acc-header:hover {
    color: #ff4444 !important;
    text-shadow: 0 0 8px rgba(255, 68, 68, 0.5);
}

.acc-header:focus-visible {
    outline: 3px solid rgba(0, 241, 217, 0.4);
    outline-offset: 2px;
    border-radius: 10px;
}

.visually-hidden {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0;
    border: 0;
    height: 1px;
    width: 1px;
    overflow: hidden;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .faq-section .col-lg-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .faq-section .row {
        flex-direction: column !important;
    }

    .faq-section {
        padding: 40px 20px !important;
        margin-top: 40px !important;
    }
}

@media (max-width: 767px) {
    .faq-section {
        padding: 30px 15px !important;
        margin-top: 30px !important;
    }

    .faq-section h2 {
        font-size: clamp(1.5rem, 4vw, 2rem) !important;
    }

    .acc-header {
        padding: 10px calc(10px + 30px) 10px 10px !important;
        font-size: 0.95rem !important;
    }

    .acc-inner {
        padding: 2px 10px 10px 10px !important;
        font-size: 0.9rem !important;
    }
}

@media (max-width: 575px) {
    .faq-section {
        padding: 25px 10px !important;
        margin-top: 25px !important;
    }

    .faq-section h2 {
        font-size: clamp(1.3rem, 5vw, 1.8rem) !important;
        line-height: 1.2 !important;
    }

    .acc-header {
        padding: 8px calc(8px + 30px) 8px 8px !important;
        font-size: 0.9rem !important;
    }
}

@media (max-width: 768px) {
    #tecnologia table {
        font-size: 0.75rem !important;
    }

    #tecnologia th,
    #tecnologia td {
        padding: 12px 8px !important;
    }

    #tecnologia th span,
    #tecnologia td span {
        font-size: 0.7em !important;
    }
}

@media (max-width: 480px) {
    #tecnologia table {
        font-size: 0.7rem !important;
    }

    #tecnologia th,
    #tecnologia td {
        padding: 10px 5px !important;
    }
}

@media (max-width: 1200px) {
    #cases>div:nth-child(2) {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

@media (max-width: 768px) {
    #cases>div:nth-child(2) {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    #cases>div:last-child {
        flex-direction: column !important;
        text-align: center !important;
    }

    #cases>div:last-child>div:last-child {
        flex-direction: column !important;
        width: 100% !important;
    }
}

@media (max-width: 992px) {
    .contact-professional-section .container>div {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    .whatsapp-header-banner {
        flex-direction: column !important;
        text-align: center;
        gap: 20px !important;
    }

    .whatsapp-header-banner>div:first-child {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .whatsapp-header-banner>div:first-child>div:last-child {
        margin-left: 0 !important;
        border-left: none !important;
        padding-left: 0 !important;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 15px;
    }
}

@media (max-width: 768px) {
    .contact-professional-section {
        padding: 60px 0 !important;
    }

    .contact-professional-section .container {
        padding: 0 15px !important;
    }

    .whatsapp-header-banner {
        padding: 20px !important;
        margin-bottom: 40px !important;
    }

    .contact-professional-section h3 {
        font-size: 24px !important;
    }

    .contact-professional-section h4 {
        font-size: 18px !important;
    }
}

/* === CORREÇÃO DE ESPECIFICIDADE PARA MENUS === */
/* Garantir que não há conflitos entre desktop e mobile */

/* DESKTOP: Força mostrar nav-links, esconder menu-btn */
@media (min-width: 980px) {

    header .container .nav-links[style],
    header .nav .nav-links {
        display: flex !important;
        gap: 30px !important;
        align-items: center !important;
        visibility: visible !important;
    }

    header .container .nav-cta,
    header .nav .nav-cta {
        display: inline-flex !important;
        visibility: visible !important;
    }

    header .container .menu-btn,
    header .nav .menu-btn {
        display: none !important;
        visibility: hidden !important;
    }
}

/* MOBILE: Força esconder nav-links, mostrar menu-btn */
@media (max-width: 979px) {

    header .container .nav-links[style],
    header .nav .nav-links,
    header .container .nav-cta,
    header .nav .nav-cta {
        display: none !important;
        visibility: hidden !important;
    }

    header .container .menu-btn,
    header .nav .menu-btn {
        display: inline-flex !important;
        visibility: visible !important;
    }
}

/* Garantir que mobile panel só aparece em mobile quando ativo */
@media (max-width: 979px) {
    .mobile-open .mobile-panel {
        display: block !important;
        visibility: visible !important;
    }
}

/* === CORREÇÃO FINAL ANTI-CONFLITO === */
/* Usar breakpoint mais específico para evitar sobreposição */
@media screen and (min-width: 980px) {

    /* Desktop: forçar menu desktop visível */
    .nav-links {
        display: flex !important;
        gap: 30px !important;
        align-items: center !important;
    }

    .nav-cta {
        display: inline-flex !important;
        gap: 25px !important;
    }

    .menu-btn {
        display: none !important;
    }

    /* Desktop: esconder completamente mobile panel */
    .mobile-panel,
    .mobile-open .mobile-panel {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

@media screen and (max-width: 979px) {

    /* Mobile: forçar menu mobile */
    .nav-links,
    .nav-cta {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .menu-btn {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    /* Mobile: permitir mobile panel quando ativo */
    .mobile-open .mobile-panel {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
}

/* === VIDEO DE FUNDO RESPONSIVO === */
.hero-video-fullscreen {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-video-fullscreen {
        height: 100vh;
        height: 100dvh;
        /* Dynamic viewport height para mobile */
        min-height: 100vh;
        min-height: 100dvh;
    }
}

@media (max-width: 480px) {
    .hero-video-fullscreen {
        height: 100vh;
        height: 100dvh;
        /* Garante tela cheia real no mobile */
        min-height: 100vh;
        min-height: 100dvh;
    }
}

.hero-video-fullscreen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.video-overlay-fullscreen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(198, 38, 38, 0.05) 50%,
            rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === ESTILOS RESPONSIVOS ADICIONAIS === */
@media (max-width: 768px) {

    /* Carousel responsivo */
    .carousel-section {
        padding: 30px 15px 20px 15px;
    }

    .carousel-wrapper {
        gap: 10px;
    }

    /* Texto responsivo */
    .eyebrow {
        font-size: 0.7em !important;
    }

    .title {
        font-size: clamp(1.8rem, 5vw, 2.5rem) !important;
        line-height: 1.2 !important;
    }

    .subtitle {
        font-size: clamp(0.9rem, 3vw, 1.1rem) !important;
        padding: 0 1rem !important;
        line-height: 1.6 !important;
    }
}

@media (max-width: 480px) {
    .carousel-section {
        padding: 20px 10px 15px 10px;
    }

    .title {
        font-size: clamp(1.5rem, 6vw, 2rem) !important;
    }

    .subtitle {
        font-size: clamp(0.85rem, 4vw, 1rem) !important;
        padding: 0 0.5rem !important;
    }
}

/* === AJUSTES PARA TELA CHEIA EM MOBILE === */
@media (max-width: 768px) {

    /* Remove qualquer margin/padding que possa causar scroll */
    body {
        margin: 0 !important;
        padding: 0 !important;
        overflow-x: hidden;
    }

    /* Header fixo para não interferir na altura */
    header {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }

    /* Ajuste para compensar header fixo */
    .hero-video-fullscreen {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    /* Garantir que o conteúdo não seja cortado pelas barras do browser */
    .video-overlay-fullscreen {
        padding: env(safe-area-inset-top, 0) env(safe-area-inset-right, 0) env(safe-area-inset-bottom, 0) env(safe-area-inset-left, 0);
    }
}

/* Suporte para notch do iPhone e outros dispositivos com bordas arredondadas */
@supports (height: 100dvh) {
    @media (max-width: 768px) {
        .hero-video-fullscreen {
            height: 100dvh !important;
            min-height: 100dvh !important;
        }

        .hero-responsive {
            height: 100dvh !important;
            min-height: 100dvh !important;
        }
    }
}

/* Fallback usando variável CSS customizada para browsers mais antigos */
@media (max-width: 768px) {
    .hero-video-fullscreen {
        height: calc(var(--real-vh, 1vh) * 100);
        min-height: calc(var(--real-vh, 1vh) * 100);
    }

    .hero-responsive {
        height: calc(var(--real-vh, 1vh) * 100);
        min-height: calc(var(--real-vh, 1vh) * 100);
    }
}

/* === SEÇÃO ABOUT - DESTAQUE DO SISTEMA === */
@media (max-width: 768px) {
    .about-section .about-content {
        padding: 0 !important;
    }
    
    .about-section .section-title {
        margin-top: 30px !important;
        margin-left: 0 !important;
        text-align: center !important;
        padding: 0 20px !important;
    }
    
    .about-section .section-title h2 {
        font-size: clamp(1.5rem, 4vw, 2rem) !important;
        line-height: 1.3 !important;
        margin-bottom: 20px !important;
    }
    
    .about-section .about-content p {
        margin-left: 0 !important;
        margin-top: 20px !important;
        padding: 0 20px !important;
        text-align: center !important;
        font-size: 0.95rem !important;
    }
    
    .about-icon-items {
        margin-top: 40px !important;
        margin-left: 0 !important;
        padding: 0 20px 30px 20px !important;
        flex-direction: column !important;
        gap: 25px !important;
        align-items: stretch !important;
    }
    
    .about-icon-items .icon-items {
        min-width: unset !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 15px !important;
    }
    
    .about-icon-items .icon {
        margin: 0 auto !important;
        width: 70px !important;
        height: 70px !important;
    }
    
    .about-icon-items .content h4 {
        font-size: 1rem !important;
        margin-bottom: 8px !important;
    }
    
    .about-icon-items .content p {
        font-size: 0.85rem !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .about-author {
        margin-top: 40px !important;
        justify-content: center !important;
        padding: 0 20px !important;
    }
    
    .about-author .about-button a {
        padding: 14px 28px !important;
        font-size: 0.95rem !important;
        text-align: center !important;
    }
}

/* === RESPONSIVE PARA AS 3 SEÇÕES === */

/* 1. Testimonials Section - Cases de Sucesso */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 40px 20px !important;
        margin-top: 60px !important;
    }

    .testimonials-section>div[style*="grid-template-columns"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .testimonials-section table {
        font-size: 0.8rem !important;
        margin: 0 -10px;
        overflow-x: auto;
        display: block;
    }

    .testimonials-section th,
    .testimonials-section td {
        padding: 10px 8px !important;
        font-size: 0.75rem !important;
        min-width: 120px;
    }

    .comparativo-table {
        min-width: 600px !important;
        font-size: 0.7rem !important;
        display: table !important;
    }

    .scroll-x-visible {
        margin: 0 -20px !important;
        padding: 0 20px !important;
        overflow-x: auto !important;
    }

    .testimonials-section h2 {
        font-size: 1.8rem !important;
        margin-bottom: 20px !important;
    }
}

/* 2. Work Process Section - Poder de Decisão */
@media (max-width: 768px) {
    .work-process-section {
        padding: 40px 20px !important;
        margin-top: 60px !important;
    }

    .work-process-section .row {
        flex-direction: column !important;
        gap: 30px !important;
    }

    .work-process-section [class*="col-"] {
        flex: 1 !important;
        max-width: 100% !important;
        padding: 0 10px !important;
        margin-bottom: 30px !important;
    }

    .work-process-section .line-shape {
        display: none !important;
    }

    .work-process-section .icon {
        width: 80px !important;
        height: 80px !important;
        margin: 0 auto 20px auto !important;
    }

    .work-process-section .content {
        margin-top: 20px !important;
        transform: none !important;
        text-align: center !important;
    }

    .work-process-section h2 {
        font-size: 1.8rem !important;
        margin-bottom: 30px !important;
    }

    .work-process-section h4 {
        font-size: 1.1rem !important;
        margin-bottom: 15px !important;
    }
}

/* 3. Contact Section - Contato */
@media (max-width: 768px) {
    .contact-professional-section {
        padding: 40px 20px !important;
        margin-top: 40px !important;
    }

    .whatsapp-header-banner {
        flex-direction: column !important;
        text-align: center !important;
        padding: 20px !important;
        gap: 15px !important;
    }

    .whatsapp-header-banner img {
        width: 60px !important;
        height: auto !important;
    }

    .contact-professional-section>div>div:nth-child(2) {
        flex-direction: column !important;
        align-items: center !important;
        margin-bottom: 40px !important;
        gap: 20px !important;
    }

    .contact-professional-section>div>div:nth-child(2)>div:first-child {
        margin-right: 0 !important;
        margin-bottom: 20px !important;
    }

    .contact-professional-section [style*="grid-template-columns: repeat(3, 1fr)"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .contact-professional-section [style*="grid-template-columns: 1fr 1fr 1fr"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        padding-top: 30px !important;
    }

    .contact-professional-section h2 {
        font-size: 1.8rem !important;
        margin-bottom: 20px !important;
    }

    .contact-professional-section .glass-effect {
        margin: 10px 0 !important;
        padding: 20px !important;
    }
}

/* Remover qualquer scroll indesejado no mobile */
@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden;
        position: relative;
        width: 100%;
        min-height: 100%;
    }

    #inicio {
        scroll-margin-top: 0;
    }
}