:root {
  --blue: #24add8;
  --blue-dark: #139bc8;
  --orange: #fb681d;
  --text: #222;
  --muted: #666;
  --line: #e6e6e6;
  --shadow: 0 4px 13px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", Arial, sans-serif;
  color: var(--text);
  background: #fff;
}

[hidden] {
  display: none !important;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.content {
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  min-height: 728px;
  background-image: url("assets/01-image-01.jpg");
  background-position: center top;
  background-size: cover;
  overflow: hidden;
}

.hero-inner {
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  height: 62px;
  padding: 0 16px;
  color: #fff;
  background: var(--blue);
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: block;
  width: 132px;
  height: auto;
  flex: 0 0 auto;
}

.brand-divider {
  width: 2px;
  height: 36px;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.72);
}

.brand-tagline {
  color: #fff;
  font-size: 33px;
  font-weight: 400;
  line-height: 1;
}

.donation-card {
  width: 470px;
  min-height: 615px;
  margin-top: 23px;
  padding: 29px 28px 26px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.donation-card.is-step-2 {
  min-height: 0;
}

.donation-step {
  display: block;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.step {
  display: grid;
  width: 41px;
  height: 41px;
  place-items: center;
  border: 1px solid #ddd;
  border-radius: 50%;
  color: #111;
  font-size: 17px;
  font-weight: 500;
  background: #fff;
}

.step.active {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.donation-card h1 {
  max-width: 390px;
  margin: 0 auto 26px;
  font-size: 31px;
  font-weight: 300;
  line-height: 1.16;
}

.frequency {
  display: block;
  width: 100%;
  height: 56px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: var(--blue);
  font-size: 22px;
  font-weight: 400;
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin-top: 23px;
}

.amount {
  position: relative;
  min-height: 82px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: #333;
  background: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.15;
}

.amount.selected {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.amount.selected::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -19px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 19px solid var(--blue);
}

.other-input-wrap {
  display: none;
  align-items: center;
  gap: 6px;
  height: 30px;
  margin: 14px 0 -5px auto;
  width: 165px;
  border: 1px solid #888;
  border-radius: 3px;
  padding: 0 8px;
  color: #444;
  background: #fff;
}

.other-input-wrap.visible {
  display: flex;
}

.other-input {
  width: 100%;
  border: 0;
  outline: 0;
}

.donation-description {
  min-height: 93px;
  display: grid;
  grid-template-columns: 132px 1fr;
  align-items: center;
  gap: 17px;
  margin-top: 29px;
  text-align: left;
}

.donation-description p {
  margin: 0;
  color: #333;
  font-size: 14px;
  line-height: 1.45;
}

.kit-art {
  display: block;
  width: 132px;
  height: 72px;
  object-fit: contain;
  object-position: center;
}

.next-button {
  width: 333px;
  height: 60px;
  margin: 17px auto 0;
  border: 0;
  border-radius: 31px;
  color: #fff;
  background: var(--orange);
  font-size: 31px;
  font-weight: 300;
}

.switch-mode {
  display: block;
  margin: 23px auto 21px;
  border: 0;
  color: #155084;
  background: transparent;
  font-size: 16px;
}

.switch-mode::before {
  content: "♥";
  margin-right: 5px;
  color: #e31c23;
}

.disclaimer {
  max-width: 330px;
  margin: 0 auto;
  color: #333;
  font-size: 12px;
  line-height: 1.5;
}

.donation-step-details h1 {
  margin-bottom: 28px;
}

.summary-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 51px;
  margin: 0 0 25px;
  padding: 0 23px;
  border: 1px solid #d6d6d6;
  border-radius: 4px;
  color: #111;
  background: #f1f1f1;
  font-size: 18px;
  text-align: left;
}

.payment-summary-title {
  cursor: default;
  margin-bottom: 0;
}

.summary-arrow {
  width: 15px;
  height: 15px;
  border-left: 4px solid #111;
  border-top: 4px solid #111;
  transform: rotate(45deg) translateY(4px);
}

.summary-toggle.is-open .summary-arrow {
  transform: rotate(225deg) translateY(-2px);
}

.summary-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: -18px 0 22px;
  padding: 13px 15px;
  border: 1px solid #e1e1e1;
  border-top: 0;
  color: #444;
  background: #fff;
  font-size: 14px;
}

.summary-details strong {
  color: var(--blue);
  font-size: 18px;
}

.payment-summary {
  margin: 0 0 22px;
  padding: 15px 17px 16px;
  border: 1px dotted #d1d1d1;
  border-top: 0;
  color: #222;
  background: #fff;
  text-align: left;
}

.payment-summary p {
  margin: 0 0 5px;
  font-size: 13px;
  line-height: 1.25;
}

.payment-summary p:last-child {
  margin-bottom: 0;
}

.payment-summary strong {
  font-weight: 700;
}

.payment-method {
  margin: 0 0 18px;
  text-align: left;
}

.payment-method > span {
  display: block;
  margin-bottom: 9px;
  color: #222;
  font-size: 18px;
  line-height: 1.15;
}

.payment-method strong {
  color: #d92323;
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.payment-option {
  height: 47px;
  border: 1px solid #767676;
  border-radius: 4px;
  color: #222;
  background: #fff;
  font-size: 18px;
}

.payment-option.selected {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

.details-grid {
  display: grid;
  gap: 17px;
  text-align: left;
}

.field-label {
  display: block;
  color: #222;
  font-size: 18px;
  line-height: 1.15;
}

.field-label > span:not(.phone-input) {
  color: #d92323;
}

.field-label > input,
.phone-input {
  width: 100%;
  height: 47px;
  margin-top: 9px;
  border: 1px solid #767676;
  border-radius: 4px;
  color: #222;
  background: #fff;
}

.field-label > input {
  padding: 0 14px;
}

.field-label.is-invalid > input,
.field-label.is-invalid .phone-input,
.field-label.is-invalid .card-input,
.other-input-wrap.is-invalid {
  border-color: #d92323;
  box-shadow: 0 0 0 1px rgba(217, 35, 35, 0.18);
}

.field-error {
  display: block;
  margin-top: 6px;
  color: #d92323;
  font-size: 12px;
  line-height: 1.25;
}

.field-error[hidden] {
  display: none;
}

.amount-error {
  width: 165px;
  margin: 6px 0 -4px auto;
  text-align: left;
}

.field-label input::placeholder {
  color: #a8a8a8;
}

.phone-input {
  display: flex;
  align-items: center;
  padding: 0 12px;
}

.phone-input input,
.card-input input {
  min-width: 0;
  flex: 1;
  height: 100%;
  border: 0;
  outline: 0;
  color: #222;
  background: transparent;
  font-size: 18px;
}

.card-input {
  display: flex;
  align-items: center;
  width: 100%;
  height: 47px;
  margin-top: 9px;
  border: 1px solid #767676;
  border-radius: 4px;
  color: #222;
  background: #fff;
}

.card-input input {
  padding: 0 14px;
}

.card-fields {
  display: grid;
  gap: 17px;
}

.card-icon {
  position: relative;
  width: 28px;
  height: 20px;
  margin-right: 9px;
  border-radius: 2px;
  background: #111;
}

.card-icon::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 5px;
  height: 4px;
  background: #fff;
}

.card-icon::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 10px;
  height: 2px;
  background: #fff;
}

.flag-brazil {
  position: relative;
  width: 28px;
  height: 20px;
  margin-right: 10px;
  border-radius: 1px;
  background: #159b4b;
  overflow: hidden;
}

.flag-brazil::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  background: #f7d117;
  transform: translate(-50%, -50%) rotate(45deg);
}

