:root {
  --bg-main: #05080a;
  --bg-section: #071116;
  --bg-dark: #030608;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-strong: rgba(255, 255, 255, 0.08);

  --text-main: #ffffff;
  --text-muted: rgba(150, 165, 190, 0.75);
  --text-soft: rgba(255, 255, 255, 0.55);

  --accent: #00e0ff;
  --accent-dim: rgba(0, 224, 255, 0.6);
  --accent-glow: rgba(0, 224, 255, 0.12);
  --accent-glow-strong: rgba(0, 224, 255, 0.35);

  --accent-2: #00ff9d;
  --accent-2-glow: rgba(0, 255, 157, 0.18);
  --accent-2-dim: rgba(0, 255, 157, 0.55);

  --border-soft: rgba(255, 255, 255, 0.10);
  --border-accent: rgba(0, 224, 255, 0.30);
  --border-accent-strong: rgba(0, 224, 255, 0.55);
  --border-green: rgba(0, 255, 157, 0.35);

  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.40);
  --shadow-glow: 0 0 35px rgba(0, 224, 255, 0.25);
  --shadow-glow-lg: 0 0 60px rgba(0, 224, 255, 0.35);
  --shadow-btn: 0 0 25px rgba(0, 224, 255, 0.55), 0 0 60px rgba(0, 224, 255, 0.22);
  --shadow-card-hover: 0 0 0 1px rgba(0, 224, 255, 0.40), 0 0 40px rgba(0, 224, 255, 0.18);

  --glow-text: 0 0 28px rgba(0, 224, 255, 0.75), 0 0 55px rgba(0, 224, 255, 0.35);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 100px;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 50px;
  --space-2xl: 120px;

  --font-display: 'Rajdhani', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --nav-h: 72px;
  --container: 1200px;
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-main);
  color: var(--text-main);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
  z-index: 1;
}

.section-pad {
  padding: var(--space-2xl) 0;
}

.section-dark {
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.35), transparent 28%),
    radial-gradient(circle at 80% 80%, rgba(0, 40, 55, 0.22), transparent 34%),
    #00e0ff;
  color: #001116;
  position: relative;
  overflow: hidden;
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 224, 255, 0.10), rgba(0, 140, 170, 0.20)),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.22), transparent 42%);
  pointer-events: none;
}

.section-dark .container {
  position: relative;
  z-index: 1;
}

.glow-text {
  color: var(--accent);
}

.section-glow-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.30;
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  padding: 5px 16px;
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-pill);
  background: var(--accent-glow);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 700;
  margin: var(--space-sm) 0;
  text-transform: uppercase;
  line-height: 1.0;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.5;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #0099cc);
  color: #000;
  border: 1px solid #00e0ff;
}

.btn-primary:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: var(--shadow-btn);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--border-accent-strong);
}

.btn-ghost:hover {
  background: var(--accent-glow);
  box-shadow: var(--shadow-card-hover);
  transform: scale(1.04);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-xl {
  padding: 20px 48px;
  font-size: 16px;
}

.btn1 {
  padding: 20px 110px;
}

.btnprime {
  background: linear-gradient(135deg, #00ff9d, #0c835a);
  color: #000;
  border: 1px solid #00ff9d;
}

.btnprime:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 0 25px rgb(0 255 157 / 55%), 0 0 60px rgb(0 255 157 / 22%);
  background: linear-gradient(135deg, #00ff9d, #0c835a);
}

.secure-purchase {
  width: 360px;
  max-width: 100%;
  margin-top: var(--space-sm);
}

.logo-topo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 28px var(--space-md) 20px;
  background: transparent;
  position: relative;
  z-index: 10;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: var(--container);
}

.navbar-logo {
  max-height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url('imgs/bg.webp');
  background-size: cover;
  background-position: center;
}

.hero-bg-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 120%;
  background: radial-gradient(ellipse at center,
      rgba(0, 100, 200, 0.10) 0%,
      rgba(0, 224, 255, 0.04) 40%,
      transparent 70%);
  pointer-events: none;
}

.hero-fog {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 280px;
  background: linear-gradient(0deg, rgba(5, 8, 10, 0.95) 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  min-height: calc(100vh - var(--nav-h));
  padding: var(--space-lg) var(--space-md);
  z-index: 3;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: 1px;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.hero-seals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--space-md);
}

.seal {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  background: var(--accent-glow);
}

