* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Manrope', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top center, rgba(255, 0, 0, 0.08), transparent 28%),
    radial-gradient(circle at bottom center, rgba(255, 0, 0, 0.05), transparent 30%),
    linear-gradient(180deg, #020202 0%, #050505 35%, #060606 65%, #020202 100%);
  color: #fff;
  overflow-x: hidden;
  position: relative;
  padding: 110px 30px 60px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 0, 0, 0.06), transparent 18%),
    radial-gradient(circle at 88% 18%, rgba(255, 0, 0, 0.05), transparent 20%),
    radial-gradient(circle at 50% 85%, rgba(255, 0, 0, 0.04), transparent 25%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 70px 70px;
}

/* TOPO */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 0, 0, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.logo-top img {
  width: 110px;
  height: auto;
  cursor: pointer;
  transition: 0.3s ease;
}

.logo-top img:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 10px red);
}

.top-btn-link {
  display: inline-block;
  background: linear-gradient(180deg, #ff1a1a 0%, #ff0000 100%);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.top-btn-link:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px red;
}

/* PARTÍCULAS */
#particles-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* EFEITO MOUSE */
.mouse-wave {
  position: fixed;
  left: 0;
  top: 0;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 1;
  filter: blur(35px);
  background: radial-gradient(
    circle,
    rgba(255, 0, 0, 0.45) 0%,
    rgba(120, 0, 0, 0.20) 30%,
    rgba(255, 0, 0, 0.08) 55%,
    transparent 75%
  );
  transition: width 0.25s ease, height 0.25s ease, filter 0.25s ease;
}

.mouse-wave.active {
  width: 320px;
  height: 320px;
  filter: blur(45px);
}

/* CONTAINER HERO */
.container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto 100px auto;
}

.left {
  max-width: 540px;
}

.left h1 {
  font-size: 55px;
  font-weight: 800;
  line-height: 1.1;
  color: #f4f4f4;
}

.left span {
  color: #ff0000;
}

.left p {
  margin-top: 20px;
  color: #aaa;
  font-size: 16px;
  line-height: 1.7;
  max-width: 500px;
}

/* BOTÕES */
.buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-red {
  background: linear-gradient(180deg, #ff1f1f 0%, #ff0000 100%);
  color: #fff;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.35);
}

.btn-red:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.6);
}

.btn-dark {
  background: #111;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-dark:hover {
  transform: scale(1.05);
  border-color: rgba(255, 0, 0, 0.4);
}

/* CARD DIREITA */
.card {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
  border-radius: 20px;
  padding: 30px;
  width: 400px;
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.08);
  border: 1px solid rgba(255, 0, 0, 0.08);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top right, rgba(255, 0, 0, 0.12), transparent 55%);
}

.card h3 {
  color: #ff0000;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  z-index: 2;
  font-size: 22px;
  font-weight: 800;
}

/* GRID INTERNO */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.box {
  background: #1a1a1a;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid rgba(255, 0, 0, 0.2);
  transition: 0.3s ease;
}

.box:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 0, 0, 0.35);
}

.box strong {
  color: #ff0000;
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}

.box p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.5;
}

.footer-box {
  background: #1a1a1a;
  padding: 15px;
  border-left: 4px solid red;
  border-radius: 10px;
  margin-top: 15px;
  color: #ccc;
  line-height: 1.6;
  position: relative;
  z-index: 2;
  font-size: 15px;
}

/* BENEFÍCIOS */
.benefits-section {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #030303 0%, #050505 50%, #030303 100%);
  padding: 80px 30px;
  overflow: hidden;
}

.benefits-section::before {
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.06), transparent 65%);
  top: -180px;
  left: -120px;
  filter: blur(70px);
  pointer-events: none;
}

.benefits-section::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.05), transparent 65%);
  right: -120px;
  bottom: -160px;
  filter: blur(70px);
  pointer-events: none;
}

.benefits-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.3fr;
  gap: 30px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

