/* ==========================================================================
   LP Doação — versão 2 "Doar não é descartar"
   ========================================================================== */

@font-face {
  font-family: 'Nexa';
  src: url('../fonts/Nexa-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nexa';
  src: url('../fonts/Nexa-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nexa';
  src: url('../fonts/Nexa-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #0a0a0a;
  --off-white: #e8e7e3;
  --gray-bg: #dededc;
  --text-dark: #141414;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Nexa', 'Futura', 'Century Gothic', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.v2-container {
  max-width: 1760px;
  margin: 0 auto;
  padding: 0 8%;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.v2-header {
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 34px 20px;
}
.v2-header__logo { width: 230px; height: auto; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.v2-hero {
  position: relative;
  background: #f3f2ee url('../images/v2-hero-desktop.webp') no-repeat center / cover;
  min-height: 660px;
  display: flex;
  align-items: center;
}
/* véu preto: 60% de opacidade embaixo (40% de transparência) sumindo até o topo */
.v2-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .6), rgba(0, 0, 0, 0));
  pointer-events: none;
}
.v2-hero__inner {
  position: relative;
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
  padding: 58px 8%;
}
.v2-hero__title {
  margin: 0 0 26px;
  font-weight: 700;
  font-size: 56px;
  letter-spacing: .04em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--text-dark);
  max-width: 480px;
}
.v2-hero__title span {
  display: block;
  padding: 10px 0 8px;
  border-bottom: 2px solid var(--text-dark);
}
.v2-hero__title span:first-child { border-top: 2px solid var(--text-dark); }
.v2-hero__title span:nth-child(2) { padding-left: 100px; }
.v2-hero__title span:nth-child(3) { padding-left: 190px; }

.v2-care-icons {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-bottom: 36px;
  color: var(--text-dark);
}
.v2-care-icons svg { width: 58px; height: 58px; }
.v2-care-icons--light { color: #fff; }

.v2-hero__buttons { display: flex; gap: 28px; flex-wrap: wrap; }

.v2-btn {
  display: inline-block;
  font-family: inherit;
  font-size: 32px;
  letter-spacing: .06em;
  text-decoration: none;
  text-align: center;
  padding: 20px 40px;
  cursor: pointer;
  transition: opacity .2s ease;
}
.v2-btn:hover { opacity: .82; }
.v2-btn--solid {
  background: var(--off-white);
  color: var(--text-dark);
  border: 1px solid var(--off-white);
}
.v2-btn--outline {
  background: transparent;
  color: var(--off-white);
  border: 2px solid var(--off-white);
}

/* --------------------------------------------------------------------------
   O que doar / não doar
   -------------------------------------------------------------------------- */
.v2-donate {
  position: relative;
  background: #222 url('../images/v2-truck.webp') no-repeat center 30% / cover;
  padding: 130px 8%;
}
.v2-donate::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .25);
}
.v2-donate__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 1500px;
  margin: 0 auto;
  align-items: start;
}
.v2-card {
  padding: 54px 58px 40px;
  /* item de grid: sem isso o texto longo define a largura mínima e o card
     transborda a coluna, ficando descentralizado no mobile */
  min-width: 0;
}
.v2-card--light { background: var(--off-white); color: var(--text-dark); }
.v2-card--dark { background: var(--black); color: var(--off-white); }

.v2-card__title {
  margin: 0 auto 44px;
  width: fit-content;
  min-width: 70%;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 42px 10px;
}
.v2-card--light .v2-card__title { background: var(--black); color: var(--off-white); }
.v2-card--dark .v2-card__title { background: var(--off-white); color: var(--text-dark); }

.v2-card__item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid currentColor;
}
.v2-card__item:last-child { margin-bottom: 0; }
.v2-card__item svg { width: 34px; height: 34px; margin-top: 2px; }
.v2-card__item h3 {
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  overflow-wrap: break-word;
}
.v2-card__item p {
  margin: 0;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   Passo a passo
   -------------------------------------------------------------------------- */
.v2-steps {
  display: grid;
  grid-template-columns: minmax(280px, 42%) 1fr;
  background: var(--gray-bg);
}
.v2-steps__photo {
  background: #111 url('../images/v2-tshirt.webp') no-repeat center / cover;
  min-height: 560px;
}
.v2-steps__content { padding: 90px 7% 100px; }

.v2-steps__title {
  margin: 0 0 80px;
  font-weight: 700;
  font-size: 44px;
  letter-spacing: .05em;
  text-transform: uppercase;
  line-height: 1;
}
.v2-steps__title span {
  display: block;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--text-dark);
}
.v2-steps__title span:nth-child(2) {
  text-align: right;
  padding-top: 22px;
}

