:root {
    --red: #ff351c;
    --blue: #002fc8;
    --dark: #0d1117;
    --light: #f7f8fc;
    --mid: #e4e6ef;
    --white: #ffffff;
    --text: #1a1d2e;
    --gray: #6b7080;
    --red-light: rgba(255,53,28,0.08);
    --blue-light: rgba(0,47,200,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; background: var(--light); color: var(--text); overflow-x: hidden; }

/* ══════════════════════════════════════════
    NAV — BRANCA
══════════════════════════════════════════ */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    border-bottom: 3px solid var(--red);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    height: 76px;
}

.nav-logo img {
    height: 48px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 4px;
    transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--red); background: var(--red-light); }

.nav-cta {
    background: var(--red) !important;
    color: var(--white) !important;
    border-radius: 4px !important;
    padding: 10px 20px !important;
}
.nav-cta:hover { background: #d42a14 !important; color: var(--white) !important; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); transition: all .3s; }

/* ══════════════════════════════════════════
    HERO — BRANCO COM GEOMETRIA
══════════════════════════════════════════ */
#home {
    padding-top: 76px;
    min-height: 100vh;
    background: var(--white);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.hero-hex-bg {
    position: absolute;
    inset: 0;
    opacity: .04;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='115' viewBox='0 0 100 115'%3E%3Cpolygon fill='%23002fc8' points='50 5 95 30 95 80 50 105 5 80 5 30'/%3E%3C/svg%3E");
    background-size: 80px 92px;
}

.hero-shape-right {
    position: absolute;
    right: -60px;
    top: 0;
    bottom: 0;
    width: 45%;
    background: linear-gradient(135deg, var(--blue) 0%, #001a80 100%);
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hex-deco {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

#heroCarousel.hex-deco {
    right: -60px;
    top: 0;
    bottom: 0;
    width: 45%;
    transform: none;
    z-index: 4;
    gap: 0;
    align-items: stretch;
    justify-content: stretch;
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    overflow: hidden;
}

.hc {
    width: 280px;
    position: relative;
}
.hc-viewport {
    overflow: hidden;
    border-radius: 16px;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
}
.hc-track {
    display: flex;
    transition: transform .35s;
    will-change: transform;
}
.hc-slide { min-width: 100%; }
.hc-slide img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.hc-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(0,0,0,0.35);
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hc-btn:hover { background: rgba(0,0,0,0.5); }
.hc-prev { left: 10px; }
.hc-next { right: 10px; }
.hc-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}
.hc-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: rgba(255,255,255,0.45);
    transition: background .2s, transform .2s;
}
.hc-dot.active { background: var(--red); transform: scale(1.15); }

#heroCarousel .hc { width: 100%; height: 100%; }
#heroCarousel .hc-viewport { height: 100%; border-radius: 0; border: none; background: transparent; backdrop-filter: none; }
#heroCarousel .hc-track { height: 100%; }
#heroCarousel .hc-slide { height: 100%; }
#heroCarousel .hc-slide img { height: 100%; }
#heroCarousel .hc-btn { display: none; }
#heroCarousel .hc-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 18px;
    margin-top: 0;
    z-index: 3;
    padding: 8px 12px;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    backdrop-filter: blur(6px);
}
#heroCarousel .hc-dot { width: 11px; height: 11px; }

.hex-stat {
    width: 140px;
    height: 140px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: background .3s;
}
.hex-stat:hover { background: rgba(255,255,255,0.15); }

.hex-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 46px;
    color: var(--white);
    line-height: 1;
}
.hex-stat-num em { font-style: normal; color: var(--red); font-size: 32px; }
.hex-stat-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    text-align: center;
    margin-top: 4px;
    padding: 0 12px;
    line-height: 1.4;
}

.hero-content {
    position: relative;
    z-index: 3;
    flex: 1;
    display: flex;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
    pointer-events: none;
}

.hero-left { max-width: 580px; pointer-events: auto; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red-light);
    border: 1.5px solid rgba(255,53,28,0.2);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 28px;
    animation: fadeUp .5s ease both;
}
.hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--red);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: .3; transform: scale(1.5); }
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 7vw, 88px);
    line-height: 0.95;
    color: var(--text);
    letter-spacing: 1px;
    margin-bottom: 10px;
    animation: fadeUp .6s .1s ease both;
}
.hero-title .line-red { color: var(--red); }
.hero-title .line-blue { color: var(--blue); }

.hero-sub {
    font-size: 17px;
    line-height: 1.75;
    color: var(--gray);
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 480px;
    animation: fadeUp .6s .2s ease both;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp .6s .3s ease both;
}

