/* ============================================
   TECBORR - INDEX3 MODERN LAYOUT
   Visual overhaul: glassmorphism, gradients,
   smooth animations, modern cards
   ============================================ */

/* ---------- CSS Variables Override ---------- */
:root {
    --tb-dark: #1a1a1f;
    --tb-dark-2: #222228;
    --tb-dark-card: #2a2a32;
    --tb-accent: #99ce2a;
    --tb-accent-2: #7ab51e;
    --tb-green: #99ce2a;
    --tb-orange: #ff6b35;
    --tb-charcoal: #3a3a42;
    --tb-glass: rgba(255,255,255,0.05);
    --tb-glass-border: rgba(255,255,255,0.08);
    --tb-glass-hover: rgba(153,206,42,0.08);
    --tb-radius: 20px;
    --tb-radius-sm: 12px;
    --tb-radius-xs: 8px;
    --tb-transition: .45s cubic-bezier(.4,0,.2,1);
    --tb-shadow: 0 8px 32px rgba(0,0,0,.3);
    --tb-shadow-glow: 0 0 40px rgba(153,206,42,.10);

    /* Light section palette */
    --tb-white: #ffffff;
    --tb-light: #f7f8fa;
    --tb-lime-tint: #f2f9e4;
    --tb-lime-light: #e8f5cc;
    --tb-text-dark: #2a2a32;
    --tb-text-muted: #5a5e6e;
    --tb-border-light: rgba(0,0,0,.08);
    --tb-glass-light: rgba(255,255,255,.7);
    --tb-glass-border-light: rgba(0,0,0,.06);
}

/* ---------- Global Page Overrides ---------- */
.index3-page {
    background: var(--tb-white);
    color: var(--tb-text-dark);
}

.index3-page .site-main {
    overflow: hidden;
}

/* Noise texture overlay */
.index3-page::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: .015;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
}

/* Smooth section dividers — kill all base template spacing */
.index3-page section {
    position: relative;
    margin: 0 !important;
}

/* ---------- Reveal Animations ---------- */
.tb-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity .8s var(--tb-transition), transform .8s var(--tb-transition);
}
.tb-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.tb-reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity .8s var(--tb-transition), transform .8s var(--tb-transition);
}
.tb-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}
.tb-reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity .8s var(--tb-transition), transform .8s var(--tb-transition);
}
.tb-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}
.tb-reveal-scale {
    opacity: 0;
    transform: scale(.9);
    transition: opacity .8s var(--tb-transition), transform .8s var(--tb-transition);
}
.tb-reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children */
.tb-stagger > *:nth-child(1) { transition-delay: .05s; }
.tb-stagger > *:nth-child(2) { transition-delay: .12s; }
.tb-stagger > *:nth-child(3) { transition-delay: .19s; }
.tb-stagger > *:nth-child(4) { transition-delay: .26s; }
.tb-stagger > *:nth-child(5) { transition-delay: .33s; }
.tb-stagger > *:nth-child(6) { transition-delay: .40s; }

/* ---------- Section Titles ---------- */
.index3-page .sec-title .sub-title {
    color: #fff;
    font-size: clamp(32px, 5vw, 55px);
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.15;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    padding-left: 0;
}
.index3-page .sec-title .sub-title::before {
    display: none;
}
.index3-page .sec-title .sub-title img {
    display: none;
}
.index3-page .sec-title .h2-title {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.5;
    margin-top: 8px;
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
}
.index3-page .sec-title .h2-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--tb-accent), transparent);
    transform: translateY(-50%);
}

/* ---------- HERO SECTION (kept similar, polished) ---------- */
.index3-page .main-banner-modern {
    background: linear-gradient(145deg, #1a1a1f 0%, #222228 35%, #2a2a32 65%, #1a1a1f 100%);
    min-height: auto !important;
    height: auto !important;
    padding-top: calc(var(--top-header) + var(--main-header) + 34px) !important;
    padding-bottom: 40px !important;
}

/* ============================================
   QUEM SOMOS — Glass Bento Grid (LIGHT)
   ============================================ */
.index3-page #quem-somos {
    background: var(--tb-white);
    padding: 70px 0 60px;
    margin: 0 !important;
    position: relative;
}