.flag-brazil::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #244aa5;
  transform: translate(-50%, -50%);
}

.phone-caret {
  width: 0;
  height: 0;
  margin-right: 17px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #666;
}

.opt-in {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 18px 0 25px;
  color: #333;
  font-size: 13px;
  text-align: left;
}

.opt-in input {
  width: 22px;
  height: 22px;
  accent-color: #2b75b8;
}

.auto-adjust {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 9px;
  margin: 16px 0 16px;
  color: #6d6d6d;
  text-align: left;
}

.auto-adjust input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: #2b75b8;
}

.auto-adjust span {
  font-size: 11px;
  line-height: 1.35;
}

.auto-adjust strong {
  display: block;
  color: #555;
  font-size: 12px;
  line-height: 1.35;
}

.pix-note {
  margin: -2px 0 0;
  padding: 12px 14px;
  border: 1px dotted #d1d1d1;
  color: #555;
  background: #fff;
  font-size: 12px;
  line-height: 1.35;
  text-align: left;
}

.payment-result {
  margin: 14px 0 0;
  padding: 13px 14px;
  border: 1px solid #d7d7d7;
  border-radius: 4px;
  color: #222;
  background: #fff;
  font-size: 13px;
  line-height: 1.35;
  text-align: left;
}

.payment-result strong {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.payment-result p {
  margin: 0 0 5px;
}

.payment-result p:last-child {
  margin-bottom: 0;
}

.payment-result.success {
  border-color: #25a85a;
  background: #f5fff8;
}

.payment-result.error {
  border-color: #d92323;
  background: #fff8f8;
}

.pix-qr {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 210px;
  min-height: 210px;
  margin: 8px auto 10px;
  padding: 10px;
  border: 1px solid #d7d7d7;
  border-radius: 4px;
  background: #fff;
  color: #555;
}

.pix-qr canvas,
.pix-qr img,
.pix-qr table {
  display: block;
  width: 190px !important;
  height: 190px !important;
}

.pix-code {
  width: 100%;
  min-height: 74px;
  margin: 9px 0;
  padding: 8px;
  resize: vertical;
  border: 1px solid #cfcfcf;
  border-radius: 4px;
  color: #222;
  background: #fff;
  font-size: 11px;
  line-height: 1.35;
}

.copy-pix {
  width: 100%;
  height: 35px;
  border: 0;
  border-radius: 18px;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
}

.details-next {
  width: 100%;
  margin-top: 0;
}

.back-button {
  display: block;
  margin: 24px auto 0;
  border: 0;
  color: #777;
  background: transparent;
  font-size: 15px;
}

.blue-band {
  background: var(--blue);
  color: #fff;
}

.three-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 72px;
  padding: 48px 0 57px;
  text-align: center;
}

