:root {
  --navy: #0a1628;
  --navy-mid: #12233d;
  --navy-soft: #1a3358;
  --gold: #c9a227;
  --gold-light: #dbb84a;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --text-dark: #1a2332;
  --text-muted: #5a6577;
  --border-light: #e2e6ee;
  --wa: #25d366;
  --danger: #c0392b;
  --font-display: "Montserrat", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
  --container: 1080px;
  --radius: 4px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.55;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 0 rgba(10, 22, 40, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  display: block;
  height: 52px;
  width: auto;
  max-width: min(220px, 46vw);
  object-fit: contain;
}

.nav {
  display: none;
  gap: 1.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
}

.nav a:hover {
  color: var(--gold);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-cta:hover {
  background: var(--navy-soft);
  color: var(--white);
}

/* Sections */
.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-light {
  background: var(--white);
  color: var(--text-dark);
}

.section-gold {
  background: var(--gold);
  color: var(--navy);
}

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.section-head h2 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-light .section-head h2 {
  color: var(--navy);
}

.section-dark .section-head h2 {
  color: var(--gold);
}

.section-head p {
  margin: 0;
  font-size: 1.05rem;
}

.section-light .section-head p {
  color: var(--text-muted);
}

.section-dark .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
  text-align: left;
  padding: clamp(4rem, 10vw, 7rem) 0;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(160deg, #07111f 0%, #0f2240 50%, #152b4d 100%);
}

.hero-slider-track {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slider-track img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0;
  filter: blur(8px) saturate(1.05);
  transform: scale(1.08);
  transition: opacity 0.9s ease;
}

.hero-slider-track img.is-active {
  opacity: 1;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.88) 0%, rgba(7, 17, 31, 0.62) 48%, rgba(7, 17, 31, 0.45) 100%),
    linear-gradient(180deg, rgba(7, 17, 31, 0.35) 0%, rgba(7, 17, 31, 0.55) 55%, rgba(7, 17, 31, 0.88) 100%);
}

.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.25rem;
  z-index: 3;
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
  display: flex;
  justify-content: flex-start;
  gap: 0.4rem;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: var(--gold);
}

.hero-inner {
  position: relative;
  z-index: 4;
}

.hero-content {
  max-width: 680px;
  margin: 0;
  text-align: left;
}

.hero h1 {
  margin: 0 0 0.9rem;
  max-width: 12ch;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white);
}

.hero-years {
  margin: 0 0 1.1rem;
  max-width: 28ch;
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.78);
}

.hero-ideal {
  margin: 0 0 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem 0.6rem;
  font-size: clamp(1.15rem, 2.6vw, 1.45rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.hero-rotate {
  display: inline-block;
  min-width: 8ch;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.hero-rotate.is-leaving {
  opacity: 0;
  transform: translateY(8px);
}

.hero-rotate.is-entering {
  opacity: 0;
  transform: translateY(-8px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.75rem;
  margin-bottom: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.4rem;
  border: 0;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.btn-gold:hover {
  background: var(--gold-light);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-submit {
  width: 100%;
  margin-top: 0.25rem;
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-soft);
}

.btn-wa {
  background: var(--wa);
  color: #fff;
}

.btn-wa:hover {
  background: #1ebe57;
  color: #fff;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.25rem;
}

.cta-band {
  margin-top: 2.75rem;
  padding: 2rem 1.25rem;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.cta-band-text {
  margin-bottom: 1.25rem;
}

.cta-band-text h2 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--gold);
}

.cta-band-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.cta-band .cta-row {
  margin-top: 0;
}

.section-dark .cta-row {
  margin-top: 2rem;
}

/* Strip */
.strip {
  padding: 1rem 0;
}

.strip-grid {
  display: grid;
  gap: 0.65rem;
  text-align: center;
  font-size: 0.98rem;
  font-weight: 600;
}

.strip-grid p {
  margin: 0;
}

.strip-grid strong {
  font-weight: 800;
}

/* Products */
.product-grid {
  display: grid;
  gap: 1.5rem;
  text-align: center;
}

.product-intro {
  max-width: 760px;
  margin: -0.5rem auto 2.4rem;
  text-align: center;
}

.product-intro p {
  margin: 0 0 0.9rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.product-intro p:last-child {
  margin-bottom: 0;
}

.highlights {
  margin-top: 2.75rem;
  padding: 1.75rem 1.25rem;
  background: var(--off-white);
  border: 1px solid var(--border-light);
  text-align: center;
}

.highlights h3 {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}

.highlights-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem 1rem;
  text-align: left;
}

.highlights-grid li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--text-dark);
  font-size: 0.96rem;
  font-weight: 500;
}

.highlights-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--gold);
}