/* Soft radial glow */
.index3-page #quem-somos::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(153,206,42,.08) 0%, transparent 70%);
    pointer-events: none;
}

.index3-page .about-video-square {
    border-radius: var(--tb-radius);
    overflow: hidden;
    border: 1px solid var(--tb-border-light);
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
    position: relative;
    height: 100%;
    min-height: 480px;
}
.index3-page .about-video-square video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.index3-page #quem-somos .col-lg-6:first-child .tb-reveal-left {
    height: 100%;
}
.index3-page .about-video-square::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--tb-radius);
    background: linear-gradient(180deg, transparent 60%, rgba(12,14,26,.3) 100%);
    pointer-events: none;
}

.index3-page .about-us-content {
    color: var(--tb-text-dark);
}
.index3-page .about-us-content .sec-title .sub-title {
    color: var(--tb-text-dark);
}
.index3-page .about-us-content .h2-title {
    color: #999;
}
.index3-page .about-us-content p {
    color: var(--tb-text-muted);
    font-size: 15px;
    line-height: 1.75;
}

/* Engineer list – glass cards */
.index3-page .engineer-list-item {
    background: var(--tb-light);
    border: 1px solid var(--tb-border-light);
    border-radius: var(--tb-radius-sm);
    padding: 20px;
    margin-bottom: 15px;
    transition: var(--tb-transition);
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.index3-page .engineer-list-item:hover {
    background: var(--tb-lime-tint);
    border-color: rgba(153,206,42,.30);
    transform: translateX(6px);
    box-shadow: 0 4px 20px rgba(153,206,42,.12);
}
.index3-page .engineer-list-item .h4-title {
    color: var(--tb-text-dark);
    font-size: 18px;
}
.index3-page .engineer-list-item p {
    color: var(--tb-text-muted);
    font-size: 14px;
    margin-top: 6px;
}
/* Engineer list custom SVG icons */
.index3-page .engineer-list-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
}
.index3-page .engineer-list-icon img {
    display: none;
}
.index3-page .engineer-list-item:nth-child(1) .engineer-list-icon {
    background: linear-gradient(135deg, rgba(153,206,42,.15), rgba(153,206,42,.05));
    border: 1px solid rgba(153,206,42,.2);
}
.index3-page .engineer-list-item:nth-child(2) .engineer-list-icon {
    background: linear-gradient(135deg, rgba(255,107,53,.15), rgba(255,107,53,.05));
    border: 1px solid rgba(255,107,53,.2);
}
.index3-page .engineer-list-item:nth-child(3) .engineer-list-icon {
    background: linear-gradient(135deg, rgba(100,180,255,.15), rgba(100,180,255,.05));
    border: 1px solid rgba(100,180,255,.2);
}

/* CTA button for about */
.index3-page .about-us-content .sec-btn {
    background: linear-gradient(135deg, var(--tb-accent), var(--tb-accent-2));
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: var(--tb-radius-xs);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .5px;
    transition: var(--tb-transition);
    display: inline-block;
    margin-top: 10px;
}
.index3-page .about-us-content .sec-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(153,206,42,.25);
    color: #fff;
}

/* Timeline badge */
.index3-page .company-timeline {
    margin-top: 50px;
}
.index3-page .company-timeline .timeline-text {
    color: var(--tb-text-dark);
}
.index3-page .company-timeline .company-experiance {
    border-color: var(--tb-accent);
}
.index3-page .company-timeline .company-experiance-content text {
    fill: var(--tb-accent);
}

