* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

:root {
  --verde-botao: #0B8A36;
  --verde-botao-hover: #0E9E3E;

  --amarelo-titulo: #F7D117;
  --amarelo-vivo: #FFD84A;

  --preto-fundo: #050505;
  --preto-secundario: #0B0B0B;
  --preto-gradiente: #111111;

  --texto-principal: #F2F2F2;
  --texto-secundario: #CFCFCF;
  --texto-suave: #AFAFAF;

  --dourado: #C8A63A;
  --dourado-claro: #E1C15A;
}

body {
  background: linear-gradient(90deg, #050505 0%, #0B0B0B 50%, #050505 100%);
  color: var(--texto-principal);
  font-family: 'Poppins', sans-serif;
}


html {
  scroll-behavior: smooth;
}

.como-comprar {
    padding: 70px 20px;
    text-align: center;
    background: linear-gradient(90deg, #050505 0%, #0B0B0B 50%, #050505 100%);
}

.mini-titulo {
    display: inline-block;
    color: #d9b24c;
    border: 1px solid rgba(217, 178, 76, 0.35);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.02);
}

.como-comprar h2 {
    color: var(--amarelo-titulo);
    font-family: var(--font-titulo);
    font-size: 3rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.descricao-como-comprar {
    color: var(--texto-secundario);
    font-size: 15px;
    max-width: 620px;
    margin: 0 auto 45px;
    line-height: 1.6;
}

.passos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
    max-width: 1180px;
    margin: 0 auto;
}

.passo {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
    border: 1px solid rgba(217,178,76,0.18);
    border-radius: 16px;
    padding: 30px 18px 26px;
    transition: 0.3s ease;
    box-shadow: 0 12px 28px rgba(0,0,0,0.28);
    overflow: hidden;
}

.passo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d9b24c, transparent);
}

.passo:hover {
    transform: translateY(-7px);
    border-color: rgba(217,178,76,0.55);
    box-shadow: 0 0 22px rgba(217,178,76,0.18);
}

.passo i {
    font-size: 34px;
    color: #d9b24c;
    margin-bottom: 14px;
}

.numero {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #C8A63A, #FFD84A);
    color: #000;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 18px;
    box-shadow: 0 0 12px rgba(217,178,76,0.35);
}

.passo h3 {
    color: #f2f2f2;
    font-size: 17px;
    margin-bottom: 10px;
}

.passo p {
    font-size: 14px;
    color: var(--texto-secundario);
    line-height: 1.5;
}

.botao-whatsapp {
    display: inline-block;
    margin-top: 42px;
    padding: 15px 38px;
    background: linear-gradient(180deg, var(--verde-botao-hover), var(--verde-botao));
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    transition: 0.3s ease;
}

.botao-whatsapp:hover {
    transform: scale(1.04);
    box-shadow: 0 0 16px rgba(10,159,63,0.28);
}

@media (max-width: 1000px) {
    .passos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .como-comprar h2 {
        font-size: 2.3rem;
    }

    .passos {
        grid-template-columns: 1fr;
    }

    .passo {
        padding: 26px 18px;
    }
}

.voltar {
    display: block;
    width: fit-content;
    margin: 29px auto 0;
    color: #d9b24c;
    text-decoration: none;
    font-size: 15px;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(217, 178, 76, 0.4);
    transition: 0.3s;
}

.voltar:hover {
    color: #f0c35a;
    border-bottom: 1px solid #f0c35a;
}

/*FOOTER*/
.benefits {
  background: #fff;
  border-top: none;
  border-bottom: 1px solid #eee;

  padding: 22px 80px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: -82px;
}

/* BARRA DE BENEFÍCIOS */
.benefits {
  background: linear-gradient(90deg, #00110c, #001a13, #00110c);
  border-top: 1px solid rgba(217, 178, 76, 0.3);
  border-bottom: 1px solid rgba(217, 178, 76, 0.3);
  padding: 22px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: -30px;
}

/* CADA ITEM */
.benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 100px;
}

/* ÍCONE */
.benefit i {
  font-size: 32px;
  color: #d9b24c;
  margin-top: 2px;
  cursor: pointer;
}

/* TÍTULO */
.benefit h4 {
  font-size: 14px;
  font-weight: 800;
  color: #f0c35a;
  margin: 0 0 6px 0;
}

/* DESCRIÇÃO */
.benefit p {
  font-size: 13px;
  color: #cfcfcf;
  margin: 0;
  line-height: 1.4;
}

/* FOOTER */
.footer-0 {
  background: linear-gradient(90deg, #00110c 0%, #001a13 45%, #00140f 100%);
  color: #fff;
  border-top: 1px solid rgba(217, 178, 76, 0.45);
  overflow: hidden;
  position: relative;
}

.footer-0::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  pointer-events: none;
}

.footer hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(200, 166, 58, 0.4),
      transparent);
}

/* TOPO */
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
  padding: 48px 65px 42px;
  background: linear-gradient(90deg, #00110c 0%, #001911 45%, #00140f 100%);
  border-bottom: 1px solid rgba(217, 178, 76, 0.4);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column h3 {
  font-size: 20px;
  font-weight: 800;
  color: #f0c35a;
  margin-bottom: 16px;
}

.footer-column h3::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  border-radius: 999px;
  background: #d9b24c;
  margin-top: 14px;
}

.footer-column a,
.footer-column p {
  color: #f2f2f2;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.8;
}

.footer-column p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-column p i {
  color: #d9b24c;
  font-size: 18px;
  width: 20px;
  text-align: center;
}

.footer-column a:hover {
  color: #f0c35a;
}

