/* ── HERO ── */
.rev-hero {
  background: #1a0a00;
  background-image: url("../img/banner02.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 88px 0 72px;
  overflow: hidden;
}
.rev-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20, 6, 0, 0.88) 0%,
    rgba(72, 36, 24, 0.75) 100%
  );
}
.rev-hero-inner {
  position: relative;
  z-index: 1;
}
.rev-hero-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ef9f27;
  background: rgba(239, 159, 39, 0.12);
  border: 0.5px solid rgba(239, 159, 39, 0.3);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.rev-hero h1 {
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.1;
  margin: 0 0 16px;
}
.rev-hero h1 span {
  color: #ef9f27;
}
.rev-hero p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 0 32px;
}
.rev-hero-cards {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.rev-hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 0.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.rev-hero-card-icon {
  font-size: 24px;
}
.rev-hero-card-num {
  font-size: 22px;
  font-weight: 800;
  color: #ef9f27;
  line-height: 1;
}
.rev-hero-card-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

/* Botões */
.btn-rev-gold {
  background: #b5651d;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 13px 28px;
  font-size: 13px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-rev-gold:hover {
  background: #9e4c12;
  color: #fff;
  transform: translateY(-2px);
}
.btn-rev-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  padding: 13px 28px;
  font-size: 13px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-rev-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.rev-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── COMO FUNCIONA ── */
.rev-como {
  background: #fdf9f5;
  padding: 80px 0;
}
.rev-section-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #b5651d;
  margin-bottom: 12px;
}
.rev-section-titulo {
  font-size: 30px;
  font-weight: 800;
  color: #2c1a0e;
  letter-spacing: -0.5px;
  margin: 0 0 10px;
}
.rev-section-sub {
  font-size: 14px;
  color: #7a5c44;
  line-height: 1.7;
  margin: 0 0 48px;
}
.rev-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.rev-steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, #e8c9a8, #b5651d, #e8c9a8);
  z-index: 0;
}
.rev-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.rev-step-num {
  width: 64px;
  height: 64px;
  background: #fff;
  border: 2px solid #b5651d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: #b5651d;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 6px #fdf9f5;
}
.rev-step h3 {
  font-size: 15px;
  font-weight: 700;
  color: #2c1a0e;
  margin: 0 0 8px;
}
.rev-step p {
  font-size: 12px;
  color: #6b5744;
  line-height: 1.7;
  margin: 0;
}

/* ── TABELA DE LUCRO ── */
.rev-lucro {
  background: #fff;
  padding: 80px 0;
}
.rev-tabela {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 0.5px solid #e8c9a8;
  margin-top: 32px;
}
.rev-tabela thead tr {
  background: #482418;
}
.rev-tabela thead th {
  padding: 16px 20px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  text-align: left;
  letter-spacing: 0.5px;
}
.rev-tabela tbody tr:nth-child(even) {
  background: #fdf9f5;
}
.rev-tabela tbody tr:nth-child(odd) {
  background: #fff;
}
.rev-tabela tbody td {
  padding: 14px 20px;
  font-size: 14px;
  color: #4a3728;
  border-bottom: 0.5px solid #f0e6db;
}
.rev-tabela tbody tr:last-child td {
  border-bottom: none;
}
.rev-destaque {
  font-weight: 800;
  color: #3b6d11;
}
.rev-tabela-nota {
  font-size: 12px;
  color: #9e7e6a;
  margin-top: 12px;
  text-align: center;
}
.rev-badge-popular {
  background: #b5651d;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-left: 8px;
  letter-spacing: 0.5px;
}

/* ── O QUE VOCÊ RECEBE ── */
.rev-kit {
  background: #fdf9f5;
  padding: 80px 0;
}
.rev-kit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.rev-kit-item {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  border: 0.5px solid #e8c9a8;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.25s;
}
.rev-kit-item:hover {
  border-color: #b5651d;
  box-shadow: 0 8px 24px rgba(181, 101, 29, 0.1);
}
.rev-kit-icon {
  font-size: 28px;
  width: 52px;
  height: 52px;
  background: #fdf0e6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rev-kit-titulo {
  font-size: 14px;
  font-weight: 700;
  color: #2c1a0e;
}
.rev-kit-desc {
  font-size: 13px;
  color: #6b5744;
  line-height: 1.7;
  margin: 0;
}