/* Counter cards */
.index3-page .skills-counter {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px !important;
}
.index3-page .skills-count {
    flex: 1;
    min-width: 170px;
    background: var(--tb-light);
    border: 1px solid var(--tb-border-light);
    border-radius: var(--tb-radius-sm);
    padding: 30px 20px;
    text-align: center;
    transition: var(--tb-transition);
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.index3-page .skills-count:hover {
    border-color: rgba(153,206,42,.3);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(153,206,42,.12);
}
.index3-page .skills-count .h3-title {
    color: var(--tb-text-dark);
    margin-bottom: 4px;
    text-align: center;
    display: flex !important;
    justify-content: center !important;
    align-items: baseline;
    gap: 2px;
}
.index3-page .skills-count .h3-title .counting {
    background: linear-gradient(135deg, var(--tb-accent), var(--tb-accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 42px;
}
.index3-page .skills-count .h3-title span {
    color: var(--tb-accent);
}
.index3-page .skills-count .counting-wp {
    text-align: center !important;
}
.index3-page .skills-count .counting-wp > span {
    color: var(--tb-text-muted);
    font-size: 16px !important;
    font-weight: 500;
    letter-spacing: .3px;
    display: block !important;
    text-align: center !important;
    margin-top: 6px;
}

/* ============================================
   SETORES DE ATUAÇÃO — Hover Cards
   ============================================ */
.index3-page #setores {
    background: var(--tb-lime-tint) !important;
    padding: 70px 0 !important;
    margin: 0 !important;
    position: relative;
    overflow: hidden;
}

/* Mesh gradient background */
.index3-page #setores::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 10% 0%, rgba(153,206,42,.08) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 100%, rgba(153,206,42,.05) 0%, transparent 50%);
    pointer-events: none;
}

.index3-page #setores .sec-title .sub-title {
    color: var(--tb-text-dark);
}
.index3-page #setores .h2-title {
    color: rgba(255,255,255,0.5);
}

/* Swiper cards */
.index3-page .services-box {
    background: var(--tb-white);
    border: 1px solid var(--tb-border-light);
    border-radius: var(--tb-radius);
    overflow: hidden;
    transition: var(--tb-transition);
    position: relative;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.index3-page .services-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--tb-accent), var(--tb-accent-2));
    opacity: 0;
    transition: var(--tb-transition);
    z-index: 2;
}
.index3-page .services-box:hover {
    border-color: rgba(153,206,42,.25);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,.1), 0 0 30px rgba(153,206,42,.08);
}
.index3-page .services-box:hover::before {
    opacity: 1;
}
.index3-page .services-box .services-image {
    overflow: hidden;
    height: 200px;
}
.index3-page .services-box .services-image .back-img {
    transition: transform .6s ease;
}
.index3-page .services-box:hover .services-image .back-img {
    transform: scale(1.08);
}
.index3-page .services-box-icon {
    background: linear-gradient(135deg, var(--tb-accent), var(--tb-accent-2));
    border-radius: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -27px auto 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 6px 20px rgba(153,206,42,.25);
}
.index3-page .services-box-icon img {
    filter: brightness(0) invert(1);
    width: 24px;
    height: 24px;
}
.index3-page .services-box-content {
    padding: 24px 20px 28px;
    text-align: center;
}
.index3-page .services-box-content .h4-title a {
    color: var(--tb-text-dark);
    transition: color .3s;
}
.index3-page .services-box-content .h4-title a:hover {
    color: var(--tb-accent);
}
.index3-page .services-box-content p {
    color: var(--tb-text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-top: 8px;
}
.index3-page .services-box-content .sec-btn.icon-lg {
    background: var(--tb-lime-tint);
    border: 1px solid var(--tb-border-light);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    transition: var(--tb-transition);
}
.index3-page .services-box-content .sec-btn.icon-lg:hover {
    background: var(--tb-accent);
    border-color: var(--tb-accent);
}
.index3-page .swiper-pagination-bullet {
    background: rgba(0,0,0,.2);
    opacity: 1;
}
.index3-page .swiper-pagination-bullet-active {
    background: var(--tb-accent);
    width: 24px;
    border-radius: 10px;
}

/* Swiper navigation buttons */
.services-slider-wrap {
    position: relative;
}
.index3-page .tb-swiper-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--tb-accent);
    background: var(--tb-white);
    color: var(--tb-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--tb-transition);
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
}
.index3-page .tb-swiper-btn:hover {
    background: var(--tb-accent);
    color: #fff;
    box-shadow: 0 6px 24px rgba(153,206,42,.25);
}
.index3-page .services-prev {
    left: -22px;
}
.index3-page .services-next {
    right: -22px;
}
@media (max-width: 991px) {
    .index3-page .services-prev {
        left: -8px;
    }
    .index3-page .services-next {
        right: -8px;
    }
    .index3-page .tb-swiper-btn {
        width: 38px;
        height: 38px;
    }
}

