@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --blue: #1a56db;
    --blue-dark: #1239a5;
    --blue-mid: #2563eb;
    --cyan: #06b6d4;
    --purple: #7c3aed;
    --pink: #ec4899;
    --emerald: #10b981;
    --orange: #f97316;
    --amber: #f59e0b;
    --white: #ffffff;
    --off: #f8fafc;
    --border: #e2e8f0;
    --dark: #0f172a;
    --dark2: #1e293b;
    --gray: #64748b;
    --gray-lt: #94a3b8;
    --grad-hero: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0c1a3b 100%);
    --grad-blue: linear-gradient(135deg, #1a56db, #06b6d4);
    --grad-purple: linear-gradient(135deg, #7c3aed, #ec4899);
    --grad-emerald: linear-gradient(135deg, #059669, #06b6d4);
    --grad-warm: linear-gradient(135deg, #f59e0b, #f97316);
    --radius: 14px;
    --radius-lg: 24px;
    --radius-xl: 36px;
    --shadow: 0 4px 20px rgba(0, 0, 0, .08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, .14);
    --shadow-xl: 0 32px 80px rgba(0, 0, 0, .2);
    --shadow-glow: 0 0 40px rgba(26, 86, 219, .35);
    --t: .35s cubic-bezier(.4, 0, .2, 1);
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

img {
    max-width: 100%;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

ul {
    list-style: none
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-track {
    background: #f1f5f9
}

::-webkit-scrollbar-thumb {
    background: var(--blue);
    border-radius: 99px
}

/* ─── NAV ─── */
#nav {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1280px;
    z-index: 999;
    background: rgba(0, 137, 247, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, .15) inset;
    transition: var(--t)
}

#nav.scrolled {
    background: rgba(0, 137, 247, 0.98);
    box-shadow: var(--shadow-lg)
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    padding: 0 24px;
    gap: 24px
}

.nav-logo img {
    height: 42px;
    width: auto
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px
}

.nav-links a {
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 500;
    font-size: .95rem;
    color: var(--white);
    transition: var(--t)
}

.nav-links a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, .15)
}

.nav-cta {
    background: var(--white);
    color: #0089f7 !important;
    padding: 10px 22px !important;
    border-radius: 100px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1)
}

.nav-cta:hover {
    transform: translateY(-2px);
    background: var(--light);
    color: #0089f7 !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: none
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--t);
    display: block
}

.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 137, 247, 0.98);
    backdrop-filter: blur(32px);
    z-index: 998;
    padding: 100px 32px 40px;
    flex-direction: column;
    gap: 12px
}

.mobile-nav a {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 14px 20px;
    border-radius: 14px;
    color: var(--white);
    transition: var(--t)
}

.mobile-nav a:hover {
    background: rgba(255, 255, 255, .15);
    color: #ffffff;
}

.mobile-nav.open {
    display: flex
}

/* ─── HERO ─── */
#hero {
    min-height: 100vh;
    background: var(--grad-hero);
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .45;
    animation: float 8s ease-in-out infinite
}

.orb1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 86, 219, .7), transparent);
    top: -200px;
    right: -100px;
    animation-delay: 0s
}

.orb2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, .6), transparent);
    bottom: -100px;
    left: 10%;
    animation-delay: -3s
}

.orb3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124, 58, 237, .5), transparent);
    top: 30%;
    right: 20%;
    animation-delay: -6s
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1)
    }

    50% {
        transform: translateY(-40px) scale(1.05)
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #93c5fd;
    padding: 7px 18px;
    border-radius: 100px;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 28px
}

.hero-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 8px #34d399;
    animation: ping 1.5s cubic-bezier(0, 0, .2, 1) infinite
}

@keyframes ping {

    75%,
    100% {
        transform: scale(1.8);
        opacity: 0
    }
}

.hero-title {
    font-size: clamp(2.6rem, 4.5vw, 4.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 24px
}

.hero-title .grad {
    background: linear-gradient(90deg, #60a5fa, #a78bfa, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero-desc {
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 480px
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 52px
}

.hero-stats {
    display: flex;
    gap: 32px
}

.hero-stat {
    color: rgba(255, 255, 255, .9)
}

.hero-stat strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--grad-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero-stat small {
    font-size: .8rem;
    color: #64748b
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.hero-card-wrap {
    position: relative;
    animation: floatcard 5s ease-in-out infinite
}

@keyframes floatcard {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-18px)
    }
}

.hero-main-img {
    width: 100%;
    max-width: 520px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl)
}