.hero-products {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-product-single {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-product-single img {
  width: auto;
  scale: 1.6;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(0, 224, 255, 0.25));
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

.escolha {
  background: var(--bg-main);
  position: relative;
}

.escolha-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  max-width: 860px;
  margin: 0 auto;
}

.escolha-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.escolha-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.escolha-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.cardbgvirility {
    background-image: url(imgs/bg-virility.jpg);
    background-size: cover;
    background-position: center;
}

.cardbgprime {
    background-image: url(imgs/bg-prime.jpg);
    background-size: cover;
    background-position: center;
}

.virility-accent {
  background: linear-gradient(90deg, var(--accent), transparent);
}

.prime-accent {
  background: linear-gradient(90deg, var(--accent-2), transparent);
}

.escolha-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}

.virility-tag {
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  color: var(--accent);
}

.prime-tag {
  background: var(--accent-2-glow);
  border: 1px solid var(--border-green);
  color: var(--accent-2);
}

.escolha-nome {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 8px;
}

.escolha-nome strong {
  color: var(--accent);
}

.escolha-card:nth-child(2) .escolha-nome strong {
  color: var(--accent-2);
}

.escolha-desc {
  font-size: 15px;
  color: var(--text-white);
  line-height: 1.5;
}

.escolha-lista {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.escolha-lista li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-white);
  line-height: 1.4;
}

.escolha-lista li svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.escolha-card:nth-child(2) .escolha-lista li svg {
  color: var(--accent-2);
}

.comparacao {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #12d6e5;
}

.comparacao::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("imgs/comparacao-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.comparacao::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(18, 214, 229, 0.82);
}

.comparacao>* {
  position: relative;
  z-index: 1;
}

.comp-table {
  max-width: 860px;
  margin: 0 auto var(--space-lg);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgb(25 138 147 / 59%);
  box-shadow: 0 28px 80px rgba(0, 17, 22, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(2px);
}

.comp-header {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  background: rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.comp-col-label {
  padding: var(--space-md);
}

.comp-col {
  padding: var(--space-md);
  text-align: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.virility-col {
  color: #00e0ff;
}

.prime-col {
  color: #00ff9d;
}

.comp-row {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.comp-row:last-child {
  border-bottom: none;
}

.comp-label {
  padding: var(--space-md);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  display: flex;
  align-items: center;
}

.comp-val {
  padding: var(--space-md);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.virility-val {
  background: rgba(0, 224, 255, 0.055);
}

.prime-val {
  background: rgba(0, 255, 157, 0.055);
}

.comp-row:hover .comp-val {
  background: rgba(255, 255, 255, 0.08);
}

.comp-closing {
  text-align: center;
  font-size: 16px;
  color: #001116;
  font-weight: 500;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
}

.comp-closing strong {
  color: #001116;
}

.comp-desktop {
  display: block;
}

.comp-mobile {
  display: none;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 520px;
  margin: 0 auto var(--space-lg);
}

.comp-mobile-card {
  background: rgba(0, 16, 22, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
}

.comp-mobile-head {
  padding: var(--space-md) var(--space-md) calc(var(--space-md) * 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comp-mobile-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.comp-mobile-virility .comp-mobile-tag {
  background: rgba(0, 224, 255, 0.12);
  color: var(--accent);
  border: 1px solid rgba(0, 224, 255, 0.3);
}

.comp-mobile-prime .comp-mobile-tag {
  background: rgba(0, 255, 157, 0.10);
  color: var(--accent-2);
  border: 1px solid rgba(0, 255, 157, 0.28);
}

.comp-mobile-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-main);
  margin: 0 0 6px;
  line-height: 1.2;
}

.comp-mobile-virility .comp-mobile-title strong {
  color: var(--accent);
}

.comp-mobile-prime .comp-mobile-title strong {
  color: var(--accent-2);
}

.comp-mobile-sub {
  font-size: 13px;
  color: #fff;
  margin: 0;
  line-height: 1.4;
}

.comp-mobile-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.comp-mobile-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.comp-mobile-item:last-child,
.comp-mobile-item--last {
  border-bottom: none;
  padding-bottom: 20px;
}

.comp-mobile-item strong {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.comp-mobile-virility .comp-mobile-item strong {
  color: rgba(0, 224, 255, 0.7);
}

.comp-mobile-prime .comp-mobile-item strong {
  color: rgba(0, 255, 157, 0.65);
}

.comp-mobile-item span {
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
}

.benefits {
  background-image: url(imgs/bg.webp);
  background-size: cover;
  background-position: center;
  position: relative;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: var(--space-md);
  align-items: stretch;
}

.benefit-card {
  background: #0d0d0d;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-card);
}

.benefit-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.benefit-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(0, 224, 255, 0.20), transparent 60%),
    #081118;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.benefit-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.benefit-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.12) 0%,
      rgba(0, 0, 0, 0.08) 42%,
      rgba(5, 8, 10, 0.25) 70%,
      rgba(5, 8, 10, 0.95) 100%);
  pointer-events: none;
}

.benefit-icon {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  width: 46px;
  height: 46px;
  background: rgba(0, 224, 255, 0.14);
  border: 1px solid var(--border-accent);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  box-shadow: rgba(0, 0, 0, 0.28) 0px 10px 24px, rgba(255, 255, 255, 0.03) 0px 0px 0px 1px inset;
  backdrop-filter: blur(6px);
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.25;
  text-align: center;
  color: #00e0ff;
  padding: 18px 20px 6px;
}

.benefit-card p {
  font-size: 14px;
  color: #e6e6e6;
  line-height: 1.65;
  padding: 0 20px 22px;
  flex: 1;
  text-align: center;
}

.benefit-card:hover .benefit-media img {
  transform: scale(1.05);
  transition: transform 0.45s ease;
}

.testimonials {
  position: relative;
}

.testi-grid {
  display: grid;
  gap: var(--space-md);
}

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: var(--transition);
}

.testi-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.testi-stars {
  color: #f5c518;
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 1;
}

.testi-verified {
  display: block;
  font-size: 12px;
  color: var(--accent-2);
  margin-top: 2px;
}

.testi-video-grid {
  grid-template-columns: repeat(2, minmax(260px, 360px));
  justify-content: center;
  align-items: start;
  max-width: 820px;
  margin: 0 auto;
}

.testi-video-card {
  padding: 14px;
  gap: 14px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 224, 255, 0.10), transparent 45%),
    var(--bg-card);
}

.testi-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 18px;
  background: #030608;
  border: 1px solid rgba(0, 224, 255, 0.22);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.testi-video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0, 224, 255, 0.10), transparent 28%),
    linear-gradient(0deg, rgba(5, 8, 10, 0.28), transparent 35%);
}