/* ============================================
   NOSSA EXPERIÊNCIA — Timeline Modern
   ============================================ */
.index3-page .skills {
    background: var(--tb-dark);
    padding: 70px 0;
    margin: 0 !important;
    position: relative;
}
.index3-page .skills::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 500px;
    height: 500px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(153,206,42,.04) 0%, transparent 70%);
    pointer-events: none;
}

.index3-page .skills .sub-title {
    color: #fff !important;
}
.index3-page .skills .h2-title {
    color: rgba(255,255,255,0.5);
}
.index3-page .skills p {
    color: #a0a5c0;
}

/* Process steps */
.index3-page .process-item {
    background: var(--tb-glass);
    border: 1px solid var(--tb-glass-border);
    border-radius: var(--tb-radius-sm);
    padding: 18px 20px;
    margin-bottom: 16px;
    transition: background .5s ease, border-color .5s ease, transform .5s ease, box-shadow .5s ease;
    position: relative;
    overflow: hidden;
}
.index3-page .process-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--tb-accent), var(--tb-accent-2));
    opacity: 0;
    transition: opacity .5s ease;
}
/* Auto-highlight active state */
.index3-page .process-item.tb-step-active {
    background: rgba(153,206,42,.08);
    border-color: rgba(153,206,42,.30);
    transform: translateX(8px);
    box-shadow: 0 4px 24px rgba(153,206,42,.10);
}
.index3-page .process-item.tb-step-active::before {
    opacity: 1;
}
.index3-page .process-item.tb-step-active .process-step {
    transform: scale(1.1);
    box-shadow: 0 0 18px rgba(153,206,42,.3);
}
.index3-page .process-item.tb-step-active .h4-title {
    color: var(--tb-accent) !important;
}
.index3-page .process-item:hover {
    background: var(--tb-glass-hover);
    border-color: rgba(153,206,42,.25);
    transform: translateX(8px);
}
.index3-page .process-item:hover::before {
    opacity: 1;
}
.index3-page .process-step {
    background: linear-gradient(135deg, var(--tb-accent), var(--tb-accent-2));
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .4s ease, box-shadow .4s ease;
}
.index3-page .process-step .h4-title {
    color: #fff !important;
    font-size: 16px;
    margin: 0;
}
.index3-page .process-content .h4-title {
    color: #fff;
    font-size: 17px;
}
.index3-page .process-content p {
    font-size: 14px;
    color: #8e93b0;
    margin-top: 4px;
}

/* ===== Autoclave Showcase Card ===== */
.tb-autoclave-card {
    background: var(--tb-glass);
    border: 1px solid var(--tb-glass-border);
    border-radius: var(--tb-radius);
    padding: 32px;
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}
.tb-autoclave-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--tb-accent), var(--tb-accent-2), transparent);
}
.tb-autoclave-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(153,206,42,.1);
    border: 1px solid rgba(153,206,42,.25);
    border-radius: 20px;
    padding: 6px 16px;
    margin-bottom: 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--tb-accent);
    text-transform: uppercase;
}
.tb-autoclave-badge .badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--tb-accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
.tb-autoclave-title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}
.tb-autoclave-desc {
    color: #8e93b0;
    font-size: 14px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}
.tb-autoclave-video {
    border-radius: var(--tb-radius-sm);
    overflow: hidden;
    border: 1px solid var(--tb-glass-border);
    box-shadow: var(--tb-shadow);
    margin-bottom: 20px;
    position: relative;
}
.tb-autoclave-video video {
    width: 100%;
    display: block;
    border-radius: var(--tb-radius-sm);
}
.tb-autoclave-video::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--tb-radius-sm);
    box-shadow: inset 0 0 40px rgba(0,0,0,.3);
    pointer-events: none;
}
.tb-autoclave-specs {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}
.tb-autoclave-spec {
    flex: 1;
    background: rgba(153,206,42,.06);
    border: 1px solid rgba(153,206,42,.12);
    border-radius: var(--tb-radius-xs);
    padding: 14px 12px;
    text-align: center;
}
.tb-autoclave-spec .spec-value {
    color: var(--tb-accent);
    font-size: 20px;
    font-weight: 700;
    display: block;
    line-height: 1;
}
.tb-autoclave-spec .spec-label {
    color: #8e93b0;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
    display: block;
}
.tb-autoclave-footer {
    color: #a0a5c0;
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
}
.index3-page .skills video {
    border-radius: var(--tb-radius);
    border: 1px solid var(--tb-glass-border);
    box-shadow: var(--tb-shadow);
}

