:root {
  --red: #e30613;
  --red-dark: #b4000c;
  --text: #161616;
  --muted: #6e6e6e;
  --footer: #101010;
  --container: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  width: 100%;
  margin: 0;
  overflow-x: hidden;
  background: #fff;
  color: var(--text);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 14px;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

#promotores,
#clientes,
#sobre,
#santander,
#contato {
  scroll-margin-top: 110px;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.topbar {
  height: 28px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
}

.topbar__content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar__content > div {
  display: flex;
  align-items: center;
  gap: 26px;
}

.topbar-partner {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar-partner img {
  width: 13px;
  height: 13px;
  object-fit: contain;
}

.header {
  height: 82px;
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.header__content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  width: 150px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.nav a:not(.btn) {
  position: relative;
}

.nav a.active,
.nav a:hover {
  color: var(--red);
}

.nav a.active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -31px;
  left: 0;
  height: 2px;
  background: var(--red);
}

.menu-btn {
  display: none;
  border: 0;
  background: none;
  color: var(--text);
  font-size: 28px;
  cursor: pointer;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 28px;
  border: 2px solid var(--red);
  border-radius: 5px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.2s;
}

.btn:hover {
  border-color: var(--red-dark);
  background: var(--red-dark);
  transform: translateY(-1px);
}

.btn--small {
  min-height: 40px;
  padding-inline: 22px;
}

.btn--outline {
  border-color: #fff;
  background: transparent;
}

.btn--outline:hover {
  background: #fff;
  color: var(--red);
}

.btn--whatsapp img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.hero {
  min-height: 405px;
  position: relative;
  overflow: hidden;
  background: #090909;
  color: #fff;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.98) 0%,
      rgba(20, 0, 4, 0.94) 34%,
      rgba(120, 0, 12, 0.45) 58%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    url("assets/img/santander-hero.png");
  background-repeat: no-repeat;
  background-position: center 32%;
  background-size: cover;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: -80px auto -80px 48%;
  width: 260px;
  background: radial-gradient(
    ellipse at center,
    rgba(227, 6, 19, 0.5),
    rgba(227, 6, 19, 0) 65%
  );
  transform: rotate(10deg);
}

.hero__content {
  min-height: 405px;
  position: relative;
  display: flex;
  align-items: center;
}

.hero__copy {
  width: 54%;
  padding: 40px 0;
}

.hero h1 {
  margin: 0 0 20px;
  font-size: 44px;
  font-weight: 900;
  line-height: 1.08;
}

.hero h1 span {
  color: var(--red);
}

.hero p {
  margin: 0 0 28px;
  font-weight: 700;
  line-height: 1.6;
}

.hero__features {
  max-width: 560px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin: 24px 0 32px;
}

.hero__features div {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-feature-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.hero-feature-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.hero__features strong,
.hero__features span {
  display: block;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.hero__features span:not(.hero-feature-icon) {
  font-weight: 450;
}

.hero__actions {
  display: flex;
  gap: 18px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 28px;
  margin-bottom: 34px;
}

.card {
  min-height: 300px;
  display: flex;
  overflow: hidden;
  border: 1px solid #f2f2f2;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.card__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 26px 28px 24px;
}

.card h2,
.about h2 {
  color: var(--red);
  font-size: 22px;
}

.card p {
  margin: 0 0 18px;
  font-weight: 600;
  line-height: 1.45;
}

.card .btn {
  width: fit-content;
  min-width: 235px;
  margin-top: auto;
}

.card-image,
.phone-mockup {
  width: 225px;
  flex: 0 0 225px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.section-heading h2 {
  margin: 0;
  line-height: 1.15;
}

.section-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--red);
}

.section-icon img {
  width: 120%;
  height: 120%;
  object-fit: cover;
}

.checklist {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 9px 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.checklist li::before {
  content: "✓";
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2.4px solid #c95b61;
  border-radius: 50%;
  color: #c95b61;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.checklist--large li {
  max-width: 470px;
}

.phone-mockup {
  flex-basis: 220px;
  background: linear-gradient(120deg, #fff, #f5f5f5);
}

.phone-screen {
  width: 150px;
  height: 270px;
  padding: 12px;
  border: 9px solid #101010;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
  font-size: 9px;
  transform: rotate(6deg);
}

.phone-top {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 7px;
  line-height: 0.8;
}

.phone-top span {
  width: 20px;
  height: 24px;
  background: repeating-linear-gradient(
    135deg,
    #1796c4 0 2px,
    #e8f5fa 2px 4px
  );
}

.phone-screen p {
  margin: 13px 0 2px;
  font-size: 12px;
}

.phone-red {
  margin: 12px 0;
  padding: 10px;
  border-radius: 7px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
}

.phone-screen ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.phone-screen li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-weight: 700;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  margin-bottom: 28px;
}

.about__copy {
  padding-top: 8px;
}

.about h2 {
  color: var(--text);
}

.about h2 span {
  color: var(--red);
}

.about p {
  font-weight: 600;
  line-height: 1.62;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 260px));
  justify-content: center;
  gap: 0;
  align-content: start;
}

.stat {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 18px 22px;
  border-left: 1px solid #eee;
  background: #fff;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.stat-icon {
  width: 34px;
  height: 34px;
  margin: 0 auto 12px;
  object-fit: contain;
}

.stat-icon--award {
  width: 30px;
  height: 30px;
}

.stat strong {
  display: block;
  margin: 0 0 8px;
  color: var(--red);
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
}

.stat span {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}

.stat small {
  max-width: 160px;
  display: block;
  margin-top: auto;
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
}

.santander-band {
  min-height: 82px;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 22px;
  padding: 16px 28px;
  border: 2px solid #000;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.santander-band:hover {
  filter: brightness(0.95);
}

.bank-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.6);
}

