/*==============================================
  ERCA GROUP — Site 2026 v2.0
  Visual chamativo, gradientes, 3D, glassmorphism
  Base: azul ERCA #084c89 + acentos neon
==============================================*/

:root {
    --primary: #084c89;
    --primary-light: #1a6fc4;
    --primary-bright: #3d8bfd;
    --accent-cyan: #00d4ff;
    --accent-gold: #ffc93c;
    --accent-magenta: #ff3d77;
    --dark: #061326;
    --dark-soft: #0a1e3a;
    --light: #f5f9ff;
    --white: #ffffff;
    --gray: #6a7a95;
    --gradient-hero: linear-gradient(135deg, #061326 0%, #084c89 45%, #1a6fc4 80%, #00d4ff 100%);
    --gradient-primary: linear-gradient(135deg, #084c89 0%, #1a6fc4 50%, #00d4ff 100%);
    --gradient-accent: linear-gradient(135deg, #00d4ff 0%, #3d8bfd 100%);
    --gradient-gold: linear-gradient(135deg, #ffc93c 0%, #ff8c42 100%);
    --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.25);
    --shadow-lg: 0 20px 60px rgba(8, 76, 137, 0.25);
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    background: var(--light);
    overflow-x: hidden;
    line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/*==============================================
  SCROLLBAR CUSTOMIZADO
==============================================*/
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: var(--accent-cyan); }

/*==============================================
  SELECTION
==============================================*/
::selection { background: var(--accent-cyan); color: var(--dark); }

/*==============================================
  CURSOR GLOW (opcional — segue o mouse)
==============================================*/
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    mix-blend-mode: screen;
    opacity: 0;
}
@media (min-width: 992px) {
    .cursor-glow { opacity: 1; }
}

/*==============================================
  TOPBAR
==============================================*/
.topbar {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 12px 0;
    font-size: 13px;
    position: relative;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 212, 255, 0.15);
}
.topbar .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 40px;
}
.topbar .info-item {
    display: inline-flex;
    align-items: center;
    margin-right: 28px;
}
.topbar .info-item i {
    color: var(--accent-cyan);
    margin-right: 10px;
    font-size: 14px;
}
@media (max-width: 991px) { .topbar { display: none; } }

/*==============================================
  NAVBAR
==============================================*/
.navbar-2026 {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(8, 76, 137, 0.08);
    transition: all 0.4s var(--transition);
}
.navbar-2026.scrolled {
    box-shadow: 0 10px 40px rgba(8, 76, 137, 0.12);
    background: rgba(255, 255, 255, 0.95);
}
.navbar-2026 .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    max-width: 1400px;
    margin: 0 auto;
    height: 80px;
}
.navbar-2026 .logo img {
    height: 55px;
    transition: transform 0.3s;
}
.navbar-2026 .logo:hover img { transform: scale(1.05); }

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}
.nav-menu > li { position: relative; }
.nav-menu a.nav-link-2026 {
    display: block;
    padding: 12px 18px;
    color: var(--dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s;
}
.nav-menu a.nav-link-2026::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--transition);
}
.nav-menu a.nav-link-2026:hover { color: var(--primary); }
.nav-menu a.nav-link-2026:hover::before { transform: scaleX(1); }

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 240px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(8, 76, 137, 0.18);
    padding: 12px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s var(--transition);
    border: 1px solid rgba(0, 212, 255, 0.1);
}
.nav-menu li:hover > .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
    display: block;
    padding: 12px 18px;
    color: var(--dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.25s;
}
.nav-dropdown a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateX(4px);
}

.btn-linkedin {
    background: var(--gradient-primary);
    color: white !important;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(8, 76, 137, 0.35);
    transition: all 0.3s var(--transition);
    position: relative;
    overflow: hidden;
}
.btn-linkedin::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}
.btn-linkedin:hover::before { left: 100%; }
.btn-linkedin:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.45);
    color: white !important;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: 0;
    font-size: 28px;
    color: var(--primary);
    cursor: pointer;
}
@media (max-width: 991px) {
    .nav-menu, .btn-linkedin { display: none; }
    .mobile-toggle { display: block; }
    .nav-menu.open {
        display: flex;
        position: fixed;
        top: 80px; left: 0; right: 0; bottom: 0;
        background: white;
        flex-direction: column;
        padding: 30px;
        gap: 4px;
        overflow-y: auto;
    }
    .nav-menu.open .nav-dropdown {
        position: static;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
        background: var(--light);
        margin-top: 8px;
    }
}

/*==============================================
  HERO
==============================================*/
.hero-2026 {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-hero);
    background-size: 300% 300%;
    animation: gradientShift 18s ease infinite;
    color: white;
    isolation: isolate;
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-2026::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.35) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 201, 60, 0.15) 0%, transparent 45%),
        radial-gradient(circle at 50% 90%, rgba(255, 61, 119, 0.12) 0%, transparent 40%);
    z-index: -1;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
    z-index: -1;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 12s ease-in-out infinite;
    z-index: -1;
}
.orb-1 { width: 500px; height: 500px; background: var(--accent-cyan); top: -150px; left: -150px; }
.orb-2 { width: 400px; height: 400px; background: var(--primary-bright); bottom: -100px; right: -100px; animation-delay: -6s; }
.orb-3 { width: 300px; height: 300px; background: var(--accent-gold); top: 50%; left: 50%; animation-delay: -3s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -60px) scale(1.1); }
    66% { transform: translate(-30px, 40px) scale(0.95); }
}