/* ============================================
   PRODUTOS — Bento Grid
   ============================================ */
.index3-page .explore-work {
    background: var(--tb-dark-2) !important;
    padding: 70px 0 !important;
    margin: 0 !important;
    position: relative;
}
.index3-page .explore-work .col-lg-12 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Mesh bg */
.index3-page .explore-work::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(153,206,42,.04) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(153,206,42,.03) 0%, transparent 50%);
    pointer-events: none;
}

.index3-page .explore-work .sec-title .sub-title {
    color: #fff;
}
.index3-page .explore-work .h2-title {
    color: rgba(255,255,255,0.5);
}

/* Product cards */
.index3-page .explore-work-box {
    border-radius: var(--tb-radius);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--tb-glass-border);
    transition: var(--tb-transition);
}
.index3-page .explore-work-box:hover {
    border-color: rgba(153,206,42,.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.index3-page .explore-work-box .back-img {
    transition: transform .7s ease;
}
.index3-page .explore-work-box:hover .back-img {
    transform: scale(1.06);
}
.index3-page .explore-work-content {
    background: linear-gradient(0deg, rgba(26,26,31,.97) 0%, rgba(26,26,31,.7) 45%, transparent 100%) !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    padding: 20px !important;
    box-sizing: border-box !important;
}
.index3-page .explore-work-name .h4-title a {
    color: #fff;
}
.index3-page .explore-work-name .work-category {
    color: var(--tb-accent);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* Product card CTA link */
.index3-page .tb-card-cta {
    display: inline-block;
    margin-top: 6px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    color: #fff;
    background: linear-gradient(135deg, var(--tb-accent), var(--tb-accent-2));
    border-radius: 20px;
    text-decoration: none;
    transition: var(--tb-transition);
}
.index3-page .tb-card-cta:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(153,206,42,.3);
    color: #fff;
}
.index3-page .explore-work-content .sec-btn.icon-lg {
    background: var(--tb-glass);
    border: 1px solid var(--tb-glass-border);
    border-radius: 50%;
    transition: var(--tb-transition);
}
.index3-page .explore-work-content .sec-btn.icon-lg:hover {
    background: var(--tb-accent);
    border-color: var(--tb-accent);
}

/* Download button */
.index3-page .more-work .sec-btn {
    background: linear-gradient(135deg, var(--tb-accent), var(--tb-accent-2));
    border: none;
    color: #fff !important;
    padding: 14px 32px;
    border-radius: var(--tb-radius-xs);
    font-weight: 600;
    transition: var(--tb-transition);
}
.index3-page .more-work .sec-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(153,206,42,.25);
    color: #fff !important;
}

/* ============================================
   DEPOIMENTOS — Glass Slider
   ============================================ */
.index3-page .testimonials {
    background: var(--tb-white) !important;
    padding: 70px 0 !important;
    margin: 0 !important;
    position: relative;
}
.index3-page .testimonials .bg-glob {
    opacity: .03;
}
.index3-page .testimonials .sec-title .sub-title {
    color: var(--tb-text-dark);
}
.index3-page .testimonials .h2-title {
    color: #999;
}

.index3-page .testimonial-box {
    background: var(--tb-light);
    border: 1px solid var(--tb-border-light);
    border-radius: var(--tb-radius);
    padding: 36px;
    transition: var(--tb-transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.index3-page .testimonial-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--tb-accent), var(--tb-accent-2), var(--tb-green));
    opacity: 0;
    transition: var(--tb-transition);
}
.index3-page .testimonial-box:hover {
    border-color: rgba(153,206,42,.2);
    box-shadow: 0 12px 40px rgba(0,0,0,.08);
}
.index3-page .testimonial-box:hover::before {
    opacity: 1;
}
.index3-page .testimonial-box .quote_icon {
    color: var(--tb-accent);
    opacity: .3;
}
.index3-page .author-content .h4-title {
    color: var(--tb-text-dark);
}
.index3-page .author-content span {
    color: var(--tb-accent);
}
.index3-page .testimonial-content p {
    color: var(--tb-text-muted);
    font-style: italic;
}
.index3-page .author-img .back-img {
    border: 2px solid var(--tb-border-light);
}