.bank-logo img {
  width: 160px;
}

.santander-band b,
.santander-band span,
.santander-band small {
  display: block;
}

.santander-band b {
  font-size: 14px;
  letter-spacing: 1px;
}

.footer {
  position: relative;
  background: var(--footer);
  color: #fff;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.15fr 1fr;
  align-items: flex-start;
  gap: 40px;
  padding: 18px 0 16px;
}

.footer__grid > div:first-child {
  min-height: 135px;
  display: flex;
  align-items: center;
}

.footer .logo img,
.logo--footer img {
  width: 135px;
}

.footer h3 {
  margin: 0 0 14px;
  font-size: 13px;
}

.footer a,
.footer p {
  display: block;
  margin: 0 0 2px;
  color: #fff;
  font-size: 12px;
  line-height: 1.6;
}

.footer p.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
}

.footer p.footer-contact-line + .footer-contact-line {
  margin-top: 16px;
}

.footer p.footer-contact-line img {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  object-fit: contain;
}

.footer p.footer-contact-line a {
  margin: 0;
  line-height: 1.2;
}

.footer p.footer-contact-line--address {
  align-items: flex-start;
  margin-top: 9px;
}

.footer p.footer-contact-line--address img {
  margin-top: 2px;
}

.social {
  display: flex;
  align-items: center;
  gap: 18px;
}

.social a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.social img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.footer__bottom {
  background: var(--red);
  font-size: 12px;
}