.hero-content {
    text-align: center;
    max-width: 1100px;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeUp 1s 0.2s forwards;
}
.hero-badge .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent-cyan);
    box-shadow: 0 0 15px var(--accent-cyan);
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 6rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 1s 0.4s forwards;
}
.hero-title .gradient-text {
    background: linear-gradient(135deg, #00d4ff 0%, #ffc93c 50%, #ff3d77 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientMove 6s ease infinite;
}
@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: clamp(1rem, 1.6vw, 1.35rem);
    max-width: 750px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    animation: fadeUp 1s 0.6s forwards;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s 0.8s forwards;
}

.btn-2026 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 0.3px;
    cursor: pointer;
    border: 0;
    transition: all 0.4s var(--transition);
    position: relative;
    overflow: hidden;
}
.btn-primary-2026 {
    background: white;
    color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}
.btn-primary-2026:hover {
    background: var(--accent-cyan);
    color: var(--dark);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 212, 255, 0.5);
}
.btn-outline-2026 {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}
.btn-outline-2026:hover {
    background: white;
    color: var(--primary);
    border-color: white;
    transform: translateY(-4px) scale(1.02);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 80px auto 0;
    padding: 0 20px;
    opacity: 0;
    animation: fadeUp 1s 1.2s forwards;
}
@media (max-width: 768px) {
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 50px; }
}
.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    transition: all 0.4s var(--transition);
}
.stat-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-cyan);
    box-shadow: var(--shadow-glow);
}
.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff, #00d4ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    opacity: 0.8;
    z-index: 3;
}
.scroll-indicator .mouse {
    width: 24px;
    height: 38px;
    border: 2px solid white;
    border-radius: 14px;
    margin: 0 auto 10px;
    position: relative;
}
.scroll-indicator .mouse::before {
    content: '';
    width: 3px; height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 6px; left: 50%;
    transform: translateX(-50%);
    animation: scrollDot 2s infinite;
}
@keyframes scrollDot {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 14px); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 15px var(--accent-cyan); }
    50% { transform: scale(1.3); box-shadow: 0 0 25px var(--accent-cyan); }
}

/*==============================================
  SEÇÃO GERAL
==============================================*/
.section-2026 {
    padding: 120px 0;
    position: relative;
}
.section-2026.dark {
    background: var(--dark);
    color: white;
}
.container-2026 {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}
@media (max-width: 768px) {
    .section-2026 { padding: 80px 0; }
    .container-2026 { padding: 0 20px; }
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px;
}
.section-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    padding: 8px 20px;
    background: rgba(8, 76, 137, 0.08);
    border-radius: 50px;
    margin-bottom: 20px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}
.section-title .highlight {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-description {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.75;
}

/*==============================================
  UNIDADES DE NEGÓCIOS — CARDS 3D
==============================================*/
.units-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.unit-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    cursor: pointer;
    background: var(--dark);
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.4s var(--transition), box-shadow 0.4s var(--transition);
    box-shadow: 0 15px 40px rgba(8, 76, 137, 0.15);
}
.unit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(8, 76, 137, 0.35);
}
.unit-card__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s var(--transition), filter 0.6s;
    filter: saturate(1.1);
}
.unit-card:hover .unit-card__image {
    transform: scale(1.12);
    filter: saturate(1.3);
}
.unit-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(6, 19, 38, 0) 0%,
        rgba(6, 19, 38, 0.3) 40%,
        rgba(6, 19, 38, 0.95) 100%);
    transition: opacity 0.4s;
}
.unit-card__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%),
        rgba(0, 212, 255, 0.3) 0%,
        transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    mix-blend-mode: screen;
}
.unit-card:hover .unit-card__glow { opacity: 1; }

.unit-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    color: white;
    z-index: 2;
}
.unit-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 16px;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
    transform: translateY(0);
    transition: transform 0.4s;
}
.unit-card:hover .unit-card__icon {
    transform: translateY(-8px) rotate(-8deg);
}
.unit-card__title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}
.unit-card__desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 18px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s var(--transition);
}
.unit-card:hover .unit-card__desc {
    max-height: 120px;
    opacity: 1;
}
.unit-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: gap 0.3s;
}
.unit-card:hover .unit-card__link { gap: 14px; }
.unit-card__border {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, transparent 30%, var(--accent-cyan) 50%, transparent 70%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
.unit-card:hover .unit-card__border { opacity: 1; }

/*==============================================
  SEÇÃO "QUEM SOMOS" — SPLIT
==============================================*/
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
@media (max-width: 991px) {
    .split-section { grid-template-columns: 1fr; gap: 50px; }
}

.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }

.split-media {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
    transition: transform 0.6s var(--transition);
}
.split-media:hover { transform: perspective(1000px) rotateY(0deg) rotateX(0deg); }
.split-media video,
.split-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.split-media::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: 28px;
    z-index: -1;
    filter: blur(30px);
    opacity: 0.5;
}

.split-content .section-title { text-align: left; }
.split-content p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--gray);
    margin-bottom: 20px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--dark);
}
.check-list li i {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    box-shadow: 0 6px 18px rgba(8, 76, 137, 0.3);
    flex-shrink: 0;
}

/*==============================================
  DESTAQUE BLUESIGN — CARD ESPECIAL
==============================================*/
.bluesign-hero {
    background: linear-gradient(135deg, #061326 0%, #084c89 60%, #00d4ff 100%);
    color: white;
    border-radius: 40px;
    padding: 80px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
}
@media (max-width: 991px) {
    .bluesign-hero { grid-template-columns: 1fr; padding: 50px 30px; }
}
.bluesign-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.35), transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}
.bluesign-hero::after {
    content: '💙';
    position: absolute;
    font-size: 400px;
    right: -60px;
    bottom: -120px;
    opacity: 0.08;
    pointer-events: none;
    transform: rotate(-15deg);
}
.bluesign-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(0, 212, 255, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.4);
    color: var(--accent-cyan);
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}
.bluesign-hero h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.1;
}
.bluesign-hero p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 18px;
}
.bluesign-image {
    position: relative;
    z-index: 2;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    transform: rotate(3deg);
    transition: transform 0.6s;
}
.bluesign-image:hover { transform: rotate(0deg) scale(1.03); }
.bluesign-image img { width: 100%; display: block; }