.testi-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #030608;
}

.testi-video-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 4px 4px 2px;
  text-align: center;
}

.testi-video-content strong {
  font-family: var(--font-display);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-main);
}

.section-dark .testi-card {
  background: rgba(0, 16, 22, 0.72);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 22px 60px rgba(0, 17, 22, 0.24);
  backdrop-filter: blur(14px);
}

.section-dark .testi-card:hover {
  border-color: rgba(255, 255, 255, 0.38);
  transform: translateY(-4px);
}

.section-dark .testi-verified {
  color: #00ff9d;
}

.pricing {
  background: linear-gradient(90deg, #000000, #161616);
  position: relative;
}

.pricing-grid.pg-ref {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  align-items: start;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-6px);
}

.pg-card {
  padding: 0;
  overflow: hidden;
}

.pg-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-md) var(--space-sm) var(--space-sm);
  border-bottom: 1px solid var(--border-soft);
  font-family: var(--font-display);
  text-transform: uppercase;
}

.pg-months {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

.pg-focus {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: none;
  font-family: var(--font-body);
  margin-top: 6px;
  font-style: italic;
  font-weight: 400;
}

.pg-body {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm);
  flex: 1;
}

.pg-product-img {
  flex-shrink: 0;
  width: 150px;
  min-height: 110px;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.pg-product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pg-product-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(0, 224, 255, 0.08) 0%, transparent 70%);
}

.pg-product-checkout {
  scale: 1.2;
  margin-top: 20px;
}

.pg-price-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  flex: 1;
}

.pg-unit-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 4px 10px;
  border: 1px solid rgba(0, 224, 255, 0.22);
  border-radius: 999px;
  background: rgba(0, 224, 255, 0.08);
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  line-height: 1.1;
}

.pg-old-price {
  font-size: 14px;
  color: rgba(150, 165, 190, 0.75);
}

.pg-old-price s {
  color: rgba(255, 255, 255, 0.45);
  opacity: 0.7;
}

.pg-only-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
  margin-top: 4px;
}

.pg-main-price {
  display: flex;
  align-items: flex-start;
  line-height: 1;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  text-shadow: 0 0 22px rgba(0, 224, 255, 0.35);
}

.pg-main-price sup {
  font-size: 16px;
  margin-top: 6px;
  margin-right: 2px;
}

.pg-big {
  font-size: 52px;
  letter-spacing: -1px;
  line-height: 1;
}