.hero-badge-float {
    position: absolute;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white)
}

.hbf-top {
    top: -24px;
    left: -32px;
    animation: floatcard 6s ease-in-out infinite reverse
}

.hbf-bot {
    bottom: -24px;
    right: -32px;
    animation: floatcard 7s ease-in-out infinite
}

.hbf-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem
}

.hbf-text strong {
    display: block;
    font-weight: 700;
    font-size: .9rem
}

.hbf-text small {
    color: #94a3b8;
    font-size: .78rem
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 700;
    font-size: .95rem;
    transition: var(--t);
    border: none;
    cursor: pointer;
    letter-spacing: .01em
}

.btn-primary {
    background: var(--grad-blue);
    color: var(--white);
    box-shadow: 0 6px 24px rgba(26, 86, 219, .35)
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(26, 86, 219, .5)
}

.btn-ghost {
    background: rgba(255, 255, 255, .08);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .2)
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .15);
    transform: translateY(-2px)
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
    box-shadow: var(--shadow)
}

.btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg)
}

.btn-outline {
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
    padding: 12px 26px
}

.btn-outline:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-2px)
}

svg.arrow {
    width: 18px;
    height: 18px;
    transition: transform var(--t)
}

.btn:hover svg.arrow {
    transform: translateX(4px)
}

/* ─── SECTIONS ─── */
.section {
    padding: 112px 0
}

.section-alt {
    background: var(--off)
}

.section-dark {
    background: var(--dark);
    color: var(--white)
}

.section-dark p {
    color: #94a3b8
}

.section-grad {
    background: linear-gradient(180deg, #f0f4ff 0%, var(--white) 100%)
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eff6ff;
    color: var(--blue);
    padding: 5px 16px;
    border-radius: 100px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 18px
}

.tag-dark {
    background: rgba(26, 86, 219, .15);
    color: #93c5fd
}

.tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
    display: inline-block
}

.tag-dark .tag-dot {
    background: #60a5fa
}

h2.title {
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 20px
}

.grad-text {
    background: var(--grad-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.grad-text-purple {
    background: var(--grad-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.section-head {
    margin-bottom: 64px
}

.section-head p {
    color: var(--gray);
    font-size: 1.05rem;
    max-width: 580px;
    margin-top: 12px
}

.section-head.center {
    text-align: center
}

.section-head.center p {
    margin-left: auto;
    margin-right: auto
}

.divider {
    width: 56px;
    height: 4px;
    border-radius: 99px;
    background: var(--grad-blue);
    margin: 16px 0
}

.divider-center {
    margin-left: auto;
    margin-right: auto
}

/* ─── STATS TICKER ─── */
#stats {
    background: var(--dark);
    padding: 0;
    overflow: hidden
}

.stats-inner {
    display: flex;
    align-items: center;
    padding: 52px 0;
    gap: 0
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 0 32px;
    position: relative
}

.stat-item+.stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 48px;
    width: 1px;
    background: rgba(255, 255, 255, .08)
}

.stat-num {
    font-size: 2.8rem;
    font-weight: 800;
    background: var(--grad-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1
}

.stat-label {
    color: #64748b;
    font-size: .88rem;
    margin-top: 6px;
    font-weight: 500
}

/* ─── ABOUT ─── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.about-img-stack {
    position: relative;
    padding-bottom: 40px;
    padding-right: 40px
}

.about-img-main {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%
}

.about-img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white)
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0
}

.feat {
    display: flex;
    gap: 16px;
    align-items: flex-start
}

.feat-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem
}

.feat-icon.blue {
    background: linear-gradient(135deg, rgba(26, 86, 219, .15), rgba(6, 182, 212, .15));
    color: var(--blue)
}

.feat-icon.purple {
    background: linear-gradient(135deg, rgba(124, 58, 237, .15), rgba(236, 72, 153, .15));
    color: var(--purple)
}

.feat-icon.emerald {
    background: linear-gradient(135deg, rgba(16, 185, 129, .15), rgba(6, 182, 212, .15));
    color: var(--emerald)
}

.feat h4 {
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: 3px
}

.feat p {
    color: var(--gray);
    font-size: .88rem;
    margin: 0
}

/* ─── PRODUCTS ─── */
#produtos {
    background: var(--off)
}

.products-intro {
    text-align: center;
    margin-bottom: 60px
}

.product-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 100px;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--gray);
    font-weight: 600;
    font-size: .85rem;
    cursor: pointer;
    transition: var(--t)
}

