@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100 900;
  src: url("assets/montserrat-variable-latin.woff2") format("woff2-variations");
}

:root {
  --honda-red: #e40521;
  --honda-gray: #575756;
  --page-width: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ececec;
  color: var(--honda-gray);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

.site-shell {
  --bg-x: 0px;
  --bg-y: 0px;
  --man-x: 0px;
  --man-y: 0px;
  --woman-x: 0px;
  --woman-y: 0px;
  min-height: 100vh;
  overflow: hidden;
  background-color: #efefef;
  background-image: url("assets/honda-background.png");
  background-position: calc(50% + var(--bg-x)) var(--bg-y);
  background-repeat: no-repeat;
  background-size: 1920px 1924px;
  transition: background-position 180ms ease-out;
}

.brand-header {
  align-items: start;
  display: grid;
  height: 198px;
  justify-items: center;
  padding-top: 73px;
  position: relative;
  z-index: 10;
}

.brand-logo {
  display: block;
  height: 93px;
  object-fit: contain;
  width: 145px;
}

.landing-stage {
  min-height: 1726px;
  position: relative;
}

.content-column {
  margin: 0 auto;
  max-width: var(--page-width);
  min-height: 1726px;
  position: relative;
  width: calc(100% - 48px);
}

.hero-copy {
  padding-top: 42px;
  position: relative;
  text-align: center;
  z-index: auto;
}

.hero-title {
  color: var(--honda-gray);
  font-size: clamp(42px, 2.5vw, 48px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.08;
  margin: 0;
  position: relative;
  text-transform: uppercase;
  z-index: 4;
}

.callout {
  align-items: center;
  background: #fff;
  border-radius: 20px;
  box-shadow: 8px 11px 19px rgb(0 0 0 / 20%);
  display: flex;
  height: 162px;
  justify-content: center;
  margin-top: 86px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.callout p {
  color: var(--honda-red);
  font-size: 38px;
  font-weight: 500;
  line-height: 1.08;
  margin: 0;
  text-align: center;
}

.support-copy {
  color: var(--honda-gray);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.15;
  margin: 121px auto 0;
  position: relative;
  text-align: center;
  width: 354px;
  z-index: 3;
}

.character {
  display: block;
  height: auto;
  pointer-events: none;
  position: absolute;
  user-select: none;
  z-index: 2;
}

.character-female {
  --character-x: var(--woman-x);
  --character-y: var(--woman-y);
  left: -138px;
  top: 408px;
  width: 500px;
}

.character-male {
  --character-x: var(--man-x);
  --character-y: var(--man-y);
  right: -92px;
  top: 417px;
  width: 315px;
}

.form-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 8px 12px 19px rgb(0 0 0 / 22%);
  margin-top: 116px;
  padding: 25px 52px 32px;
  position: relative;
  z-index: 5;
}

.form-card h2 {
  color: var(--honda-gray);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  margin: 0 0 47px;
}

.talent-form {
  display: grid;
  gap: 23px 10px;
  grid-template-columns: 1fr 1fr;
}

.field {
  min-width: 0;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  font-size: 15px;
  font-weight: 550;
  line-height: 1;
  margin-bottom: 9px;
}

.field input {
  appearance: none;
  background: #fff;
  border: 1px solid #bababa;
  border-radius: 0;
  color: #343434;
  height: 50px;
  outline: none;
  padding: 0 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
  width: 100%;
}

.field input:focus {
  border-color: var(--honda-red);
  box-shadow: 0 0 0 3px rgb(228 5 33 / 14%);
}

.consent {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 15px;
  font-weight: 550;
  gap: 11px;
  line-height: 1.3;
  min-height: 42px;
}

.consent input {
  accent-color: var(--honda-red);
  appearance: none;
  background: #fff;
  border: 1px solid #bababa;
  display: grid;
  flex: 0 0 21px;
  height: 21px;
  margin: 0;
  place-content: center;
  width: 21px;
}

.consent input::before {
  background: #fff;
  clip-path: polygon(14% 44%, 0 59%, 40% 100%, 100% 19%, 84% 5%, 39% 63%);
  content: "";
  height: 10px;
  transform: scale(0);
  transition: transform 120ms ease-in-out;
  width: 12px;
}

.consent input:checked {
  background: var(--honda-red);
  border-color: var(--honda-red);
}

.consent input:checked::before {
  transform: scale(1);
}

.consent input:focus-visible {
  outline: 3px solid rgb(228 5 33 / 22%);
  outline-offset: 2px;
}

.submit-button {
  align-items: center;
  background: var(--honda-red);
  border: 0;
  border-radius: 20px;
  box-shadow: 8px 10px 13px rgb(0 0 0 / 26%);
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 29px;
  font-weight: 900;
  height: 105px;
  justify-content: center;
  margin-top: 26px;
  overflow: hidden;
  position: relative;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.submit-button::after {
  background: linear-gradient(100deg, transparent 0%, rgb(255 255 255 / 36%) 50%, transparent 100%);
  content: "";
  height: 160%;
  left: -42%;
  position: absolute;
  top: -30%;
  transform: skewX(-20deg);
  transition: left 420ms ease;
  width: 28%;
}

.submit-button:hover {
  box-shadow: 8px 14px 18px rgb(0 0 0 / 30%);
  transform: translateY(-2px);
}

.submit-button:hover::after {
  left: 115%;
}

.submit-button:focus-visible {
  outline: 4px solid rgb(228 5 33 / 24%);
  outline-offset: 4px;
}

.submit-button:active {
  transform: translateY(0);
}

.copyright {
  font-size: 15px;
  font-weight: 550;
  margin-top: 158px;
  position: relative;
  z-index: 5;
}

.reveal-logo {
  animation: logo-in 700ms 80ms both ease-out;
}

.reveal-up {
  animation: reveal-up 720ms 140ms both cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal-delay-2 {
  animation-delay: 430ms;
}

.reveal-callout {
  animation: callout-in 680ms 280ms both cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-character-left {
  animation: character-left-in 900ms 360ms both cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal-character-right {
  animation: character-right-in 900ms 420ms both cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal-form {
  animation: reveal-up 760ms 560ms both cubic-bezier(0.2, 0.7, 0.2, 1);
}

.pre-reveal {
  opacity: 0;
  transform: translateY(24px);
}

.submit-pulse {
  animation: submit-pulse 700ms ease-out;
}

@keyframes logo-in {
  from {
    opacity: 0;
    transform: translateY(-12px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes callout-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes character-left-in {
  from {
    opacity: 0;
    transform: translate3d(calc(var(--character-x) - 40px), var(--character-y), 0);
  }
  to {
    opacity: 1;
    transform: translate3d(var(--character-x), var(--character-y), 0);
  }
}

@keyframes character-right-in {
  from {
    opacity: 0;
    transform: translate3d(calc(var(--character-x) + 40px), var(--character-y), 0);
  }
  to {
    opacity: 1;
    transform: translate3d(var(--character-x), var(--character-y), 0);
  }
}

@keyframes submit-pulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  45% {
    box-shadow: 8px 16px 22px rgb(0 0 0 / 32%);
    transform: translateY(-2px) scale(1.008);
  }
}

@media (max-width: 1500px) and (min-width: 861px) {
  .callout {
    margin-top: 106px;
  }
}

@media (max-width: 1180px) {
  .content-column {
    width: calc(100% - 64px);
  }

  .character-female {
    left: -115px;
  }

  .character-male {
    right: -70px;
  }
}

@media (max-width: 860px) {
  .site-shell {
    background-position: top center;
    background-size: auto 100%;
    transition: none;
  }

  .brand-header {
    height: 136px;
    padding-top: 30px;
  }

  .brand-logo {
    height: auto;
    width: 108px;
  }

  .landing-stage,
  .content-column {
    min-height: 0;
  }

  .content-column {
    padding-bottom: 44px;
    width: calc(100% - 36px);
  }

  .hero-copy {
    padding-top: 34px;
  }

  .hero-title {
    font-size: clamp(30px, 6.2vw, 42px);
    letter-spacing: -0.8px;
    line-height: 1.12;
    text-align: center;
  }

  .callout {
    border-radius: 16px;
    height: auto;
    margin-top: 38px;
    min-height: 126px;
    padding: 24px 18px;
  }

  .callout p {
    font-size: clamp(24px, 5.3vw, 34px);
  }

  .support-copy {
    font-size: 15px;
    line-height: 1.25;
    margin-top: 42px;
    text-align: center;
    width: 100%;
  }

  .character {
    top: 495px;
    width: auto;
  }

  .character-female {
    height: 560px;
    left: calc(50% - 220px);
  }

  .character-male {
    height: 540px;
    right: calc(50% - 195px);
  }

  .form-card {
    margin-top: 600px;
    padding: 27px 26px 30px;
  }

  .form-card h2 {
    font-size: 27px;
    margin-bottom: 32px;
  }

  .copyright {
    margin-top: 50px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .brand-header {
    height: 118px;
    padding-top: 24px;
  }

  .brand-logo {
    width: 96px;
  }

  .content-column {
    width: calc(100% - 28px);
  }

  .hero-copy {
    padding-top: 26px;
  }

  .hero-title {
    font-size: clamp(27px, 8vw, 34px);
  }

  .callout {
    min-height: 112px;
  }

  .callout p {
    font-size: clamp(21px, 6.8vw, 28px);
  }

  .support-copy br {
    display: none;
  }

  .character {
    top: 472px;
  }

  .character-female {
    height: 455px;
    left: calc(50% - 190px);
  }

  .character-male {
    height: 438px;
    right: calc(50% - 160px);
  }

  .form-card {
    border-radius: 16px;
    margin-top: 520px;
    padding: 26px 21px 25px;
  }

  .form-card h2 {
    font-size: 25px;
    margin-bottom: 26px;
  }

  .talent-form {
    gap: 19px;
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: auto;
  }

  .field label,
  .consent {
    font-size: 14px;
  }

  .field input {
    font-size: 16px;
    height: 50px;
  }

  .consent {
    align-items: flex-start;
    min-height: 52px;
  }

  .submit-button {
    border-radius: 16px;
    font-size: clamp(18px, 5.2vw, 24px);
    height: 84px;
    line-height: 1.1;
    margin-top: 4px;
    padding: 0 14px;
    text-align: center;
  }

  .copyright {
    font-size: 13px;
    line-height: 1.4;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}


/* ── Cole no seu styles.css ── */

.form-feedback {
  grid-column: 1 / -1;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  animation: feedbackIn 0.3s ease;
}

.form-feedback--sucesso {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-feedback--erro {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

@keyframes feedbackIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Botão desabilitado durante envio */
.submit-button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
