        .layout-flex-1 { flex: 1; }
.header-cart-toggle { display: none; position: relative; }
.header-cart-badge { display: none; position: absolute; top: -2px; right: -2px; background: var(--blue); color: #fff; font-size: 10px; font-weight: bold; width: 16px; height: 16px; border-radius: 50%; align-items: center; justify-content: center; }
.header-cart-total-wrap { color: var(--blue); margin-right: 12px; display: flex; align-items: center; }
.header-cart-total-svg { width: 24px; height: 24px; }
.footer-btn-reset { background:none; border:none; cursor:pointer; padding:0; font-family:inherit; }

* { box-sizing: border-box; }
        :root {
            --blue: #126cff;
            --blue-strong: #0759e6;
            --ink: #0b1424;
            --muted: #667589;
            --line: #d8e1ed;
            --soft: #f4f7fb;
            --white: #fff;
        }
        html {
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            background: #040d1b;
        }
        body {
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            font-family: Arial, Helvetica, sans-serif;
            color: var(--ink);
            background: #fff;
        }
        a { color: inherit; text-decoration: none; }
        button { font: inherit; }
        img { display: block; max-width: 100%; height: auto; }
        .top {
            position: fixed;
            inset: 0 0 auto;
            z-index: 40;
            border-bottom: 1px solid rgba(255, 255, 255, .16);
            color: #fff;
            transition: background 0.3s ease, backdrop-filter 0.3s ease;
        }
        body.is-home .top {
            background: transparent;
            backdrop-filter: none;
        }
        body.is-home .top.scrolled,
        body.is-internal .top.scrolled {
            background: rgba(4, 13, 27, .85);
            backdrop-filter: blur(12px);
        }
        body.is-internal .top {
            background: rgba(4, 13, 27, .98);
            backdrop-filter: none;
        }
        .bar {
            width: min(1180px, calc(100% - 36px));
            min-height: 80px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 28px;
        }
        .logo { width: 232px; }
        .top a[aria-label="Lopes Máquinas"] { order: 1; }
        .menu-toggle { display: none; }
        .search-toggle,
        .cart-toggle {
            display: none;
        }
        .menu-button {
            display: none;
            order: 4;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border: 1px solid rgba(255, 255, 255, .22);
            border-radius: 4px;
            color: #fff;
            cursor: pointer;
        }
        .menu-button svg { width: 24px; height: 24px; }
        .nav {
            order: 2;
            display: flex;
            align-items: center;
            gap: 28px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
        }
        .nav-item { position: relative; padding: 32px 0; }
        .nav-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 0;
            padding: 0;
            color: inherit;
            background: transparent;
            font-size: 11px;
            font-weight: 700;
            line-height: 1;
            text-transform: uppercase;
            cursor: pointer;
            text-shadow: 0 1px 8px rgba(0, 0, 0, .32);
        }
        .nav-link svg { width: 13px; height: 13px; }
        .product-menu {
            position: absolute;
            top: 70px;
            left: 50%;
            width: 760px;
            transform: translateX(-50%);
            display: none;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 2px 34px;
            padding: 22px 26px;
            border: 1px solid rgba(255, 255, 255, .18);
            border-radius: 6px;
            background: rgba(6, 18, 35, .96);
            box-shadow: 0 24px 60px rgba(0, 0, 0, .34);
        }
        .nav-item:hover .product-menu,
        .nav-item:focus-within .product-menu {
            display: grid;
        }
        .product-menu a {
            padding: 9px 0;
            border-radius: 4px;
            color: #e8f1ff;
            font-size: 12px;
            font-weight: 600;
            line-height: 1.25;
            text-transform: none;
            white-space: nowrap;
        }
        .product-menu a:hover { background: rgba(18, 108, 255, .18); color: #fff; }
        .header-icons {
            order: 3;
            display: flex;
            align-items: center;
            gap: 18px;
            color: #fff;
        }
        .icon-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
        }
        .icon-button svg { width: 26px; height: 26px; stroke-width: 2; }
        .sidebar-close,
        .sidebar-logo,
        .sidebar-icons,
        .nav-icon,
        .nav-chevron,
        .sidebar-spacer,
        .sidebar-whatsapp,
        .sidebar-social-section,
        .sidebar-footer {
            display: none;
        }
        .overlay {
            position: fixed;
            inset: 0;
            z-index: 45;
            display: none;
            background: rgba(4, 13, 27, .68);
        }
        .search-panel {
            position: fixed;
            top: 78px;
            right: max(18px, calc((100vw - 1180px) / 2));
            z-index: 50;
            width: min(560px, calc(100vw - 36px));
            display: none;
            padding: 18px;
            border: 1px solid rgba(255, 255, 255, .16);
            border-radius: 6px;
            background: rgba(7, 27, 53, .98);
            box-shadow: 0 24px 70px rgba(0, 0, 0, .36);
        }
        .search-form {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 10px;
        }
        .search-form input {
            width: 100%;
            min-height: 48px;
            padding: 0 14px;
            border: 1px solid rgba(255, 255, 255, .22);
            border-radius: 4px;
            color: #fff;
            background: rgba(255, 255, 255, .08);
            font: inherit;
        }
        .search-form input::placeholder { color: #b9c7d9; }
        .panel-close {
            position: absolute;
            top: 8px;
            right: 8px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            color: #fff;
            cursor: pointer;
        }
        .search-autocomplete {
            margin-top: 10px;
            background: rgba(255, 255, 255, .05);
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: 4px;
            max-height: 300px;
            overflow-y: auto;
            display: none;
        }
        .search-autocomplete a {
            display: block;
            padding: 12px 16px;
            color: #fff;
            text-decoration: none;
            border-bottom: 1px solid rgba(255, 255, 255, .05);
            font-size: 14px;
        }
        .search-autocomplete a:last-child {
            border-bottom: 0;
        }
        .search-autocomplete a:hover {
            background: rgba(18, 108, 255, .2);
        }
        .search-autocomplete .sa-empty {
            padding: 12px 16px;
            color: #b9c7d9;
            font-size: 14px;
        }
        .panel-close svg { width: 19px; height: 19px; }
        .cart-panel {
            position: fixed;
            inset: 0 0 0 auto;
            z-index: 55;
            width: min(480px, 100vw);
            display: flex;
            flex-direction: column;
            color: var(--ink);
            background: #fff;
            box-shadow: -24px 0 70px rgba(0, 0, 0, .32);
            transform: translateX(102%);
            transition: transform .22s ease;
        }
        .cart-head {
            padding: 24px 28px;
            border-bottom: 1px solid #e2e8f0;
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 16px;
        }
        .cart-head-texts h2 {
            margin: 0 0 6px;
            font-size: 24px;
            font-weight: 800;
            color: #0f172a;
        }
        .cart-head-texts p {
            margin: 0;
            color: #64748b;
            font-size: 14px;
        }
        .cart-close {
            color: #64748b;
            cursor: pointer;
            padding: 4px;
            display: flex;
        }
        .cart-close svg { width: 22px; height: 22px; }

        .cart-body {
            flex: 1;
            padding: 24px 28px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        .cart-info-banner {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 18px;
            background: #f4f8fd;
            border-radius: 12px;
        }
        .cart-info-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            flex: 0 0 44px;
            border-radius: 50%;
            background: #e8f0fe;
            color: var(--blue);
        }
        .cart-info-icon svg { width: 22px; height: 22px; }
        .cart-info-text {
            color: #334155;
            font-size: 13px;
            line-height: 1.5;
            margin: 0;
        }

        .cart-section-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 16px;
        }
        .cart-section-head h3 {
            margin: 0;
            font-size: 14px;
            font-weight: 800;
            color: #0f172a;
        }
        .cart-clear {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--blue);
            font-size: 12px;
            font-weight: 700;
            background: transparent;
            border: 0;
            padding: 0;
            cursor: pointer;
        }
        .cart-clear svg { width: 14px; height: 14px; }

        .cart-items {
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            background: #fff;
        }
        .cart-item {
            display: flex;
            padding: 20px;
            gap: 16px;
            border-bottom: 1px solid #e2e8f0;
            position: relative;
        }
        .cart-item:last-child {
            border-bottom: 0;
        }
        .cart-item-img {
            width: 80px;
            flex: 0 0 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .cart-item-img img { max-width: 100%; height: auto; }
        .cart-item-details {
            flex: 1;
            padding-right: 24px;
        }
        .cart-item-title {
            margin: 0 0 4px;
            font-size: 14px;
            font-weight: 800;
            color: #0f172a;
        }
        .cart-item-sub {
            margin: 0 0 8px;
            font-size: 12px;
            color: #64748b;
        }
        .cart-item-desc {
            margin: 0;
            font-size: 12px;
            color: #64748b;
            line-height: 1.5;
        }
        .cart-item-remove {
            position: absolute;
            top: 16px;
            right: 16px;
            color: #94a3b8;
            cursor: pointer;
            background: transparent;
            border: 0;
            padding: 4px;
            display: flex;
        }
        .cart-item-remove svg { width: 18px; height: 18px; }

        .cart-login-banner {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 18px;
            background: #f0f7ff;
            border-radius: 12px;
        }
        .cart-login-banner .cart-info-icon {
            width: 40px;
            height: 40px;
            flex: 0 0 40px;
            color: var(--blue);
            background: #e0efff;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
        }
        .cart-login-text h4 {
            margin: 0 0 4px;
            font-size: 14px;
            font-weight: 800;
            color: #0f172a;
        }
        .cart-login-text p {
            margin: 0;
            font-size: 13px;
            color: #475569;
            line-height: 1.5;
        }

        .cart-actions-wrapper {
            padding: 24px 28px;
            border-top: 1px solid #e2e8f0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .cart-total {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
        }
        .cart-total-texts h4 {
            margin: 0;
            font-size: 14px;
            font-weight: 800;
            color: #0f172a;
        }
        .cart-total-texts p {
            margin: 0;
            font-size: 13px;
            color: #64748b;
        }

        .cart-btn-primary {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            height: 50px;
            background: var(--blue);
            color: #fff;
            border-radius: 6px;
            font-size: 15px;
            font-weight: 700;
            border: 0;
            cursor: pointer;
            text-decoration: none;
            transition: opacity .2s;
        }
        .cart-btn-primary:hover { opacity: .9; }
        .cart-btn-primary svg { width: 18px; height: 18px; }
        
        .cart-btn-secondary {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            height: 50px;
            background: #fff;
            color: var(--blue);
            border: 1px solid var(--blue);
            border-radius: 6px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            transition: background .2s;
        }
        .cart-btn-secondary:hover { background: #f8fafc; }
        .cart-btn-secondary svg { width: 18px; height: 18px; }
        body:has(.search-toggle:checked) .overlay.search-overlay,
        body:has(.cart-toggle:checked) .overlay.cart-overlay,
        body:has(.search-toggle:checked) .search-panel {
            display: block;
        }
        body:has(.cart-toggle:checked) .cart-panel {
            transform: translateX(0);
        }
        .wrap { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }
        .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            min-height: 50px;
            padding: 0 26px;
            border-radius: 5px;
            border: 1px solid transparent;
            background: var(--blue-strong);
            color: #fff;
            font-size: 13px;
            font-weight: 800;
            text-transform: uppercase;
        }
        .button.secondary {
            background: rgba(11, 20, 36, .24);
            border-color: rgba(255, 255, 255, .48);
        }
        .button svg { width: 22px; height: 22px; }
        .section { padding: 74px 0; }
        .section.alt { background: var(--soft); }
        .page-hero { padding-top: 150px; }
        .page-hero h1 { color: var(--ink); }
        .section-title {
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 28px;
        }
        .eyebrow {
            margin: 0 0 14px;
            color: var(--blue);
            font-size: 14px;
            font-weight: 900;
            letter-spacing: 0;
            text-transform: uppercase;
        }
        h1, h2, h3 { letter-spacing: 0; }
        h1 {
            margin: 0;
            max-width: 720px;
            font-size: clamp(42px, 6vw, 72px);
            line-height: .98;
            font-weight: 800;
            text-transform: uppercase;
        }
        h2 {
            margin: 0;
            font-size: clamp(30px, 4vw, 48px);
            line-height: 1.05;
        }
        .lead {
            max-width: 720px;
            color: var(--muted);
            font-size: 17px;
            line-height: 1.65;
        }
        .grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
        }
        .card {
            border: 1px solid var(--line);
            border-radius: 6px;
            overflow: hidden;
            background: #fff;
        }
        .card-media {
            aspect-ratio: 4 / 3;
            background: #eef3f8;
        }
        .card-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .card-body { padding: 18px; }
        .card h3 {
            margin: 0 0 12px;
            min-height: 54px;
            font-size: 22px;
            font-weight: 700;
            line-height: 1.2;
        }
        .link {
            color: var(--blue);
            font-size: 14px;
            font-weight: 800;
            text-transform: uppercase;
        }
        .gallery {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 18px;
        }
        .gallery-item {
            border: 1px solid var(--line);
            border-radius: 6px;
            background: #fff;
            overflow: hidden;
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            max-height: 520px;
            object-fit: contain;
            background: #f8fafc;
        }
        .site-footer {
            color: #dce7f6;
            background:
                linear-gradient(90deg, rgba(3, 13, 25, .94) 0%, rgba(3, 13, 25, .82) 48%, rgba(3, 13, 25, .66) 100%),
                linear-gradient(180deg, rgba(3, 13, 25, .62), rgba(3, 13, 25, .92)),
                url('{{ Storage::url('banners/hero.avif') }}') center 55% / cover no-repeat;
        }
        .footer-cta-bar {
            display: grid;
            grid-template-columns: 72px 1px minmax(360px, 1fr) 1px minmax(260px, .8fr) 268px;
            align-items: center;
            gap: 24px;
            margin: 0 0 52px;
            padding: 24px 40px;
            border-radius: 6px;
            background: rgba(7, 28, 52, .86);
            box-shadow: 0 18px 38px rgba(0, 0, 0, .22);
        }
        .footer-cta-divider {
            width: 1px;
            height: 74px;
            background: rgba(255, 255, 255, .18);
        }
        .footer-cta-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 72px;
            height: 72px;
            border-radius: 6px;
            background: rgba(255, 255, 255, .045);
        }
        .footer-cta-icon svg {
            width: 38px;
            height: 38px;
            color: #fff;
            flex: 0 0 auto;
            stroke-width: 1.8;
        }
        .footer-contact svg {
            width: 22px;
            height: 22px;
            color: var(--blue);
            flex: 0 0 auto;
            stroke-width: 1.8;
        }
        .footer-cta-title {
            margin: 0;
            color: #fff;
            font-size: 21px;
            line-height: 1.35;
            font-weight: 600;
        }
        .footer-cta-copy {
            margin: 0;
            color: #c6d4e5;
            font-size: 13px;
            line-height: 1.55;
        }
        .footer-cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: 48px;
            padding: 0 18px;
            border: 1px solid rgba(255, 255, 255, .74);
            border-radius: 4px;
            color: #fff;
            background: transparent;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            white-space: nowrap;
            cursor: pointer;
        }
        .footer-cta-button svg {
            width: 24px;
            height: 24px;
            flex: 0 0 auto;
            stroke-width: 1.8;
        }
        .footer-main-wrap {
            padding: 14px 0 24px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 220px 90px minmax(520px, 1fr) 230px;
            gap: 20px;
            align-items: start;
        }
        .footer-brand img {
            width: 194px;
        }
        .footer-brand p {
            max-width: 238px;
            margin: 28px 0 18px;
            color: #fff;
            font-size: 13px;
            line-height: 1.5;
        }
        .footer-social {
            display: flex;
            gap: 10px;
        }
        .footer-social a,
        .footer-social button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            padding: 0;
            border: 1px solid rgba(255, 255, 255, .32);
            border-radius: 50%;
            color: #fff;
            background: transparent;
            cursor: pointer;
        }
        .footer-social svg {
            width: 14px;
            height: 14px;
            stroke-width: 1.8;
        }
        .footer-col h3,
        .footer-contact h3 {
            margin: 0 0 20px;
            color: #fff;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
        }
        .footer-col h3::after,
        .footer-contact h3::after {
            content: "";
            display: block;
            width: 17px;
            height: 1px;
            margin-top: 12px;
            background: var(--blue);
        }
        .footer-col a,
        .footer-col button {
            display: block;
            width: fit-content;
            padding: 0;
            border: 0;
            margin-bottom: 13px;
            color: #c7d3e2;
            background: transparent;
            font-size: 11px;
            line-height: 1.25;
            white-space: nowrap;
            cursor: pointer;
        }
        .footer-products {
            display: grid;
            grid-template-columns: repeat(3, max-content);
            column-gap: 22px;
        }
        .footer-products-mobile {
            display: none;
        }
        .footer-contact p,
        .footer-contact a,
        .footer-contact button {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            width: fit-content;
            padding: 0;
            border: 0;
            margin: 0 0 15px;
            color: #c7d3e2;
            background: transparent;
            font-size: 11px;
            line-height: 1.45;
            text-align: left;
            cursor: pointer;
        }
        .footer-contact a,
        .footer-contact button {
            color: #fff;
            white-space: nowrap;
        }
        .footer-bottom {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 20px;
            margin-top: 52px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, .10);
            color: #aebbd0;
            font-size: 12px;
        }
        .footer-bottom > *:first-child { text-align: left; }
        .footer-bottom > *:nth-child(2) { text-align: center; }
        .footer-bottom > *:last-child { text-align: right; }
        .footer-bottom a,
        .footer-bottom button {
            padding: 0;
            border: 0;
            color: #fff;
            background: transparent;
            font-size: inherit;
            font-weight: 600;
            cursor: pointer;
        }
        .site-modal-layer {
            position: fixed;
            inset: 0;
            z-index: 100;
            display: none;
            place-items: center;
            padding: 24px;
            background: rgba(4, 13, 27, .72);
            backdrop-filter: blur(6px);
        }
        .site-modal-layer.is-open {
            display: grid;
        }
        .site-modal {
            position: relative;
            width: min(500px, 100%);
            max-height: min(720px, calc(100svh - 48px));
            overflow: auto;
            padding: 42px 28px 28px;
            border: 1px solid rgba(18, 108, 255, .16);
            border-radius: 26px;
            color: #102033;
            background:
                radial-gradient(circle at right bottom, rgba(18, 108, 255, .16), transparent 36%),
                linear-gradient(145deg, rgba(255,255,255,.98), rgba(244,248,255,.96));
            box-shadow: 0 28px 80px rgba(0, 0, 0, .36);
        }
        .site-modal[hidden] {
            display: none;
        }
        .modal-close {
            position: absolute;
            top: 18px;
            right: 18px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border: 0;
            border-radius: 50%;
            color: #0b1424;
            background: rgba(255, 255, 255, .86);
            cursor: pointer;
        }
        .modal-close svg {
            width: 20px;
            height: 20px;
        }
        .modal-header {
            text-align: center;
        }
        .modal-header h2 {
            margin: 0;
            color: #0b1424;
            font-size: 26px;
            line-height: 1.2;
            font-weight: 700;
        }
        .modal-header h2 span {
            color: var(--blue);
        }
        .modal-header h2::after {
            content: "";
            display: block;
            width: 34px;
            height: 3px;
            margin: 14px auto 0;
            border-radius: 999px;
            background: var(--blue);
        }
        .modal-header p,
        .modal-content p {
            color: #51647c;
            font-size: 14px;
            line-height: 1.55;
        }
        .modal-content {
            margin-top: 22px;
        }
        .modal-login {
            width: 760px !important;
            max-width: calc(100vw - 32px) !important;
            background: #ffffff !important;
            border-radius: 14px !important;
            box-shadow: 0 30px 80px rgba(2, 12, 32, .35) !important;
            overflow: hidden !important;
            padding: 0 !important;
        }
        .modal-login:not([hidden]) {
            display: grid !important;
            grid-template-columns: 1fr 1.35fr !important;
        }
        .modal-info {
            padding: 32px;
            border-right: 1px solid #e5edf7;
            background: #ffffff;
            display: flex;
            flex-direction: column;
        }
        .info-item {
            display: grid;
            grid-template-columns: 48px 1fr;
            gap: 16px;
            margin-bottom: 28px;
        }
        .info-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: #eef5ff;
            color: #0f62fe;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .info-icon svg { width: 20px; height: 20px; }
        .modal-form {
            padding: 32px 36px;
            display: flex;
            flex-direction: column;
            position: relative;
        }
        .modal-login h2 {
            font-size: 24px;
            font-weight: 800;
            color: #07152f;
            margin-bottom: 8px;
        }
        .modal-login p {
            font-size: 15px;
            color: #5c6f8d;
            line-height: 1.55;
            margin: 0;
        }
        .modal-login label {
            font-size: 14px;
            font-weight: 700;
            color: #07152f;
            display: block;
            margin-bottom: 8px;
        }
        .modal-login .input {
            width: 100%;
            height: 48px;
            border: 1px solid #cad6e6;
            border-radius: 8px;
            padding: 0 16px 0 44px;
            font-size: 15px;
            outline: none;
            color: #07152f;
        }
        .modal-login .input-icon {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            color: #94a3b8;
        }
        .modal-login .btn-primary {
            width: 100%;
            height: 52px;
            border-radius: 8px;
            background: #075cf8;
            color: #ffffff;
            font-size: 15px;
            font-weight: 800;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            cursor: pointer;
            margin-bottom: 24px;
        }
        .modal-login .btn-primary svg { width: 18px; height: 18px; }
        .modal-footer-link {
            border-top: 1px solid #e5edf7;
            padding-top: 24px;
            text-align: center;
            font-size: 14px;
            color: #5c6f8d;
            margin-top: auto;
        }
        .modal-footer-link button {
            background: none;
            border: none;
            color: #075cf8;
            font-weight: 800;
            cursor: pointer;
            padding: 0;
            font-size: 14px;
        }
        .modal-divider {
            display: flex;
            align-items: center;
            text-align: center;
            margin-bottom: 24px;
        }
        .modal-divider::before, .modal-divider::after {
            content: ''; flex: 1; border-bottom: 1px solid #e5edf7;
        }
        .modal-divider span { padding: 0 16px; color: #5c6f8d; font-size: 13px; }
        .modal-steps { display: flex; flex-direction: column; gap: 20px; margin-bottom: 24px; }
        .modal-step { display: flex; gap: 16px; }
        .modal-step-number { width: 28px; height: 28px; border-radius: 50%; background: #eef5ff; color: #075cf8; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; flex-shrink: 0; }
        .modal-step label { margin-bottom: 2px; }
        .modal-step p { font-size: 13px; line-height: 1.4; }
        
        @media (max-width: 768px) {
            .modal-login:not([hidden]) {
                width: calc(100vw - 24px) !important;
                grid-template-columns: 1fr !important;
            }
            .modal-info { display: none !important; }
            .modal-form { padding: 28px 22px !important; }
            .site-modal { padding: 32px 24px; }
            .modal-header h2 { font-size: 22px; }
            .modal-header p { font-size: 13px; }
            .site-modal-layer { padding: 16px; }
        }
        
        .modal-close-login { position: absolute; top: 20px; right: 20px; color: #5c6f8d; background: none; border: none; cursor: pointer; }
        .modal-close-login svg { width: 24px; height: 24px; }

        .modal-form {
            display: grid;
            gap: 14px;
        }
        .modal-field label {
            display: block;
            margin-bottom: 8px;
            color: #102033;
            font-size: 13px;
        }
        .modal-input {
            display: flex;
            align-items: center;
            gap: 12px;
            min-height: 52px;
            padding: 0 16px;
            border: 1px solid #dce4ef;
            border-radius: 8px;
            background: #fff;
        }
        .modal-input svg {
            width: 20px;
            height: 20px;
            color: #667589;
            flex: 0 0 auto;
        }
        .modal-input input {
            width: 100%;
            border: 0;
            outline: 0;
            color: #102033;
            background: transparent;
            font: inherit;
        }
        .modal-submit {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: 54px;
            border: 0;
            border-radius: 7px;
            color: #fff;
            background: #071b35;
            font-weight: 700;
            cursor: pointer;
        }
        .modal-submit svg {
            width: 20px;
            height: 20px;
        }
        .modal-secure,
        .modal-status {
            text-align: center;
            color: #667589;
            font-size: 12px;
        }
        .modal-status {
            min-height: 18px;
            color: var(--blue);
            font-weight: 600;
        }
        .site-modal--contact {
            width: min(850px, 100%);
            padding: 0;
            border-radius: 10px;
            color: #fff;
            background: #07182d;
            background-size: cover;
            background-position: center;
            box-shadow: 0 36px 110px rgba(0, 0, 0, .58), 0 0 0 1px rgba(255, 255, 255, .10);
        }
        .site-modal--contact .modal-close {
            color: #fff;
            background: transparent;
        }
        /* Mobile header: hidden on desktop */
        .contact-modal-mobile-head,
        .sobre-mobile-head,
        .sobre-mascot-mobile-img,
        .sobre-security,
        .sobre-cta-area {
            display: none;
        }
        /* Desktop: .sobre-inner is just a passthrough */
        .sobre-inner {
            display: contents;
        }
        /* Subject pills + footer bar: hidden on desktop */
        .contact-subject-label,
        .contact-subject-pills,
        .contact-modal-footer-bar,
        .contact-modal-actions {
            display: none;
        }
        /* Desktop: contact-input-wrap acts as a transparent wrapper */
        .contact-form .contact-input-wrap {
            display: contents;
        }
        .contact-form .contact-input-wrap > svg {
            display: none;
        }
        /* Desktop select for subject */
        .contact-subject-select {
            width: 100%;
            min-height: 44px;
            border: 1px solid rgba(199, 211, 226, .22);
            border-radius: 5px;
            padding: 0 14px;
            color: #c7d3e2;
            background: #162941;
            font: inherit;
            outline: none;
        }
        .contact-subject-select option {
            color: #102033;
        }
        .contact-subject-select:focus {
            border-color: var(--blue);
            box-shadow: 0 0 0 3px rgba(18, 108, 255, .16);
        }
        /* Desktop label for contact form */
        .contact-label {
            display: block;
            margin-bottom: 8px;
            color: #fff;
            font-size: 12px;
        }
        .contact-label .required { color: #ff6b6b; }
        .contact-modal-grid {
            display: grid;
            grid-template-columns: 38% 60%;
            gap: 2%;
            min-height: 540px;
        }
        .contact-modal-side {
            position: relative;
            padding: 38px 34px;
            background:
                linear-gradient(180deg, rgba(4, 13, 27, .94), rgba(4, 13, 27, .88)),
                var(--footer-bg);
            background-size: cover;
            background-position: center bottom;
        }
        .contact-modal-side img {
            width: 180px;
            max-width: 100%;
            margin-bottom: 34px;
        }
        .contact-modal-side h3 {
            margin: 0 0 18px;
            color: #fff;
            font-size: 21px;
            line-height: 1.18;
            font-weight: 600;
        }
        .contact-modal-side h3 span {
            color: var(--blue);
        }
        .contact-modal-side p,
        .contact-info p,
        .contact-info a,
        .contact-info button {
            margin: 0;
            color: #c7d3e2;
            font-size: 13px;
            line-height: 1.45;
        }
        .contact-info {
            display: grid;
            gap: 16px;
            margin-top: 26px;
            padding-top: 22px;
            border-top: 1px solid rgba(255, 255, 255, .12);
        }
        .contact-info-item {
            display: grid;
            grid-template-columns: 22px 1fr;
            gap: 12px;
            align-items: start;
        }
        .contact-info-item svg {
            width: 20px;
            height: 20px;
            margin-top: 2px;
            color: var(--blue);
            stroke-width: 1.8;
        }
        .contact-info strong {
            display: block;
            margin-bottom: 4px;
            color: #fff;
            font-size: 11px;
            text-transform: uppercase;
        }
        .contact-info p,
        .contact-info a,
        .contact-info button,
        .contact-modal-side p {
            display: block;
            width: fit-content;
            padding: 0;
            border: 0;
            background: transparent;
            text-align: left;
            cursor: pointer;
            margin: 0;
            color: #c7d3e2;
            font-size: 11px;
            line-height: 1.45;
        }
        .contact-info a:hover,
        .contact-info button:hover {
            color: #fff;
        }
        .contact-modal-main {
            padding: 38px 38px 32px 22px;
            background: #122238;
        }
        .site-modal--contact .modal-header {
            text-align: left;
        }
        .site-modal--contact .modal-header h2 {
            color: #fff;
            font-size: 24px;
            font-weight: 700;
        }
        .site-modal--contact .modal-header h2::after {
            display: none;
        }
        .site-modal--contact .modal-header p {
            color: #c7d3e2;
        }
        .contact-form {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px 16px;
            margin-top: 24px;
        }
        .contact-form .full {
            grid-column: 1 / -1;
        }
        .contact-form label {
            display: block;
            margin-bottom: 8px;
            color: #fff;
            font-size: 12px;
        }
        .contact-form .required {
            color: #ff6b6b;
        }
        .contact-form input,
        .contact-form select,
        .contact-form textarea {
            width: 100%;
            min-height: 44px;
            border: 1px solid rgba(199, 211, 226, .22);
            border-radius: 5px;
            padding: 0 14px;
            color: #fff;
            background: #162941;
            font: inherit;
            outline: none;
        }
        .contact-form textarea {
            min-height: 96px;
            padding-top: 12px;
            resize: vertical;
        }
        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: rgba(199, 211, 226, .70);
        }
        .contact-form select {
            color: #c7d3e2;
        }
        .contact-form select option {
            color: #102033;
        }
        .contact-form input:focus,
        .contact-form select:focus,
        .contact-form textarea:focus {
            border-color: var(--blue);
            box-shadow: 0 0 0 3px rgba(18, 108, 255, .16);
        }
        .contact-submit {
            grid-column: 1 / -1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: 50px;
            border: 0;
            border-radius: 5px;
            color: #fff;
            background: var(--blue);
            font-size: 13px;
            font-weight: 800;
            text-transform: uppercase;
            cursor: pointer;
        }
        .contact-submit svg {
            width: 18px;
            height: 18px;
        }
        .contact-status {
            grid-column: 1 / -1;
            min-height: 18px;
            color: #7fb1ff;
            font-size: 12px;
        }
        .mestre-float {
            position: fixed;
            right: 18px;
            bottom: 0;
            z-index: 35;
            display: flex;
            align-items: flex-end;
            justify-content: flex-end;
            width: 285px;
            height: 230px;
            padding: 0;
            border: 0;
            color: #fff;
            background: transparent;
            cursor: pointer;
        }
        .mestre-float img {
            position: relative;
            z-index: 1;
            display: block;
            width: 190px;
            height: 190px;
            object-fit: contain;
            filter: drop-shadow(0 16px 24px rgba(0, 0, 0, .38));
        }
        .mestre-bubble {
            position: absolute;
            right: 156px;
            bottom: 150px;
            z-index: 2;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            min-width: 150px;
            padding: 9px 11px;
            border: 1px solid rgba(255, 255, 255, .26);
            border-radius: 5px;
            color: #fff;
            background: rgba(6, 18, 35, .96);
            box-shadow: 0 12px 28px rgba(0, 0, 0, .28);
            font-size: 13px;
            font-weight: 600;
            line-height: 1.25;
            text-align: left;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transform: translateY(8px) scale(.98);
            transition: opacity .22s ease, transform .22s ease;
        }
        .mestre-float:hover .mestre-bubble,
        .mestre-float:focus-visible .mestre-bubble,
        .mestre-float.is-talking .mestre-bubble {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
        .mestre-bubble::after {
            content: "";
            position: absolute;
            right: -7px;
            bottom: 10px;
            width: 13px;
            height: 13px;
            border-top: 1px solid rgba(255, 255, 255, .26);
            border-right: 1px solid rgba(255, 255, 255, .26);
            background: rgba(6, 18, 35, .96);
            transform: rotate(45deg);
        }
        .mestre-bubble-text {
            position: relative;
            z-index: 1;
        }
        .mestre-float:hover .mestre-bubble-text,
        .mestre-float:focus-visible .mestre-bubble-text,
        .mestre-float.is-talking .mestre-bubble-text {
            animation: mestre-speak 1.1s ease-in-out infinite;
        }
        .mestre-bubble svg {
            position: relative;
            z-index: 1;
            width: 14px;
            height: 14px;
            color: #25d366;
            flex: 0 0 auto;
        }
        @keyframes mestre-speak {
            0%, 100% { opacity: .82; }
            45% { opacity: 1; }
        }
        
        