/* ── DEPOIMENTOS ── */
.rev-deps {
  background: #482418;
  padding: 80px 0;
}
.rev-deps .rev-section-tag {
  color: #ef9f27;
}
.rev-deps .rev-section-titulo {
  color: #fff;
}
.rev-deps .rev-section-sub {
  color: rgba(255, 255, 255, 0.6);
}
.rev-dep-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.rev-dep {
  background: rgba(255, 255, 255, 0.06);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rev-dep-stars {
  display: flex;
  gap: 4px;
}
.rev-dep-star {
  width: 12px;
  height: 12px;
  background: #ef9f27;
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}
.rev-dep-texto {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.rev-dep-autor {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.08);
}
.rev-dep-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rev-dep-nome {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.rev-dep-info {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

/* ── FORMULÁRIO ── */
.rev-form-sec {
  background: #fff;
  padding: 80px 0;
}
.rev-form-wrap {
  max-width: 620px;
  margin: 0 auto;
  background: #fdf9f5;
  border-radius: 20px;
  border: 0.5px solid #e8c9a8;
  padding: 40px;
}
.rev-form-titulo {
  font-size: 22px;
  font-weight: 800;
  color: #2c1a0e;
  margin: 0 0 6px;
}
.rev-form-sub {
  font-size: 13px;
  color: #9e7e6a;
  margin: 0 0 28px;
}
.rev-field {
  margin-bottom: 16px;
}
.rev-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #6b5744;
  margin-bottom: 6px;
}
.rev-input,
.rev-select,
.rev-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #d9b99b;
  border-radius: 10px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  color: #2c1a0e;
  background: #fff;
  outline: none;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.rev-input:focus,
.rev-select:focus,
.rev-textarea:focus {
  border-color: #b5651d;
  box-shadow: 0 0 0 3px rgba(181, 101, 29, 0.12);
}
.rev-textarea {
  resize: vertical;
  min-height: 100px;
}
.rev-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.rev-btn-submit {
  width: 100%;
  padding: 14px;
  background: #b5651d;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  margin-top: 8px;
  transition:
    background 0.2s,
    transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.rev-btn-submit:hover {
  background: #9e4c12;
  transform: translateY(-1px);
}
.rev-form-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  font-size: 12px;
  color: #b5a090;
}
.rev-form-divider::before,
.rev-form-divider::after {
  content: "";
  flex: 1;
  height: 0.5px;
  background: #d9b99b;
}
.rev-btn-wpp {
  width: 100%;
  padding: 13px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
}
.rev-btn-wpp:hover {
  background: #1da851;
  color: #fff;
}
.rev-email-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 13px;
  color: #9e7e6a;
}
.rev-email-link a {
  color: #b5651d;
  font-weight: 600;
  text-decoration: none;
}
.rev-email-link a:hover {
  text-decoration: underline;
}
.rev-feedback {
  font-size: 13px;
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  display: none;
}
.rev-feedback--ok {
  background: #eaf3de;
  color: #27500a;
  display: block;
}
.rev-feedback--erro {
  background: #fff3f3;
  color: #a32d2d;
  display: block;
}

@media (max-width: 768px) {
  .rev-hero h1 {
    font-size: 28px;
  }
  .rev-steps {
    grid-template-columns: 1fr 1fr;
  }
  .rev-steps::before {
    display: none;
  }
  .rev-kit-grid,
  .rev-dep-grid,
  .rev-form-row {
    grid-template-columns: 1fr;
  }
  .rev-form-wrap {
    padding: 24px 20px;
  }
  .rev-tabela {
    font-size: 12px;
  }
  .rev-tabela thead th,
  .rev-tabela tbody td {
    padding: 10px 12px;
  }
}
@media (max-width: 480px) {
  .rev-steps {
    grid-template-columns: 1fr;
  }
}