.three-columns img {
  width: 153px;
  height: 153px;
  object-fit: cover;
  border: 7px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
}

.three-columns h2 {
  margin: 34px 0 18px;
  font-size: 25px;
  line-height: 1.1;
}

.three-columns p {
  max-width: 445px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.48;
}

.why {
  padding: 72px 0 63px;
  background: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 45px;
  align-items: start;
}

.why h2,
.cards-section > .content > h2,
.testimonials h2 {
  color: var(--blue);
  font-size: 48px;
  font-weight: 900;
  line-height: 1.12;
}

.why h2 {
  max-width: 690px;
  margin: 0 0 23px;
}

.why h3 {
  margin: 0 0 27px;
  color: #6a6a6a;
  font-size: 20px;
  font-weight: 800;
}

.why p {
  margin: 0 0 26px;
  color: #6b6b6b;
  font-size: 20px;
  line-height: 1.5;
}

.video-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  padding: 0;
  overflow: hidden;
  background: #111;
}

.video-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-thumb {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: #111;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.video-card .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 73px;
  height: 52px;
  border-radius: 12px;
  background: rgba(31, 31, 31, 0.86);
}

.video-card .play::after {
  content: "";
  position: absolute;
  left: 29px;
  top: 14px;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 19px solid #fff;
}

.video-card strong {
  position: absolute;
  left: 44px;
  bottom: 26px;
  color: #fff;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.45);
}

.cards-section {
  padding: 58px 0 80px;
  background: #fff;
}

.cards-section > .content > h2 {
  margin: 0 0 57px;
  text-align: center;
}

.impact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.impact-card {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.impact-card h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  margin: 0;
  color: #fff;
  background: var(--blue);
  font-size: 22px;
  font-weight: 500;
}

.impact-card h3 img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.impact-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.impact-card p {
  min-height: 127px;
  margin: 0;
  padding: 26px 24px 24px;
  color: #111;
  font-size: 18px;
  line-height: 1.45;
}