.product h3 {
  margin: 0.9rem 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.product-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--off-white);
  border: 1px solid var(--border-light);
}

.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.product-photo::before {
  content: "Foto do produto";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #9aa3b2;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-slider::before {
  display: none;
}

.product-slider .slider-track {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.product-slider .slider-track img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.product-slider .slider-track img.is-active {
  opacity: 1;
  z-index: 1;
}

.slider-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: rgba(10, 22, 40, 0.55);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.product-slider:hover .slider-btn,
.product-slider:focus-within .slider-btn {
  opacity: 1;
}

.slider-btn:hover {
  background: var(--navy);
}

.slider-prev { left: 0.55rem; }
.slider-next { right: 0.55rem; }

.slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.7rem;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 0.35rem;
}

.slider-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.slider-dots button.is-active {
  background: var(--gold);
}

.product-slider .swatch {
  bottom: 1.55rem;
}

.swatch {
  position: absolute;
  left: 50%;
  bottom: 0.85rem;
  transform: translateX(-50%);
  width: 1rem;
  height: 1rem;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.swatch-preto { background: #111; }
.swatch-branco { background: #fff; border-color: #ccc; }
.swatch-marinho { background: #0d2748; }

/* Split: usos + preços */
.split-grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

.use-panel,
.price-panel {
  background: var(--navy-mid);
  border: 1px solid rgba(201, 162, 39, 0.28);
  padding: clamp(1.4rem, 3vw, 2rem);
}

.use-eyebrow {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.use-panel h3,
.price-panel h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.15;
}

.use-lead {
  margin: 0 0 1.35rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.02rem;
}

.use-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.95rem;
}

.use-list li {
  padding: 0.9rem 0 0;
  border-top: 1px solid rgba(201, 162, 39, 0.18);
  display: grid;
  gap: 0.2rem;
}

.use-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.use-list strong {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.use-list span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

.use-ctas {
  margin-top: 1.6rem;
  justify-content: flex-start;
}

.price-panel .price-table-wrap {
  max-width: none;
  margin: 0;
}

.price-freight {
  margin-top: 0.9rem;
  text-align: left;
}

@media (min-width: 860px) {
  .split-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.75rem;
  }

  .use-ctas {
    justify-content: flex-start;
  }
}

/* Price table */
.price-table-wrap {
  max-width: 480px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(201, 162, 39, 0.3);
  overflow: hidden;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 1rem 1.25rem;
  text-align: left;
}

.price-table thead th {
  background: rgba(201, 162, 39, 0.12);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
}

.price-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-table tbody tr:last-child {
  border-bottom: 0;
}

.price-table td {
  color: rgba(255, 255, 255, 0.85);
}

.price-table td:last-child {
  text-align: right;
  color: var(--gold-light);
  font-weight: 700;
}

.price-table tr.is-active {
  background: rgba(201, 162, 39, 0.15);
}

.price-table tr.is-active td {
  color: var(--white);
}

.price-table tr.is-active td:last-child {
  color: var(--gold);
}

/* Video */
.embroidery-banner {
  display: grid;
  gap: 1.75rem;
  align-items: center;
  padding: clamp(1.6rem, 4vw, 2.5rem);
  background: var(--navy);
  color: var(--white);
  border: 1px solid rgba(201, 162, 39, 0.3);
}

.embroidery-eyebrow {
  color: var(--gold);
}

.embroidery-copy h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.1;
}

.embroidery-lead {
  margin: 0 0 1.15rem;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.55;
}

.embroidery-points {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.embroidery-points li {
  position: relative;
  padding-left: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.98rem;
}

.embroidery-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--gold);
}

.embroidery-points strong {
  color: var(--gold-light);
}

.embroidery-aside {
  text-align: center;
  padding: 1.5rem 1.25rem;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(201, 162, 39, 0.25);
}

.embroidery-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.85rem;
  color: var(--gold);
}