.filter-btn:hover {
    border-color: var(--blue);
    color: var(--blue)
}

.filter-btn.active {
    background: var(--grad-blue);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 6px 16px rgba(26, 86, 219, .25)
}

.product-tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.ptile {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    cursor: pointer;
    transition: var(--t);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden
}

.ptile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-blue);
    opacity: 0;
    transition: opacity .35s ease;
    z-index: 0
}

.ptile:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent
}

.ptile:hover::before {
    opacity: .06
}

.ptile-img {
    width: 100%;
    height: 140px;
    object-fit: contain;
    margin-bottom: 16px;
    transition: transform .4s ease;
    position: relative;
    z-index: 1
}

.ptile:hover .ptile-img {
    transform: scale(1.08)
}

.ptile-name {
    font-weight: 700;
    font-size: .92rem;
    color: var(--dark);
    position: relative;
    z-index: 1;
    line-height: 1.3
}

.ptile-cat {
    font-size: .75rem;
    color: var(--gray);
    font-weight: 500;
    margin-top: 4px;
    position: relative;
    z-index: 1
}

.ptile-cta {
    margin-top: 12px;
    font-size: .78rem;
    font-weight: 700;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(6px);
    transition: var(--t)
}

.ptile:hover .ptile-cta {
    opacity: 1;
    transform: translateY(0)
}

.ptile-cta svg {
    width: 14px;
    height: 14px
}

/* ─── GALERIA DE FOTOS ─── */
#galeria {
    background: var(--off);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    background: var(--dark);
    aspect-ratio: 3/4;
    transition: box-shadow var(--t), transform var(--t);
    box-shadow: var(--shadow);
}

.gallery-item:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
    z-index: 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.1) 60%, transparent 100%);
    opacity: 0;
    transition: opacity var(--t);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay svg {
    width: 64px;
    height: 64px;
    color: var(--white);
    transform: scale(0.5);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.gallery-item:hover .gallery-overlay svg {
    transform: scale(1);
    opacity: 1;
}

/* ─── LIGHTBOX GALERIA ─── */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox-overlay.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lightbox-overlay.open img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-close svg {
    width: 24px;
    height: 24px;
}

/* ─── PRODUCT MODAL ─── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .75);
    backdrop-filter: blur(8px);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all .4s cubic-bezier(.4, 0, .2, 1)
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible
}

.modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    transform: scale(.92) translateY(20px);
    transition: transform .4s cubic-bezier(.34, 1.56, .64, 1)
}

.modal-overlay.open .modal {
    transform: scale(1) translateY(0)
}

.modal-header {
    padding: 32px 36px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start
}

.modal-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--off);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: var(--t);
    flex-shrink: 0
}

.modal-close:hover {
    background: var(--dark);
    color: var(--white);
    transform: rotate(90deg)
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 28px 36px 36px
}

.modal-img {
    background: var(--off);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    min-height: 280px
}

.modal-img img {
    max-height: 260px;
    object-fit: contain
}

.modal-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px
}

.modal-badge {
    display: inline-block;
    background: #eff6ff;
    color: var(--blue);
    padding: 3px 12px;
    border-radius: 100px;
    font-size: .75rem;
    font-weight: 700;
    margin-bottom: 16px
}

.modal-info p {
    color: var(--gray);
    font-size: .95rem;
    line-height: 1.7;
    margin-bottom: 16px
}

.modal-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px
}

.mf-row {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: .88rem
}

.mf-check {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: var(--grad-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.mf-check svg {
    width: 12px;
    height: 12px;
    stroke: white;
    fill: none;
    stroke-width: 2.5
}

/* ─── BNDES ─── */
.bndes-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative
}

.bndes-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none
}

.bndes-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0
}

.bndes-left {
    padding: 56px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.bndes-img-left {
    max-width: 200px;
    margin-top: 24px;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, .5));
    border-radius: 12px;
    align-self: center;
    transition: transform 0.4s ease;
}

.bndes-img-left:hover {
    transform: translateY(-8px) scale(1.02);
}

.bndes-right {
    background: rgba(255, 255, 255, .04);
    border-left: 1px solid rgba(255, 255, 255, .07);
    padding: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.bndes-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 86, 219, 0.12), transparent);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    animation: float 8s infinite
}

.other-cards-content {
    position: relative;
    z-index: 2;
    text-align: left;
}

.cards-showcase {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.card-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s ease;
    backdrop-filter: blur(4px);
    flex: 1;
}

.card-item img {
    height: 48px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: all 0.4s ease;
}