.testimonials {
  min-height: 520px;
  padding: 69px 0 73px;
  text-align: center;
  background: #fff;
}

.testimonials h2 {
  margin: 0 0 28px;
  font-size: 50px;
}

.testimonial {
  display: none;
}

.testimonial.active {
  display: block;
}

.testimonial p {
  max-width: 950px;
  margin: 0 auto 35px;
  color: #222;
  font-size: 20px;
  line-height: 1.45;
}

.testimonial img {
  width: 117px;
  height: 117px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial h3 {
  margin: 22px 0 4px;
  color: var(--blue);
  font-size: 31px;
  font-weight: 400;
  line-height: 1.05;
}

.testimonial span {
  color: var(--blue);
  font-size: 19px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 68px;
}

.dot {
  width: 17px;
  height: 17px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #e3e2df;
}

.dot.active {
  background: var(--blue);
}

.security {
  color: #fff;
  background: var(--blue);
}

.security-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 55px;
  align-items: center;
  padding: 64px 0 67px;
}

.shield {
  width: 131px;
  height: 131px;
  object-fit: contain;
  justify-self: end;
}

.security h2 {
  margin: 0 0 22px;
  font-size: 28px;
  font-weight: 800;
}

.security p {
  max-width: 900px;
  margin: 0;
  font-size: 20px;
  line-height: 1.48;
}

.site-footer {
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 240px 1fr 250px;
  gap: 40px;
  align-items: center;
  padding: 32px 0 36px;
  text-align: center;
}

.footer-logo {
  color: var(--blue);
  font-size: 33px;
  font-weight: 700;
  text-decoration: none;
  text-align: left;
}

.footer-grid p {
  margin: 0;
  color: #111;
  font-size: 15px;
  line-height: 1.35;
}

.footer-grid a:last-child {
  color: #222;
  font-size: 15px;
  text-decoration: none;
  text-align: right;
}