.v2-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 44px;
}
/* mesmas alturas de ícone/título/texto nos três passos (ver .v2-store) */
.v2-step {
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
  align-content: start;
}
.v2-step svg { width: 62px; height: 62px; margin-bottom: 34px; }
.v2-step h3 {
  background: var(--black);
  color: var(--off-white);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  line-height: 1.25;
  margin: 0 0 24px;
  padding: 14px 18px 10px;
  min-height: 86px;
  display: flex;
  align-items: center;
}
.v2-step p {
  margin: 0;
  font-size: 21px;
  font-weight: 300;
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   Oportunidade
   -------------------------------------------------------------------------- */
.v2-opportunity {
  background: var(--black);
  color: var(--off-white);
  padding: 130px 8%;
}
.v2-opportunity__inner {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 620px);
  gap: 90px;
  align-items: center;
}
.v2-opportunity__title {
  margin: 0 0 54px;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  line-height: 1.15;
}
.v2-opportunity__title span {
  display: inline-block;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--off-white);
  margin-bottom: 14px;
}
.v2-opportunity__text p {
  margin: 0 0 34px;
  font-size: 23px;
  font-weight: 300;
  line-height: 1.5;
}
.v2-opportunity .v2-care-icons { margin: 60px 0 0; }
.v2-opportunity__photo img { width: 100%; height: auto; border-radius: 50%; }

/* --------------------------------------------------------------------------
   Rota Falcões — pontos de coleta
   -------------------------------------------------------------------------- */
.v2-route {
  background: var(--gray-bg);
  padding: 110px 5% 130px;
}
.v2-route__head {
  max-width: 1680px;
  margin: 0 auto 90px;
  display: grid;
  grid-template-columns: minmax(280px, 560px) 1fr;
  gap: 60px;
  align-items: start;
}
.v2-route__title {
  margin: 0;
  font-weight: 400;
  font-size: 44px;
  letter-spacing: .05em;
  text-transform: uppercase;
  line-height: 1;
}
.v2-route__title span {
  display: block;
  padding: 18px 0 14px;
  border-bottom: 2px solid var(--text-dark);
}
.v2-route__title span:first-child { border-top: 2px solid var(--text-dark); }
.v2-route__title span:nth-child(2) { text-align: right; }
.v2-route__subtitle {
  margin: 6px 0 12px;
  font-size: 27px;
  font-weight: 300;
}
.v2-route__note { margin: 0; font-size: 18px; font-weight: 300; }

.v2-stores {
  max-width: 1680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  /* o espaçamento vertical entre cards vem do margin-bottom do bloco de infos,
     para que as faixas internas (nome/mapa/infos) possam ser alinhadas via subgrid */
  gap: 0 40px;
}
/* Cada card ocupa 3 faixas do grid pai (nome, mapa, infos); com subgrid,
   as faixas ficam com a mesma altura em todos os cards da linha,
   alinhando mapas e endereços na horizontal e na vertical. */