/*==============================================
  SEÇÃO ISO — DUAS BADGES
==============================================*/
.iso-wrapper {
    background: white;
    border-radius: 32px;
    padding: 70px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(8, 76, 137, 0.06);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
@media (max-width: 991px) { .iso-wrapper { grid-template-columns: 1fr; padding: 40px 25px; } }

.iso-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.iso-badge-download {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 28px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 15px 40px rgba(8, 76, 137, 0.3);
    transition: all 0.3s var(--transition);
}
.iso-badge-download:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(0, 212, 255, 0.4);
    color: white;
}
.iso-badge-download i { font-size: 22px; }

.iso-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.iso-image-wrapper::before {
    content: 'ISO CERTIFIED';
    position: absolute;
    top: 20px; left: 20px;
    padding: 8px 16px;
    background: var(--accent-gold);
    color: var(--dark);
    border-radius: 50px;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: 2px;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(255, 201, 60, 0.4);
}
.iso-image-wrapper img {
    width: 100%; height: 100%; object-fit: cover;
}

/*==============================================
  FOOTER
==============================================*/
.footer-2026 {
    background: linear-gradient(180deg, var(--dark) 0%, #030a15 100%);
    color: rgba(255, 255, 255, 0.7);
    padding: 100px 0 30px;
    position: relative;
    overflow: hidden;
}
.footer-2026::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient-primary);
}
.footer-2026::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15), transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}
@media (max-width: 991px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 576px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-col h5 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}
.footer-col h5::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 3px;
    background: var(--gradient-accent);
    border-radius: 3px;
}
.footer-col p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
}
.footer-col p i {
    color: var(--accent-cyan);
    margin-top: 4px;
    flex-shrink: 0;
}
.footer-col p a { color: inherit; text-decoration: none; transition: color 0.3s; }
.footer-col p a:hover { color: var(--accent-cyan); }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-col ul li a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.3s;
}
.footer-col ul li a:hover {
    color: var(--accent-cyan);
    padding-left: 4px;
}
.footer-col ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.footer-social a {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s var(--transition);
}
.footer-social a:hover {
    background: var(--gradient-accent);
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.footer-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.footer-gallery img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.4s;
    filter: grayscale(30%);
}
.footer-gallery img:hover {
    filter: grayscale(0%);
    transform: scale(1.08);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px;
}
.footer-bottom a { color: var(--accent-cyan); text-decoration: none; }

/*==============================================
  BACK TO TOP
==============================================*/
.back-to-top-2026 {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 54px; height: 54px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    z-index: 999;
    box-shadow: 0 10px 40px rgba(8, 76, 137, 0.4);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.4s var(--transition);
}
.back-to-top-2026.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.back-to-top-2026:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.5);
    color: white;
}

/*==============================================
  HERO SPLIT — layout 2 colunas
==============================================*/
.hero-split {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}
@media (max-width: 991px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 50px 25px;
    }
}

.hero-left { color: white; }
.hero-left .hero-title { text-align: left; }
.hero-left .hero-subtitle { margin-left: 0; margin-right: 0; }
.hero-left .hero-cta { justify-content: flex-start; }
@media (max-width: 991px) {
    .hero-left .hero-title,
    .hero-left .hero-subtitle { text-align: center; }
    .hero-left .hero-cta { justify-content: center; }
}

/* Stats horizontais compactos */
.hero-stats-inline {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 50px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0;
    animation: fadeUp 1s 1.2s forwards;
    flex-wrap: wrap;
}
.stat-inline { min-width: 0; }
.stat-inline .stat-number-inline {
    font-size: 2.4rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    background: linear-gradient(135deg, #fff, #00d4ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-inline .stat-label-inline {
    font-size: 11px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1.5px;
    margin-top: 6px;
    font-weight: 600;
}
.stat-divider {
    width: 1px;
    height: 44px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.25), transparent);
}
@media (max-width: 991px) {
    .hero-stats-inline { justify-content: center; }
}
@media (max-width: 576px) {
    .stat-divider { display: none; }
    .hero-stats-inline { gap: 28px 20px; }
}

/* Showcase direita */
.hero-right {
    position: relative;
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    perspective: 1500px;
}
@media (max-width: 576px) { .hero-right { aspect-ratio: 4/5; } }

.showcase-main {
    position: relative;
    width: 82%;
    aspect-ratio: 4 / 5;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.12);
    margin-left: auto;
    margin-top: 8%;
    transform: rotate(4deg);
    transition: transform 0.8s var(--transition);
    animation: floatMain 9s ease-in-out infinite;
    z-index: 1;
}
.showcase-main img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.showcase-main::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-accent);
    border-radius: 32px;
    z-index: -1;
    filter: blur(40px);
    opacity: 0.6;
}
.showcase-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(6, 19, 38, 0.6));
}
.hero-right:hover .showcase-main { transform: rotate(0deg) scale(1.02); }

@keyframes floatMain {
    0%, 100% { transform: rotate(4deg) translateY(0); }
    50% { transform: rotate(4deg) translateY(-18px); }
}

.showcase-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 22px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255,255,255,0.4);
    color: var(--dark);
    z-index: 3;
    min-width: 200px;
}
.showcase-card > i {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(8, 76, 137, 0.4);
}
.showcase-card small {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray);
    margin-bottom: 3px;
    font-weight: 700;
}
.showcase-card strong {
    display: block;
    font-weight: 800;
    font-size: 14px;
    color: var(--dark);
    line-height: 1.2;
}