/* ============================================
   BLOG — Modern Cards
   ============================================ */
.index3-page .blog-section {
    background: var(--tb-lime-tint);
    padding: 70px 0 !important;
    margin: 0 !important;
    position: relative;
}
.index3-page .blog-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--tb-dark), var(--tb-lime-tint));
    pointer-events: none;
    display: none;
}

.index3-page .blog-section .sec-title .sub-title {
    color: var(--tb-accent-2);
}
.index3-page .blog-section .h2-title {
    color: var(--tb-text-dark);
}

.index3-page .blog-box {
    background: var(--tb-white);
    border: 1px solid var(--tb-border-light);
    border-radius: var(--tb-radius);
    overflow: hidden;
    transition: var(--tb-transition);
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.index3-page .blog-box:hover {
    border-color: rgba(153,206,42,.2);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,.08);
}
.index3-page .blog-image {
    overflow: hidden;
}
.index3-page .blog-image .back-img {
    transition: transform .6s ease;
}
.index3-page .blog-box:hover .blog-image .back-img {
    transform: scale(1.06);
}
.index3-page .blog-published {
    background: linear-gradient(135deg, var(--tb-accent), var(--tb-accent-2));
    border-radius: var(--tb-radius-xs);
    color: #fff;
    font-weight: 600;
}
.index3-page .blog-box-content {
    padding: 24px;
}
.index3-page .blog-box-content .h4-title a {
    color: var(--tb-text-dark);
    transition: color .3s;
}
.index3-page .blog-box-content .h4-title a:hover {
    color: var(--tb-accent);
}
.index3-page .blog-box-content p {
    color: var(--tb-text-muted);
    font-size: 14px;
}
.index3-page .blog-box-content .sec-btn {
    border-color: var(--tb-border-light);
}
.index3-page .blog-box-content .sec-btn:hover {
    background: var(--tb-accent);
    border-color: var(--tb-accent);
    color: #fff;
}

/* ============================================
   CONTATO — Glassmorphism Form
   ============================================ */
.index3-page #contato {
    background: var(--tb-dark) !important;
    padding: 70px 0 !important;
    margin: 0 !important;
    position: relative;
}
.index3-page #contato::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 50%;
    width: 800px;
    height: 400px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(153,206,42,.04) 0%, transparent 70%);
    pointer-events: none;
}

.index3-page #contato .banner-shape {
    display: none;
}

.index3-page .faq-content .sec-title .sub-title {
    color: var(--tb-accent);
}
.index3-page .faq-content .h2-title {
    color: #fff;
}
.index3-page .faq-content .h6-title {
    color: var(--tb-accent);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.index3-page .faq-content .white-text p,
.index3-page .faq-content .white-text a {
    color: #a0a5c0;
}
.index3-page .faq-content .white-text a:hover {
    color: var(--tb-accent);
}

/* Form Glass */
.index3-page .in-touch-form {
    background: var(--tb-glass);
    border: 1px solid var(--tb-glass-border);
    border-radius: var(--tb-radius);
    padding: 40px;
    backdrop-filter: blur(16px);
    box-shadow: var(--tb-shadow);
}
.index3-page .in-touch-form .h3-title {
    color: #fff;
    font-size: 28px;
    margin-bottom: 28px;
}
.index3-page .in-touch-form .input-field {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--tb-radius-xs);
    color: #fff;
    padding: 14px 18px;
    font-size: 14px;
    transition: var(--tb-transition);
    width: 100%;
}
.index3-page .in-touch-form .input-field::placeholder {
    color: rgba(255,255,255,.35);
}
.index3-page .in-touch-form .input-field:focus {
    border-color: var(--tb-accent);
    box-shadow: 0 0 0 3px rgba(153,206,42,.12);
    outline: none;
    background: rgba(255,255,255,.08);
}
.index3-page .in-touch-form textarea.input-field {
    min-height: 120px;
    resize: vertical;
}
.index3-page .in-touch-form .sec-btn {
    background: linear-gradient(135deg, var(--tb-accent), var(--tb-accent-2));
    border: none;
    color: #fff;
    padding: 16px 40px;
    border-radius: var(--tb-radius-xs);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .5px;
    transition: var(--tb-transition);
    cursor: pointer;
    width: 100%;
}
.index3-page .in-touch-form .sec-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(153,206,42,.25);
    color: #fff;
}

