/* ============ Página Go Wash (/gowash/) ============
   Complementa base.css + pages.css + home.css — só o que é exclusivo daqui.
   Visual segue o folder do produto: fundo preto, amarelo da marca e tipografia pesada. */

/* --- Eyebrow com raio (usado no hero e na seção escura) --- */
.gw-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 22px;
}
.gw-eyebrow .bolt { flex-shrink: 0; }

/* --- Hero --- */
.gw-hero {
  position: relative;
  overflow: hidden;
  background: #0b0b0b;
  color: var(--on-ink);
  padding: clamp(56px, 8vw, 104px) 0 clamp(48px, 6vw, 80px);
}
.gw-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 70% at 100% 0%, rgba(255, 221, 0, 0.16), transparent 60%),
    radial-gradient(40% 50% at 0% 100%, rgba(255, 221, 0, 0.06), transparent 60%);
  pointer-events: none;
}
.gw-hero .container { position: relative; z-index: 1; }
.gw-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.gw-hero__copy,
.gw-hero__form { min-width: 0; }
.gw-hero__logo {
  width: 100%;
  max-width: 440px;
  height: auto;
  margin-bottom: 28px;
}
.gw-hero__title {
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--on-ink);
  margin: 0 0 22px;
}
.gw-hero__title em { font-style: italic; color: var(--brand); }
.gw-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.gw-tag {
  display: inline-block;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-ink);
}
.gw-hero__lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.6;
  max-width: 560px;
}
.gw-hero__lead strong { color: var(--on-ink); }
.gw-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
  margin-top: 30px;
}
.gw-hero__link {
  color: var(--on-ink);
  font-weight: 700;
  font-size: 15px;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--brand);
}
.gw-hero__link:hover { color: var(--brand); }
@media (max-width: 900px) {
  .gw-hero__inner { grid-template-columns: minmax(0, 1fr); }
  .gw-hero__form { max-width: 620px; }
}
@media (max-width: 600px) {
  .gw-hero__ctas .button { flex: 1 1 100%; }
}

/* --- Card de proposta (partial gowash-form; usado no hero e no fim) --- */
.gw-form {
  background: var(--surface);
  color: var(--text);
  border-radius: 18px;
  padding: clamp(22px, 3vw, 32px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}
.gw-form__kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: #9a6b00;
  margin-bottom: 8px;
}
.gw-form__title {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 18px;
}
.gw-form__flash {
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  border-left: 3px solid;
}
.gw-form__flash--success { background: var(--status-success-bg); color: var(--status-success-fg); border-color: #00D084; }
.gw-form__flash--error   { background: var(--status-warn-bg);    color: var(--status-warn-fg);    border-color: #FF6900; }
.gw-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.gw-form__field { display: grid; gap: 6px; min-width: 0; }
.gw-form__field--full { grid-column: 1 / -1; }
.gw-form__field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.gw-form__field label span {
  font-weight: 500;
  color: var(--text-dim);
}
.gw-form__field input,
.gw-form__field textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  border: 1px solid #c4c4c4;
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  transition: border-color 150ms, box-shadow 150ms;
}
.gw-form__field input::placeholder,
.gw-form__field textarea::placeholder { color: #9a9a9a; }
.gw-form__field input:hover,
.gw-form__field textarea:hover { border-color: #9a9a9a; }
.gw-form__field input:focus,
.gw-form__field textarea:focus {
  outline: none;
  border-color: var(--text);
  box-shadow: 0 0 0 3px rgba(255, 221, 0, 0.35);
}
.gw-form__field textarea { resize: vertical; min-height: 84px; font-family: inherit; }
.gw-form__consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-muted);
  cursor: pointer;
}
.gw-form__consent input {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--brand);
  cursor: pointer;
}
.gw-form__consent a { text-decoration: underline; }
.gw-form__error {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #c0392b;
}
.gw-form__submit {
  width: 100%;
  margin-top: 16px;
}
.gw-form__hint {
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--text-dim);
  text-align: center;
}
.gw-form__done { text-align: center; padding: 8px 0; }
.gw-form__done-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(0, 208, 132, 0.12);
  color: #00875a;
  font-size: 30px;
  font-weight: 700;
}
.gw-form__done-title { font-size: 22px; margin-bottom: 8px; }
.gw-form__done p { color: var(--text-muted); font-size: 15px; line-height: 1.55; margin-bottom: 18px; }
@media (max-width: 560px) {
  .gw-form__grid { grid-template-columns: 1fr; }
}

/* --- Faixa amarela: mais receita / menos custo / mais sustentabilidade --- */
.gw-strip { background: var(--brand); color: var(--ink); }
.gw-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.gw-strip__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 16px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-left: 1px solid rgba(35, 31, 32, 0.15);
}
.gw-strip__item:first-child { border-left: 0; }
.gw-strip__item svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 700px) {
  .gw-strip__inner { grid-template-columns: 1fr; }
  .gw-strip__item {
    justify-content: flex-start;
    border-left: 0;
    border-top: 1px solid rgba(35, 31, 32, 0.15);
    padding: 14px 0;
  }
  .gw-strip__item:first-child { border-top: 0; }
}

/* --- Cabeçalho de seção --- */
.gw-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(32px, 5vw, 56px);
}
.gw-head h2 {
  font-size: clamp(26px, 3.6vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 8px 0 14px;
}
.gw-head p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
}
.gw-head p strong { color: var(--text); }
.gw-head--dark h2 { color: var(--on-ink); }
.gw-head--left { text-align: left; margin-left: 0; margin-bottom: 22px; }