.btn-red {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: var(--white);
    padding: 14px 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid var(--red);
    transition: all .2s;
}
.btn-red:hover { background: #d42a14; border-color: #d42a14; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,53,28,0.3); }

.btn-blue {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--blue);
    padding: 14px 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid var(--blue);
    transition: all .2s;
}
.btn-blue:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }

.hero-strip {
    position: relative;
    z-index: 3;
    background: var(--light);
    border-top: 1px solid var(--mid);
    display: flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    border-right: 1px solid var(--mid);
    font-size: 13px;
    font-weight: 600;
    color: var(--gray);
}
.strip-item span { color: var(--blue); font-size: 18px; }
.strip-item:last-child { border-right: none; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════
    SECTION SHARED
══════════════════════════════════════════ */
.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-label::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--red);
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 4.5vw, 60px);
    line-height: 1;
    color: var(--text);
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* ══════════════════════════════════════════
    EMPRESA
══════════════════════════════════════════ */
#empresa {
    padding: 110px 40px;
    background: var(--white);
}

.empresa-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.empresa-text p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--gray);
    font-weight: 300;
    margin-bottom: 20px;
}

.empresa-highlight {
    background: linear-gradient(135deg, var(--red) 0%, #c42010 100%);
    color: var(--white);
    padding: 28px 32px;
    border-radius: 8px;
    margin-top: 32px;
    position: relative;
    overflow: hidden;
}
.empresa-highlight::after {
    content: '"';
    position: absolute;
    right: 20px;
    top: -10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 120px;
    color: rgba(255,255,255,0.1);
    line-height: 1;
}
.empresa-highlight p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    color: rgba(255,255,255,0.95);
    margin: 0;
    position: relative;
}

.pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.pillar-card {
    background: var(--light);
    border: 1.5px solid var(--mid);
    border-radius: 8px;
    padding: 28px 24px;
    transition: border-color .2s, box-shadow .2s;
    position: relative;
    overflow: hidden;
}
.pillar-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
}
.pillar-card:nth-child(1)::before { background: var(--red); }
.pillar-card:nth-child(2)::before { background: var(--blue); }
.pillar-card:nth-child(3)::before { background: var(--blue); }
.pillar-card:nth-child(4)::before { background: var(--red); }
.pillar-card:hover { border-color: var(--red); box-shadow: 0 8px 32px rgba(255,53,28,0.1); }

.pillar-icon {
    font-size: 28px;
    margin-bottom: 14px;
    display: block;
}
.pillar-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}
.pillar-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
}

/* ══════════════════════════════════════════
    PRODUTOS
══════════════════════════════════════════ */
#produtos {
    padding: 110px 40px;
    background: var(--light);
}

.produtos-inner { max-width: 1280px; margin: 0 auto; }

.produtos-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1.5px solid var(--mid);
    border-radius: 6px;
    padding: 10px 18px;
    transition: border-color .2s;
}
.search-box:focus-within { border-color: var(--blue); }
.search-box input {
    border: none;
    outline: none;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    color: var(--text);
    background: none;
    width: 220px;
}
.search-box input::placeholder { color: var(--gray); }
.search-box span { color: var(--gray); font-size: 16px; }

.filter-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.ftab {
    padding: 7px 18px;
    border: 1.5px solid var(--mid);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    background: var(--white);
    color: var(--gray);
    transition: all .2s;
    font-family: 'Barlow', sans-serif;
}
.ftab:hover { border-color: var(--blue); color: var(--blue); }
.ftab.active { background: var(--blue); border-color: var(--blue); color: var(--white); }

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(272px, 1fr));
    gap: 16px;
}

.pcard {
    background: var(--white);
    border: 1.5px solid var(--mid);
    border-radius: 8px;
    padding: 22px;
    transition: all .25s;
    position: relative;
    overflow: hidden;
}
.pcard::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}
.pcard:hover { border-color: transparent; box-shadow: 0 10px 40px rgba(0,47,200,0.12); transform: translateY(-4px); }
.pcard:hover::after { transform: scaleX(1); }
.pcard.hidden { display: none; }

.pcard-subgrupo {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 6px;
}
.pcard-nome {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 3px;
}
.pcard-familia {
    font-size: 13px;
    color: var(--gray);
    font-weight: 300;
    margin-bottom: 18px;
}
.pcard-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--mid);
}
.pcard-link {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--red);
    text-decoration: none;
    transition: letter-spacing .2s;
}
.pcard-link:hover { letter-spacing: 2px; }
.pcard-tag {
    font-size: 11px;
    padding: 3px 10px;
    background: var(--blue-light);
    color: var(--blue);
    border-radius: 100px;
    font-weight: 600;
}
.pcard-add {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--white);
    border: 1.5px solid var(--blue);
    border-radius: 4px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all .2s;
}
.pcard-add:hover { background: var(--blue); color: var(--white); }

