:root {
    --ink: #142130;
    --ink-soft: #344252;
    --navy: #0b2748;
    --navy-deep: #071a30;
    --blue: #2465ad;
    --gold: #c6a84d;
    --gold-dark: #9e8233;
    --gold-soft: #f5efd9;
    --green: #13805d;
    --green-soft: #e8f5ef;
    --danger: #ad4541;
    --danger-soft: #faeceb;
    --canvas: #f3f5f6;
    --surface: #ffffff;
    --surface-soft: #f8f9f9;
    --line: #dfe4e7;
    --line-strong: #cbd3d8;
    --muted: #647180;
    --shadow-sm: 0 4px 16px rgba(17, 32, 48, 0.06);
    --shadow-md: 0 14px 38px rgba(17, 32, 48, 0.1);
    --shadow-lg: 0 24px 60px rgba(3, 18, 34, 0.2);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    min-width: 320px;
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--canvas);
    color: var(--ink);
    line-height: 1.5;
}

body,
button,
input {
    font-size: 16px;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid rgba(198, 168, 77, 0.55);
    outline-offset: 3px;
}

.container {
    width: min(1420px, calc(100% - 48px));
    margin-inline: auto;
}

.section-eyebrow {
    display: block;
    margin-bottom: 12px;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.section-eyebrow-light {
    color: #e5cc7e;
}

.btn-primary,
.btn-secondary {
    min-height: 50px;
    border: 1px solid transparent;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 13px 22px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy-deep);
}

.btn-primary:hover {
    background: #d6ba62;
    transform: translateY(-2px);
}

.btn-secondary {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(7, 26, 48, 0.28);
    color: #ffffff;
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    border-color: #ffffff;
    background: rgba(7, 26, 48, 0.58);
    transform: translateY(-2px);
}

/* Header */
.top-header {
    position: relative;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
}

.header-content {
    min-height: 92px;
    display: grid;
    grid-template-columns: 225px minmax(280px, 1fr) auto;
    align-items: center;
    gap: 30px;
}

.logo,
.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    width: 210px;
    height: 68px;
    object-fit: cover;
    object-position: center;
}

.search-box {
    position: relative;
    width: 100%;
    max-width: 690px;
    justify-self: center;
}

.search-box input {
    width: 100%;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 6px;
    outline: none;
    background: var(--surface-soft);
    color: var(--ink);
    padding: 0 48px 0 46px;
    transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.search-box input::placeholder {
    color: #88939e;
}

.search-box input:focus {
    border-color: var(--gold);
    background: var(--surface);
    box-shadow: 0 0 0 4px rgba(198, 168, 77, 0.12);
}

.search-box > i {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 17px;
    color: var(--muted);
    font-size: 16px;
    pointer-events: none;
    transform: translateY(-50%);
}

.actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
}

.action {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    text-decoration: none;
    transition: color 180ms ease;
}

.action > i {
    flex: 0 0 auto;
    color: var(--navy);
    font-size: 22px;
    transition: color 180ms ease, transform 180ms ease;
}

.action:hover,
.action:hover > i {
    color: var(--gold-dark);
}

.action:hover > i {
    transform: translateY(-1px);
}

.action div {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.action strong {
    color: currentColor;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.25;
    white-space: nowrap;
}

.action span {
    margin-top: 2px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.25;
    white-space: nowrap;
}

.cart-action {
    position: relative;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 6px;
    justify-content: center;
    background: var(--surface-soft);
}

.cart-action:hover {
    border-color: var(--gold);
    background: var(--gold-soft);
}

.cart-action > i {
    font-size: 18px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 22px;
    height: 22px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy-deep);
    font-size: 11px;
    font-weight: 800;
    line-height: 18px;
    text-align: center;
}

/* Category navigation */
.menu {
    position: relative;
    z-index: 40;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--navy-deep);
}

.menu ul {
    min-height: 58px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0 24px;
    overflow: visible;
    padding: 7px 0;
    list-style: none;
}

.menu li {
    flex: 0 0 auto;
}

.menu a {
    position: relative;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #d6dde6;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 180ms ease;
}

.menu a::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--gold);
    opacity: 0;
    transform: scaleX(0.4);
    transition: opacity 180ms ease, transform 180ms ease;
}

.menu a:hover,
.menu .is-active a,
.menu-header a {
    color: #ffffff;
}

.menu a:hover::after,
.menu .is-active a::after {
    opacity: 1;
    transform: scaleX(1);
}