.card-label {
    color: #94a3b8;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.card-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
}

.card-item:hover .card-label {
    color: white;
}

.glow-master:hover {
    border-color: #ff5f00;
    box-shadow: 0 10px 25px rgba(255, 95, 0, 0.2);
}

.glow-visa:hover {
    border-color: #1a1f71;
    box-shadow: 0 10px 25px rgba(26, 31, 113, 0.3);
}

.glow-elo:hover {
    border-color: #00a4e0;
    box-shadow: 0 10px 25px rgba(0, 164, 224, 0.3);
}

.bndes-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 28px 0
}

.bi {
    display: flex;
    gap: 14px;
    align-items: flex-start
}

.bi-icon {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: var(--grad-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px
}

.bi-icon svg {
    width: 14px;
    height: 14px;
    stroke: white;
    fill: none;
    stroke-width: 2.5
}

.bi p {
    color: #cbd5e1;
    font-size: .93rem;
    margin: 0
}

.bi p strong {
    color: var(--white)
}

.cards-strip {
    display: flex;
    gap: 10px;
    margin-top: 4px;
    flex-wrap: wrap
}

.cards-strip img {
    height: 26px;
    width: auto;
    border-radius: 6px;
    background: white;
    padding: 2px 8px;
    box-shadow: var(--shadow)
}

/* ─── TESTIMONIALS ─── */
.tgrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px
}

.tcard {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--t);
    position: relative;
    overflow: hidden
}

.tcard::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 7rem;
    font-weight: 800;
    color: rgba(255, 255, 255, .04);
    line-height: 1;
    font-family: Georgia, serif;
    pointer-events: none
}

.tcard:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(26, 86, 219, .3);
    transform: translateY(-4px)
}

.stars {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 16px
}

.tcard p {
    color: #cbd5e1;
    font-size: .95rem;
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic
}

.tauthor {
    display: flex;
    gap: 14px;
    align-items: center
}

.tavatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--grad-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0
}

.tname {
    font-weight: 700;
    color: var(--white);
    font-size: .9rem
}

.trole {
    color: #64748b;
    font-size: .78rem;
    margin-top: 2px
}

/* ─── PARTNERS ─── */
.pgrid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    background: var(--border);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden
}

.pitem {
    background: var(--white);
    padding: 28px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--t)
}

.pitem img {
    max-height: 52px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(1) opacity(.6);
    transition: var(--t)
}

.pitem:hover img {
    filter: grayscale(0) opacity(1);
    transform: scale(1.05)
}

.pitem:hover {
    background: var(--off)
}

/* ─── CONTACT ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px
}

.cinfo {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.citem {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px;
    background: var(--off);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--t)
}

.citem:hover {
    border-color: rgba(26, 86, 219, .3);
    background: rgba(26, 86, 219, .03);
    transform: translateX(4px)
}

.cicon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--grad-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.cicon svg {
    width: 22px;
    height: 22px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2
}

.citem h4 {
    font-weight: 700;
    font-size: .9rem;
    margin-bottom: 2px
}

.citem p,
.citem a {
    color: var(--gray);
    font-size: .9rem;
    margin: 0;
    transition: color var(--t)
}

.citem a:hover {
    color: var(--blue)
}

.cform {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg)
}

.fgroup {
    margin-bottom: 18px
}

.fgroup label {
    display: block;
    font-weight: 600;
    font-size: .85rem;
    margin-bottom: 7px;
    color: var(--dark2)
}

.fgroup input,
.fgroup textarea,
.fgroup select {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: .93rem;
    transition: var(--t);
    outline: none;
    background: var(--off);
    color: var(--dark)
}

.fgroup input:focus,
.fgroup textarea:focus,
.fgroup select:focus {
    border-color: var(--blue);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(26, 86, 219, .1)
}

.fgroup textarea {
    height: 110px;
    resize: vertical
}

.frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

/* ─── FOOTER ─── */
#footer {
    background: #07090f;
    padding: 72px 0 32px
}

.fgrid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 56px;
    margin-bottom: 56px
}

.fbrand img {
    height: 38px;
    filter: brightness(0) invert(1);
    margin-bottom: 18px
}

.fbrand p {
    color: #475569;
    font-size: .88rem;
    line-height: 1.7;
    margin-bottom: 22px
}

.social-row {
    display: flex;
    gap: 8px
}

.sbtn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: var(--t)
}

.sbtn:hover {
    background: var(--grad-blue);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-2px)
}

.sbtn svg {
    width: 16px;
    height: 16px
}