/* ============================================
   FOOTER
   ============================================ */
.index3-page .site-footer {
    background: var(--tb-dark-2);
    border-top: 1px solid var(--tb-glass-border);
}
.index3-page .bottom-footer-text {
    color: #666;
}

/* ============================================
   HORIZONTAL MARQUEE (brands / trust strip)
   ============================================ */
.tb-marquee-strip {
    background: var(--tb-dark);
    border-top: 1px solid var(--tb-glass-border);
    border-bottom: 1px solid var(--tb-glass-border);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
}
.tb-marquee-inner {
    display: flex;
    gap: 60px;
    animation: marquee 30s linear infinite;
    width: max-content;
}
.tb-marquee-item {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255,255,255,.12);
    text-transform: uppercase;
    letter-spacing: 4px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 20px;
}
.tb-marquee-item .dot {
    width: 6px;
    height: 6px;
    background: var(--tb-accent);
    border-radius: 50%;
    opacity: .4;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   FLOATING CTA — bottom of screen
   ============================================ */
.tb-floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--tb-transition);
    pointer-events: none;
}
.tb-floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.tb-floating-cta a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--tb-accent), var(--tb-accent-2));
    color: #fff;
    padding: 14px 26px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 8px 30px rgba(153,206,42,.3);
    transition: var(--tb-transition);
    text-decoration: none;
}
.tb-floating-cta a:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(153,206,42,.35);
    color: #fff;
}

/* ============================================
   ANIMATED GRADIENT BORDER for hero video
   ============================================ */
.index3-page .video-slider {
    border-radius: var(--tb-radius);
    position: relative;
}
.index3-page .video-slider::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--tb-radius) + 2px);
    background: linear-gradient(135deg, var(--tb-accent), var(--tb-charcoal), var(--tb-green), var(--tb-accent));
    background-size: 300% 300%;
    animation: borderGlow 4s ease-in-out infinite;
    z-index: -1;
}
@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ============================================
   SECTION WAVE DIVIDERS
   ============================================ */