.menu-header a {
    padding-right: 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    color: #e5cc7e;
}

.mobile-menu-toggle {
    display: none;
}

/* Home hero */
.hero {
    position: relative;
    height: min(650px, calc(100svh - 190px));
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy-deep);
}

.bg-slider,
.slide,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.slide {
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.025);
    transition: opacity 1100ms ease, transform 5500ms ease;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    z-index: 2;
    background: linear-gradient(90deg, rgba(4, 19, 35, 0.93) 0%, rgba(4, 22, 42, 0.78) 45%, rgba(4, 22, 42, 0.28) 78%, rgba(4, 22, 42, 0.18) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1420px;
    color: #ffffff;
}

.hero-kicker {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e8d690;
    font-size: 13px;
    font-weight: 750;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 820px;
    color: #ffffff;
    font-size: 60px;
    font-weight: 780;
    line-height: 1.08;
}

.hero h1 span {
    color: #e4c66b;
}

.hero-description {
    max-width: 650px;
    margin-top: 22px;
    color: #e1e7ec;
    font-size: 18px;
    line-height: 1.65;
}

.hero-actions {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-proof {
    margin-top: 38px;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    color: #ffffff;
}

.hero-proof span {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 22px;
    border-right: 1px solid rgba(255, 255, 255, 0.28);
    font-size: 13px;
    font-weight: 650;
}

.hero-proof span:first-child {
    padding-left: 0;
}

.hero-proof span:last-child {
    border-right: 0;
}

.hero-proof i {
    color: #e4c66b;
}

/* Home sections */
.imp-section {
    padding: 88px 24px 96px;
    background: var(--surface);
}

.imp-container,
.conf-container {
    width: min(1240px, 100%);
    margin-inline: auto;
}

.section-heading {
    max-width: 700px;
    margin-bottom: 54px;
}

.section-heading h2,
.catalog-callout h2 {
    color: var(--navy-deep);
    font-size: 38px;
    font-weight: 760;
    line-height: 1.18;
}

.section-heading > p,
.catalog-callout p {
    margin-top: 14px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
}

.imp-steps-wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.imp-step-card {
    position: relative;
    min-height: 280px;
    padding: 42px 40px 44px;
    border-right: 1px solid var(--line);
    background: var(--surface);
    transition: background-color 180ms ease;
}

.imp-step-card:last-child {
    border-right: 0;
}

.imp-step-card:hover {
    background: var(--surface-soft);
}

.imp-step-number {
    position: absolute;
    top: 22px;
    right: 26px;
    color: #c8ced3;
    font-size: 13px;
    font-weight: 800;
}

.imp-icon-container {
    width: 46px;
    height: 46px;
    border: 1px solid #dfd1a4;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-soft);
    color: var(--gold-dark);
    font-size: 19px;
}

.imp-step-card h3 {
    margin-top: 34px;
    color: var(--navy-deep);
    font-size: 20px;
    font-weight: 740;
    line-height: 1.3;
}

.imp-step-card p {
    margin-top: 12px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

.conf-section {
    padding: 96px 24px;
    background: var(--navy-deep);
}

.conf-container {
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1.1fr);
    align-items: center;
    gap: 84px;
}

.conf-image-block {
    position: relative;
}

.conf-image-block::before {
    content: '';
    position: absolute;
    top: -16px;
    left: -16px;
    width: 90px;
    height: 90px;
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
}

.conf-image-block img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 570px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.conf-content-block {
    color: #ffffff;
}

.conf-title {
    max-width: 620px;
    color: #ffffff;
    font-size: 40px;
    font-weight: 760;
    line-height: 1.18;
}

.conf-description {
    max-width: 610px;
    margin-top: 22px;
    color: #cdd7e0;
    font-size: 17px;
    line-height: 1.7;
}

.conf-counter-box {
    margin-top: 34px;
    display: flex;
    align-items: baseline;
    gap: 14px;
}

.conf-number {
    color: #e4c66b;
    font-size: 46px;
    font-weight: 800;
    line-height: 1;
}

.conf-counter-label {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.conf-features-list {
    margin-top: 34px;
    display: grid;
    gap: 14px;
    list-style: none;
}

.conf-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #edf1f4;
    font-size: 15px;
}

.conf-features-list i {
    margin-top: 4px;
    color: #e4c66b;
}

.catalog-callout {
    padding: 78px 0;
    border-bottom: 1px solid #e3d6ab;
    background: #f6f1e2;
}

.catalog-callout-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 60px;
}