.fcol h4 {
    font-weight: 700;
    color: var(--white);
    font-size: .88rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 20px
}

.fcol ul {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.fcol a {
    font-size: .88rem;
    color: #475569;
    transition: var(--t)
}

.fcol a:hover {
    color: var(--white)
}

.fbot {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, .05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: .82rem;
    color: #334155;
    flex-wrap: wrap
}

/* ─── FLOATING UI ─── */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #2ae065, #19b04b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 28px rgba(37, 211, 102, .45);
    transition: var(--t)
}

.wa-float:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 16px 40px rgba(37, 211, 102, .6)
}

.wa-float::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, .4);
    animation: wa-ring 2s ease infinite
}

@keyframes wa-ring {
    0% {
        transform: scale(1);
        opacity: .8
    }

    100% {
        transform: scale(1.5);
        opacity: 0
    }
}

.wa-float svg {
    width: 30px;
    height: 30px;
    fill: white
}

.lang-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 900;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px 14px 6px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow);
    font-size: .82rem;
    font-weight: 600;
    color: var(--dark);
    transition: var(--t)
}

.lang-float:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    border-color: var(--blue)
}

.lang-float svg {
    width: 18px;
    height: 18px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 2
}

.cookie-bar {
    position: fixed;
    bottom: -200px;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 0 24px 24px;
    transition: bottom .6s cubic-bezier(.4, 0, .2, 1)
}

.cookie-bar.show {
    bottom: 0
}

.cookie-inner {
    background: rgba(15, 23, 42, .96);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, .07);
    border-radius: var(--radius-lg);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 28px;
    justify-content: space-between
}

.cookie-inner p {
    color: #cbd5e1;
    font-size: .85rem;
    margin: 0;
    flex: 1
}

.cookie-inner a {
    color: #60a5fa;
    font-weight: 600
}

.cbg {
    display: flex;
    gap: 10px;
    flex-shrink: 0
}

.cba {
    padding: 9px 22px;
    border-radius: 100px;
    font-weight: 700;
    font-size: .84rem;
    cursor: pointer;
    border: none;
    transition: var(--t)
}

.cba-acc {
    background: var(--grad-blue);
    color: var(--white)
}

.cba-rej {
    background: transparent;
    color: #94a3b8;
    border: 1.5px solid rgba(255, 255, 255, .15)
}

.cba:hover {
    transform: translateY(-1px)
}

/* ─── REVEAL ─── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .75s cubic-bezier(.4, 0, .2, 1), transform .75s cubic-bezier(.4, 0, .2, 1)
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

.d1 {
    transition-delay: .08s
}

.d2 {
    transition-delay: .16s
}

.d3 {
    transition-delay: .24s
}

.d4 {
    transition-delay: .32s
}

.reveal-left {
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity .75s ease, transform .75s ease
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0)
}

.reveal-right {
    opacity: 0;
    transform: translateX(32px);
    transition: opacity .75s ease, transform .75s ease
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0)
}

/* ─── RESPONSIVE ─── */
@media(max-width:1100px) {
    .product-tiles {
        grid-template-columns: repeat(3, 1fr)
    }

    .pgrid {
        grid-template-columns: repeat(4, 1fr)
    }

    .fgrid {
        grid-template-columns: 1fr 1fr;
        gap: 36px
    }
}

@media(max-width:900px) {

    .nav-links,
    .nav-cta {
        display: none
    }

    .hamburger {
        display: flex
    }

    .hero-grid,
    .about-grid,
    .contact-grid,
    .bndes-inner {
        grid-template-columns: 1fr
    }

    .hero-visual {
        display: none
    }

    .modal-body {
        grid-template-columns: 1fr
    }

    .tgrid {
        grid-template-columns: 1fr
    }

    .bndes-right {
        display: none
    }

    .pgrid {
        grid-template-columns: repeat(3, 1fr)
    }

    .stats-inner {
        flex-wrap: wrap
    }

    .stat-item {
        flex: none;
        width: 50%
    }
}

@media(max-width:640px) {
    .container {
        padding: 0 20px
    }

    .product-tiles {
        grid-template-columns: repeat(2, 1fr)
    }

    .pgrid {
        grid-template-columns: repeat(2, 1fr)
    }

    .frow {
        grid-template-columns: 1fr
    }

    .fgrid {
        grid-template-columns: 1fr
    }

    #nav {
        width: calc(100% - 24px);
        top: 8px;
        border-radius: 20px
    }

    h2.title {
        font-size: 1.75rem
    }
}