/* MEIO */
.footer-bottom {
  display: grid;
  grid-template-columns: 0.85fr 0.9fr 1.15fr 0.8fr;
  align-items: center;
  min-height: 170px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.08)),
    linear-gradient(90deg, #00110c 0%, #001911 45%, #00140f 100%);
  position: relative;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(50deg,
      rgba(255, 255, 255, 0.015) 0px,
      rgba(255, 255, 255, 0.015) 70px,
      transparent 70px,
      transparent 140px);
  opacity: 0.4;
  pointer-events: none;
}

.footer-box {
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 14px;
  position: relative;
}

.footer-box:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 85px;
  background: rgba(217, 178, 76, 0.45);
}

.footer-logo img {
  width: 155px;
  max-width: 100%;
  display: block;
}

/* REDES */
.footer-social {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-social i {
  color: #f0c35a;
  font-size: 28px;
}

.footer-social a {
  color: #d9b24c;
  text-decoration: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* RODAPÉ LEGAL */
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 20px 28px;
  background: linear-gradient(90deg, #000d09 0%, #00140f 50%, #000f0b 100%);
  border-top: 1px solid rgba(217, 178, 76, 0.28);
}

.logo-texto-1 {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-11-1 {
  font-size: 20px;
  font-weight: 900;
  color: #d9b24c;
  letter-spacing: 2px;
}

.logo-titular-1 {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #e7c96a;
  margin-top: 3px;
}

.footer-legal-texto {
  max-width: 860px;
}

.footer-legal-texto p {
  margin: 0;
  font-size: 10px;
  line-height: 1.6;
  text-align: center;
  color: #d7d7d7;
}

.footer-column i {
  text-align: center;
  font-size: 18px;
}

/* ESTRELAS */
.rate {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #d9b24c;
  font-size: 22px;
  flex-wrap: wrap;
  justify-content: center;
}

.people-rate {
  margin-left: 6px;
  color: #f0c35a;
  font-size: 12px;
  font-weight: 700;
}

/* TITULO */
.footer-copy {
  display: flex;
  justify-content: center;
  width: 100%;
}

.footer-copy p {
  color: #f2f2f2;
  font-size: 28px;
  font-weight: 800;
  position: relative;
  display: inline-block;
  padding: 0 14px;
  letter-spacing: 0.5px;
}

.footer-copy p::before,
.footer-copy p::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 58px;
  height: 1px;
  background: rgba(217, 178, 76, 0.45);
}

.footer-copy p::before {
  right: 100%;
  margin-right: 10px;
}

.footer-copy p::after {
  left: 100%;
  margin-left: 10px;
}

/* RESPONSIVO - COMO COMPRAR */

/* Tablet */
@media (max-width: 1024px) {
  .como-comprar {
    padding: 60px 24px;
  }

  .passos {
    grid-template-columns: repeat(2, 1fr);
    max-width: 760px;
  }

  .passo:last-child {
    grid-column: 1 / -1;
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
  }

  .benefits {
    flex-wrap: wrap;
    justify-content: center;
    padding: 22px 35px;
    gap: 25px;
  }

  .benefit {
    width: 45%;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    padding: 40px 30px;
    gap: 35px;
  }

  .footer-bottom {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Celular */
@media (max-width: 600px) {
  .como-comprar {
    padding: 45px 16px;
  }

  .mini-titulo {
    font-size: 12px;
    padding: 7px 14px;
  }

  .como-comprar h2 {
    font-size: 2.4rem;
  }

  .descricao-como-comprar {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .passos {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .passo,
  .passo:last-child {
    grid-column: auto;
    max-width: 100%;
    padding: 24px 18px;
  }

  .passo i {
    font-size: 32px;
  }

  .numero {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .passo h3 {
    font-size: 16px;
  }

  .passo p {
    font-size: 13px;
  }

  .botao-whatsapp {
    width: 100%;
    max-width: 320px;
    padding: 14px 22px;
    font-size: 14px;
    margin-top: 34px;
  }

  .voltar {
    font-size: 14px;
    margin-top: 22px;
  }

  .benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 16px;
    margin-top: -20px;
  }

  .benefit {
    width: calc(50% - 8px);
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .benefit i {
    font-size: 26px;
  }

  .benefit h4 {
    font-size: 13px;
  }

  .benefit p {
    font-size: 12px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 35px 24px;
  }

  .footer-column h3 {
    font-size: 18px;
  }

  .footer-column a,
  .footer-column p {
    font-size: 13px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-box {
    min-height: auto;
    padding: 18px 12px;
  }

  .footer-box:not(:last-child)::after {
    display: none;
  }

  .footer-logo img {
    width: 120px;
  }

  .rate {
    font-size: 20px;
  }

  .people-rate {
    font-size: 11px;
  }

  .footer-copy p {
    font-size: 22px;
  }

  .footer-copy p::before,
  .footer-copy p::after {
    width: 25px;
  }

  .footer-social i {
    font-size: 26px;
  }

  .footer-legal {
    flex-direction: column;
    gap: 12px;
    padding: 20px 18px;
  }

  .footer-legal-texto p {
    font-size: 9px;
    line-height: 1.5;
  }
}

/* Celular pequeno */
@media (max-width: 380px) {
  .como-comprar h2 {
    font-size: 2.1rem;
  }

  .passo {
    padding: 22px 15px;
  }

  .benefits {
    padding: 24px 14px;
    gap: 14px;
  }

  .benefit {
    width: calc(50% - 7px);
  }

  .footer-copy p {
    font-size: 20px;
  }
}