﻿:root {
            --bg: #120d09;
            --panel: rgba(28, 20, 14, 0.82);
            --panel-soft: rgba(255, 248, 240, 0.06);
            --surface: #f3eadf;
            --surface-2: #e7d6c4;
            --text: #f6ede3;
            --text-dark: #241913;
            --muted: rgba(246, 237, 227, 0.68);
            --muted-dark: #725d50;
            --line: rgba(255, 232, 205, 0.12);
            --gold: #d7a869;
            --gold-deep: #9d6932;
            --clay: #a35d2d;
            --olive: #687359;
            --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
            --radius-xl: 34px;
            --radius-lg: 24px;
            --radius-md: 18px;
            --max: 1220px;
            --ship-photo: url('https://images.unsplash.com/photo-1741792191212-60d22002bd1b?auto=format&fit=crop&w=1200&q=80');
            --grain-photo: url('https://images.pexels.com/photos/4224262/pexels-photo-4224262.jpeg?auto=compress&cs=tinysrgb&w=900');
        }

        * { box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body {
            margin: 0;
            font-family: "Instrument Sans", sans-serif;
            color: var(--text);
            background:
                radial-gradient(circle at 12% 14%, rgba(215, 168, 105, 0.12), transparent 22%),
                radial-gradient(circle at 84% 0%, rgba(163, 93, 45, 0.18), transparent 24%),
                linear-gradient(180deg, #110c08 0%, #17110c 42%, #f3eadf 42%, #f3eadf 100%);
            overflow-x: hidden;
        }

        a { color: inherit; text-decoration: none; }
        img { display: block; max-width: 100%; }

        .container {
            width: min(var(--max), calc(100% - 40px));
            margin: 0 auto;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 16px;
            border-radius: 999px;
            border: 1px solid rgba(255, 229, 198, 0.16);
            background: rgba(255, 248, 240, 0.05);
            color: #f3cf9d;
            font-size: 0.76rem;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
        }

        .site-header {
            position: sticky;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 40;
            background: rgba(20, 14, 10, 0.92);
            border-bottom: 1px solid rgba(255, 229, 198, 0.1);
            backdrop-filter: blur(16px);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 22px;
            min-height: 86px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 14px;
            min-width: 0;
        }

        .brand-mark {
            width: 54px;
            height: 54px;
            border-radius: 18px;
            padding: 7px;
            background: rgba(255, 248, 240, 0.06);
            border: 1px solid rgba(255, 229, 198, 0.12);
            box-shadow: var(--shadow);
        }

        .brand-text {
            min-width: 0;
        }

        .brand-text strong {
            display: block;
            font-size: 0.98rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .brand-text span {
            display: block;
            margin-top: 4px;
            color: var(--muted);
            font-size: 0.84rem;
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 22px;
            flex-shrink: 0;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 22px;
            color: var(--muted);
            font-size: 0.95rem;
        }

        .nav-links a:hover { color: #fff2dc; }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: 54px;
            padding: 0 22px;
            border-radius: 999px;
            border: 1px solid transparent;
            font-weight: 700;
            transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
        }

        .btn:hover { transform: translateY(-2px); }

        .btn-primary {
            color: #fff8ef;
            background: linear-gradient(135deg, var(--gold-deep), var(--clay));
            box-shadow: 0 16px 34px rgba(163, 93, 45, 0.3);
        }

        .btn-secondary {
            color: var(--text-dark);
            background: #f5ede3;
        }

        .hero {
            position: relative;
            min-height: calc(100vh - 86px);
            padding: 64px 0 70px;
            overflow: hidden;
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0 0 34% 0;
            background:
                linear-gradient(90deg, rgba(14,10,7,0.9) 0%, rgba(14,10,7,0.72) 40%, rgba(14,10,7,0.24) 100%),
                var(--ship-photo) center/cover no-repeat;
            z-index: -2;
        }

        .hero::after {
            content: "";
            position: absolute;
            inset: auto 0 0;
            height: 260px;
            background: linear-gradient(180deg, rgba(18,13,9,0) 0%, #f3eadf 100%);
            z-index: -1;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.95fr);
            gap: 34px;
            align-items: center;
        }

        .hero-copy {
            max-width: 660px;
        }

        .hero-title {
            margin: 22px 0 18px;
            font-family: "Playfair Display", serif;
            font-size: clamp(3.2rem, 7vw, 6.2rem);
            line-height: 0.92;
            letter-spacing: -0.05em;
            max-width: 11ch;
        }

        .hero-title span { color: #f1c78d; }

        .hero-text {
            max-width: 560px;
            color: var(--muted);
            font-size: 1rem;
            line-height: 1.75;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 28px;
        }

        .hero-meta {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
            margin-top: 30px;
            color: #f5dfbf;
            font-size: 0.9rem;
        }

        .hero-meta strong {
            display: block;
            color: #fff4e3;
            font-size: 1.05rem;
            margin-bottom: 6px;
        }

        .hero-visual {
            position: relative;
            min-height: 620px;
            padding-bottom: 54px;
        }

        .photo-main,
        .photo-card,
        .service-card,
        .statement,
        .process-card,
        .commodity-card,
        .contact-shell {
            box-shadow: var(--shadow);
        }

        .photo-main {
            position: relative;
            margin-left: auto;
            width: min(100%, 520px);
            height: 560px;
            border-radius: 34px;
            overflow: hidden;
            border: 1px solid rgba(255, 230, 205, 0.12);
            background:
                linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.46)),
                var(--ship-photo) center/cover no-repeat;
        }

        .photo-main::after {
            content: "Embarques com evidência técnica";
            position: absolute;
            left: 28px;
            bottom: 28px;
            padding: 14px 16px;
            border-radius: 18px;
            background: rgba(16, 10, 6, 0.7);
            color: #fff2df;
            font-weight: 600;
            backdrop-filter: blur(14px);
        }

        .photo-card {
            position: relative;
            margin-top: -24px;
            margin-left: 0;
            width: min(82%, 330px);
            padding: 16px;
            border-radius: 26px;
            background: rgba(24, 17, 12, 0.88);
            border: 1px solid rgba(255, 229, 198, 0.12);
            backdrop-filter: blur(14px);
            z-index: 2;
        }
        .photo-card-media {
            height: 170px;
            border-radius: 18px;
            background: var(--grain-photo) center/cover no-repeat;
        }

        .photo-card-body {
            padding: 16px 8px 4px;
        }

        .photo-card-body strong {
            display: block;
            font-size: 1.08rem;
            color: #fff3e0;
        }

        .photo-card-body p {
            margin: 10px 0 0;
            color: rgba(246, 237, 227, 0.68);
            line-height: 1.7;
            font-size: 0.94rem;
        }

        .section-light {
            color: var(--text-dark);
            padding: 90px 0;
        }

        .section-title {
            margin: 18px 0 16px;
            font-family: "Playfair Display", serif;
            font-size: clamp(2.5rem, 5vw, 4.3rem);
            line-height: 0.95;
            letter-spacing: -0.045em;
        }

        .section-title span { color: var(--clay); }

        .section-copy {
            max-width: 680px;
            margin: 0;
            color: var(--muted-dark);
            line-height: 1.72;
            font-size: 0.98rem;
        }

        .editorial-grid {
            display: grid;
            grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
            gap: 28px;
            align-items: start;
        }

        .editorial-aside {
            position: static;
            padding: 30px;
            border-radius: 28px;
            background: linear-gradient(180deg, #fff8f0, #ecdccc);
            border: 1px solid rgba(36, 25, 19, 0.1);
            box-shadow: 0 18px 40px rgba(63, 37, 19, 0.08);
        }

        .editorial-note {
            margin-top: 18px;
            padding: 18px 20px;
            border-radius: 22px;
            background: rgba(255, 255, 255, 0.56);
            border: 1px solid rgba(36, 25, 19, 0.08);
            color: #5e4a3d;
            line-height: 1.7;
        }

        .services-stack {
            display: grid;
            gap: 18px;
        }

        .service-card {
            display: grid;
            grid-template-columns: 86px 1fr;
            gap: 20px;
            padding: 28px;
            border-radius: 28px;
            background: linear-gradient(180deg, #fff9f2, #efe2d3);
            border: 1px solid rgba(36, 25, 19, 0.08);
        }

        .service-index {
            width: 86px;
            height: 86px;
            border-radius: 22px;
            display: grid;
            place-items: center;
            background: linear-gradient(135deg, #1d140f, #5f3920);
            color: #f7e7d4;
            font-family: "Playfair Display", serif;
            font-size: 2rem;
        }

        .service-card h3 {
            margin: 0;
            font-size: 1.55rem;
            line-height: 1.1;
        }

        .service-card p {
            margin: 12px 0 0;
            color: #6f5a4d;
            line-height: 1.7;
        }

        .service-points {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 18px;
        }

        .service-points span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 14px;
            border-radius: 999px;
            background: rgba(29, 20, 15, 0.06);
            color: #4f3b31;
            font-size: 0.9rem;
        }

        .statement-wrap {
            padding: 10px 0 96px;
            background: #f3eadf;
        }

        .statement {
            position: relative;
            overflow: hidden;
            padding: 34px;
            border-radius: 34px;
            background:
                linear-gradient(90deg, rgba(14,10,7,0.88), rgba(14,10,7,0.5)),
                var(--ship-photo) center/cover no-repeat;
        }

        .statement-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 300px;
            gap: 22px;
            align-items: end;
        }

        .statement .section-title,
        .statement .section-copy,
        .statement strong,
        .statement p {
            color: #fff3e0;
        }

        .statement .section-copy { color: rgba(255, 243, 224, 0.76); }

        .statement-box {
            padding: 24px;
            border-radius: 24px;
            background: rgba(255, 248, 240, 0.08);
            border: 1px solid rgba(255, 230, 205, 0.14);
            backdrop-filter: blur(12px);
        }

        .statement-box strong {
            display: block;
            font-size: 1.05rem;
        }

        .statement-box p {
            margin: 10px 0 0;
            line-height: 1.76;
            color: rgba(255, 243, 224, 0.72);
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
            margin-top: 28px;
        }

        .process-card {
            padding: 28px;
            border-radius: 26px;
            background: linear-gradient(180deg, #fffaf4, #efe3d6);
            border: 1px solid rgba(36, 25, 19, 0.08);
        }

        .process-card strong {
            display: inline-grid;
            place-items: center;
            width: 50px;
            height: 50px;
            border-radius: 16px;
            background: #211712;
            color: #f8ecdc;
            font-size: 1rem;
            margin-bottom: 18px;
        }

        .process-card h3 {
            margin: 0;
            font-size: 1.32rem;
        }

        .process-card p {
            margin: 12px 0 0;
            color: #6f5a4d;
            line-height: 1.7;
        }
        .commodities-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
            margin-top: 28px;
        }

        .commodity-card {
            padding: 26px;
            border-radius: 24px;
            background: #1c140f;
            border: 1px solid rgba(255, 229, 198, 0.1);
            color: #fff0de;
        }

        .commodity-card i {
            color: #f0c389;
            font-size: 1.3rem;
            margin-bottom: 16px;
        }

        .commodity-card h3 {
            margin: 0;
            font-size: 1.18rem;
        }

        .commodity-card p {
            margin: 10px 0 0;
            color: rgba(246, 237, 227, 0.68);
            line-height: 1.75;
        }

        .contact-section {
            padding: 0 0 90px;
            background: #f3eadf;
        }

        .contact-shell {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 360px;
            gap: 0;
            border-radius: 34px;
            overflow: hidden;
            background: linear-gradient(135deg, #fff9f2, #ead8c3);
            border: 1px solid rgba(36, 25, 19, 0.08);
        }

        .contact-main,
        .contact-side {
            padding: 38px;
        }

        .contact-main .section-title {
            color: var(--text-dark);
        }

        .contact-main .section-copy {
            color: #6f5a4d;
        }

        .contact-side {
            background: #1b130e;
            color: #fff0de;
            display: grid;
            align-content: start;
            gap: 16px;
        }

        .contact-list {
            display: grid;
            gap: 14px;
            margin-top: 24px;
        }

        .contact-item {
            display: grid;
            grid-template-columns: 22px 1fr;
            gap: 12px;
            align-items: start;
            color: #685447;
        }

        .contact-item i {
            color: var(--clay);
            margin-top: 4px;
        }

        .contact-side p {
            margin: 0;
            color: rgba(255, 240, 222, 0.7);
            line-height: 1.7;
        }

        .contact-side strong {
            font-size: 1.02rem;
        }

        .contact-actions {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 12px;
        }

        footer {
            padding: 0 0 36px;
            background: #f3eadf;
            color: #715d50;
        }

        .footer-inner {
            display: flex;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
            padding-top: 24px;
            border-top: 1px solid rgba(36, 25, 19, 0.08);
            font-size: 0.9rem;
        }

        .credit {
            color: #8a7364;
        }

        @media (max-width: 1100px) {
            .hero-grid,
            .editorial-grid,
            .statement-grid,
            .contact-shell {
                grid-template-columns: 1fr;
            }

            .process-grid,
            .commodities-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .hero-visual {
                min-height: 640px;
            }
        }

        @media (max-width: 760px) {
            .container { width: min(var(--max), calc(100% - 40px)); }
            .nav-links { display: none; }
            .header-inner {
                min-height: 78px;
                gap: 16px;
            }
            .nav { gap: 12px; }
            .hero {
                min-height: auto;
                padding: 42px 0 40px;
            }
            .hero::before { inset: 0 0 46% 0; }
            .hero-grid { gap: 26px; }
            .hero-title { max-width: 9ch; font-size: clamp(2.7rem, 13vw, 4.6rem); }
            .hero-actions .btn { width: 100%; }
            .hero-meta {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .hero-visual {
                min-height: auto;
                padding-bottom: 0;
            }
            .photo-main {
                position: relative;
                top: auto;
                width: 100%;
                height: 380px;
            }
            .photo-card {
                width: auto;
                margin-top: 18px;
            }
            .service-card {
                grid-template-columns: 1fr;
            }
            .editorial-aside {
                padding: 24px;
            }
            .service-index {
                width: 72px;
                height: 72px;
                font-size: 1.7rem;
            }
            .process-grid,
            .commodities-grid {
                grid-template-columns: 1fr;
            }
            .contact-main,
            .contact-side,
            .statement,
            .process-card,
            .service-card { padding: 24px; }
            .footer-inner { flex-direction: column; }
            .brand-text span { font-size: 0.78rem; }
        }