.tb-wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    pointer-events: none;
    z-index: 2;
}
.tb-wave-divider svg {
    display: block;
    width: 100%;
    height: 40px;
}
.tb-wave-divider svg path {
    fill: var(--tb-dark);
}
.tb-wave-divider-top {
    top: -1px;
    bottom: auto;
    transform: rotate(180deg);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .index3-page .skills-counter {
        flex-direction: column;
        align-items: stretch;
    }
    .index3-page .skills-count {
        min-width: unset;
    }
    .index3-page .in-touch-form {
        margin-bottom: 40px;
    }
    .index3-page .about-video-square {
        min-height: 300px;
        height: auto;
    }
    .tb-floating-cta {
        bottom: 20px;
        right: 20px;
    }
    .tb-floating-cta a {
        padding: 12px 20px;
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .index3-page .sec-title .h2-title {
        font-size: 28px !important;
    }
    .index3-page .in-touch-form {
        padding: 24px;
    }
    .index3-page .testimonial-box {
        padding: 24px;
    }
    .tb-autoclave-specs {
        flex-direction: column;
    }
}

/* ============================================
   HERO COLOR OVERRIDES (charcoal + lime green)
   ============================================ */
.index3-page .tech-badge {
    background: rgba(153,206,42,.1);
    border-color: rgba(153,206,42,.3);
}
.index3-page .pulse-dot {
    background: #99ce2a;
}
.index3-page .badge-text {
    color: #99ce2a;
}
.index3-page .title-line-2 {
    background: linear-gradient(45deg, #99ce2a, #7ab51e, #b8e04a) !important;
    background-size: 200% 200% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}
.index3-page .title-line-4 {
    color: #99ce2a !important;
    text-shadow: 0 0 20px rgba(153,206,42,.5) !important;
}
.index3-page .modern-btn.primary {
    background: linear-gradient(45deg, #99ce2a, #7ab51e) !important;
    color: #fff !important;
}
.index3-page .modern-btn.primary:hover {
    box-shadow: 0 10px 25px rgba(153,206,42,.3) !important;
    color: #fff !important;
}
.index3-page .modern-btn.secondary:hover {
    border-color: #99ce2a !important;
    color: #99ce2a !important;
}
.index3-page .particle {
    background: #99ce2a !important;
    box-shadow: 0 0 10px #99ce2a !important;
}
.index3-page .frame-corner {
    border-color: #99ce2a !important;
}
.index3-page .status-dot.active {
    background: #99ce2a;
}
.index3-page .tech-grid {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(153,206,42,.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(153,206,42,.04) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 80%, rgba(255,255,255,.03) 0%, transparent 50%) !important;
}
.index3-page .gradient-overlay {
    background:
        radial-gradient(ellipse at 30% 50%, rgba(153,206,42,.03) 0%, transparent 60%),
        radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,.25) 100%) !important;
}

/* ============================================
   DIFERENCIAIS TECBORR — Light Section
   ============================================ */
.index3-page .tb-diferenciais {
    background: #f5f6f8;
    padding: 80px 0 70px;
    position: relative;
}
.index3-page .tb-diferenciais .sec-title .sub-title {
    color: var(--tb-text-dark, #1F212D);
}
.index3-page .tb-diferenciais .sec-title .h2-title {
    color: #999;
}
.index3-page .tb-diferenciais p {
    color: #555;
    font-size: 15px;
    line-height: 1.75;
}

/* Process Cards — horizontal */
.tb-process-cards {
    gap: 0;
}
.tb-process-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    border: 1px solid #e8e9ec;
    transition: transform .4s ease, box-shadow .4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.tb-process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,0,0,.1);
}
.tb-process-card .tb-process-card-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
}
.tb-process-card .tb-process-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.tb-process-card:hover .tb-process-card-img img {
    transform: scale(1.05);
}
.tb-process-card .h4-title {
    font-size: 18px;
    font-weight: 700;
    margin: 20px 20px 8px;
    color: #1F212D;
}
.tb-process-card p {
    font-size: 14px;
    line-height: 1.65;
    color: #666;
    margin: 0 20px 20px;
}

/* ============================================
   AUTOCLAVE SECTION
   ============================================ */
.index3-page .tb-autoclave-section {
    padding: 80px 0;
}
.index3-page .tb-autoclave-section .sec-title .sub-title {
    color: #fff;
}
.index3-page .tb-autoclave-section .sec-title .h2-title {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* Autoclave checklist */
.tb-autoclave-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.tb-autoclave-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.6;
    color: #c0c5d6;
}
.tb-autoclave-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(153,206,42,.15);
    border: 2px solid #99ce2a;
}
.tb-autoclave-list li::after {
    content: '✓';
    position: absolute;
    left: 3px;
    top: 5px;
    font-size: 10px;
    color: #99ce2a;
    font-weight: 700;
}

/* ===== Responsive for new sections ===== */
@media (max-width: 991px) {
    .index3-page .tb-diferenciais {
        padding: 60px 0 50px;
    }
    .tb-process-card .tb-process-card-img {
        height: 150px;
    }
    .tb-process-cards .col-md-6 {
        margin-bottom: 20px;
    }
    .index3-page .tb-autoclave-section {
        padding: 60px 0;
    }
    .tb-lab-img {
        margin-bottom: 30px;
    }
}
@media (max-width: 767px) {
    .tb-process-card .h4-title {
        font-size: 16px;
        margin: 16px 16px 6px;
    }
    .tb-process-card p {
        font-size: 13px;
        margin: 0 16px 16px;
    }
    .tb-autoclave-list li {
        font-size: 14px;
    }
}