.benefit-item,
.benefit-highlight {
  position: relative;
  border-radius: 20px;
  padding: 34px 28px;
  text-align: center;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid rgba(255, 0, 0, 0.16);
  transition: 0.4s ease;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.04);
}

.benefit-item::before,
.benefit-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 0, 0, 0.38), transparent 60%),
    radial-gradient(circle at bottom left, rgba(255, 0, 0, 0.24), transparent 60%);
  opacity: 0.35;
  transition: 0.5s ease;
}

.benefit-item:hover::before,
.benefit-highlight:hover::before {
  opacity: 0.6;
}

.benefit-item:hover,
.benefit-highlight:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 38px rgba(255, 0, 0, 0.16);
  border-color: rgba(255, 0, 0, 0.28);
}

.benefit-item *,
.benefit-highlight * {
  position: relative;
  z-index: 2;
}

.benefit-icon {
  font-size: 34px;
  color: #ff2a2a;
  margin-bottom: 18px;
  text-shadow: 0 0 18px rgba(255, 0, 0, 0.25);
}

.benefit-item h3,
.benefit-highlight h3 {
  color: #f2f2f2;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.benefit-item p,
.benefit-highlight p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.7;
}

.benefit-highlight .large {
  font-size: 42px;
  margin-bottom: 16px;
  color: #ff2a2a;
  text-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.benefit-btn {
  display: inline-block;
  margin-top: 22px;
  background: #ff2a2a;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 10px;
  transition: 0.25s ease;
  box-shadow: 0 0 18px rgba(255, 0, 0, 0.22);
}

.benefit-btn:hover {
  transform: translateY(-2px) scale(1.03);
  background: #ff0000;
  box-shadow: 0 0 28px rgba(255, 0, 0, 0.3);
}

/* PLANOS SITE */
.site-plans {
  position: relative;
  z-index: 2;
  padding: 90px 30px;
  min-height: 100vh;
  background: linear-gradient(180deg, #030303 0%, #060606 50%, #030303 100%);
  overflow: hidden;
}

.site-plans::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.07), transparent 65%);
  top: -220px;
  right: -140px;
  filter: blur(80px);
  pointer-events: none;
}

.site-plans::after {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.05), transparent 65%);
  bottom: -180px;
  left: -140px;
  filter: blur(80px);
  pointer-events: none;
}

.plans-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.plans-header h1 {
  font-size: 48px;
  font-weight: 800;
  color: #f2f2f2;
  margin-bottom: 12px;
  line-height: 1.15;
}

.plans-header h1 span {
  color: #ff0000;
}

.plans-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.7;
  max-width: 780px;
  margin: 0 auto;
}

.plans-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
  z-index: 2;
  align-items: stretch;
}

.plan-card {
  position: relative;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(10, 10, 10, 0.98));
  border: 1px solid rgba(255, 0, 0, 0.14);
  border-radius: 18px;
  padding: 28px 22px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.06);
  transition: 0.3s ease;
  overflow: hidden;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 0 28px rgba(255, 0, 0, 0.16);
  border-color: rgba(255, 0, 0, 0.28);
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 0, 0, 0.16), transparent 55%),
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.01) 100%);
  pointer-events: none;
}

.featured {
  border-color: rgba(255, 0, 0, 0.3);
  box-shadow: 0 0 26px rgba(255, 0, 0, 0.12);
}

.plan-badge {
  display: inline-block;
  background: #ff0000;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 12px;
  border-radius: 8px;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
  align-self: flex-start;
}

.plan-icon {
  font-size: 48px;
  color: #ff3b3b;
  text-align: center;
  margin-bottom: 14px;
  text-shadow: 0 0 18px rgba(255, 0, 0, 0.25);
  position: relative;
  z-index: 2;
}

.plan-card h2 {
  text-align: center;
  font-size: 34px;
  color: #ff1f1f;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
  font-weight: 800;
}

.price {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  color: #f3f3f3;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  line-height: 1.2;
}

.price span {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.plan-card ul {
  list-style: none;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
  flex: 1;
}

.plan-card ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  font-size: 15px;
}