/* --- Benefícios (layout do folder): texto + lista à esquerda, foto à direita --- */
.gw-tech {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas:
    "head media"
    "list media";
  gap: 24px clamp(32px, 5vw, 72px);
  align-items: start;
}
.gw-tech__head {
  grid-area: head;
  max-width: none;
  margin-bottom: 0;
}
.gw-tech__media {
  grid-area: media;
  position: relative;
  align-self: center;
}
.gw-tech__media img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}
/* "Adesivo" do folder recriado em HTML (o original foi removido da foto) */
.gw-sticker {
  position: absolute;
  right: -10px;
  bottom: 30px;
  transform: rotate(-5deg);
  background: #0b0b0b;
  border: 2px solid var(--brand);
  border-radius: 14px;
  padding: 14px 20px;
  font-style: italic;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.05;
  color: var(--on-ink);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}
.gw-sticker strong {
  display: block;
  color: var(--brand);
  font-size: 24px;
  font-weight: 800;
}
.gw-tech__list {
  grid-area: list;
  display: grid;
  gap: 12px;
}
.gw-benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
}
.gw-benefit__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--brand);
  background: var(--ink);
  color: var(--brand);
}
.gw-benefit__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.gw-benefit h3 {
  font-size: 15px;
  line-height: 1.25;
  margin: 4px 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.gw-benefit p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .gw-tech {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "head"
      "media"
      "list";
  }
  .gw-tech__media { max-width: 560px; }
  .gw-sticker { right: 8px; bottom: 16px; }
}
@media (max-width: 600px) {
  .gw-sticker { font-size: 15px; padding: 10px 14px; }
  .gw-sticker strong { font-size: 19px; }
}

/* --- Galeria: 4 detalhes do equipamento --- */
.gw-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gw-shot {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gw-shot img {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}
.gw-shot figcaption {
  padding: 16px 18px;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  color: var(--ink);
  border-top: 3px solid var(--brand);
}
@media (max-width: 900px) { .gw-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gw-gallery { grid-template-columns: 1fr; } }

/* --- Go Wash + recarga (seção escura) --- */
.gw-sinergia {
  background: var(--ink);
  color: var(--on-ink);
  padding: clamp(56px, 7vw, 88px) 0;
}
.gw-sinergia__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.gw-sinergia blockquote {
  margin: 0 0 22px;
  padding-left: 18px;
  border-left: 3px solid var(--brand);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.35;
  color: var(--on-ink);
}
.gw-sinergia p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 1.65;
  max-width: 560px;
}
.gw-sinergia__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.gw-sinergia__media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
@media (max-width: 900px) {
  .gw-sinergia__inner { grid-template-columns: 1fr; }
  .gw-sinergia__media { order: -1; }
}

/* --- Investimento + contato (caixa do folder) --- */
.gw-invest {
  background: #0b0b0b;
  color: var(--on-ink);
  padding: clamp(56px, 7vw, 88px) 0;
}
.gw-invest__box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 2px solid var(--brand);
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #171717, #0b0b0b);
}
.gw-invest__col { padding: clamp(28px, 4vw, 48px); }
.gw-invest__col + .gw-invest__col { border-left: 1px solid rgba(255, 255, 255, 0.12); }
.gw-invest__label {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}
.gw-invest__price {
  font-size: clamp(38px, 5.6vw, 68px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--brand);
  margin: 0;
}
.gw-invest__price small {
  font-size: 0.5em;
  font-weight: 800;
  margin-right: 8px;
  vertical-align: 0.45em;
}
.gw-invest__note {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.5;
}
.gw-invest__contact {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
}
.gw-invest__wa {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
}
.gw-invest__wa svg { width: 36px; height: 36px; fill: currentColor; }
.gw-invest__call {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand);
}
.gw-invest__phone {
  display: block;
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--on-ink);
  line-height: 1.1;
  margin: 4px 0 6px;
}
.gw-invest__phone:hover { color: var(--brand); }
.gw-invest__sub {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}
.gw-invest__actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 800px) {
  .gw-invest__box { grid-template-columns: 1fr; }
  .gw-invest__col + .gw-invest__col {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
}
@media (max-width: 480px) {
  .gw-invest__contact { grid-template-columns: 1fr; }
  .gw-invest__actions .button { flex: 1 1 100%; }
}

/* --- Proposta (fim): chamada amarela + card do formulário --- */
.gw-cta {
  position: relative;
  overflow: hidden;
  background: var(--brand);
  color: var(--ink);
  padding: clamp(56px, 8vw, 96px) 0;
}
.gw-cta .container { position: relative; z-index: 1; }
.gw-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.gw-cta__copy,
.gw-cta__form { min-width: 0; }
.gw-cta__title {
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
  color: var(--ink);
  margin: 0;
}
.gw-cta__title em { font-style: italic; }
.gw-cta__desc {
  font-size: 18px;
  line-height: 1.55;
  margin-top: 18px;
  max-width: 480px;
  color: rgba(35, 31, 32, 0.75);
}
.gw-cta__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.gw-cta .gw-form { box-shadow: 0 24px 60px rgba(35, 31, 32, 0.25); }
@media (max-width: 900px) {
  .gw-cta__inner { grid-template-columns: minmax(0, 1fr); }
  .gw-cta__form { max-width: 620px; }
}
@media (max-width: 600px) {
  .gw-cta__links .button { flex: 1 1 100%; }
}