.footer__bottom .container {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer__bottom span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.footer__bottom span:last-child {
  text-align: right;
}

.footer__bottom a {
  display: inline;
  margin: 0;
}

.whatsapp {
  position: fixed;
  right: 24px;
  bottom: 18px;
  z-index: 20;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  background: #20d466;
}

.whatsapp img {
  width: 54px;
  height: 54px;
  object-fit: cover;
}

.privacy-hero {
  min-height: 310px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url("assets/img/santander-hero.png");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.privacy-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(100, 0, 10, 0.78) 52%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

.privacy-hero__content {
  position: relative;
  z-index: 1;
  padding: 60px 0;
}

.privacy-hero span {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.privacy-hero h1 {
  max-width: 760px;
  margin: 0 0 16px;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.1;
}

.privacy-hero p {
  max-width: 680px;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}

.privacy-page {
  padding: 42px 0 54px;
}

.privacy-updated {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.privacy-card {
  margin-bottom: 18px;
  padding: 26px 30px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.privacy-card h2 {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 20px;
  font-weight: 900;
}

.privacy-card h3 {
  margin: 20px 0 10px;
  color: var(--text);
  font-size: 16px;
  font-weight: 900;
}

.privacy-card p {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

.privacy-card p:last-child {
  margin-bottom: 0;
}

.privacy-card ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.privacy-card li {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.privacy-card a {
  color: var(--red);
  font-weight: 800;
}

.privacy-card strong {
  font-weight: 900;
}

@media (max-width: 1180px) {
  .container {
    width: min(var(--container), calc(100% - 40px));
  }

  .nav {
    gap: 20px;
    font-size: 11px;
  }

  .hero__copy {
    width: 60%;
  }

  .card__text {
    padding: 24px 22px;
  }

  .card-image,
  .phone-mockup {
    width: 200px;
    flex-basis: 200px;
  }

  .footer__grid {
    grid-template-columns: 1fr 0.9fr 1.25fr 0.8fr;
    gap: 28px;
  }
}

@media (max-width: 1024px) {
  html {
    scroll-padding-top: 82px;
  }

  #promotores,
  #clientes,
  #sobre,
  #santander,
  #contato {
    scroll-margin-top: 82px;
  }

  .topbar {
    display: none;
  }

  .header {
    height: auto;
  }

  .header__content {
    min-height: 76px;
    flex-wrap: wrap;
  }

  .logo img {
    width: 140px;
  }

  .menu-btn {
    display: block;
  }

  .nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 20px;
    font-size: 12px;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 12px 0;
  }

  .nav a.active::after {
    display: none;
  }

  .nav .btn {
    width: fit-content;
    margin-top: 8px;
  }

  .hero,
  .hero__content {
    min-height: 500px;
  }

  .hero__bg {
    background-position: center center;
  }

  .hero__bg::after {
    left: 58%;
  }

  .hero__copy {
    width: 100%;
    max-width: 620px;
    padding: 56px 0;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero__features {
    max-width: 480px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 24px;
  }

  .hero__features div {
    min-height: 78px;
  }

  .cards,
  .about {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: auto;
  }

  .card-image,
  .phone-mockup {
    width: 230px;
    flex-basis: 230px;
  }

  .about {
    gap: 28px;
  }

  .about__stats {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 44px;
    padding: 28px 0 24px;
  }

  .footer__grid > div:first-child {
    min-height: auto;
    align-items: flex-start;
  }

  .footer__bottom .container {
    min-height: 54px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .footer__bottom span,
  .footer__bottom span:last-child {
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .logo img {
    width: 130px;
  }

  .btn {
    width: 100%;
    max-width: 320px;
    padding-inline: 20px;
  }

  .nav .btn {
    width: 100%;
    max-width: 260px;
  }

  .hero,
  .hero__content {
    min-height: auto;
  }

  .hero__bg {
    background-image: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.98) 0%,
        rgba(0, 0, 0, 0.88) 55%,
        rgba(0, 0, 0, 0.45) 100%
      ),
      url("assets/img/santander-hero.png");
    background-position: center center;
  }

  .hero__copy {
    padding: 46px 0 42px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    margin-bottom: 24px;
    font-size: 13px;
    line-height: 1.55;
  }

  .hero__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 22px 0 28px;
  }

  .hero__actions {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 680px;
  }

  .cards {
    gap: 18px;
    margin-top: 22px;
    margin-bottom: 28px;
  }

  .card {
    display: block;
  }

  .card__text {
    padding: 24px 20px;
  }

  .card .btn {
    width: 100%;
    min-width: 0;
    max-width: none;
  }

  .section-heading {
    align-items: flex-start;
  }

  .section-heading h2,
  .card h2,
  .about h2 {
    font-size: 20px;
  }

  .phone-mockup {
    width: 100%;
    min-height: 260px;
    padding: 22px 0;
  }

  .card-image {
    width: 100%;
    height: 260px;
  }

  .card-image img {
    object-fit: contain;
  }

  .about__stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stat {
    min-height: auto;
    border-top: 1px solid #eee;
    border-left: 0;
  }

  .santander-band {
    display: block;
    padding: 18px 20px;
    text-align: left;
  }

  .bank-logo {
    justify-content: flex-start;
    padding: 0 0 14px;
    margin-bottom: 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 0 24px;
  }

  .footer .logo img,
  .logo--footer img {
    width: 125px;
  }

  .footer p.footer-contact-line + .footer-contact-line {
    margin-top: 10px;
  }

  .footer__bottom .container {
    min-height: 74px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 10px 0;
    text-align: left;
  }

  .footer__bottom span,
  .footer__bottom span:last-child {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
  }

  .privacy-hero {
    min-height: 260px;
  }

  .privacy-hero__content {
    padding: 44px 0;
  }

  .privacy-hero h1 {
    font-size: 32px;
  }

  .privacy-hero p {
    font-size: 14px;
  }

  .privacy-page {
    padding: 30px 0 42px;
  }

  .privacy-card {
    padding: 22px 20px;
  }

  .privacy-card h2 {
    font-size: 18px;
  }

  .whatsapp {
    right: 14px;
    bottom: 14px;
    width: 50px;
    height: 50px;
  }

  .whatsapp img {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 30px;
  }

  .hero__features {
    gap: 14px 10px;
  }

  .hero__features strong,
  .hero__features span {
    font-size: 11px;
  }

  .checklist li {
    align-items: flex-start;
  }

  .phone-screen {
    transform: none;
  }

  .privacy-hero h1 {
    font-size: 28px;
  }

  .privacy-card {
    padding: 20px 16px;
  }
}