.card-bluesign {
    top: 12%;
    left: -6%;
    animation: floatCard1 6s ease-in-out infinite;
}
.card-iso {
    bottom: 18%;
    left: -10%;
    animation: floatCard2 7.5s ease-in-out infinite;
}
.card-global {
    top: 6%;
    right: -4%;
    background: linear-gradient(135deg, #084c89, #1a6fc4);
    animation: floatCard3 8s ease-in-out infinite;
    padding: 18px 22px;
}
.card-global strong { color: white; }
.card-global small { color: rgba(255,255,255,0.8); }
.card-global .stat-big {
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #fff, #00d4ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes floatCard1 {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-14px) translateX(6px); }
}
@keyframes floatCard2 {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(12px) translateX(-8px); }
}
@keyframes floatCard3 {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-16px) translateX(-6px); }
}

@media (max-width: 576px) {
    .showcase-card { min-width: 170px; padding: 12px 16px; }
    .showcase-card > i { width: 38px; height: 38px; font-size: 16px; }
    .showcase-card strong { font-size: 12px; }
    .card-global .stat-big { font-size: 1.8rem; }
}

/* Hero ajustado para layout split */
.hero-2026 {
    min-height: auto;
    padding: 20px 0 40px;
}
@media (min-width: 992px) {
    .hero-2026 { min-height: calc(100vh - 80px); }
}

/* Esconde centralizado antigo quando usa split */
.hero-split ~ .scroll-indicator,
.hero-2026:has(.hero-split) .scroll-indicator { display: none; }

/*==============================================
  SCROLL REVEAL (aplicado via JS)
==============================================*/
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s var(--transition), transform 1s var(--transition);
}
.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }
.reveal.delay-5 { transition-delay: 0.5s; }
.reveal.from-left { transform: translateX(-60px); }
.reveal.from-left.in-view { transform: translateX(0); }
.reveal.from-right { transform: translateX(60px); }
.reveal.from-right.in-view { transform: translateX(0); }
.reveal.zoom { transform: scale(0.85); }
.reveal.zoom.in-view { transform: scale(1); }

/*============================================================
  LEGACY OVERRIDES
  Redesenha componentes das páginas antigas (sobre, textil,
  especialidades, agricultura, personalcare, policarboxilatos,
  construção civil, políticas) sem alterar o HTML. Basta
  adicionar <link css/style-2026.css> + <script js/animations-2026.js>.
============================================================*/

/* Reset topbar antigo → visual 2026 */
body > .container-fluid.bg-dark.p-0 {
    background: var(--dark) !important;
    border-bottom: 1px solid rgba(0, 212, 255, 0.15);
    position: relative;
    z-index: 100;
    padding: 0 !important;
}
body > .container-fluid.bg-dark.p-0 .row {
    padding: 12px 0;
}
body > .container-fluid.bg-dark.p-0 small {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
}
body > .container-fluid.bg-dark.p-0 .text-primary {
    color: var(--accent-cyan) !important;
}

/* Navbar antigo → visual 2026 glassmorphism */
nav.navbar.sticky-top {
    background: rgba(255, 255, 255, 0.88) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(8, 76, 137, 0.08);
    top: 0 !important;
    transition: all 0.4s var(--transition);
    box-shadow: 0 2px 20px rgba(8, 76, 137, 0.06);
}
nav.navbar.sticky-top.scrolled {
    background: rgba(255, 255, 255, 0.97) !important;
    box-shadow: 0 10px 40px rgba(8, 76, 137, 0.12);
}
nav.navbar .navbar-brand {
    border-right: 0 !important;
    padding: 14px 30px !important;
}
nav.navbar .navbar-brand img {
    height: 50px; width: auto !important;
    transition: transform 0.3s;
}
nav.navbar .navbar-brand:hover img { transform: scale(1.05); }

nav.navbar .navbar-nav .nav-link {
    position: relative;
    padding: 14px 16px !important;
    margin-right: 0 !important;
    color: var(--dark) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}
nav.navbar .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 6px; left: 16px; right: 16px;
    height: 2px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--transition);
}
nav.navbar .navbar-nav .nav-link:hover { color: var(--primary) !important; }
nav.navbar .navbar-nav .nav-link:hover::before { transform: scaleX(1); }
nav.navbar .navbar-nav .nav-link.active { color: var(--primary) !important; }

nav.navbar .dropdown-menu {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 16px !important;
    box-shadow: 0 20px 60px rgba(8, 76, 137, 0.18);
    padding: 12px !important;
    margin-top: 4px !important;
}
nav.navbar .dropdown-item {
    color: var(--dark) !important;
    font-weight: 500;
    font-size: 14px;
    padding: 12px 18px !important;
    border-radius: 10px;
    transition: all 0.25s;
}
nav.navbar .dropdown-item:hover {
    background: var(--gradient-primary) !important;
    color: white !important;
    transform: translateX(4px);
}

nav.navbar a.btn.btn-primary {
    background: var(--gradient-primary) !important;
    border: 0 !important;
    border-radius: 50px !important;
    color: white !important;
    padding: 14px 28px !important;
    margin: 12px 20px 12px 0 !important;
    height: auto !important;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    box-shadow: 0 10px 30px rgba(8, 76, 137, 0.35);
    transition: all 0.3s var(--transition);
    position: relative;
    overflow: hidden;
}
nav.navbar a.btn.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
}
nav.navbar a.btn.btn-primary:hover::before { left: 100%; }
nav.navbar a.btn.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.45);
}