.embroidery-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.embroidery-min-label {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.25;
}

.embroidery-min {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--gold);
}

.embroidery-aside-text {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
}

@media (min-width: 800px) {
  .embroidery-banner {
    grid-template-columns: 1.4fr 0.7fr;
    gap: 2rem;
  }
}

.video-frame {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  min-height: min(58vw, 420px);
  background: #050b14;
  border: 1px solid rgba(201, 162, 39, 0.25);
  overflow: hidden;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (min-width: 900px) {
  .video-frame {
    min-height: 560px;
  }
}

/* Order */
.order-form {
  max-width: 920px;
  margin: 0 auto;
}

.order-grid {
  display: grid;
  gap: 1rem;
}

.color-block {
  background: var(--off-white);
  border: 1px solid var(--border-light);
  padding: 1.15rem;
}

.color-thumb {
  aspect-ratio: 1 / 1;
  margin: 0 0 0.9rem;
  overflow: hidden;
  background: #e8ebf0;
  border: 1px solid var(--border-light);
}

.color-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.color-block h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}

.dot {
  width: 0.75rem;
  height: 0.75rem;
  border: 1px solid rgba(10, 22, 40, 0.2);
}

.dot-preto { background: #111; }
.dot-branco { background: #fff; border-color: #ccc; }
.dot-marinho { background: #0d2748; }

.size-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
}

.size-field {
  display: grid;
  gap: 0.35rem;
  text-align: center;
}

.size-field span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.size-field input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--border-light);
  background: var(--white);
  text-align: center;
  font: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  padding: 0.4rem;
}

.size-field input:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.coupon-box {
  margin: 1.35rem 0 0;
  padding: 1.15rem 1.1rem;
  background: var(--off-white);
  border: 1px solid var(--border-light);
}

.cep-freight-box {
  margin: 1rem 0 0;
  padding: 1.15rem 1.1rem;
  background: var(--off-white);
  border: 1px solid var(--border-light);
}

.cep-freight-box label {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}

.cep-freight-box input {
  width: 100%;
  max-width: 220px;
  min-height: 46px;
  border: 1px solid var(--border-light);
  background: var(--white);
  padding: 0.7rem 0.85rem;
  font: inherit;
  font-weight: 700;
  color: var(--navy);
}

.cep-freight-box input:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.cep-freight-box input.invalid {
  border-color: var(--danger);
}

.coupon-box label {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}

.coupon-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
}

.coupon-row input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--border-light);
  background: var(--white);
  padding: 0.7rem 0.85rem;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}

.coupon-row input:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.coupon-row .btn {
  min-height: 46px;
  padding-inline: 1.1rem;
}

.order-intro {
  display: grid;
  gap: 0.85rem;
  margin: 0 auto 1.75rem;
  max-width: 920px;
}

.order-intro .order-guide {
  margin: 0;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  background: var(--off-white);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
}

.coupon-feedback {
  margin: 0.45rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 1.2em;
}

.coupon-feedback.is-success {
  color: #1a7a3a;
}

.coupon-feedback.is-error {
  color: var(--danger);
}

.is-hidden {
  display: none !important;
}

#discount-row strong {
  color: #7dcea0;
}

#freight-final-row strong {
  color: var(--gold-light);
}

.total-bar {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0;
  padding: 1.35rem 1.25rem;
  background: var(--navy);
  border: 1px solid var(--navy);
  text-align: left;
  color: var(--white);
}

.total-bar > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.total-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.total-bar strong {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold);
}