.plan-card ul li::before {
  content: "•";
  color: #ff0000;
  font-size: 22px;
  position: absolute;
  left: 0;
  top: -2px;
}

.buy-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(180deg, #ff1a1a 0%, #ff0000 100%);
  color: #fff;
  text-decoration: none;
  padding: 14px 18px;
  border-radius: 10px;
  font-weight: 800;
  transition: 0.25s ease;
  box-shadow: 0 0 18px rgba(255, 0, 0, 0.16);
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.buy-btn:hover {
  background: linear-gradient(180deg, #ff2a2a 0%, #d90000 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 24px rgba(255, 0, 0, 0.26);
}

/* TRUST SECTION */
.trust-section {
  position: relative;
  z-index: 2;
  padding: 100px 30px;
  background: linear-gradient(180deg, #030303 0%, #050505 50%, #020202 100%);
  overflow: hidden;
}

.trust-bg-lines {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      120deg,
      rgba(255, 0, 0, 0.04) 0px,
      rgba(255, 0, 0, 0.04) 2px,
      transparent 2px,
      transparent 18px
    ),
    repeating-linear-gradient(
      -120deg,
      rgba(255, 0, 0, 0.022) 0px,
      rgba(255, 0, 0, 0.022) 1px,
      transparent 1px,
      transparent 24px
    );
  opacity: 0.85;
  pointer-events: none;
}

.trust-bg-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.14), transparent 65%);
  top: -180px;
  right: -180px;
  filter: blur(55px);
  pointer-events: none;
}

.trust-header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 50px;
}

.trust-header h2 {
  font-size: 46px;
  font-weight: 800;
  color: #f2f2f2;
  margin-bottom: 14px;
  line-height: 1.15;
}

.trust-header h2 span {
  color: #ff0000;
}

.trust-header p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto;
}

.trust-grid {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto 70px auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-card {
  background: rgba(14, 14, 14, 0.96);
  border: 1px solid rgba(255, 0, 0, 0.12);
  border-radius: 18px;
  padding: 28px 20px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.05);
  transition: 0.3s ease;
  text-align: left;
  overflow: hidden;
}

.trust-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 0, 0, 0.26);
  box-shadow: 0 0 24px rgba(255, 0, 0, 0.14);
}

.trust-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.12);
  color: #ff2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  box-shadow: 0 0 18px rgba(255, 0, 0, 0.12);
}

.trust-card h3 {
  font-size: 28px;
  color: #f5f5f5;
  margin-bottom: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.trust-card p {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.7;
  font-size: 15px;
}

/* BLOCO GRANDE */
.guarantee-box {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  background: linear-gradient(135deg, #7a0000, #ff1a1a);
  border-radius: 18px;
  padding: 36px 34px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.18);
}

.guarantee-left {
  flex: 1.5;
  text-align: left;
}

.guarantee-left h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 14px;
  color: #fff;
}

.guarantee-left p {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 700px;
}

.guarantee-left ul {
  list-style: none;
}

.guarantee-left ul li {
  margin-bottom: 10px;
  color: #fff;
  position: relative;
  padding-left: 18px;
}

.guarantee-left ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -1px;
  color: #fff;
  font-size: 20px;
}

.guarantee-right {
  flex: 1;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  padding: 24px 22px;
  text-align: left;
}

.guarantee-right h4 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.guarantee-right ol {
  padding-left: 20px;
}

.guarantee-right ol li {
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.6;
}

/* COMPARE */
.compare-section {
  position: relative;
  z-index: 2;
  padding: 100px 30px;
  background: linear-gradient(180deg, #020202 0%, #050505 50%, #020202 100%);
  overflow: hidden;
}

.compare-section::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.06), transparent 65%);
  left: -160px;
  top: -220px;
  filter: blur(80px);
  pointer-events: none;
}

.compare-section::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.04), transparent 65%);
  right: -120px;
  bottom: -180px;
  filter: blur(80px);
  pointer-events: none;
}

