
        /* BASE & VARIABLES */
        :root {
            --bg-dark: #0B1120;
            --bg-card-dark: rgba(30, 41, 59, 0.7);
            --bg-light: #F8FAFC;
            --surface-white: #FFFFFF;
            --primary: #2563EB;
            --primary-hover: #1D4ED8;
            --accent-cyan: #06B6D4;
            --text-dark: #0F172A;
            --text-muted: #64748B;
            --text-light: #F1F5F9;
            --border-color: #E2E8F0;
            --border-dark: rgba(255, 255, 255, 0.15);
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
            --shadow-md: 0 4px 12px -2px rgba(0,0,0,0.08);
            --shadow-lg: 0 12px 24px -4px rgba(0,0,0,0.25);
            --radius-md: 12px;
            --radius-lg: 16px;
        }

        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: var(--text-dark);
            background-color: var(--bg-light);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 2;
        }

        /* NAVBAR */
        .navbar {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(11, 17, 32, 0.9);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 16px 0;
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        .logo-text {
            font-size: 24px;
            font-weight: 800;
            color: #FFFFFF;
            letter-spacing: -0.5px;
        }

        .logo-text span {
            color: var(--accent-cyan);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .nav-link {
            color: #d4ac6d;
            font-weight: 500;
            font-size: 15px;
            transition: color 0.2s;
        }

        .nav-link:hover, .nav-link.active {
            color: #FFFFFF;
        }

        .lang-selector {
            display: inline-flex;
            gap: 6px;
            background: rgba(255, 255, 255, 0.08);
            padding: 4px 8px;
            border-radius: 20px;
        }

        .lang-btn {
            color: #94A3B8;
            font-size: 12px;
            font-weight: 700;
            padding: 4px 8px;
            border-radius: 12px;
        }

        .lang-btn.active {
            background: var(--primary);
            color: #FFFFFF;
        }

        .btn-nav-cta {
            background: var(--primary);
            color: #FFFFFF;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            transition: background 0.2s;
        }

        .btn-nav-cta:hover {
            background: var(--primary-hover);
        }

        /* MENU HAMBURGUER (MOBILE) */
        .hamburger-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }

        .hamburger-btn span {
            display: block;
            width: 26px;
            height: 3px;
            margin: 5px 0;
            background: #FFFFFF;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .hamburger-btn.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
        .hamburger-btn.active span:nth-child(2) { opacity: 0; }
        .hamburger-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

        /* HERO INNER PAGE */
        .hero-inner {
            position: relative;
            background: var(--bg-dark);
            color: #FFFFFF;
            padding: 80px 0 100px 0;
            overflow: hidden;
        }

        .hero-video-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            z-index: 0;
            transform: translate(-50%, -50%);
            object-fit: cover;
            filter: brightness(0.5) contrast(1.1);
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(11, 17, 32, 0.9) 0%, rgba(30, 27, 75, 0.8) 100%);
            z-index: 1;
        }

        .breadcrumb {
            font-size: 14px;
            color: #94A3B8;
            margin-bottom: 16px;
        }

        .breadcrumb a {
            color: var(--accent-cyan);
        }

        .page-title {
            font-size: 42px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .page-subtitle {
            font-size: 18px;
            color: #CBD5E1;
            max-width: 720px;
            margin-bottom: 32px;
            line-height: 1.6;
        }

        .feature-tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 24px;
        }

        .feature-tag {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent-cyan);
        }

        /* SECTIONS */
        .section-padding {
            padding: 90px 0;
        }

        .section-header {
            text-align: center;
            max-width: 750px;
            margin: 0 auto 60px auto;
        }

        .section-subtitle {
            color: var(--primary);
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
            display: block;
        }

        .section-title {
            font-size: 36px;
            font-weight: 800;
            color: var(--text-dark);
            letter-spacing: -0.5px;
        }

        /* MANIFESTO / INNOVATION CONTENT SECTION */
        .manifesto-box {
            background: var(--surface-white);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 60px;
            box-shadow: var(--shadow-md);
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        .manifesto-quote-mark {
            font-size: 80px;
            color: var(--accent-cyan);
            opacity: 0.2;
            position: absolute;
            top: 20px;
            left: 30px;
            line-height: 1;
            font-family: Georgia, serif;
        }

        .manifesto-text {
            font-size: 18px;
            line-height: 1.8;
            color: #334155;
            position: relative;
            z-index: 1;
        }

        .manifesto-text p {
            margin-bottom: 24px;
        }

        .manifesto-text p:last-child {
            margin-bottom: 0;
            font-weight: 700;
            color: var(--primary);
        }

        .manifesto-highlight {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-dark);
            border-left: 4px solid var(--accent-cyan);
            padding-left: 20px;
            margin: 32px 0;
            background: #F8FAFC;
            padding-top: 16px;
            padding-bottom: 16px;
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
        }

        /* PILLARS GRID */
        .pillars-bg {
            background: #F1F5F9;
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .pillar-card {
            background: var(--surface-white);
            border-radius: var(--radius-md);
            padding: 36px 28px;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-sm);
            transition: all 0.2s ease;
        }

        .pillar-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
            border-color: #CBD5E1;
        }

        .pillar-icon {
            width: 56px;
            height: 56px;
            background: #EFF6FF;
            color: var(--primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 20px;
        }

        .pillar-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 12px;
        }

        .pillar-desc {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* CTA BANNER */
        .cta-banner {
            background: linear-gradient(135deg, var(--bg-dark) 0%, #1E1B4B 100%);
            color: #FFFFFF;
            border-radius: var(--radius-lg);
            padding: 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .cta-title {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 16px;
        }

        .cta-desc {
            font-size: 18px;
            color: #94A3B8;
            max-width: 600px;
            margin: 0 auto 32px auto;
        }

        .btn-cta-large {
            display: inline-block;
            background: var(--primary);
            color: #FFFFFF;
            font-weight: 700;
            font-size: 16px;
            padding: 16px 36px;
            border-radius: 10px;
            box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
            transition: background 0.2s, transform 0.2s;
        }

        .btn-cta-large:hover {
            background: var(--primary-hover);
            transform: translateY(-2px);
        }

        /* FOOTER */
        .footer {
            background: var(--bg-dark);
            color: #94A3B8;
            padding: 80px 0 40px 0;
            font-size: 14px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.2fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-title {
            color: #FFFFFF;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-links li { margin-bottom: 12px; }
        .footer-links a:hover { color: #FFFFFF; }

        .social-links { display: flex; gap: 12px; margin-top: 20px; }

        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 10px;
            color: #94A3B8;
            transition: all 0.2s ease;
        }

        .social-icon:hover {
            background: var(--primary);
            color: #FFFFFF;
            border-color: var(--primary);
            transform: translateY(-3px);
        }

        .social-icon svg { width: 20px; height: 20px; fill: currentColor; }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            font-size: 13px;
        }

        /* WHATSAPP FLOAT BUTTON */
        .whatsapp-float {
            position: fixed;
            bottom: 24px;
            right: 24px;
            background: #25D366;
            color: #FFFFFF;
            border-radius: 50px;
            padding: 12px 24px;
            font-weight: 700;
            font-size: 15px;
            box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
            z-index: 9999;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* MEDIA QUERIES MOBILE */
        @media (max-width: 992px) {
            .grid-3 { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .manifesto-box { padding: 40px 24px; }
        }

        @media (max-width: 768px) {
            .hamburger-btn { display: block; }
            .nav-menu {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #0B1120;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                flex-direction: column;
                padding: 24px;
                gap: 20px;
                display: none;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            .nav-menu.active { display: flex; }
            .page-title { font-size: 30px; }
            .section-title { font-size: 28px; }
            .grid-3, .footer-grid { grid-template-columns: 1fr; }
            .cta-banner { padding: 36px 20px; }
            .cta-title { font-size: 26px; }
        }
                .ingles-link {
			position: fixed;
			bottom: 200px;
			right: 20px;
                        z-index: 2000;
		}
                .espanhol-link {
			position: fixed;
			bottom: 230px;
			right: 20px;
                        z-index: 2000;
		}
		.brasil-link {
			position: fixed;
			bottom: 260px;
			right: 20px;
                        z-index: 2000;
		}
                .box-cookies.hide {
  display: none !important;
}

.box-cookies {
  position: fixed;
  background: rgba(0, 0, 0, .9);
  width: 100%;
  z-index: 998;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.box-cookies .msg-cookies,
.box-cookies .btn-cookies {
  text-align: center;
  padding: 25px;
  color: #fff;
  font-size: 18px;
}

.box-cookies .btn-cookies {
  background: #1e88e5;
  cursor: pointer;
  align-self: normal;
}

@media screen and (max-width: 600px) {
  .box-cookies {
    flex-direction: column;
  }
}