/* Page Banner antigo (.banner_*) → hero interno 2026 */
.container-fluid[class*="banner_"],
.container-fluid.page-header {
    background: var(--gradient-hero) !important;
    background-size: 300% 300% !important;
    animation: gradientShift 18s ease infinite;
    color: white !important;
    padding: 100px 0 90px !important;
    margin-bottom: 0 !important;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: 360px;
    display: flex;
    align-items: center;
}
.container-fluid[class*="banner_"]::before,
.container-fluid.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.35) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 201, 60, 0.15) 0%, transparent 45%),
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: auto, auto, 60px 60px, 60px 60px;
    mask-image: radial-gradient(circle at center, black, rgba(0,0,0,0.6) 70%);
    -webkit-mask-image: radial-gradient(circle at center, black, rgba(0,0,0,0.6) 70%);
    z-index: -1;
}
.container-fluid[class*="banner_"]::after,
.container-fluid.page-header::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.4), transparent 70%);
    top: -100px; right: -100px;
    filter: blur(60px);
    z-index: -1;
    animation: float 14s ease-in-out infinite;
}
.container-fluid[class*="banner_"] h1,
.container-fluid.page-header h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
    font-weight: 900 !important;
    letter-spacing: -0.02em;
    margin: 0 !important;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #fff 0%, #00d4ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeUp 1s 0.2s both;
}
.container-fluid[class*="banner_"] .breadcrumb,
.container-fluid.page-header .breadcrumb {
    background: transparent !important;
    padding: 0 !important;
    margin: 16px 0 0 !important;
    font-size: 14px;
    animation: fadeUp 1s 0.4s both;
}
.container-fluid[class*="banner_"] .breadcrumb a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
}
.container-fluid[class*="banner_"] .breadcrumb a:hover { color: var(--accent-cyan) !important; }

/* Botão primary global → 2026 */
.btn.btn-primary,
.btn.btn-primary:not(nav *) {
    background: var(--gradient-primary) !important;
    border: 0 !important;
    color: white !important;
    border-radius: 50px !important;
    padding: 14px 30px !important;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 10px 30px rgba(8, 76, 137, 0.3);
    transition: all 0.3s var(--transition);
    position: relative;
    overflow: hidden;
}
.btn.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
    color: white !important;
}
.btn.btn-primary.rounded-pill { border-radius: 50px !important; }

/* Section Feature com cards (sobre.html - timeline países) */
.container-xxl {
    padding: 80px 20px !important;
}
.container-xxl .btn-lg-square.bg-primary {
    background: var(--gradient-primary) !important;
    width: 56px !important;
    height: 56px !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 30px rgba(8, 76, 137, 0.35);
}
.container-xxl .btn-lg-square.bg-primary i {
    font-size: 20px;
    color: white !important;
}
.container-xxl h1[data-toggle="counter-up"] {
    font-size: 2.4rem !important;
    font-weight: 900 !important;
    line-height: 1;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.container-xxl h5 {
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px !important;
    margin-bottom: 12px !important;
}
.container-xxl .col-lg-3 {
    position: relative;
    padding: 40px 28px !important;
    margin-bottom: 10px;
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
}
.container-xxl .col-lg-3::before {
    content: '';
    position: absolute;
    top: 12px; bottom: 12px; left: 20px; right: 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(8, 76, 137, 0.08);
    border: 1px solid rgba(8, 76, 137, 0.05);
    transition: all 0.4s var(--transition);
    z-index: 0;
}
.container-xxl .col-lg-3 > * {
    position: relative;
    z-index: 1;
}
.container-xxl .col-lg-3:hover::before {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(8, 76, 137, 0.18);
    border-color: rgba(0, 212, 255, 0.3);
}

/* Seção "about" (split imagem + texto) */
.container-fluid.bg-light .about,
.container-fluid.bg-light.overflow-hidden {
    background: transparent !important;
}
.container-fluid.bg-light.overflow-hidden {
    background: linear-gradient(180deg, #f5f9ff 0%, #ffffff 100%) !important;
    padding: 60px 0 !important;
    margin-top: 0 !important;
}
.about-text h1,
.about-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem) !important;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.02em;
    margin-bottom: 24px !important;
}
.about-text .text-primary {
    color: var(--primary) !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
}
.about-text p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 14px;
}
.about-text p .fa-check-circle {
    color: var(--accent-cyan) !important;
    font-size: 18px;
}
.about-text img { border-radius: 20px; }
.position-relative img.position-absolute,
.col-lg-6 .position-relative img { border-radius: 20px; overflow: hidden; }

/* Cards "album" (missão, visão, valores da sobre.html) */
.album.bg-light {
    background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%) !important;
    padding: 80px 0 !important;
}
.album .card {
    border: 0 !important;
    border-radius: 24px !important;
    box-shadow: 0 20px 50px rgba(8, 76, 137, 0.1) !important;
    overflow: hidden;
    transition: all 0.4s var(--transition);
    background: white;
    position: relative;
    height: 100%;
}
.album .card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-primary);
}
.album .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(8, 76, 137, 0.2) !important;
}
.album .card-body {
    padding: 40px 30px !important;
}
.album .card h2 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 14px;
}
.album .card h2::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 50px; height: 3px;
    background: var(--gradient-accent);
    border-radius: 3px;
}
.album .card-text {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1rem;
}

/* Accordion (produtos) — visual moderno */
button.accordion {
    display: block;
    width: 100%;
    max-width: 1100px;
    margin: 12px auto !important;
    padding: 22px 32px !important;
    background: white !important;
    border: 0 !important;
    border-left: 4px solid transparent !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 30px rgba(8, 76, 137, 0.08) !important;
    text-align: left;
    font-size: 17px !important;
    font-weight: 700 !important;
    color: var(--primary) !important;
    cursor: pointer;
    position: relative;
    transition: all 0.4s var(--transition);
    font-family: 'Roboto', 'Inter', sans-serif !important;
}
button.accordion:hover {
    background: linear-gradient(135deg, #ffffff, #f0f7ff) !important;
    border-left-color: var(--accent-cyan) !important;
    transform: translateX(6px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.18) !important;
}
button.accordion::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transition: opacity 0.3s;
}
button.accordion.active::before { opacity: 1; }
button.accordion::after {
    content: '+';
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 400;
    transition: transform 0.4s var(--transition);
    box-shadow: 0 6px 18px rgba(8, 76, 137, 0.3);
}
button.accordion.active::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
    background: var(--gradient-accent);
}