.compare-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.compare-header h2 {
  font-size: 46px;
  font-weight: 800;
  color: #f2f2f2;
  margin-bottom: 12px;
  line-height: 1.15;
}

.compare-header h2 span {
  color: #ff0000;
}

.compare-header p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.68);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.compare-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  position: relative;
  z-index: 2;
}

.compare-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 34px 28px;
  background: #0d0d0d;
  border: 1px solid rgba(255, 0, 0, 0.14);
  box-shadow: 0 0 24px rgba(255, 0, 0, 0.06);
  transition: 0.35s ease;
}

.compare-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background: radial-gradient(circle at top right, rgba(255, 0, 0, 0.2), transparent 55%);
}

.compare-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 0, 0, 0.28);
  box-shadow: 0 0 26px rgba(255, 0, 0, 0.14);
}

.compare-card.red {
  background: linear-gradient(180deg, rgba(25, 0, 0, 0.95), rgba(10, 10, 10, 0.98));
}

.compare-card.dark {
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(8, 8, 8, 0.98));
}

.compare-top {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.compare-top h3 {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.15;
}

.compare-top span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
}

.compare-icon {
  text-align: center;
  font-size: 56px;
  margin-bottom: 22px;
  filter: drop-shadow(0 0 14px rgba(255, 0, 0, 0.22));
  position: relative;
  z-index: 2;
}

.compare-card ul {
  list-style: none;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.compare-card ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  font-size: 15px;
}

.compare-card ul li::before {
  content: "•";
  color: #ff0000;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: -3px;
}

.compare-card a {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(180deg, #ff1a1a 0%, #ff0000 100%);
  color: #fff;
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 800;
  transition: 0.25s ease;
  box-shadow: 0 0 18px rgba(255, 0, 0, 0.16);
  position: relative;
  z-index: 2;
}

.compare-card a:hover {
  background: linear-gradient(180deg, #ff2a2a 0%, #d90000 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.24);
}

/* FOOTER */
.footer-planos {
  width: 100%;
  background: linear-gradient(180deg, #050505 0%, #000 100%);
  border-top: 1px solid rgba(255, 0, 0, 0.18);
  padding: 22px 30px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.footer-planos::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.05), transparent 65%);
  right: -120px;
  top: -150px;
  filter: blur(70px);
  pointer-events: none;
}

.footer-content {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  gap: 20px;
}

.footer-left p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-right img {
  height: 52px;
  max-width: 220px;
  object-fit: contain;
  opacity: 0.95;
  transition: 0.3s;
  display: block;
  filter: drop-shadow(0 0 6px rgba(255, 0, 0, 0.18));
}

.footer-right img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* RESPONSIVO */
@media (max-width: 1100px) {
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .guarantee-box {
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .left h1 {
    font-size: 40px;
  }

  .card {
    width: 100%;
    max-width: 100%;
  }

  .compare-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 700px) {
  body {
    padding: 95px 18px 30px;
  }

  .benefits-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .plans-header h1 {
    font-size: 34px;
  }

  .plans-header p {
    font-size: 15px;
  }

  .buttons {
    flex-direction: column;
  }

  .btn {
    text-align: center;
  }

  .top-bar {
    padding: 0 15px;
  }

  .logo-top img {
    width: 90px;
  }

  .top-btn-link {
    padding: 8px 14px;
    font-size: 13px;
  }

  .site-plans,
  .benefits-section,
  .trust-section,
  .compare-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .trust-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .trust-header h2 {
    font-size: 34px;
  }

  .trust-header p {
    font-size: 15px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-card h3 {
    font-size: 22px;
  }

  .guarantee-left h3,
  .guarantee-right h4 {
    font-size: 20px;
  }

  .compare-header h2 {
    font-size: 34px;
  }

  .compare-header p {
    font-size: 15px;
  }

  .compare-top h3 {
    font-size: 24px;
  }

  .compare-icon {
    font-size: 48px;
  }

  .footer-planos {
    padding: 18px;
  }

  .footer-right img {
    height: 46px;
    max-width: 190px;
  }
}