/* ===================================
   RESET & GLOBAL
=================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Sora", sans-serif;
}

html, body {
  overflow-x: hidden;
}

/* Ícone de check branco (tela 1 e tela 9) */
.icon-check {
  width: 14px;
  height: 14px;
  fill: white;
  flex-shrink: 0;
}

/* Ícone de check azul (tela 2) */
.icon-check.blue {
  fill: #1e63e9;
}

/* Ícone de check na pill final (tela 9) */
.icon-check-pill {
  width: 18px;
  height: 18px;
  fill: white;
  vertical-align: middle;
  margin-right: 4px;
}

/* ===================================
   TELA 1
=================================== */
.screen-one {
  color: white;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,0.92) 0%,
      rgba(0,0,0,0.78) 35%,
      rgba(0,0,0,0.45) 60%,
      rgba(0,0,0,0) 100%
    ),
    url('./assets/Imagem saloon.png');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-text {
  padding: 10px;
  padding-top: 15px;
  max-width: 620px;
  margin-left: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-text h1 {
  font-size: 51px;
  line-height: 1.05;
  font-weight: 700;
}

.hero-text > p {
  font-size: 20px;
  opacity: .9;
}

.hero-text ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px 20px;
  list-style: none;
}

.hero-text li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.hero-text .footer-text {
  margin-top: 10px;
  font-weight: bold;
  letter-spacing: .5px;
}

.badge {
  border: 1px solid rgba(255,255,255,.4);
  padding: 8px 18px;
  border-radius: 999px;
  width: fit-content;
  font-size: 14px;
}

.badge h2 {
  font-weight: 100;
}

.input-screen-one {
  color: white;
  width: 100%;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.4);
  background: transparent;
  outline: none;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: bold;
}

.input-screen-one::placeholder {
  color: rgba(255,255,255,.6);
}

.button-screen-one {
  width: 100%;
  padding: 25px;
  border-radius: 999px;
  border: none;
  background: white;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  transition: .25s;
  color: black;
}

.button-screen-one:hover {
  transform: scale(1.03);
}

/* ===================================
   TELA 2
=================================== */
.screen-two {
  min-height: 100vh;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 50px;
}

.blue-box {
  background: #f3f7fd;
  border: 1.5px solid #1e63e9;
  border-radius: 28px;
  padding: 40px;
  max-width: 900px;
  width: 100%;
  gap: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blue-box h1 {
  font-size: 2.5em;
  color: #0061F0;
  font-weight: 300;
}

.blue-box > div {
  background: #dfeaff;
  border: 1.5px solid #1e63e9;
  padding: 20px 40px;
  border-radius: 20px;
}

.blue-box h2 {
  color: #1e63e9;
  font-weight: 500;
}

.blue-box ul {
  display: flex;
  gap: 40px;
  margin-top: 10px;
  list-style: none;
}

.blue-box li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  color: #072ABD;
  font-weight: 500;
}

.badge-two {
  font-size: 18px;
  font-weight: 400;
  color: #3c3c43;
  text-transform: uppercase;
}