.pg-cents {
  font-size: 18px;
  font-weight: 700;
  margin-top: 6px;
}

.pg-installment {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
}

.pg-features {
  padding: 0 var(--space-sm) var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pg-features li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}

.pg-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.pg-shipping {
  display: none;
  text-align: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent);
  padding: var(--space-xs) var(--space-sm);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: var(--accent-glow);
}

.pg-btn {
  margin: var(--space-sm);
  width: calc(100% - var(--space-sm) * 2);
  text-align: center;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
}

.pg-secure {
  display: block;
  width: 100%;
  max-width: 240px;
  margin: 0 auto var(--space-sm);
}

.pg-badge-top {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #000;
  background: var(--accent);
  padding: 5px 18px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  box-shadow: 0 0 20px rgba(0, 224, 255, 0.45);
  white-space: nowrap;
  text-transform: uppercase;
}

.pg-featured .pg-top {
  padding-top: calc(var(--space-sm) + 16px);
}

.pg-featured {
  border-color: rgba(0, 224, 255, 0.55) !important;
  box-shadow: var(--shadow-glow-lg) !important;
  transform: scale(1.03);
  background: rgba(0, 224, 255, 0.04) !important;
}

.pg-featured:hover {
  transform: scale(1.03) translateY(-6px) !important;
}

.price-glow-border {
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--accent), transparent 60%, var(--accent-2));
  z-index: -1;
  opacity: 0.35;
  pointer-events: none;
}

.faq {
  position: relative;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-card-hover);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-main);
  text-align: left;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--accent);
}

.faq-item.open .faq-q {
  color: var(--accent);
}

