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

        :root {
            /* NEXA CARGO — Identidade Visual */
            --gold: #c9a84c;
            --gold-light: #dfc373;
            --gold-soft: #e8d5a0;
            --gold-glow: rgba(201,168,76,0.15);
            --gold-border: rgba(201,168,76,0.25);
            --dark: #000000;
            --dark-surface: #0a0a0a;
            --dark-card: #111111;
            --dark-elevated: #171717;
            --dark-border: #1e1e1e;
            --dark-border-light: #2a2a2a;
            --text-white: #f5f0e8;
            --text-cream: #d4cfc4;
            --text-muted: #8a8578;
            --white: #ffffff;
            --bg-cream: #faf8f4;
            --bg-warm: #f5f2ec;
            --shadow-gold: 0 4px 24px rgba(201,168,76,0.2);
            --shadow-dark: 0 8px 32px rgba(0,0,0,0.4);
            --shadow-sm: 0 1px 4px rgba(0,0,0,0.08);
            --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
            --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'DM Sans', -apple-system, sans-serif;
            color: var(--text-white);
            line-height: 1.6;
            background: var(--dark);
            -webkit-font-smoothing: antialiased;
        }

        .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

        /* ═══════════════════════════════════════
           TOP BAR
        ═══════════════════════════════════════ */
        .top-bar {
            background: var(--dark);
            color: var(--text-muted);
            font-size: 12px;
            letter-spacing: 0.4px;
            border-bottom: 1px solid var(--dark-border);
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 42px;
        }

        .top-bar-left {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .top-bar a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s;
            padding: 0 12px;
            line-height: 42px;
        }

        .top-bar a:hover { color: var(--gold); }

        .top-bar-divider {
            width: 1px;
            height: 12px;
            background: var(--dark-border-light);
        }

        .top-bar-right {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .quotes {
            display: flex;
            gap: 18px;
            font-size: 11px;
        }

        .quotes strong {
            color: var(--gold);
            font-weight: 600;
            transition: opacity 0.3s;
        }

        .quotes .loading {
            opacity: 0.4;
            animation: quotePulse 1.2s ease-in-out infinite;
        }

        @keyframes quotePulse {
            0%, 100% { opacity: 0.4; }
            50% { opacity: 0.7; }
        }

        .quote-var {
            font-size: 9px;
            font-weight: 500;
            margin-left: 4px;
            letter-spacing: 0;
        }

        .quote-var.up { color: #4caf50; }
        .quote-var.down { color: #ef5350; }

        .language-selector {
            display: flex;
            gap: 4px;
            align-items: center;
            margin-left: 8px;
            padding-left: 16px;
            border-left: 1px solid var(--dark-border);
        }

        .lang-btn {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 4px 10px;
            background: transparent;
            border: 1px solid var(--dark-border);
            color: var(--text-muted);
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 11px;
            font-family: 'DM Sans', sans-serif;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        .lang-btn:hover {
            border-color: var(--gold-border);
            color: var(--gold-light);
        }

        .lang-btn.active {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--dark);
            font-weight: 600;
        }

        .flag { font-size: 14px; line-height: 1; }

        @media (max-width: 768px) {
            .top-bar .container { flex-wrap: wrap; height: auto; padding: 8px 24px; gap: 8px; }
            .quotes { display: none; }
            .language-selector { margin-left: 0; padding-left: 0; border-left: none; }
        }

        /* ═══════════════════════════════════════
           HEADER
        ═══════════════════════════════════════ */
        header {
            background: var(--dark);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid var(--dark-border);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 76px;
        }

        .logo {
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .logo img {
            height: 66px;
            width: auto;
            object-fit: contain;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-text span {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-weight: 600;
            color: var(--white);
            letter-spacing: 1px;
        }

        .logo-text small {
            font-size: 9px;
            font-weight: 400;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-top: -1px;
        }

        nav {
            display: flex;
            align-items: center;
            list-style: none;
        }

        .nav-close { display: none; }
        .nav-mobile-cta { display: none; }

        @media (max-width: 768px) {
            nav {
                position: fixed;
                top: 0;
                right: 0;
                width: 300px;
                height: 100vh;
                height: 100dvh;
                background: var(--dark-surface);
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                padding: 0;
                box-shadow: -8px 0 40px rgba(0,0,0,0.5);
                z-index: 1010;
                transform: translateX(100%);
                visibility: hidden;
                transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
                overflow-y: auto;
                border-left: 1px solid var(--dark-border);
            }

            nav.active {
                transform: translateX(0);
                visibility: visible;
            }

            .nav-close { display: flex; }
            .nav-mobile-cta { display: block; }
        }

        nav > a,
        .nav-dropdown > a {
            text-decoration: none;
            color: var(--text-cream);
            font-weight: 400;
            font-size: 14px;
            transition: color 0.3s;
            padding: 8px 18px;
            letter-spacing: 0.3px;
        }

        nav > a:hover,
        .nav-dropdown:hover > a {
            color: var(--gold);
        }

        .nav-dropdown { position: relative; }

        .nav-dropdown:hover > .dropdown-menu {
            display: block;
            animation: fadeDown 0.25s ease;
        }

        @keyframes fadeDown {
            from { opacity: 0; transform: translateY(-8px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            background: var(--dark-elevated);
            border: 1px solid var(--dark-border-light);
            border-radius: 10px;
            top: calc(100% + 10px);
            left: 50%;
            transform: translateX(-50%);
            min-width: 250px;
            box-shadow: var(--shadow-dark);
            z-index: 1000;
            overflow: hidden;
        }

        .dropdown-menu::before {
            content: '';
            position: absolute;
            top: -6px;
            left: 50%;
            transform: translateX(-50%) rotate(45deg);
            width: 12px;
            height: 12px;
            background: var(--dark-elevated);
            border-left: 1px solid var(--dark-border-light);
            border-top: 1px solid var(--dark-border-light);
        }

        .dropdown-menu a {
            display: block;
            padding: 12px 20px;
            border-bottom: 1px solid var(--dark-border);
            font-size: 13px;
            color: var(--text-cream);
            font-weight: 400;
            transition: all 0.25s;
        }

        .dropdown-menu a:last-child { border-bottom: none; }

        .dropdown-menu a:hover {
            background: rgba(201,168,76,0.08);
            color: var(--gold);
            padding-left: 24px;
        }

        .header-right {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        /* BUTTONS */
        .btn {
            padding: 10px 24px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            text-align: center;
            font-size: 13px;
            font-family: 'DM Sans', sans-serif;
            letter-spacing: 0.4px;
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-gold {
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
            color: var(--dark);
            box-shadow: 0 2px 12px rgba(201,168,76,0.3);
        }

        .btn-gold:hover {
            box-shadow: var(--shadow-gold);
            transform: translateY(-2px);
            filter: brightness(1.08);
        }

        .btn-outline-gold {
            background: transparent;
            color: var(--gold);
            border: 1.5px solid var(--gold-border);
        }

        .btn-outline-gold:hover {
            border-color: var(--gold);
            background: rgba(201,168,76,0.06);
        }

        .btn-outline-dark {
            background: transparent;
            color: var(--text-cream);
            border: 1.5px solid var(--dark-border-light);
        }

        .btn-outline-dark:hover {
            border-color: var(--gold-border);
            color: var(--gold);
        }

        /* MOBILE MENU */
        .menu-toggle {
            display: none;
            background: none;
            border: 1.5px solid var(--dark-border-light);
            border-radius: 8px;
            width: 44px;
            height: 44px;
            cursor: pointer;
            color: var(--gold);
            font-size: 20px;
            align-items: center;
            justify-content: center;
            transition: all 0.25s;
            order: 3;
        }

        .menu-toggle:hover {
            border-color: var(--gold-border);
            background: rgba(201,168,76,0.06);
        }

        @media (max-width: 768px) {
            .menu-toggle { display: flex; }
            .header-content { height: 64px; }
            .header-right .btn-gold { display: none; }

            .nav-close {
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 22px 24px;
                border-bottom: 1px solid var(--dark-border);
                font-family: 'Playfair Display', serif;
                font-weight: 600;
                font-size: 18px;
                color: var(--white);
            }

            .nav-close-btn {
                background: none;
                border: 1px solid var(--dark-border-light);
                font-size: 18px;
                cursor: pointer;
                color: var(--text-muted);
                width: 38px;
                height: 38px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 8px;
                transition: all 0.25s;
            }

            .nav-close-btn:hover {
                background: rgba(201,168,76,0.1);
                border-color: var(--gold-border);
                color: var(--gold);
            }

            nav > a,
            nav .nav-dropdown > a {
                padding: 16px 24px;
                border-bottom: 1px solid var(--dark-border);
                display: block;
                font-size: 15px;
            }

            .dropdown-menu {
                position: static;
                transform: none;
                box-shadow: none;
                border: none;
                border-radius: 0;
                background: rgba(201,168,76,0.04);
                min-width: 100%;
                display: none;
            }

            .dropdown-menu::before { display: none; }
            .nav-dropdown.open .dropdown-menu { display: block; }
            .dropdown-menu a { padding-left: 44px; }

            .nav-mobile-cta { padding: 24px; }
            .nav-mobile-cta .btn { width: 100%; justify-content: center; padding: 15px 20px; font-size: 14px; }

            .mobile-overlay {
                position: fixed;
                inset: 0;
                background: rgba(0,0,0,0.6);
                z-index: 1005;
                backdrop-filter: blur(3px);
                opacity: 0;
                visibility: hidden;
                transition: opacity 0.35s, visibility 0.35s;
            }

            .mobile-overlay.active { opacity: 1; visibility: visible; }
        }



        /* ═══════════════════════════════════════
           HERO SECTION
        ═══════════════════════════════════════ */
        .hero {
            background: var(--dark);
            color: var(--text-white);
            padding: 120px 0 130px;
            text-align: center;
            position: relative;
            overflow: hidden;
            min-height: 540px;
        }

        /* Slideshow images */
        .hero-slide {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.4s ease-in-out;
            will-change: opacity;
        }

        .hero-slide.active {
            opacity: 1;
        }

        /* Dark overlay on top of images */
        .hero-overlay {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(180deg, rgba(10,10,10,0.72) 0%, rgba(10,10,10,0.55) 40%, rgba(10,10,10,0.72) 100%),
                radial-gradient(ellipse at 30% 0%, rgba(201,168,76,0.1) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 100%, rgba(201,168,76,0.06) 0%, transparent 50%);
            z-index: 1;
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
            z-index: 2;
        }

        .hero .container { position: relative; z-index: 3; }

        /* Slideshow indicators */
        .hero-indicators {
            position: absolute;
            bottom: 28px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 3;
        }

        .hero-dot {
            width: 28px;
            height: 3px;
            background: rgba(255,255,255,0.25);
            border: none;
            border-radius: 2px;
            cursor: pointer;
            transition: all 0.4s;
            padding: 0;
        }

        .hero-dot.active {
            background: var(--gold);
            width: 42px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(201,168,76,0.08);
            border: 1px solid var(--gold-border);
            padding: 8px 22px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 32px;
        }

        .hero-badge::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--gold);
            border-radius: 50%;
            box-shadow: 0 0 8px var(--gold);
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 58px;
            margin-bottom: 18px;
            font-weight: 400;
            letter-spacing: -0.5px;
            line-height: 1.15;
            color: var(--white);
        }

        .hero h1 strong {
            font-weight: 700;
            color: var(--gold);
        }

        .hero-subtitle {
            font-size: 18px;
            margin-bottom: 48px;
            font-weight: 300;
            color: var(--text-muted);
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        .hero-cta {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero-cta .btn { padding: 15px 36px; font-size: 14px; }

        .hero-line {
            width: 1px;
            height: 60px;
            background: linear-gradient(to bottom, var(--gold-border), transparent);
            margin: 50px auto 0;
        }

        @media (max-width: 768px) {
            .hero { padding: 70px 0 80px; min-height: 420px; }
            .hero h1 { font-size: 34px; }
            .hero-subtitle { font-size: 13px; letter-spacing: 2px; }
            .hero-indicators { bottom: 18px; }
        }

        /* ═══════════════════════════════════════
           SERVICES SECTION
        ═══════════════════════════════════════ */
        .services {
            padding: 100px 0;
            background: var(--dark-surface);
            position: relative;
        }

        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--dark-border-light), transparent);
        }

        .section-title {
            text-align: center;
            margin-bottom: 64px;
        }

        .section-line {
            width: 40px;
            height: 2px;
            background: var(--gold);
            margin: 0 auto 18px;
        }

        .section-title h2 {
            font-family: 'Playfair Display', serif;
            font-size: 34px;
            font-weight: 500;
            color: var(--white);
            letter-spacing: -0.3px;
        }

        .section-title p {
            font-size: 15px;
            color: var(--text-muted);
            max-width: 500px;
            margin: 10px auto 0;
        }

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

        .service-card {
            background: var(--dark-card);
            border-radius: 14px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid var(--dark-border);
            position: relative;
        }

        .service-card:hover {
            transform: translateY(-8px);
            border-color: var(--gold-border);
            box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 0 1px var(--gold-border);
        }

        .service-image {
            width: 100%;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 56px;
            position: relative;
        }

        .service-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(to top, var(--dark-card), transparent);
        }

        .si-maritime { background: linear-gradient(160deg, #0d1b2a 0%, #1b3a5c 100%); }
        .si-air { background: linear-gradient(160deg, #1a1a2e 0%, #2d3a5c 100%); }
        .si-road { background: linear-gradient(160deg, #171717 0%, #2a2a2a 100%); }
        .si-cabotage { background: linear-gradient(160deg, #0a1628 0%, #1e3050 100%); }
        .si-customs { background: linear-gradient(160deg, #1a1520 0%, #2d2840 100%); }
        .si-insurance { background: linear-gradient(160deg, #2a1a0a 0%, #4a3020 100%); }

        .service-content { padding: 24px 24px 28px; }

        .service-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 10px;
            color: var(--white);
        }

        .service-card p {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.75;
            margin-bottom: 18px;
        }

        .service-link {
            color: var(--gold);
            text-decoration: none;
            font-weight: 600;
            font-size: 13px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.3s;
            letter-spacing: 0.5px;
        }

        .service-link:hover { gap: 12px; }

        @media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

        /* ═══════════════════════════════════════
           EBOOK SECTION
        ═══════════════════════════════════════ */
        .ebook-section {
            background: var(--dark);
            padding: 48px 0;
            border-top: 1px solid var(--dark-border);
            border-bottom: 1px solid var(--dark-border);
            position: relative;
            overflow: hidden;
        }

        .ebook-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(201,168,76,0.03), rgba(201,168,76,0.06), rgba(201,168,76,0.03));
        }

        .ebook-section .container {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .ebook-icon {
            font-size: 40px;
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(201,168,76,0.08);
            border: 1px solid var(--gold-border);
            border-radius: 14px;
        }

        .ebook-text h2 {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            color: var(--white);
            font-weight: 500;
        }

        .ebook-text p {
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 4px;
        }

        /* ═══════════════════════════════════════
           ABOUT SECTION
        ═══════════════════════════════════════ */
        .about {
            padding: 110px 0;
            background: var(--dark-surface);
            position: relative;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-image {
            width: 100%;
            height: 420px;
            background: linear-gradient(160deg, var(--dark) 0%, #1a1510 50%, #2a2015 100%);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 80px;
            position: relative;
            border: 1px solid var(--dark-border-light);
            overflow: hidden;
        }

        .about-image::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 30% 70%, rgba(201,168,76,0.08), transparent 60%);
        }

        .about-label {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 14px;
        }

        .about-text h2 {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            font-weight: 500;
            margin-bottom: 24px;
            color: var(--white);
            line-height: 1.25;
        }

        .about-text p {
            color: var(--text-muted);
            line-height: 1.85;
            margin-bottom: 14px;
            font-size: 15px;
        }

        .about-text .btn { margin-top: 24px; }

        @media (max-width: 768px) {
            .about-content { grid-template-columns: 1fr; gap: 40px; }
            .about-image { height: 280px; }
        }

        /* ═══════════════════════════════════════
           JOBS SECTION
        ═══════════════════════════════════════ */
        .jobs {
            padding: 100px 0;
            background: var(--dark);
            border-top: 1px solid var(--dark-border);
        }

        .jobs-intro {
            color: var(--text-muted);
            margin-bottom: 40px;
            font-size: 16px;
            line-height: 1.7;
            text-align: center;
        }

        .jobs-intro strong { color: var(--gold); }

        .jobs-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .job-card {
            background: var(--dark-card);
            padding: 32px;
            border-radius: 14px;
            border: 1px solid var(--dark-border);
            position: relative;
            transition: all 0.35s;
        }

        .job-card:hover {
            border-color: var(--gold-border);
            box-shadow: 0 8px 30px rgba(0,0,0,0.2);
        }

        .job-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 100%;
            background: linear-gradient(to bottom, var(--gold), var(--gold-light));
            border-radius: 14px 0 0 14px;
        }

        .job-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            color: var(--white);
            margin-bottom: 18px;
            font-weight: 500;
        }

        .job-card strong {
            color: var(--gold);
            display: block;
            margin-top: 18px;
            margin-bottom: 10px;
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .job-card ul { list-style: none; margin: 8px 0; }

        .job-card li {
            padding: 5px 0;
            color: var(--text-cream);
            padding-left: 18px;
            position: relative;
            font-size: 14px;
            line-height: 1.65;
        }

        .job-card li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 13px;
            width: 5px;
            height: 5px;
            background: var(--gold);
            border-radius: 50%;
        }

        .jobs-cta {
            background: var(--dark-card);
            padding: 40px;
            border-radius: 14px;
            margin-top: 32px;
            text-align: center;
            border: 1px solid var(--dark-border);
        }

        .jobs-cta p {
            color: var(--text-muted);
            margin-bottom: 8px;
            font-size: 15px;
        }

        .jobs-cta strong { color: var(--text-cream); }
        .jobs-cta .btn { margin-top: 18px; }

        @media (max-width: 768px) { .jobs-grid { grid-template-columns: 1fr; } }

        /* ═══════════════════════════════════════
           CONTACTS SECTION
        ═══════════════════════════════════════ */
        .contacts {
            padding: 100px 0;
            background: var(--dark-surface);
            border-top: 1px solid var(--dark-border);
        }

        .contacts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 18px;
        }

        .contact-item {
            background: var(--dark-card);
            padding: 28px 22px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--dark-border);
            transition: all 0.35s;
        }

        .contact-item:hover {
            border-color: var(--gold-border);
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.2);
        }

        .contact-icon {
            width: 48px;
            height: 48px;
            background: rgba(201,168,76,0.06);
            border: 1px solid var(--gold-border);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 14px;
            font-size: 18px;
        }

        .contact-item h3 {
            font-size: 13px;
            color: var(--gold);
            margin-bottom: 10px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .contact-item p {
            color: var(--text-cream);
            margin-bottom: 6px;
            font-size: 14px;
        }

        .contact-item a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 13px;
            transition: color 0.25s;
            word-break: break-all;
        }

        .contact-item a:hover { color: var(--gold); }

        /* FORM */
        .contact-form-wrap {
            background: var(--dark-card);
            padding: 48px;
            border-radius: 14px;
            margin-top: 40px;
            border: 1px solid var(--dark-border);
        }

        .contact-form-wrap h3 {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            color: var(--white);
            margin-bottom: 28px;
            font-weight: 500;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .form-grid .full-width { grid-column: 1 / -1; }

        .form-input {
            width: 100%;
            padding: 14px 18px;
            border: 1.5px solid var(--dark-border-light);
            border-radius: 10px;
            font-size: 14px;
            font-family: 'DM Sans', sans-serif;
            transition: all 0.3s;
            background: var(--dark-surface);
            color: var(--text-white);
        }

        .form-input:focus {
            outline: none;
            border-color: var(--gold);
            background: var(--dark);
            box-shadow: 0 0 0 3px var(--gold-glow);
        }

        .form-input::placeholder { color: var(--text-muted); }

        textarea.form-input { resize: vertical; min-height: 120px; }

        .form-submit { margin-top: 8px; }
        .form-submit .btn { padding: 15px 44px; }

        @media (max-width: 600px) {
            .form-grid { grid-template-columns: 1fr; }
            .contact-form-wrap { padding: 28px 20px; }
        }

        /* ═══════════════════════════════════════
           FOOTER
        ═══════════════════════════════════════ */
        footer {
            background: var(--dark);
            color: var(--text-muted);
            padding: 60px 0 0;
            border-top: 1px solid var(--dark-border);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 40px;
        }

        .footer-section h3 {
            font-family: 'Playfair Display', serif;
            font-size: 15px;
            font-weight: 500;
            margin-bottom: 18px;
            color: var(--white);
        }

        .footer-section p {
            font-size: 13px;
            line-height: 1.8;
            color: var(--text-muted);
        }

        .footer-section strong { color: var(--text-cream); }

        .footer-section a {
            display: block;
            color: var(--text-muted);
            text-decoration: none;
            font-size: 13px;
            margin-bottom: 10px;
            transition: all 0.25s;
        }

        .footer-section a:hover {
            color: var(--gold);
            padding-left: 4px;
        }

        .footer-cert {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(201,168,76,0.05);
            padding: 12px 18px;
            border-radius: 8px;
            margin-top: 18px;
            font-size: 12px;
            border: 1px solid var(--gold-border);
            color: var(--text-muted);
        }

        .footer-bottom {
            border-top: 1px solid var(--dark-border);
            padding: 22px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            color: var(--text-muted);
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 18px;
        }

        .footer-logo img {
            height: 32px;
            width: auto;
            opacity: 0.8;
        }

        @media (max-width: 768px) {
            .footer-content { grid-template-columns: 1fr; gap: 30px; }
            .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
        }

        /* ═══════════════════════════════════════
           SCROLL ANIMATIONS
        ═══════════════════════════════════════ */
        .fade-up {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .stagger-1 { transition-delay: 0.05s; }
        .stagger-2 { transition-delay: 0.1s; }
        .stagger-3 { transition-delay: 0.15s; }
        .stagger-4 { transition-delay: 0.2s; }
        .stagger-5 { transition-delay: 0.25s; }
        .stagger-6 { transition-delay: 0.3s; }

        /* Back to top */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 46px;
            height: 46px;
            background: var(--gold);
            color: var(--dark);
            border: none;
            border-radius: 12px;
            cursor: pointer;
            font-size: 18px;
            font-weight: 700;
            display: none;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-gold);
            z-index: 90;
            transition: all 0.35s;
        }

        .back-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(201,168,76,0.35);
        }

        .back-to-top.show { display: flex; }

/* ═══════════════════════════════════════
   PAGE HEADER (inner pages)
═══════════════════════════════════════ */
.page-header {
    padding: 80px 0 60px;
    text-align: center;
    background: var(--dark);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--dark-border);
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 0%, rgba(201,168,76,0.07) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 100%, rgba(201,168,76,0.04) 0%, transparent 50%);
    pointer-events: none;
}

.page-header .container { position: relative; z-index: 1; }

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 12px;
}

.page-header p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.breadcrumb a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold-light); }

@media (max-width: 768px) {
    .page-header { padding: 50px 0 40px; }
    .page-header h1 { font-size: 30px; }
}

/* ═══════════════════════════════════════
   SERVICE DETAIL (servicos.html)
═══════════════════════════════════════ */
.service-detail {
    padding: 80px 0;
    background: var(--dark-surface);
}

.service-detail:nth-child(even) { background: var(--dark); }

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail:nth-child(even) .service-detail-content { direction: rtl; }
.service-detail:nth-child(even) .service-detail-content > * { direction: ltr; }

.service-detail-img {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--dark-border);
}

.service-detail-img img { width: 100%; height: 360px; object-fit: cover; display: block; }

.service-detail-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 20px;
}

.service-detail-text p {
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 16px;
    font-size: 15px;
}

.service-detail-text .btn { margin-top: 12px; }

@media (max-width: 768px) {
    .service-detail-content { grid-template-columns: 1fr; gap: 30px; }
    .service-detail:nth-child(even) .service-detail-content { direction: ltr; }
    .service-detail-img img { height: 240px; }
}

/* ═══════════════════════════════════════
   ABOUT FULL PAGE (empresa.html)
═══════════════════════════════════════ */
.about-full { padding: 80px 0; background: var(--dark-surface); }
.about-full .about-content { align-items: start; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.value-card {
    background: var(--dark-card);
    padding: 32px 24px;
    border-radius: 14px;
    border: 1px solid var(--dark-border);
    text-align: center;
    transition: all 0.35s;
}

.value-card:hover {
    border-color: var(--gold-border);
    transform: translateY(-4px);
}

.value-icon { font-size: 32px; margin-bottom: 16px; }

.value-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 500;
}

.value-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }

.mission-vision {
    padding: 80px 0;
    background: var(--dark);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.mv-card {
    background: var(--dark-card);
    padding: 40px 32px;
    border-radius: 14px;
    border: 1px solid var(--dark-border);
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.mv-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 500;
}

.mv-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.85;
}

@media (max-width: 768px) {
    .values-grid { grid-template-columns: 1fr; }
    .mv-grid { grid-template-columns: 1fr; }
}

/* Active nav link */
nav > a.active-link { color: var(--gold); }

/* Service image fix */
.service-image img { width: 100%; height: 100%; object-fit: cover; }

/* ═══════════════════════════════════════
   FORM TABS
═══════════════════════════════════════ */
.form-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 28px;
    border-bottom: 2px solid var(--dark-border);
}