.catalog-callout-inner > div {
    max-width: 760px;
}

.catalog-callout .btn-primary {
    min-width: 230px;
    background: var(--navy);
    color: #ffffff;
}

.catalog-callout .btn-primary:hover {
    background: var(--blue);
}

.whatsapp {
    position: fixed;
    z-index: 90;
    right: 24px;
    bottom: 24px;
    min-height: 50px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 18px;
    background: #168b64;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(11, 84, 60, 0.25);
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
    transition: background-color 180ms ease, transform 180ms ease;
}

.whatsapp:hover {
    background: #0e7553;
    transform: translateY(-2px);
}

.whatsapp i {
    font-size: 22px;
}

/* Catalog */
.category-page,
.quote-page {
    min-height: 65vh;
    padding: 64px 0 90px;
    background: var(--canvas);
}

.category-header {
    max-width: 820px;
    margin-bottom: 38px;
    text-align: left;
}

.category-header h1,
.category-header h2 {
    color: var(--navy-deep);
    font-size: 40px;
    font-weight: 770;
    line-height: 1.16;
    text-transform: none;
}

.category-header p {
    margin-top: 13px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
}

.catalog-toolbar {
    min-height: 82px;
    margin-bottom: 24px;
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.catalog-results {
    display: flex;
    align-items: baseline;
    gap: 7px;
    color: var(--muted);
    font-size: 14px;
}

.catalog-results strong {
    color: var(--navy);
    font-size: 22px;
    font-weight: 800;
}

.quote-meter {
    min-width: 310px;
    display: grid;
    grid-template-columns: 38px 1fr 76px 14px;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    text-decoration: none;
}

.quote-meter-icon {
    width: 38px;
    height: 38px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: #ffffff;
}

.quote-meter-copy {
    display: flex;
    flex-direction: column;
}

.quote-meter-copy small {
    color: var(--muted);
    font-size: 11px;
    font-weight: 650;
}

.quote-meter-copy strong {
    color: var(--navy-deep);
    font-size: 13px;
    font-weight: 800;
}

.quote-meter-track,
.quote-progress {
    height: 5px;
    overflow: hidden;
    border-radius: 3px;
    background: #d8dee2;
}

.quote-meter-track > span,
.quote-progress > span {
    width: 0;
    height: 100%;
    display: block;
    border-radius: inherit;
    background: var(--gold);
    transition: width 250ms ease, background-color 250ms ease;
}

.quote-meter.is-full .quote-meter-icon,
.quote-meter.is-full .quote-meter-track > span {
    background: var(--green);
}

.quote-meter-arrow {
    color: #929da7;
    font-size: 12px;
    transition: color 180ms ease, transform 180ms ease;
}

.quote-meter:hover .quote-meter-arrow {
    color: var(--gold-dark);
    transform: translateX(3px);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    align-items: stretch;
    gap: 20px;
}

.product-card {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

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

.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    border-bottom: 1px solid #edf0f2;
    background: #fbfbfa;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 260ms ease;
}

.product-card:hover .product-image img {
    transform: scale(1.035);
}

.product-image-placeholder {
    width: 92px;
    height: 92px;
    border: 1px dashed var(--line-strong);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a6afb7;
    font-size: 28px;
}

.product-info {
    min-height: 220px;
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px;
}

.product-topline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.product-category {
    min-width: 0;
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.35;
    text-transform: uppercase;
}

.product-sku {
    flex: 0 0 auto;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
}

.product-title {
    margin-top: 11px;
    overflow-wrap: anywhere;
    color: var(--navy-deep);
    font-size: 17px;
    font-weight: 740;
    line-height: 1.38;
}

.product-box,
.quote-item-info p {
    margin-top: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.product-box i,
.quote-item-info p i {
    color: var(--gold-dark);
}

.btn-cotar-produto {
    width: 100%;
    min-height: 44px;
    margin-top: auto;
    border: 1px solid var(--navy);
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: var(--navy);
    color: #ffffff;
    cursor: pointer;
    font-size: 13px;
    font-weight: 760;
    line-height: 1.2;
    padding: 11px 14px;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.btn-cotar-produto:hover {
    border-color: var(--blue);
    background: var(--blue);
    transform: translateY(-1px);
}

.btn-cotar-produto.is-selected {
    border-color: #b8dfcc;
    background: var(--green-soft);
    color: var(--green);
    cursor: default;
}

.btn-cotar-produto.is-limit-reached {
    border-color: var(--line-strong);
    background: #eef1f2;
    color: #66727d;
}

.btn-cotar-produto.is-limit-reached:hover {
    border-color: var(--danger);
    background: var(--danger-soft);
    color: var(--danger);
    transform: none;
}

.empty-state {
    grid-column: 1 / -1;
    min-height: 240px;
    border: 1px dashed var(--line-strong);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 9px;
    padding: 36px;
    background: var(--surface);
    color: var(--muted);
    text-align: center;
}

.empty-state > i {
    margin-bottom: 4px;
    color: #9ba5ad;
    font-size: 30px;
}

.empty-state strong {
    color: var(--navy-deep);
    font-size: 18px;
}

.empty-state span {
    font-size: 14px;
}

/* Quote */
.quote-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: start;
    gap: 30px;
}

.quote-list {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quote-item {
    position: relative;
    min-height: 140px;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    grid-template-columns: 28px 108px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 15px 18px;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.quote-item-number {
    color: #a1aab2;
    font-size: 12px;
    font-weight: 800;
}

.quote-item-image {
    width: 108px;
    height: 108px;
    overflow: hidden;
    border: 1px solid #edf0f2;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
    background: #fbfbfa;
}

.quote-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.quote-item-info {
    min-width: 0;
}

.quote-item-info h2,
.quote-item-info h3 {
    margin-top: 8px;
    overflow-wrap: anywhere;
    color: var(--navy-deep);
    font-size: 17px;
    font-weight: 740;
    line-height: 1.35;
}

.btn-remover-cotacao {
    min-width: 42px;
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 13px;
    background: var(--surface-soft);
    color: var(--muted);
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn-remover-cotacao:hover {
    border-color: #e0b2af;
    background: var(--danger-soft);
    color: var(--danger);
}

.quote-summary {
    position: sticky;
    top: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 26px;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.quote-summary-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
}

.quote-summary-heading > span {
    color: var(--navy-deep);
    font-size: 17px;
    font-weight: 760;
}

.quote-summary-heading strong {
    color: var(--gold-dark);
    font-size: 13px;
}

.quote-progress {
    height: 7px;
    margin-top: 15px;
}

.quote-summary > p {
    margin-top: 18px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.quote-actions {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-voltar-catalogo,
.btn-enviar-whatsapp {
    width: 100%;
    min-height: 48px;
    border: 1px solid transparent;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 15px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn-voltar-catalogo {
    border-color: var(--line-strong);
    background: var(--surface);
    color: var(--navy);
}

.btn-voltar-catalogo:hover {
    border-color: var(--navy);
    background: #f1f4f6;
}

.btn-enviar-whatsapp {
    background: var(--green);
    color: #ffffff;
}

.btn-enviar-whatsapp:hover {
    background: #0d6d4e;
}

.btn-enviar-whatsapp:disabled {
    background: #d6dce0;
    color: #7b8791;
    cursor: not-allowed;
}

.quote-empty-state {
    min-height: 360px;
}

.quote-empty-state .btn-primary {
    margin-top: 14px;
}

/* Footer */
.site-footer {
    background: #081a2e;
    color: #ffffff;
}

.site-footer-main {
    min-height: 150px;
    display: grid;
    grid-template-columns: 190px minmax(240px, 1fr) auto;
    align-items: center;
    gap: 40px;
}

.site-footer-brand {
    display: block;
}

.site-footer-brand img {
    width: 145px;
    height: 62px;
    object-fit: cover;
    object-position: center;
    filter: grayscale(1) brightness(0) invert(1);
}

.site-footer-main > p {
    max-width: 460px;
    color: #aebbc7;
    font-size: 14px;
    line-height: 1.6;
}

.site-footer-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 26px;
}

.site-footer-links a {
    color: #d8e0e7;
    font-size: 13px;
    font-weight: 650;
    text-decoration: none;
}

.site-footer-links a:hover {
    color: #e5cc7e;
}

.site-footer-bottom {
    min-height: 52px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    color: #8292a1;
    font-size: 12px;
}

/* Feedback */
.site-notification {
    position: fixed;
    z-index: 120;
    right: 24px;
    bottom: 88px;
    width: min(360px, calc(100% - 32px));
    min-height: 54px;
    border: 1px solid #b8dfcc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #ffffff;
    color: var(--green);
    box-shadow: var(--shadow-md);
    font-size: 14px;
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.site-notification-erro {
    border-color: #e0b2af;
    color: var(--danger);
}

.site-notification.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1180px) {
    .header-content {
        grid-template-columns: 190px minmax(250px, 1fr) auto;
        gap: 20px;
    }

    .logo img {
        width: 180px;
    }

    .actions {
        gap: 14px;
    }

    .menu ul {
        column-gap: 18px;
    }

    .menu a {
        font-size: 11px;
    }

    .action.btn-whatsapp-rotativo div {
        display: none;
    }

    .action.btn-whatsapp-rotativo {
        width: 42px;
        height: 42px;
        justify-content: center;
    }

    .conf-container {
        gap: 54px;
    }

    .quote-layout {
        grid-template-columns: minmax(0, 1fr) 310px;
    }

    .quote-item {
        grid-template-columns: 24px 96px minmax(0, 1fr) auto;
        gap: 14px;
    }

    .quote-item-image {
        width: 96px;
        height: 96px;
    }

    .btn-remover-cotacao span {
        display: none;
    }
}

@media (max-width: 900px) {
    .container {
        width: min(1420px, calc(100% - 32px));
    }

    .header-content {
        min-height: 138px;
        grid-template-columns: 180px 1fr;
        grid-template-rows: 68px 54px;
        gap: 0 18px;
    }

    .logo {
        grid-column: 1;
        grid-row: 1;
    }

    .search-box {
        max-width: none;
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .actions {
        grid-column: 2;
        grid-row: 1;
    }

    .menu ul {
        column-gap: 14px;
    }

    .hero {
        height: 560px;
        min-height: 560px;
    }

    .hero h1 {
        font-size: 50px;
    }

    .imp-steps-wrapper {
        grid-template-columns: 1fr;
    }

    .imp-step-card {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .imp-step-card:last-child {
        border-bottom: 0;
    }

    .conf-container {
        grid-template-columns: 1fr;
    }

    .conf-image-block {
        max-width: 640px;
    }

    .conf-image-block img {
        max-height: 430px;
        object-position: center 64%;
    }

    .catalog-callout-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .catalog-callout .btn-primary {
        justify-self: start;
    }

    .quote-layout {
        grid-template-columns: 1fr;
    }

    .quote-summary {
        position: static;
        order: -1;
    }

    .quote-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .site-footer-main {
        grid-template-columns: 160px 1fr;
        padding: 36px 0;
    }

    .site-footer-links {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }
}

@media (max-width: 700px) {
    .container {
        width: calc(100% - 28px);
    }

    .top-header {
        background: #ffffff;
    }

    .header-content {
        min-height: 126px;
        grid-template-columns: 150px 1fr;
        grid-template-rows: 64px 50px;
        gap: 0 12px;
    }

    .logo img {
        width: 150px;
        height: 58px;
    }

    .actions {
        gap: 8px;
    }

    .action.btn-whatsapp-rotativo {
        display: none;
    }

    .quote-action {
        min-width: 0;
        gap: 7px;
    }

    .quote-action > i {
        font-size: 18px;
    }

    .quote-action strong {
        font-size: 12px;
    }

    .quote-action span {
        font-size: 10px;
    }

    .cart-action {
        width: 42px;
        height: 42px;
    }

    .search-box input {
        height: 44px;
        font-size: 14px;
    }

    .menu .container {
        width: calc(100% - 28px);
    }

    .mobile-menu-toggle {
        width: 100%;
        min-height: 52px;
        border: 0;
        display: none;
        align-items: center;
        justify-content: space-between;
        background: transparent;
        color: #ffffff;
        cursor: pointer;
        font-size: 13px;
        font-weight: 750;
        text-transform: uppercase;
    }

    .mobile-menu-toggle span {
        display: flex;
        align-items: center;
        gap: 9px;
        color: #e5cc7e;
    }

    .mobile-menu-toggle > i {
        font-size: 11px;
        transition: transform 180ms ease;
    }

    .menu.has-mobile-menu .mobile-menu-toggle {
        display: flex;
    }

    .menu.has-mobile-menu ul {
        max-height: 0;
        min-height: 0;
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height 280ms ease;
    }

    .menu.has-mobile-menu.menu-open ul {
        max-height: 760px;
        padding: 0 0 12px;
    }

    .menu.has-mobile-menu.menu-open .mobile-menu-toggle > i {
        transform: rotate(180deg);
    }

    .menu li,
    .menu a {
        width: 100%;
    }

    .menu a {
        min-height: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 12px;
        white-space: normal;
    }

    .menu a::after {
        display: none;
    }

    .menu-header a {
        padding-right: 0;
        border-right: 0;
    }

    .hero {
        height: 500px;
        min-height: 500px;
    }

    .slide {
        background-position: 58% center;
    }

    .hero-overlay {
        background: linear-gradient(90deg, rgba(4, 19, 35, 0.94) 0%, rgba(4, 22, 42, 0.77) 70%, rgba(4, 22, 42, 0.55) 100%);
    }

    .hero h1 {
        font-size: 39px;
    }

    .hero-description {
        max-width: 540px;
        margin-top: 17px;
        font-size: 16px;
        line-height: 1.55;
    }

    .hero-actions {
        margin-top: 24px;
    }

    .hero-proof {
        margin-top: 28px;
        display: grid;
        gap: 8px;
    }

    .hero-proof span,
    .hero-proof span:first-child {
        min-height: 20px;
        border: 0;
        padding: 0;
    }

    .imp-section,
    .conf-section {
        padding: 70px 18px;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2,
    .catalog-callout h2,
    .conf-title {
        font-size: 32px;
    }

    .imp-step-card {
        padding: 34px 26px 36px;
    }

    .conf-container {
        gap: 46px;
    }

    .conf-image-block::before {
        top: -10px;
        left: -10px;
    }

    .conf-number {
        font-size: 40px;
    }

    .catalog-callout {
        padding: 60px 0;
    }

    .category-page,
    .quote-page {
        padding: 44px 0 70px;
    }

    .category-header {
        margin-bottom: 30px;
    }

    .category-header h1,
    .category-header h2 {
        font-size: 32px;
    }

    .catalog-toolbar {
        min-height: 0;
        padding: 15px 0;
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
    }

    .quote-meter {
        min-width: 0;
        grid-template-columns: 38px 1fr 62px 12px;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .product-info {
        min-height: 210px;
        padding: 16px;
    }

    .product-topline {
        flex-direction: column;
        gap: 4px;
    }

    .product-title {
        font-size: 16px;
    }

    .quote-item {
        grid-template-columns: 22px 88px minmax(0, 1fr) 42px;
        gap: 10px;
        padding: 12px;
    }

    .quote-item-image {
        width: 88px;
        height: 88px;
    }

    .quote-item .product-topline {
        flex-direction: row;
    }

    .quote-item-info h2,
    .quote-item-info h3 {
        font-size: 15px;
    }

    .quote-summary {
        padding: 22px;
    }

    .quote-actions {
        grid-template-columns: 1fr;
    }

    .site-footer-main {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .site-footer-links {
        grid-column: auto;
        flex-wrap: wrap;
        gap: 16px 24px;
    }

    .whatsapp {
        right: 14px;
        bottom: 14px;
        width: 50px;
        height: 50px;
        min-height: 50px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }

    .whatsapp span {
        display: none;
    }

    .site-notification {
        right: 14px;
        bottom: 76px;
    }
}

@media (max-width: 520px) {
    .header-content {
        grid-template-columns: 120px 1fr;
    }

    .logo img {
        width: 120px;
    }

    .quote-action div {
        display: none;
    }

    .quote-action {
        width: 42px;
        height: 42px;
        justify-content: center;
    }

    .hero {
        height: 510px;
        min-height: 510px;
    }

    .hero-kicker {
        font-size: 11px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
    }

    .hero-proof span {
        font-size: 12px;
    }

    .section-heading h2,
    .catalog-callout h2,
    .conf-title,
    .category-header h1,
    .category-header h2 {
        font-size: 28px;
    }

    .catalog-callout .btn-primary {
        width: 100%;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        aspect-ratio: 4 / 3;
    }

    .product-info {
        min-height: 205px;
    }

    .product-topline {
        flex-direction: row;
    }

    .quote-item {
        grid-template-columns: 76px minmax(0, 1fr) 40px;
        align-items: start;
        gap: 10px;
    }

    .quote-item-number {
        display: none;
    }

    .quote-item-image {
        width: 76px;
        height: 76px;
    }

    .quote-item-info .product-topline {
        flex-direction: column;
    }

    .quote-item-info p {
        align-items: flex-start;
    }

    .site-footer-bottom {
        padding: 16px 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