.faq-arrow {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  stroke: var(--text-soft);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  stroke: var(--accent);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-a {
  max-height: 300px;
}

.faq-a p {
  padding: 0 var(--space-md) var(--space-md);
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

.section-dark .faq-item {
  background: rgba(0, 16, 22, 0.72);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 50px rgba(0, 17, 22, 0.18);
  backdrop-filter: blur(14px);
}

.section-dark .faq-item.open {
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 24px 70px rgba(0, 17, 22, 0.25);
}

.section-dark .faq-q {
  color: #ffffff;
}

.section-dark .faq-q:hover,
.section-dark .faq-item.open .faq-q {
  color: #00e0ff;
}

.section-dark .faq-a p {
  color: rgba(255, 255, 255, 0.72);
}

.section-dark .faq-arrow {
  stroke: rgba(255, 255, 255, 0.65);
}

.section-dark .faq-item.open .faq-arrow {
  stroke: #00e0ff;
}

.final-cta {
  position: relative;
  background: linear-gradient(90deg, #000000, #161616);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.final-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(0, 224, 255, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.final-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-md);
}

.final-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.0;
}

.final-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.6;
}

.final-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-soft);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.footer-logo {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-soft);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-links a {
  font-size: 13px;
  color: var(--text-soft);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-disclaimer {
  border-top: 1px solid var(--border-soft);
  padding-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-disclaimer p {
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 900px;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.section-dark .section-label,
.section-dark .section-title,
.section-dark .section-title *,
.section-dark .glow-text,
.section-dark .section-sub,
.section-dark .comp-closing,
.section-dark .comp-closing strong,
.section-dark .final-title,
.section-dark .final-title *,
.section-dark .final-sub {
  color: #001116 !important;
  text-shadow: none !important;
}

.section-dark .section-label {
  background: rgba(255, 255, 255, 0.28) !important;
  border-color: rgba(0, 17, 22, 0.25) !important;
  box-shadow: 0 10px 28px rgba(0, 17, 22, 0.10);
}

.section-dark .section-title {
  font-weight: 800;
}

.section-dark .section-sub {
  font-weight: 500;
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-lg);
    padding-top: var(--space-xl);
  }

  .hero-content {
    order: 1;
  }

  .hero-products {
    order: 2;
  }

  .hero-sub {
    margin: 0 auto var(--space-md);
  }

  .hero-seals {
    justify-content: center;
  }

  .secure-purchase {
    margin: var(--space-sm) auto 0;
    margin-bottom: 16px;
  }

  .testi-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .pricing-grid.pg-ref {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .pg-featured {
    transform: none;
  }

  .pg-featured:hover {
    transform: translateY(-6px) !important;
  }
}

@media (max-width: 700px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner> :first-child {
    order: 2;
  }

  .hero-inner> :last-child {
    order: 1;
  }

  .hero-product-single img {
    scale: 1.3 !important;
  }

  .btn1 {
    padding: 20px 70px;
  }

  .section-pad {
    padding: 72px 0;
  }

  .nav-inner {
    padding: 0 var(--space-sm);
  }

  .escolha-grid {
    grid-template-columns: 1fr;
  }

  .comp-desktop {
    display: none;
  }

  .comp-mobile {
    display: flex;
  }

  .comp-table {
    overflow-x: visible;
  }

  .comp-header,
  .comp-row {
    min-width: 0;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-media {
    aspect-ratio: 4 / 3;
  }

  .benefit-icon {
    bottom: 20px;
    left: 20px;
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .benefit-card h3 {
    font-size: 22px;
  }

  .benefit-card p {
    font-size: 14px;
    padding: 0px 18px 20px;
  }

  .final-cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .final-cta-btns .btn {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .pg-body {
    flex-direction: column;
    gap: 18px;
    padding: 18px;
  }

  .pg-product-img {
    width: 100%;
    min-height: 190px;
    border-radius: 20px;
  }

  .pg-product-checkout {
    scale: 1.2;
    margin-top: 40px !important;
  }

  .pg-price-block {
    width: 100%;
    align-items: center;
    text-align: center;
    padding: 18px 14px 16px;
  }

  .pg-unit-label {
    margin-bottom: 2px;
    font-size: 12px;
  }

  .pg-old-price {
    font-size: 14px;
  }

  .pg-only-label {
    font-size: 12px;
    letter-spacing: 2.4px;
    margin-top: 0;
  }

  .pg-main-price {
    justify-content: center;
    margin-top: 2px;
  }

  .pg-main-price sup {
    font-size: 25px;
    margin-top: 8px;
  }

  .pg-big {
    font-size: 80px;
    line-height: 0.9;
  }

  .pg-cents {
    font-size: 25px;
    margin-top: 8px;
  }

  .pg-installment {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
  }

  .pg-features li {
    font-size: 14px;
    line-height: 1.45;
  }

  .secure-purchase {
    width: 280px;
  }

  .section-dark {
    background:
      radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.28), transparent 35%),
      #00e0ff;
  }

  .section-dark .comp-table,
  .section-dark .testi-card,
  .section-dark .faq-item {
    background: rgba(0, 16, 22, 0.78);
  }

  .comparacao::before {
    background-image: url("imgs/comparacao-bg-mob.webp");
    background-position: center top;
  }

  .comparacao::after {
    background: rgba(18, 214, 229, 0.86);
  }

  .testi-video-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .testi-video-card {
    padding: 10px;
  }

  .testi-video-frame {
    border-radius: 16px;
  }
}

.testi-video-card .plyr {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;

  --plyr-color-main: var(--accent);
  --plyr-video-control-color: #ffffff;
  --plyr-video-control-color-hover: #000000;
  --plyr-video-control-background-hover: var(--accent);
  --plyr-video-progress-buffered-background: rgba(255, 255, 255, 0.25);
  --plyr-range-fill-background: var(--accent);
  --plyr-control-radius: 12px;
  --plyr-font-family: var(--font-body);
}

.testi-video-card .plyr__video-wrapper {
  background: #030608;
  border-radius: 18px;
}

.testi-video-card .plyr video {
  object-fit: cover;
}

.testi-video-card .plyr__poster {
  background-size: cover;
}

.testi-video-card .plyr__control--overlaid {
  width: 66px;
  height: 66px;
  background: radial-gradient(circle, rgba(0, 224, 255, 0.95), rgba(0, 153, 204, 0.95));
  color: #000;
  box-shadow:
    0 0 0 8px rgba(0, 224, 255, 0.10),
    0 0 34px rgba(0, 224, 255, 0.45);
}

.testi-video-card .plyr__control--overlaid:hover {
  background: #ffffff;
  color: #000;
  transform: translate(-50%, -50%) scale(1.05);
}

.testi-video-card .plyr--video .plyr__controls {
  padding: 34px 12px 12px;
  background: linear-gradient(180deg, transparent, rgba(3, 6, 8, 0.88));
}

.testi-video-card .plyr__controls .plyr__control {
  color: #ffffff;
}

.testi-video-card .plyr__controls .plyr__control:hover {
  color: #000000;
}

.testi-video-card .plyr__progress input[type="range"],
.testi-video-card .plyr__volume input[type="range"] {
  color: var(--accent);
}

.plyr--full-ui.plyr--video .plyr__control--overlaid {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.plyr--full-ui.plyr--video .plyr__control--overlaid svg {
  margin: 0;
}