.panel {
    max-width: 1100px;
    margin: -6px auto 12px !important;
    padding: 0 32px !important;
    background: white;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 10px 30px rgba(8, 76, 137, 0.05);
    overflow: hidden;
}
.panel[style*="display: block"] {
    padding: 24px 32px 28px !important;
    animation: accordionOpen 0.4s var(--transition);
}
@keyframes accordionOpen {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.panel strong {
    display: inline-block;
    font-weight: 800;
    color: var(--primary);
    padding: 4px 12px;
    background: rgba(0, 212, 255, 0.08);
    border-radius: 8px;
    margin: 6px 0 4px;
    font-size: 14px;
    letter-spacing: 0.3px;
}
.panel p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 10px 10px !important;
}

/* Título "Produtos" centralizado */
.centro, h1.centro.text-primary {
    color: var(--primary) !important;
    font-weight: 900 !important;
    font-size: clamp(2rem, 3.5vw, 2.8rem) !important;
    letter-spacing: -0.02em !important;
    display: inline-block;
    position: relative;
    padding-bottom: 18px;
}
.centro::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 4px;
}

/* Footer antigo → visual 2026 */
.container-fluid.footer,
.container-fluid.bg-dark.text-body.footer {
    background: linear-gradient(180deg, var(--dark) 0%, #030a15 100%) !important;
    color: rgba(255, 255, 255, 0.7) !important;
    padding: 100px 0 30px !important;
    margin-top: 80px !important;
    position: relative;
    overflow: hidden;
}
.container-fluid.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient-primary);
}
.container-fluid.footer::after {
    content: '';
    position: absolute;
    bottom: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15), transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}
.container-fluid.footer h5 {
    color: white !important;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}
.container-fluid.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 3px;
    background: var(--gradient-accent);
    border-radius: 3px;
}
.container-fluid.footer p {
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 0;
    color: rgba(255, 255, 255, 0.75);
}
.container-fluid.footer p i {
    color: var(--accent-cyan) !important;
    margin-top: 4px;
}
.container-fluid.footer p a {
    color: inherit !important;
    text-decoration: none;
    transition: color 0.3s;
}
.container-fluid.footer p a:hover { color: var(--accent-cyan) !important; }
.container-fluid.footer .col-lg-3 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.container-fluid.bg-dark.text-body.footer a.btn.btn-link,
.container-fluid.footer a.btn.btn-link,
.container-fluid.footer .btn-link {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none !important;
    padding: 6px 0 !important;
    margin: 0 !important;
    display: block !important;
    width: 100% !important;
    float: none !important;
    transition: all 0.3s;
    font-size: 14px;
    position: relative;
    text-align: left !important;
    white-space: normal;
    letter-spacing: 0 !important;
}
.container-fluid.bg-dark.text-body.footer a.btn.btn-link::before,
.container-fluid.footer a.btn.btn-link::before {
    display: none !important;
}
.container-fluid.bg-dark.text-body.footer a.btn.btn-link:hover,
.container-fluid.footer a.btn.btn-link:hover,
.container-fluid.footer .btn-link:hover {
    color: var(--accent-cyan) !important;
    padding-left: 6px !important;
    letter-spacing: 0 !important;
    box-shadow: none !important;
}
.container-fluid.footer .btn-square.btn-outline-light {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 12px !important;
    color: white !important;
    transition: all 0.3s var(--transition);
    width: 42px; height: 42px;
}
.container-fluid.footer .btn-square.btn-outline-light:hover {
    background: var(--gradient-accent) !important;
    border-color: transparent !important;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}
.container-fluid.footer .img-fluid.rounded {
    border-radius: 10px !important;
    filter: grayscale(30%);
    transition: all 0.4s;
    aspect-ratio: 1;
    object-fit: cover;
}
.container-fluid.footer .img-fluid.rounded:hover {
    filter: grayscale(0%);
    transform: scale(1.08);
}
.container-fluid.footer .copyright {
    padding-top: 30px !important;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}
.container-fluid.footer .copyright a { color: var(--accent-cyan) !important; }

/* Back-to-top antigo → botão 2026 */
a.back-to-top.btn.btn-primary {
    background: var(--gradient-primary) !important;
    width: 54px !important;
    height: 54px !important;
    border-radius: 50% !important;
    box-shadow: 0 10px 40px rgba(8, 76, 137, 0.4) !important;
    border: 0 !important;
    color: white !important;
    transition: all 0.4s var(--transition);
}
a.back-to-top.btn.btn-primary:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.5) !important;
}

/* Seção Service antiga (service-item dos segmentos) */
.service-item {
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(8, 76, 137, 0.1);
    transition: all 0.4s var(--transition);
    background: white;
}
.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(8, 76, 137, 0.25);
}
.service-item .service-icon {
    background: var(--gradient-primary);
    color: white;
    width: 64px; height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -32px;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 30px rgba(8, 76, 137, 0.35);
}
.service-item .service-icon i { font-size: 22px !important; }

/*============================================================
  MOBILE RESPONSIVE REVIEW
  Ajustes completos para tablet/mobile em todas as páginas.
============================================================*/