.no-box {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.no-box h2 {
  font-size: 1.5em;
  color: #3C3C43;
  max-width: 600px;
  font-weight: 300;
}

.no-box > div {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.no-box p {
  background: #1e63e9;
  color: white;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 17px;
  white-space: nowrap;
}

/* ===================================
   TELA 3
=================================== */
.screen-three {
  min-height: 100vh;
  background: #0061F0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 60px 40px;
}

.taxa-mensalidade img {
  width: 100%;
  max-width: 520px;
  border-radius: 25px;
}

.div-three {
  background: white;
  width: 100%;
  max-width: 520px;
  border-radius: 25px;
  padding: 40px;
  text-align: center;
}

.div-three h2 {
  color: #0061F0;
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 500;
}

.div-three p {
  color: #333;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 500;
  line-height: 1;
}

.div-three div {
  margin-top: 10px;
  background-color: #0061F0;
  padding: 12px 25px;
  border-radius: 20px;
}

.div-three div h3 {
  color: white;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

/* ===================================
   TELA 4
=================================== */
.screen-four {
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
}

.text-screen-four {
  margin-bottom: 50px;
  margin-top: 50px;
  font-size: 20px;
  font-weight: 400;
}

.text-screen-four p {
  color: #4A4A4A;
  margin-bottom: 8px;
}

.text-screen-four p strong {
  color: #333333;
}

.text-screen-four .italic {
  font-style: italic;
  margin-top: 25px;
  color: #4A4A4A;
}

.boxes-screen-four {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 1000px;
}

.boxes-screen-four div {
  flex: 1;
  height: 100px;
  border-radius: 8px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.boxes-screen-four h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  margin: 0;
}

.box-light-blue {
  background-color: #E6EFFF;
  border-left: 6px solid #0028C6;
}

.box-light-blue h3 {
  color: #0028C6;
}

.box-yellow {
  background-color: #FFC700;
}

.box-yellow h3 {
  color: #0028C6;
  font-size: 22px !important;
}

.box-dark-blue {
  text-align: left;
  background-color: #0028C6;
}

.box-dark-blue h3 {
  color: #FFFFFF;
}

/* ===================================
   FUNDO AZUL
=================================== */
.background-blue {
  background-color: #0061F0;
}

/* ===================================
   TELA 5
=================================== */
@keyframes floatNumber {
  0%, 100% { transform: translate(-50%, 0px); }
  50%       { transform: translate(-50%, -5px); }
}

.screen-five {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #FFFFFF;
}

.screen-five h1 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 50px;
}

.screen-five-footer {
  margin-top: 30px;
  font-size: 22px;
  font-weight: 500;
}

.boxes-screen-five {
  display: flex;
  gap: 40px;
}

.boxes-screen-five div {
  position: relative;
  flex: 1;
  background-color: white;
  border: 2px solid rgba(0, 11, 172, 0.91);
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 150px;
}

.boxes-screen-five div h2 {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0;
  color: #0061F0;
}

.step-number {
  position: absolute;
  top: -22px;
  left: 50%;
  border: 2px solid rgba(0, 11, 172, 0.91);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #2f6bff;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  animation: floatNumber 3s ease-in-out infinite;
}

.boxes-screen-five div:nth-child(2) .step-number { animation-delay: 0.4s; }
.boxes-screen-five div:nth-child(3) .step-number { animation-delay: 0.5s; }
.boxes-screen-five div:nth-child(4) .step-number { animation-delay: 0.7s; }
.boxes-screen-five div:nth-child(5) .step-number { animation-delay: 0.8s; }

/* ===================================
   TELA 6
=================================== */
.screen-six {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  padding: 0 80px;
  margin-top: 45px;
}

.left-side img {
  width: 100%;
  max-width: 520px;
}

.right-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.title-feature {
  color: white;
  font-size: 32px;
  font-weight: 500;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.feature-item:hover h3 {
  color: #FFC700;
}

.icon-box {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box img {
  width: 74px;
}

.text-box {
  color: white;
}

.text-box h3 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 4px;
}

.text-box p {
  opacity: .85;
}

.consultor-button {
  background: white;
  color: #0061F0;
  border: none;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0px 35px 12px -23px rgba(0,0,0,0.5);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 20px;
  transition: .3s;
}

.consultor-button:hover {
  transform: scale(1.1);
}

/* ===================================
   TELA 7
=================================== */
.screen-seven {
  text-align: center;
  padding: 50px;
}

.header-seven {
  margin-bottom: 20px;
}

.header-seven h2 {
  color: white;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 5px;
}

.header-seven p {
  color: white;
  opacity: .9;
  font-size: 22px;
}

.content-seven {
  max-width: 1100px;
  margin: auto;
  display: grid;
  align-items: start;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  padding: 0 40px;
}

.card-seven {
  background: #E9E9E9;
  border-radius: 25px;
  width: 100%;
  padding: 40px 60px;
  text-align: left;
}

.card-seven h3 {
  color: #1f6bff;
  font-size: 26px;
  margin-bottom: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.card-seven ul {
  padding-left: 20px;
}

.card-seven li {
  margin-bottom: 10px;
  color: #1f6bff;
  font-size: 19px;
  line-height: 1.3;
}

.benefits-seven {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.benefit-pill {
  background: #072ABD;
  color: white;
  padding: 10px 20px;
  border-radius: 15px;
  font-size: 18px;
  font-weight: 500;
}

/* ===================================
   TELA 8
=================================== */
.screen-eight {
  background: white;
  padding: 40px;
}

.container-eight {
  max-width: 800px;
  margin: auto;
  padding: 0 40px;
  text-align: center;
}

.header-eight {
  margin-bottom: 20px;
}

.header-eight h2 {
  font-size: 32px;
  color: #0061F0;
  font-weight: 500;
  margin-bottom: 20px;
}

.header-eight p {
  max-width: 900px;
  font-size: 22px;
  line-height: 1.3;
  color: #0061F0;
}

.numbers-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Força sempre 3 colunas */
  gap: 15px; /* Adiciona espaçamento entre os botões */
  align-items: center;
}

.number-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.number-card img {
  width: 100%; /* Faz a imagem respeitar o tamanho do seu "quadrado" no grid */
  height: auto;
  object-fit: contain;
}

.number-card-large {
  grid-column: span 2; /* Faz o último item ocupar 2 espaços */
}

.number-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (min-width: 1025px) {
  .nota-satisfacao-img  { width: 270px !important; }
  .transacionados-img   { width: 215px !important; }
  .operadores-img       { width: 190px !important; }
}

.number-card-large {
  grid-column: span 2;
}

.footer-eight {
  margin-top: 40px;
}

.footer-eight p {
  font-size: 18px;
  color: #0061F0;
  font-weight: 600;
}

/* ===================================
   TELA 9
=================================== */
.screen-nine {
  padding: 30px;
  background: #072abd;
  text-align: center;
}

.cta-button-final {
  margin-top: 20px;
  background: white;
  color: #0061F0;
  border: none;
  padding: 12px 25px;
  border-radius: 40px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 20px;
  box-shadow: 5px 7px 9px rgba(0,0,0,0.3);
  transition: .3s;
}

.cta-button-final:hover {
  transform: scale(1.1);
}

.text-final {
  color: white;
  margin-bottom: 20px;
}

.text-final p {
  font-size: 18px;
  margin-bottom: 2px;
  font-weight: 500;
}

.pills-final {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.pill-final {
  background: #0061F0;
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
}

.pill-final p {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===================================
   TELA 10
=================================== */
.screen-ten {
  background: black;
  padding: 80px 0;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.left-footer img {
  width: 240px;
}

.right-footer {
  color: #888;
  font-size: 14px;
  line-height: 1.8;
}

/* ===================================
   RESPONSIVIDADE — 1024px
=================================== */
@media (max-width: 1024px) {
  .hero-text {
    margin-left: 40px;
    max-width: 520px;
  }

  .blue-box {
    padding: 40px 80px;
  }

  .screen-three {
    flex-direction: column;
    min-height: auto;
    padding: 60px 20px;
  }

  .boxes-screen-five {
    flex-wrap: wrap;
    justify-content: center;
  }

  .boxes-screen-five div {
    flex: 0 0 45%;
  }

  .screen-six {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }

  .content-seven {
    grid-template-columns: 1fr;
  }

  .card-seven {
    width: 100%;
    padding: 30px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}

/* ===================================
   RESPONSIVIDADE — 800px
=================================== */
@media (max-width: 800px) {
  .boxes-screen-four {
    flex-direction: column;
  }
}

/* ===================================
   RESPONSIVIDADE — 600px
=================================== */
@media (max-width: 600px) {
  .hero-text {
    margin-left: 0;
    padding: 25px;
  }

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

  .hero-text ul {
    grid-template-columns: 1fr;
  }

  .screen-two {
    height: auto;
    padding: 60px 20px;
  }

  .blue-box {
    padding: 30px 20px;
  }

  .blue-box ul {
    flex-direction: column;
    gap: 0;
    margin-top: 0;
    align-items: center;
  }

  .no-box > div {
    justify-content: center;
  }

  .div-three {
    padding: 25px;
  }

  .boxes-screen-five div {
    flex: 0 0 100%;
  }

  .screen-seven {
    text-align: left;
    padding: 10px;
  }

  .card-seven h3 {
    font-size: 15px;
  }

  .card-seven li {
    font-size: 16px;
  }

  /* Ajustes da Tela 8 (Métricas) */
  .screen-eight {
    padding: 20px 10px;
  }

  .numbers-grid {
    gap: 6px; 
  }

  /* Removendo as larguras fixas para as imagens se ajustarem ao grid */
  .consumidores-atendidos-img,
  .nota-satisfacao-img,
  .transacionados-img,
  .operadores-img {
    width: 100% !important;
    max-width: 100% !important;
    max-height: unset !important;
  }

  .cta-button-final {
    width: 100%;
  }

  .footer-container {
    padding: 0 20px;
  }
}