.cart-box {
    border: 1.5px solid var(--mid);
    background: var(--light);
    padding: 16px;
    border-radius: 8px;
    margin: 16px 0;
}
.cart-header {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 10px;
}
.cart-list { display: flex; flex-direction: column; gap: 8px; }
.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    border: 1px solid var(--mid);
    border-radius: 6px;
    padding: 10px 12px;
}
.cart-item-name { font-size: 14px; font-weight: 700; color: var(--text); }
.cart-item-meta { font-size: 12px; color: var(--gray); }
.cart-remove {
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
}
.cart-empty { font-size: 13px; color: var(--gray); }
.hidden { display: none !important; }

.mobile-cart-bar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    border-top: 1px solid var(--mid);
    padding: 10px 16px;
    z-index: 2000;
}
.mobile-cart-bar .count { font-size: 14px; font-weight: 700; color: var(--text); }
.mobile-cart-btn {
    border: 1.5px solid var(--blue);
    color: var(--blue);
    background: var(--white);
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
}
@media (max-width: 880px) { .mobile-cart-bar { padding: 8px 12px; } }

.mobile-cart-panel {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    background: var(--light);
    border-top: 2px solid var(--mid);
    box-shadow: 0 -12px 32px rgba(0,0,0,0.12);
    transform: translateY(100%);
    transition: transform .25s;
    z-index: 2100;
    max-height: 60vh;
}
.mobile-cart-panel.open { transform: translateY(0); }
.mobile-cart-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 16px; background: var(--white); border-bottom: 1px solid var(--mid);
}
.mobile-panel-inner { padding: 16px; overflow: auto; }

.toast {
    position: fixed;
    bottom: 70px; right: 16px;
    background: var(--dark);
    color: var(--white);
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 13px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .2s, transform .2s;
    z-index: 2200;
    pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); }

.no-results {
    display: none;
    text-align: center;
    padding: 60px 20px;
    color: var(--gray);
    font-size: 15px;
}

/* ══════════════════════════════════════════
    ACCORDION DE PRODUTOS
══════════════════════════════════════════ */
.acc-container { display: flex; flex-direction: column; gap: 10px; }

.acc-section {
    border: 1.5px solid var(--mid);
    border-radius: 8px;
    overflow: hidden;
}
.acc-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 24px;
    background: var(--white);
    border: none;
    cursor: pointer;
    font-family: 'Barlow', sans-serif;
    text-align: left;
    transition: background .2s;
}
.acc-header:hover { background: var(--light); }
.acc-section.open > .acc-header { background: var(--blue); }
.acc-section.open > .acc-header * { color: var(--white); }
.acc-section.open .acc-title { color: var(--white); }
.acc-section.open .acc-count { color: rgba(255,255,255,0.55); }
.acc-section.open .acc-arrow { color: var(--white); transform: rotate(180deg); }
.acc-title {
    flex: 1;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text);
}
.acc-count {
    font-size: 12px;
    color: var(--gray);
    font-weight: 600;
}
.acc-arrow {
    font-size: 11px;
    color: var(--gray);
    transition: transform .25s;
}
.acc-body {
    display: none;
    padding: 20px;
    background: var(--light);
    border-top: 1px solid var(--mid);
}
.acc-section.open > .acc-body { display: block; }

/* ══════════════════════════════════════════
    BLOG
══════════════════════════════════════════ */
#blog {
    padding: 110px 40px;
    background: var(--blue);
    position: relative;
    overflow: hidden;
}

.blog-hex-bg {
    position: absolute;
    inset: 0;
    opacity: .06;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='115' viewBox='0 0 100 115'%3E%3Cpolygon fill='white' points='50 5 95 30 95 80 50 105 5 80 5 30'/%3E%3C/svg%3E");
    background-size: 80px 92px;
}

.blog-red-accent {
    position: absolute;
    top: 0; bottom: 0;
    right: 0;
    width: 5px;
    background: var(--red);
}

.blog-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }

.blog-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 48px;
}

.blog-top .section-label { color: rgba(255,255,255,0.5); }
.blog-top .section-label::before { background: rgba(255,255,255,0.3); }
.blog-top .section-title { color: var(--white); }

.blog-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 20px;
}

.bcard {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: background .2s, border-color .2s;
}
.bcard:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2); }