/* ---------- TABLET / SMALL DESKTOP (≤ 991px) ---------- */
@media (max-width: 991px) {

    /* Navbar 2026 (home) */
    .navbar-2026 .nav-container {
        padding: 0 20px !important;
        height: 70px;
    }
    .navbar-2026 .logo img { height: 45px; }
    .mobile-toggle { font-size: 26px; padding: 8px 10px; }

    /* Navbar legacy (Bootstrap) — hamburger drawer */
    nav.navbar.sticky-top {
        padding: 0 !important;
        top: 0 !important;
    }
    nav.navbar.sticky-top .navbar-brand {
        padding: 10px 18px !important;
        height: auto !important;
        border-right: 0 !important;
    }
    nav.navbar.sticky-top .navbar-brand img {
        height: 42px !important;
        width: auto !important;
    }
    .navbar-toggler {
        background: rgba(8, 76, 137, 0.06) !important;
        border: 2px solid var(--primary) !important;
        border-radius: 12px !important;
        padding: 8px 12px !important;
        margin: 0 16px 0 auto !important;
        color: var(--primary) !important;
        outline: none !important;
        box-shadow: none !important;
    }
    .navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.25) !important; }
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(8,76,137,0.9)' stroke-width='2.5' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
        width: 1.4em; height: 1.4em;
    }
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 16px 20px 24px !important;
        margin: 0 !important;
        box-shadow: 0 20px 60px rgba(8, 76, 137, 0.15);
        border-top: 1px solid rgba(0, 212, 255, 0.15);
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }
    nav.navbar .navbar-nav {
        padding: 0 !important;
        display: flex;
        flex-direction: column;
        gap: 2px;
        width: 100%;
    }
    nav.navbar .navbar-nav .nav-link,
    nav.navbar .navbar-nav .nav-item.dropdown > .nav-link {
        padding: 14px 18px !important;
        margin: 0 !important;
        border-radius: 12px !important;
        width: 100%;
        display: block !important;
    }
    nav.navbar .navbar-nav .nav-link::before { display: none !important; }
    nav.navbar .navbar-nav .nav-link:hover {
        background: rgba(8, 76, 137, 0.06);
        color: var(--primary) !important;
    }
    nav.navbar .dropdown-menu {
        position: static !important;
        transform: none !important;
        background: rgba(8, 76, 137, 0.04) !important;
        box-shadow: none !important;
        margin: 4px 0 8px !important;
        padding: 8px !important;
        border: 1px solid rgba(8, 76, 137, 0.08) !important;
        width: 100% !important;
    }
    nav.navbar .dropdown-item {
        padding: 10px 14px !important;
        font-size: 13px !important;
    }
    nav.navbar a.btn.btn-primary {
        display: flex !important;
        margin: 16px 0 0 !important;
        width: 100% !important;
        height: auto !important;
        justify-content: center;
        padding: 14px 24px !important;
    }

    /* Sections e containers */
    .section-2026 { padding: 70px 0 !important; }
    .container-2026 { padding: 0 22px !important; }
    .hero-split { padding: 40px 24px !important; gap: 50px !important; }
}