.v2-store {
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
  align-content: start;
}
.v2-store__name {
  margin: 0 0 26px;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.25;
}
.v2-store__map {
  border: 2px solid var(--black);
  margin-bottom: 26px;
}
.v2-store__map iframe {
  display: block;
  width: 100%;
  height: 230px;
  border: 0;
}
.v2-store__info { margin-bottom: 56px; }
.v2-store__row {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  margin-bottom: 18px;
}
.v2-store__row svg { width: 22px; height: 22px; margin-top: 3px; }
.v2-store__row p {
  margin: 0;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   CTA final — Sua doação
   -------------------------------------------------------------------------- */
.v2-cta {
  background: #7a0e08 url('../images/v2-red.webp') no-repeat center / cover;
  padding: 120px 8%;
}
.v2-cta__card {
  background: var(--black);
  color: var(--off-white);
  max-width: 720px;
  padding: 80px 64px;
}
.v2-cta__title {
  margin: 0 0 44px;
  font-weight: 400;
  font-size: 42px;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.15;
}
.v2-cta__title .line {
  display: block;
  padding-bottom: 14px;
  margin-bottom: 14px;
}
.v2-cta__title .line--rule { border-bottom: 2px solid var(--off-white); }
.v2-cta__title .line--right { text-align: right; }
.v2-cta__title .line--highlight {
  background: var(--off-white);
  color: var(--text-dark);
  font-weight: 700;
  text-align: center;
  padding: 12px 10px 8px;
}
.v2-cta__text {
  margin: 0 0 26px;
  text-align: center;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.45;
}
.v2-cta__text--bold { font-weight: 700; }

/* Formulário */
.v2-form { display: flex; flex-direction: column; margin-top: 40px; }
.v2-form label {
  font-size: 18px;
  letter-spacing: .04em;
  margin: 0 0 8px;
}
.v2-form input[type="text"],
.v2-form input[type="email"],
.v2-form input[type="tel"] {
  background: transparent;
  border: 1px solid var(--off-white);
  color: var(--off-white);
  font-family: inherit;
  font-size: 20px;
  padding: 12px 14px;
  margin-bottom: 24px;
  border-radius: 0;
}
.v2-form input:focus { outline: 2px solid #fff; }
.v2-form .utm_field { display: none; }

.v2-form .custom-checkbox {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  position: relative;
  margin-bottom: 18px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.35;
}
.v2-form .custom-checkbox__box {
  width: 20px;
  height: 20px;
  border: 1px solid var(--off-white);
  margin-top: 2px;
}
.v2-form input[type="checkbox"]:checked ~ .custom-checkbox__box,
.v2-form .custom-checkbox input[type="checkbox"]:checked + span::before { background: var(--off-white); }
.v2-form .custom-checkbox:has(input:checked) .custom-checkbox__box {
  background: var(--off-white) url('../images/custom-checkbox-checkmark.svg') no-repeat center / 14px;
}

.v2-form__submit {
  margin-top: 30px;
  align-self: center;
  width: 100%;
  min-width: 0;
  background: transparent;
  border: 2px solid var(--off-white);
  color: var(--off-white);
  font-family: inherit;
  /* escala com o viewport para o texto nunca escapar do botão */
  font-size: clamp(17px, 4.5vw, 28px);
  letter-spacing: .06em;
  white-space: normal;
  padding: 20px 10px 16px;
  cursor: pointer;
  transition: all .2s ease;
}
.v2-form__submit:hover { background: var(--off-white); color: var(--text-dark); }

.v2-form-feedback { display: none; margin-top: 26px; font-size: 19px; text-align: center; }
.form-success { color: #9be29b; }
.form-error { color: #ff9b8f; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.v2-footer {
  background: #000;
  color: #f0efec;
  padding: 42px 8%;
}
.v2-footer__inner {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 46%) 1fr;
  gap: 80px;
}
.v2-footer__cta {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
}
.v2-footer__cta a {
  display: inline-block;
  border: 1px solid #f0efec;
  padding: 2px 12px 0;
  text-decoration: none;
}
.v2-footer__cta a strong { font-weight: 700; }
.v2-footer__cta a:hover { background: #f0efec; color: #000; }
.v2-footer__about p {
  margin: 0 0 28px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
}
.v2-footer__about p:last-child { margin-bottom: 0; }
.v2-footer__about a { color: inherit; }

/* --------------------------------------------------------------------------
   WhatsApp flutuante
   -------------------------------------------------------------------------- */
.whatsapp-icon {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .35);
}
.whatsapp-icon__image { width: 34px; height: 34px; }

/* --------------------------------------------------------------------------
   Responsivo
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
  .v2-hero__title { font-size: 46px; }
  .v2-steps__grid { grid-template-columns: 1fr; }
  .v2-donate__grid { grid-template-columns: 1fr; }
  .v2-opportunity__inner { grid-template-columns: 1fr; }
  .v2-opportunity__photo { max-width: 520px; margin: 0 auto; }
}

@media (max-width: 820px) {
  .v2-header { padding: 26px 16px; }
  .v2-header__logo { width: 190px; }

  .v2-hero {
    background-image: url('../images/v2-hero-mobile.webp');
    background-position: center 100%;
    min-height: 0;
  }
  .v2-hero__inner { padding: 70px 7% 60px; }
  .v2-hero__title { font-size: 34px; max-width: none; margin-bottom: 34px; }
  .v2-hero__title span:nth-child(2) { padding-left: 50px; }
  .v2-hero__title span:nth-child(3) { padding-left: 90px; }
  .v2-care-icons { gap: 18px; margin-bottom: 216px; }
  .v2-care-icons svg { width: 48px; height: 48px; }
  .v2-hero__buttons { flex-direction: column; align-items: stretch; }
  .v2-btn { font-size: 22px; padding: 18px 20px; }

  .v2-donate { padding: 80px 6%; }
  .v2-card { padding: 40px 28px 30px; }
  .v2-card__title { font-size: 24px; padding: 12px 20px 8px; margin-bottom: 32px; }
  .v2-card__item h3 { font-size: 21px; }
  .v2-card__item p { font-size: 20px; }

  .v2-steps { grid-template-columns: 1fr; }
  .v2-steps__photo { order: 2; min-height: 420px; }
  .v2-steps__content { order: 1; padding: 70px 7% 80px; }
  .v2-steps__title { font-size: 30px; margin-bottom: 56px; }
  /* no empilhamento, o respiro entre passos vem da margem do texto */
  .v2-step p { margin-bottom: 56px; }

  .v2-opportunity { padding: 90px 7%; }
  .v2-opportunity__title { font-size: 28px; }
  .v2-opportunity__text p { font-size: 21px; }

  .v2-route { padding: 80px 6% 90px; }
  .v2-route__head { grid-template-columns: 1fr; gap: 36px; margin-bottom: 60px; }
  .v2-route__title { font-size: 32px; }
  .v2-route__subtitle { font-size: 23px; }
  .v2-stores { grid-template-columns: 1fr; }
  .v2-store__info { margin-bottom: 48px; }

  .v2-cta { padding: 70px 6% 90px; }
  .v2-cta__card { padding: 54px 30px; }
  .v2-cta__title { font-size: 30px; }
  .v2-cta__text { font-size: 21px; }

  .v2-footer { padding: 42px 7%; }
  .v2-footer__inner { grid-template-columns: 1fr; gap: 50px; }
  .v2-footer__cta { text-align: center; }
  .v2-footer__about { text-align: left; }
}