.total-main strong {
  font-size: 1.5rem;
}

.tier-hint {
  margin: 0;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(201, 162, 39, 0.25);
  font-size: 0.92rem;
  color: var(--gold-light);
  text-align: center;
}

.freight-note {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: left;
  line-height: 1.45;
}

.freight-alert-icon {
  flex-shrink: 0;
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.1rem;
  color: var(--gold);
}

.freight-alert-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.form-fields {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
  text-align: left;
}

.form-fields h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  text-align: center;
}

.form-fields label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.optional {
  font-weight: 400;
  color: var(--text-muted);
}

.form-fields input,
.form-fields textarea,
.form-fields select {
  width: 100%;
  border: 1px solid var(--border-light);
  background: var(--white);
  padding: 0.85rem 0.95rem;
  font: inherit;
  color: var(--text-dark);
  resize: vertical;
}

.form-fields select {
  min-height: 48px;
  cursor: pointer;
}

.form-fields input::placeholder,
.form-fields textarea::placeholder {
  color: #9aa3b2;
}

.form-fields input:focus,
.form-fields textarea:focus,
.form-fields select:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.form-fields input.invalid,
.form-fields textarea.invalid,
.form-fields select.invalid {
  border-color: var(--danger);
}

/* Factory */
.company-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  padding: 1.35rem 1.4rem;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(201, 162, 39, 0.28);
}

.company-name {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
}

.company-card p {
  margin: 0;
  line-height: 1.5;
}

.company-cnpj {
  margin-top: 0.45rem !important;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
}

.factory-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.factory-grid figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--off-white);
  border: 1px solid var(--border-light);
  position: relative;
}

.factory-grid figure:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.factory-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.factory-grid figure:hover img {
  transform: scale(1.03);
}

/* Footer */
.site-footer {
  padding: 3rem 0 4.5rem;
  background: #05080f;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
}

.footer-inner {
  display: grid;
  gap: 2rem;
  text-align: left;
  align-items: center;
}

.footer-brand-col {
  display: grid;
  gap: 0.55rem;
  justify-items: start;
}

.footer-logo {
  display: block;
  height: 78px;
  width: auto;
  max-width: min(300px, 90vw);
  margin: 0;
  object-fit: contain;
}

.footer-trust {
  margin: 0.35rem 0 0 !important;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--gold) !important;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-trust::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.2);
}

.footer-trust-note {
  margin: 0 !important;
  max-width: 28ch;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5) !important;
  line-height: 1.45;
}

.footer-info-col {
  display: grid;
  gap: 0.3rem;
}

.footer-info-col .footer-tagline {
  margin-bottom: 0.55rem !important;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

.footer-company {
  color: var(--gold-light) !important;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.footer-address {
  letter-spacing: 0.02em;
}

.footer-cnpj {
  margin-bottom: 0.65rem !important;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5) !important;
}

.site-footer a {
  color: var(--gold-light);
  font-weight: 700;
  width: fit-content;
}

.site-footer a:hover {
  color: var(--gold);
}

@media (min-width: 760px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-info-col {
    justify-items: end;
    text-align: right;
  }

  .footer-info-col a {
    margin-left: auto;
  }

  .footer-trust-note {
    max-width: 32ch;
  }
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 50;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

/* Responsive */
@media (min-width: 640px) {
  .strip-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .highlights {
    padding: 2rem 1.75rem;
  }

  .highlights-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-fields {
    grid-template-columns: 1fr 1fr;
  }

  .form-fields h3,
  .form-fields .full {
    grid-column: 1 / -1;
  }

  .factory-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
  }

  .factory-grid figure:first-child {
    grid-column: 1 / -1;
  }

  .total-bar {
    grid-template-columns: 1fr 1fr;
  }

  .total-main,
  .tier-hint,
  .freight-note {
    grid-column: 1 / -1;
  }
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }

  .order-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .factory-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .logo img {
    height: 60px;
    max-width: 260px;
  }

  .header-inner {
    min-height: 84px;
  }
}