.form-tab {
    padding: 14px 28px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    letter-spacing: 0.3px;
}

.form-tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: transparent;
    transition: background 0.3s;
}

.form-tab:hover { color: var(--text-cream); }

.form-tab.active {
    color: var(--gold);
    font-weight: 600;
}

.form-tab.active::after {
    background: var(--gold);
}

.form-tab-content {
    display: none;
}

.form-tab-content.active {
    display: block;
}

/* SELECT STYLING */
select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238a8578' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* FILE UPLOAD */
.file-label {
    display: block;
    cursor: pointer;
}

.file-label input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
}

.file-btn {
    width: 100%;
    justify-content: center;
    padding: 15px 20px !important;
    font-size: 13px !important;
    border-style: dashed !important;
}

.file-name {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: var(--gold);
    text-align: center;
}

/* TOAST NOTIFICATIONS */
.toast {
    position: fixed;
    top: 24px;
    right: 24px;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    z-index: 9999;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 400px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.toast.show {
    transform: translateX(0);
}

.toast-success {
    background: #111;
    color: #4caf50;
    border: 1px solid rgba(76,175,80,0.3);
}

.toast-error {
    background: #111;
    color: #ef5350;
    border: 1px solid rgba(239,83,80,0.3);
}

/* BTN LOADING STATE */
.btn.loading {
    pointer-events: none;
    opacity: 0.7;
    position: relative;
}

.btn.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* FOOTER INSTAGRAM */
.footer-instagram {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--dark-border);
}
 
.ig-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 10px;
    border: none;
    background: transparent;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}
 
.ig-icon svg {
    width: 24px;
    height: 24px;
    transition: filter 0.4s, transform 0.4s;
}
 
.ig-icon:hover {
    color: var(--gold-light);
    transform: translateY(-2px);
}
 
.ig-icon:hover svg {
    filter: drop-shadow(0 0 6px rgba(201,168,76,0.5));
    transform: scale(1.1);
}
 
.ig-handle {
    display: flex;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.3px;
}