/* ---------- MOBILE (≤ 768px) ---------- */
@media (max-width: 768px) {

    /* Topbar legacy esconde em mobile (já é d-none d-lg-flex) */
    body > .container-fluid.bg-dark.p-0 { display: none !important; }

    /* Page banners — padding e altura reduzidos */
    .container-fluid[class*="banner_"],
    .container-fluid.page-header {
        padding: 70px 20px 50px !important;
        min-height: 240px !important;
    }
    .container-fluid[class*="banner_"] .container,
    .container-fluid.page-header .container {
        padding: 20px 0 !important;
    }
    .container-fluid[class*="banner_"] h1,
    .container-fluid.page-header h1 {
        font-size: clamp(1.8rem, 8vw, 2.8rem) !important;
    }

    /* Seção feature (sobre.php — timeline países) */
    .container-xxl {
        padding: 50px 16px !important;
    }
    .container-xxl .col-lg-3,
    .container-xxl .col-md-6 {
        padding: 26px 20px !important;
        margin-bottom: 8px;
    }
    .container-xxl .col-lg-3::before {
        top: 8px; bottom: 8px; left: 8px; right: 8px;
    }
    .container-xxl h1[data-toggle="counter-up"] { font-size: 2rem !important; }
    .container-xxl .btn-lg-square.bg-primary {
        width: 48px !important;
        height: 48px !important;
    }

    /* Seção about legacy */
    .container-fluid.bg-light.overflow-hidden {
        padding: 40px 16px !important;
    }
    .about-text {
        padding: 30px 20px !important;
    }
    .about-text h1, .about-text h2 {
        font-size: 1.5rem !important;
    }
    .about .col-lg-6 img.position-absolute {
        position: relative !important;
        height: auto !important;
        max-height: 320px !important;
        border-radius: 16px !important;
    }

    /* Missão/visão/valores */
    .album.bg-light { padding: 50px 16px !important; }
    .album .card-body { padding: 28px 22px !important; }
    .album .card h2 { font-size: 1.2rem !important; }

    /* Accordions */
    button.accordion {
        padding: 16px 58px 16px 18px !important;
        font-size: 14px !important;
        margin: 6px 12px !important;
        max-width: calc(100% - 24px);
        line-height: 1.4;
    }
    button.accordion::after {
        right: 12px;
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
    .panel {
        padding: 0 18px !important;
        margin: -4px 12px 8px !important;
        max-width: calc(100% - 24px);
    }
    .panel[style*="display: block"] {
        padding: 18px 18px 20px !important;
    }
    .panel strong { font-size: 13px; }
    .panel p { font-size: 13px !important; }

    /* Título "Produtos" centralizado */
    .centro, h1.centro.text-primary {
        font-size: 1.6rem !important;
        padding: 0 20px 14px !important;
    }

    /* Home — hero */
    .hero-2026 { padding: 10px 0 40px !important; }
    .hero-title { font-size: clamp(2rem, 9vw, 3rem) !important; }
    .hero-subtitle { font-size: 0.95rem !important; }
    .hero-badge {
        font-size: 11px !important;
        padding: 8px 16px !important;
    }
    .hero-cta { flex-direction: column; align-items: center; width: 100%; }
    .hero-cta .btn-2026 { width: 100%; max-width: 320px; justify-content: center; }
    .hero-stats-inline {
        gap: 20px 16px !important;
        margin-top: 34px !important;
        padding-top: 28px !important;
        justify-content: space-around !important;
    }
    .stat-inline .stat-number-inline { font-size: 1.8rem !important; }
    .stat-inline .stat-label-inline { font-size: 10px !important; }
    .stat-divider { display: none !important; }

    /* Home — showcase direita */
    .hero-right {
        max-width: 340px;
        aspect-ratio: 4/5;
    }
    .showcase-main {
        width: 78%;
        border-radius: 24px !important;
    }
    .showcase-card {
        min-width: 160px;
        padding: 10px 14px !important;
        gap: 10px !important;
    }
    .showcase-card > i {
        width: 38px !important;
        height: 38px !important;
        font-size: 16px !important;
    }
    .showcase-card small { font-size: 9px !important; }
    .showcase-card strong { font-size: 12px !important; }
    .card-global .stat-big { font-size: 1.6rem !important; }
    .card-bluesign { left: -4%; top: 10%; }
    .card-iso { left: -6%; bottom: 15%; }
    .card-global { right: -2%; top: 4%; }

    /* Section 2026 home */
    .section-header { margin-bottom: 50px !important; }
    .section-title { font-size: 1.8rem !important; }
    .section-eyebrow { font-size: 11px !important; letter-spacing: 2px !important; }
    .section-description { font-size: 0.95rem !important; }

    /* Units grid */
    .units-grid {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }
    .unit-card { aspect-ratio: 16/14; }
    .unit-card__title { font-size: 1.4rem !important; }
    .unit-card__content { padding: 22px !important; }
    .unit-card__desc {
        max-height: 80px !important;
        opacity: 1 !important;
        font-size: 13px !important;
    }

    /* Split section */
    .split-section { gap: 40px !important; }
    .split-media { transform: none !important; }

    /* Bluesign / ISO wrappers */
    .bluesign-hero { padding: 40px 24px !important; gap: 30px !important; border-radius: 28px !important; }
    .bluesign-hero h2 { font-size: 1.6rem !important; }
    .bluesign-hero p { font-size: 0.95rem !important; }
    .iso-wrapper { padding: 30px 22px !important; gap: 30px !important; border-radius: 24px !important; }
    .iso-wrapper h3 { font-size: 1.4rem !important; }
    .iso-badges { gap: 12px !important; }
    .iso-badge-download { padding: 14px 18px !important; font-size: 14px !important; }

    /* Check list */
    .check-list { grid-template-columns: 1fr !important; gap: 10px !important; }

    /* Footer (novo + legacy) */
    .footer-2026 { padding: 70px 0 24px !important; }
    .footer-grid { gap: 36px !important; }
    .container-fluid.footer,
    .container-fluid.bg-dark.text-body.footer {
        padding: 60px 20px 24px !important;
        margin-top: 60px !important;
    }
    .container-fluid.footer .row.g-5 {
        gap: 36px !important;
    }
    .container-fluid.footer h5 {
        font-size: 1rem !important;
        margin-bottom: 18px !important;
    }
    .container-fluid.footer .copyright {
        padding-top: 20px !important;
        font-size: 12px !important;
    }
    .container-fluid.footer .copyright .row { gap: 10px; }

    /* Back to top */
    .back-to-top-2026,
    a.back-to-top.btn.btn-primary {
        bottom: 20px !important;
        right: 20px !important;
        width: 46px !important;
        height: 46px !important;
    }
}

/* ---------- SMALL MOBILE (≤ 480px) ---------- */
@media (max-width: 480px) {

    /* Navbar ainda mais compacto */
    .navbar-2026 .nav-container,
    nav.navbar.sticky-top .navbar-brand {
        padding: 8px 14px !important;
    }
    .navbar-2026 .logo img,
    nav.navbar.sticky-top .navbar-brand img {
        height: 38px !important;
    }

    /* Hero — reduzir orbs que causam scroll horizontal */
    .orb-1 { width: 300px !important; height: 300px !important; }
    .orb-2 { width: 260px !important; height: 260px !important; }
    .orb-3 { width: 200px !important; height: 200px !important; }

    /* Showcase cards flutuantes — garantir que caibam */
    .showcase-card { min-width: 140px; }

    /* Page banner menor */
    .container-fluid[class*="banner_"],
    .container-fluid.page-header {
        padding: 60px 16px 40px !important;
        min-height: 200px !important;
    }
    .container-fluid[class*="banner_"] h1 {
        font-size: clamp(1.6rem, 9vw, 2.4rem) !important;
    }

    /* Accordion */
    button.accordion {
        padding: 14px 54px 14px 16px !important;
        font-size: 13px !important;
        margin: 6px 8px !important;
        max-width: calc(100% - 16px);
    }
    .panel { margin: -4px 8px 8px !important; max-width: calc(100% - 16px); }

    /* Footer */
    .container-fluid.footer,
    .container-fluid.bg-dark.text-body.footer {
        padding: 50px 16px 20px !important;
    }
}

/* ---------- PREVENÇÃO DE OVERFLOW HORIZONTAL ---------- */
@media (max-width: 991px) {
    html, body { overflow-x: hidden !important; max-width: 100vw; }
    .hero-2026 { overflow-x: hidden; }
    .container, .container-fluid, .container-xxl { max-width: 100% !important; }
}

/*==============================================
  ACESSIBILIDADE: REDUÇÃO DE MOVIMENTO
==============================================*/
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .orb, .hero-2026 { animation: none !important; }
}