.bcard-img {
    background: linear-gradient(135deg, rgba(255,53,28,0.3), rgba(255,255,255,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    height: 170px;
    padding: 12px;
    position: relative;
    overflow: hidden;
}
.bcard:first-child .bcard-img { height: 220px; }
.bcard-img-link {
    width: 100%;
    height: 100%;
    display: block;
    text-decoration: none;
}
.bcard-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}
.bcard-img-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
}

.bcard-body { padding: 24px; }
.bcard-cat {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 10px;
}
.bcard-date {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    margin-top: -6px;
    margin-bottom: 10px;
}
.bcard-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 10px;
}
.bcard:first-child .bcard-title { font-size: 26px; }
.bcard-excerpt { font-size: 14px; color: rgba(255,255,255,0.82); line-height: 1.75; font-weight: 400; }
.bcard-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--red);
    text-decoration: none;
    margin-top: 14px;
    transition: gap .2s;
}
.bcard-link:hover { gap: 10px; }

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.7);
    padding: 10px 22px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all .2s;
}
.btn-outline-white:hover { border-color: var(--white); color: var(--white); }

/* ══════════════════════════════════════════
    CONTATO
══════════════════════════════════════════ */
#contato {
    padding: 110px 40px;
    background: var(--white);
}

.contato-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contato-info p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    font-weight: 300;
    margin-bottom: 36px;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: center;
}
.info-icon {
    width: 46px; height: 46px;
    flex-shrink: 0;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
}
.info-icon.red { background: var(--red-light); }
.info-icon.blue { background: var(--blue-light); }
.info-text strong { display: block; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text); margin-bottom: 2px; }
.info-text span { font-size: 14px; color: var(--gray); }

.form-box {
    background: var(--light);
    border: 1.5px solid var(--mid);
    border-radius: 10px;
    padding: 40px;
}

.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text); margin-bottom: 8px; }
.form-control {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--mid);
    border-radius: 6px;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    color: var(--text);
    background: var(--white);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}
.form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,47,200,0.08); }
textarea.form-control { height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s, transform .2s, box-shadow .2s;
    margin-top: 4px;
}
.btn-submit:hover { background: #d42a14; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,53,28,0.3); }

.form-success {
    display: none;
    margin-top: 14px;
    background: rgba(0,180,100,0.08);
    border: 1.5px solid rgba(0,180,100,0.25);
    border-radius: 6px;
    padding: 16px 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #008850;
}
.form-success-text {
    margin-bottom: 12px;
}
.form-whatsapp-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 18px;
    border-radius: 6px;
    background: #25D366;
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform .2s, box-shadow .2s, background .2s;
}
.form-whatsapp-btn:hover {
    background: #1fb657;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.28);
}
.form-error {
    display: none;
    margin-top: 14px;
    background: rgba(255,53,28,0.06);
    border: 1.5px solid rgba(255,53,28,0.25);
    border-radius: 6px;
    padding: 16px 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--red);
}

/* ══════════════════════════════════════════
    LOGIN
══════════════════════════════════════════ */
#login {
    padding: 110px 40px;
    background: var(--light);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 900px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.login-side-info {
    background: linear-gradient(160deg, var(--blue) 0%, #001a80 100%);
    padding: 56px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.login-side-info::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    bottom: 0;
    width: 4px;
    background: var(--red);
}
.login-side-info::after {
    content: '🔐';
    position: absolute;
    bottom: 30px;
    right: 30px;
    font-size: 80px;
    opacity: .1;
}

.login-side-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 16px;
    line-height: 1;
}
.login-side-info p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 32px;
}

.login-perks { list-style: none; }
.login-perks li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 14px;
    font-weight: 500;
}
.login-perks li::before {
    content: '✓';
    width: 22px; height: 22px;
    flex-shrink: 0;
    background: rgba(255,53,28,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #ff8070;
}

.login-side-form {
    background: var(--white);
    padding: 56px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.login-side-form h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    color: var(--text);
    margin-bottom: 6px;
}
.login-side-form p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 32px;
    font-weight: 300;
}
.login-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
.login-input {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--mid);
    border-radius: 6px;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    color: var(--text);
    outline: none;
    transition: border-color .2s;
    margin-bottom: 16px;
    background: var(--light);
}
.login-input:focus { border-color: var(--blue); background: var(--white); }
.btn-login {
    width: 100%;
    padding: 14px;
    background: var(--blue);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .2s;
}
.btn-login:hover { background: #001fa0; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,47,200,0.3); }
.login-recover { margin-top: 16px; text-align: center; font-size: 13px; color: var(--gray); }
.login-recover a { color: var(--red); text-decoration: none; font-weight: 600; }

/* ══════════════════════════════════════════
    FOOTER
══════════════════════════════════════════ */
footer {
    background: #0a0e1a;
    position: relative;
}

.footer-top-bar {
    background: var(--red);
    padding: 18px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.footer-top-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.92);
    letter-spacing: 0.5px;
}
.footer-top-item span { font-size: 18px; }