@media (max-width: 900px) {
  .content,
  .hero-inner {
    width: 100%;
  }

  .hero {
    min-height: 0;
    background: #fff;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .brand {
    width: 100%;
    height: 69px;
    gap: 16px;
    padding: 0 25px;
  }

  .brand-mark {
    width: 128px;
  }

  .brand-divider {
    height: 35px;
  }

  .brand-tagline {
    font-size: 32px;
  }

  .donation-card {
    width: min(100%, 736px);
    min-height: 0;
    margin: 0;
    padding: 42px 43px 35px;
    border-radius: 0;
    box-shadow: none;
  }

  .steps {
    gap: 13px;
    margin-bottom: 34px;
  }

  .step {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .donation-card h1 {
    max-width: 585px;
    margin-bottom: 30px;
    font-size: 32px;
    line-height: 1.13;
  }

  .frequency {
    height: 57px;
    font-size: 18px;
  }

  .amount-grid {
    gap: 6px;
    margin-top: 24px;
  }

  .amount {
    min-height: 78px;
    font-size: 17px;
  }

  .donation-description {
    grid-template-columns: 130px 1fr;
    gap: 20px;
    min-height: 99px;
    margin-top: 28px;
  }

  .next-button {
    width: 100%;
    max-width: 520px;
    height: 62px;
    font-size: 31px;
  }

  .switch-mode {
    margin-top: 23px;
  }

  .disclaimer {
    max-width: 510px;
    font-size: 12px;
  }

  .three-columns {
    grid-template-columns: 1fr;
    gap: 52px;
    padding: 55px 28px 61px;
  }

  .three-columns article {
    max-width: 640px;
    margin: 0 auto;
  }

  .three-columns h2 {
    margin-top: 28px;
    font-size: 25px;
  }

  .three-columns p {
    font-size: 17px;
  }

  .why {
    padding: 53px 28px 48px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 33px;
  }

  .why h2,
  .cards-section > .content > h2,
  .testimonials h2 {
    font-size: 42px;
    line-height: 1.13;
  }

  .why h3 {
    font-size: 17px;
    margin-bottom: 23px;
  }

  .why p {
    font-size: 17px;
    line-height: 1.58;
  }

  .video-card strong {
    left: 25px;
    bottom: 20px;
    font-size: 34px;
  }

  .cards-section {
    padding: 49px 28px 58px;
  }

  .cards-section > .content > h2 {
    margin-bottom: 43px;
  }

  .impact-cards {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .impact-card {
    max-width: 620px;
    margin: 0 auto;
  }

  .impact-card p {
    min-height: 0;
    font-size: 17px;
  }

  .testimonials {
    min-height: 610px;
    padding: 62px 28px 71px;
  }

  .testimonials h2 {
    margin-bottom: 34px;
  }

  .testimonial p {
    font-size: 17px;
    line-height: 1.58;
  }

  .testimonial h3 {
    font-size: 30px;
  }

  .dots {
    margin-top: 52px;
  }

  .security-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 46px 28px 52px;
  }

  .shield {
    justify-self: center;
    width: 128px;
    height: 128px;
  }

  .security h2 {
    font-size: 25px;
    line-height: 1.28;
  }

  .security p {
    font-size: 17px;
    line-height: 1.55;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 23px;
    padding: 28px;
  }

  .footer-logo,
  .footer-grid a:last-child {
    text-align: center;
  }
}

@media (max-width: 520px) {
  .brand {
    height: 54px;
    gap: 10px;
    padding: 0 14px;
  }

  .brand-mark {
    width: 96px;
  }

  .brand-divider {
    width: 1px;
    height: 27px;
  }

  .brand-tagline {
    font-size: 21px;
  }

  .donation-card {
    padding: 28px 14px 31px;
  }

  .steps {
    gap: 8px;
    margin-bottom: 25px;
  }

  .step {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .donation-card h1 {
    max-width: 310px;
    margin-bottom: 21px;
    font-size: 22px;
  }

  .donation-step-payment h1 {
    margin-bottom: 20px;
  }

  .frequency {
    height: 47px;
    border-radius: 5px;
    font-size: 14px;
  }

  .amount-grid {
    gap: 4px;
    margin-top: 20px;
  }

  .amount {
    min-height: 62px;
    border-radius: 5px;
    font-size: 13px;
  }

  .amount.selected::after {
    bottom: -16px;
    border-left-width: 9px;
    border-right-width: 9px;
    border-top-width: 16px;
  }

  .other-input-wrap {
    width: 130px;
    height: 26px;
    margin-top: 11px;
  }

  .donation-description {
    grid-template-columns: 88px 1fr;
    gap: 12px;
    min-height: 84px;
    margin-top: 22px;
  }

  .kit-art {
    width: 88px;
    height: 58px;
  }

  .donation-description p {
    font-size: 11px;
  }

  .next-button {
    height: 52px;
    max-width: calc(100% - 24px);
    font-size: 24px;
  }

  .switch-mode {
    margin: 15px auto 16px;
    font-size: 12px;
  }

  .disclaimer {
    max-width: 285px;
    font-size: 10px;
    line-height: 1.45;
  }

  .summary-toggle {
    height: 40px;
    margin-bottom: 18px;
    padding: 0 16px;
    font-size: 12px;
  }

  .payment-summary-title {
    margin-bottom: 0;
  }

  .summary-arrow {
    width: 10px;
    height: 10px;
    border-left-width: 3px;
    border-top-width: 3px;
  }

  .summary-details {
    margin: -13px 0 18px;
    padding: 10px 12px;
    font-size: 11px;
  }

  .summary-details strong {
    font-size: 13px;
  }

  .payment-summary {
    margin-bottom: 16px;
    padding: 12px 13px;
  }

  .payment-summary p {
    margin-bottom: 3px;
    font-size: 10px;
    line-height: 1.25;
  }

  .payment-method {
    margin-bottom: 12px;
  }

  .payment-method > span {
    margin-bottom: 6px;
    font-size: 12px;
  }

  .payment-options {
    gap: 6px;
  }

  .payment-option {
    height: 31px;
    font-size: 12px;
  }

  .details-grid {
    gap: 10px;
  }

  .field-label {
    font-size: 12px;
  }

  .field-error {
    margin-top: 4px;
    font-size: 10px;
  }

  .amount-error {
    width: 130px;
    margin-bottom: -2px;
  }

  .field-label > input,
  .phone-input,
  .card-input {
    height: 30px;
    margin-top: 6px;
    border-color: #a9a9a9;
  }

  .field-label > input,
  .card-input input {
    padding: 0 8px;
  }

  .phone-input {
    padding: 0 8px;
  }

  .phone-input input,
  .card-input input {
    font-size: 12px;
  }

  .card-fields {
    gap: 10px;
  }

  .card-icon {
    width: 22px;
    height: 16px;
    margin-right: 7px;
  }

  .card-icon::before {
    top: 4px;
    height: 3px;
  }

  .card-icon::after {
    right: 3px;
    bottom: 3px;
    width: 8px;
  }

  .flag-brazil {
    width: 24px;
    height: 17px;
    margin-right: 8px;
  }

  .phone-caret {
    margin-right: 11px;
    border-left-width: 4px;
    border-right-width: 4px;
    border-top-width: 5px;
  }

  .opt-in {
    gap: 9px;
    margin: 14px 0 23px;
    font-size: 11px;
  }

  .opt-in input {
    width: 18px;
    height: 18px;
  }

  .auto-adjust {
    grid-template-columns: 16px 1fr;
    gap: 6px;
    margin: 12px 0 15px;
  }

  .auto-adjust input {
    width: 13px;
    height: 13px;
    margin-top: 1px;
  }

  .auto-adjust span,
  .auto-adjust strong {
    font-size: 9px;
    line-height: 1.25;
  }

  .pix-note {
    padding: 9px 10px;
    font-size: 10px;
  }

  .payment-result {
    margin-top: 11px;
    padding: 10px;
    font-size: 10px;
  }

  .payment-result strong {
    font-size: 11px;
  }

  .pix-qr {
    width: 170px;
    min-height: 170px;
    padding: 8px;
  }

  .pix-qr canvas,
  .pix-qr img,
  .pix-qr table {
    width: 154px !important;
    height: 154px !important;
  }

  .pix-code {
    min-height: 58px;
    font-size: 9px;
  }

  .copy-pix {
    height: 31px;
    font-size: 11px;
  }

  .donation-step-payment .next-button {
    height: 44px;
    font-size: 14px;
  }

  .back-button {
    margin-top: 18px;
    font-size: 10px;
  }

  .three-columns {
    padding: 48px 16px 52px;
  }

  .three-columns img {
    width: 126px;
    height: 126px;
    border-width: 5px;
  }

  .three-columns h2 {
    margin: 24px 0 14px;
    font-size: 19px;
  }

  .three-columns p {
    font-size: 13px;
  }

  .why {
    padding: 45px 16px 38px;
  }

  .why h2,
  .cards-section > .content > h2,
  .testimonials h2 {
    font-size: 30px;
  }

  .why h3 {
    font-size: 13px;
    margin-bottom: 19px;
  }

  .why p {
    font-size: 13px;
  }

  .video-card strong {
    left: 17px;
    bottom: 15px;
    font-size: 24px;
  }

  .video-card .play {
    width: 50px;
    height: 36px;
    border-radius: 8px;
  }

  .video-card .play::after {
    left: 20px;
    top: 10px;
    border-top-width: 8px;
    border-bottom-width: 8px;
    border-left-width: 13px;
  }

  .cards-section {
    padding: 42px 16px 47px;
  }

  .impact-card h3 {
    height: 37px;
    font-size: 15px;
  }

  .impact-card p {
    padding: 18px 17px 20px;
    font-size: 13px;
  }

  .testimonials {
    padding: 51px 16px 59px;
  }

  .testimonial p {
    font-size: 13px;
  }

  .testimonial img {
    width: 98px;
    height: 98px;
  }

  .testimonial h3 {
    font-size: 24px;
  }

  .testimonial span {
    font-size: 13px;
  }

  .dot {
    width: 12px;
    height: 12px;
  }

  .security-grid {
    padding: 43px 16px 46px;
  }

  .security h2 {
    font-size: 20px;
  }

  .security p {
    font-size: 13px;
  }

  .footer-grid p,
  .footer-grid a:last-child {
    font-size: 12px;
  }
}