.footer-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 40px 48px;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 56px;
}

.footer-logo-img {
    height: 44px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    opacity: .9;
    display: block;
}
.footer-brand-desc {
    font-size: 13px;
    line-height: 1.85;
    color: rgba(255,255,255,0.38);
    font-weight: 300;
    max-width: 270px;
    margin-bottom: 24px;
}
.footer-iso {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}
.footer-iso-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
}

.footer-blog {
    max-width: 320px;
}
.footer-blog-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-blog-item {
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-blog-item:last-child { border-bottom: none; padding-bottom: 0; }
.footer-blog-date {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.38);
    margin-bottom: 6px;
}
.footer-blog-link {
    font-size: 13px;
    line-height: 1.6;
    font-weight: 500;
    color: rgba(255,255,255,0.76);
    text-decoration: none;
    transition: color .2s;
}
.footer-blog-link:hover { color: var(--white); }

.footer-col-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color .2s, padding-left .2s;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--red);
    transition: width .2s;
    flex-shrink: 0;
}
.footer-links a:hover { color: var(--white); }
.footer-links a:hover::before { width: 12px; }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}
.footer-contact-icon {
    width: 34px; height: 34px;
    flex-shrink: 0;
    border-radius: 6px;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}
.footer-contact-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 2px;
}
.footer-contact-value {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 40px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom-left {
    font-size: 12px;
    color: rgba(255,255,255,0.2);
}
.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 8px;
}
.fbd { width: 8px; height: 8px; border-radius: 50%; }
.fbd.r { background: var(--red); }
.fbd.b { background: var(--blue); }
.footer-bottom-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
    margin-left: 4px;
}
.footer-dev-credit {
    font-size: 11px;
    color: rgba(255,255,255,0.2);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-dev-credit:hover {
    color: var(--red);
}

/* ══════════════════════════════════════════
    WHATSAPP
══════════════════════════════════════════ */
.wa-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.55); }
.wa-btn svg { width: 28px; height: 28px; fill: white; }
.wa-pulse {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: rgba(37,211,102,0.3);
    animation: waPulse 2.5s infinite;
}
@keyframes waPulse { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(1.7); opacity: 0; } }

/* ══════════════════════════════════════════
    SCROLL REVEAL
══════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }

/* ══════════════════════════════════════════
    RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-shape-right { width: 35%; }
    .hex-deco { right: 20px; }
    .hex-stat { width: 120px; height: 120px; }
    .hex-stat-num { font-size: 36px; }
    #heroCarousel.hex-deco { width: 35%; }
    .blog-grid { grid-template-columns: 1fr 1fr; }
    .blog-grid .bcard:first-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 76px;
        left: 0; right: 0;
        background: var(--white);
        padding: 20px 24px;
        gap: 4px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        border-bottom: 3px solid var(--red);
    }
    .nav-links a { padding: 12px 16px; }
    .hamburger { display: flex; }
    .empresa-inner, .contato-inner { grid-template-columns: 1fr; gap: 40px; }
    .login-wrap { grid-template-columns: 1fr; }
    .login-side-info { display: none; }
    .hero-shape-right { display: none; }
    .hex-deco {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin: 22px auto 0;
        width: min(420px, 100%);
    }
    .hc { width: 100%; }
    #heroCarousel.hex-deco { bottom: auto; clip-path: none; overflow: visible; width: 100%; margin: 16px auto 0; }
    #heroCarousel .hc-viewport { aspect-ratio: 1; }
    .hero-left { max-width: 100%; }
    #home { min-height: auto; padding-bottom: 0; }
    .hero-content { padding: 60px 24px 40px; }
    #empresa, #produtos, #blog, #contato, #login { padding: 80px 24px; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; padding: 48px 24px 36px; }
    .footer-top-bar { gap: 24px; padding: 14px 24px; }
    .footer-bottom { padding: 16px 24px; }
    .strip-item { padding: 14px 18px; font-size: 12px; }
    .form-row { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .pillars-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
    .footer-main { grid-template-columns: 1fr; }
    .footer-top-bar { gap: 14px; }
    .nav-inner { padding: 0 20px; }
    .hero-content { padding: 40px 20px 32px; }
    .strip-item:nth-child(n+3) { display: none; }
    .form-box { padding: 28px 20px; }
}
