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

:root {
  --red: #ff1a1a;
  --red-hover: #e60000;
  --red-soft: rgba(255, 26, 26, 0.12);
  --red-border: rgba(255, 26, 26, 0.35);
  --green: #22c55e;
  --green-dark: #16a34a;
  --whatsapp: #25d366;
  --black: #0a0a0a;
  --black-2: #111111;
  --black-3: #1a1a1a;
  --white: #ffffff;
  --gray: #888888;
  --gray-light: #a0a0a0;
  --gray-dark: #333333;
  --gray-border: #222222;
  --font: 'Poppins', sans-serif;
  --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: auto;
  background: var(--black);
}

body {
  font-family: var(--font);
  color: var(--white);
  background: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

#smooth-wrapper {
  width: 100%;
}

#smooth-content {
  width: 100%;
  min-height: 100vh;
}

@media (min-width: 768px) {
  #smooth-wrapper {
    overflow: hidden;
  }

  #smooth-content {
    will-change: transform;
  }
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-border);
  transition: background 0.4s var(--transition);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.header__logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.header__logo-text {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.header__nav {
  display: none;
}

.header__menu {
  display: flex;
  gap: 36px;
}

.header__link {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gray);
  transition: color 0.3s var(--transition);
  position: relative;
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s var(--transition);
}

.header__link:hover {
  color: var(--white);
}

.header__link:hover::after {
  width: 100%;
}

.header__whatsapp {
  display: none;
}

.header__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s var(--transition), opacity 0.3s var(--transition);
  border-radius: 2px;
}

.header__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.header__toggle.active span:nth-child(2) {
  opacity: 0;
}

.header__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s var(--transition);
  border-radius: 100px;
  border: none;
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background: var(--green);
  color: #000;
  box-shadow: 0 4px 20px rgba(34,197,94,0.3);
}

.btn--primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(34,197,94,0.4);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
}

.btn--whatsapp:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.btn--youtube {
  background: var(--red-hover);
  color: #fff;
}

.btn--youtube:hover {
  background: #cc0000;
  transform: translateY(-2px);
}

.btn--small {
  padding: 10px 20px;
  font-size: 0.8rem;
}

.btn--large {
  padding: 18px 36px;
  font-size: 1rem;
}

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

.btn--block {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 12px 24px;
  font-size: 0.85rem;
}

.btn__icon {
  display: flex;
  align-items: center;
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--transition);
}

.btn:hover .btn__icon {
  transform: translateX(4px);
}

.btn__icon svg {
  width: 100%;
  height: 100%;
}

/* SECTION HEADER */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-soft);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 8px;
  border: 1px solid var(--red-border);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-shadow: 0 0 40px rgba(255,255,255,0.1), 0 0 80px rgba(255,255,255,0.05);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 26, 26, 0.08), transparent 60%);
  pointer-events: none;
}

.hero__inner {
  text-align: center;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.hero__media {
  margin-bottom: 32px;
}

.hero__logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid var(--red-border);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--gray-border);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--gray-light);
  letter-spacing: 0.02em;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--green);
}

.hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 24px;
}

.hero__line {
  display: flex;
  overflow: hidden;
  justify-content: center;
  gap: 0.5ch;
}

.hero__word {
  display: block;
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero__word--red {
  color: var(--red);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero__sub strong {
  color: var(--white);
}

.hero__stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero__stat {
  text-align: center;
}

.hero__stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1.2;
}

.hero__stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.hero__cta {
  display: flex;
  justify-content: center;
}

/* TRUST BAR */
.trust {
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
  background: var(--black-2);
  padding: 24px 0;
}

.trust__grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust__item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust__item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.trust__item span {
  font-size: 0.8rem;
  color: var(--gray);
}

.trust__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust__icon--red { background: var(--red-soft); color: var(--red); }
.trust__icon--green { background: rgba(34,197,94,0.12); color: var(--green); }
.trust__icon--blue { background: rgba(59,130,246,0.12); color: #3b82f6; }

/* ABOUT */
.about {
  padding: 120px 0;
  border-top: 1px solid var(--gray-border);
  text-align: center;
}

.about__grid {
  max-width: 760px;
  margin: 0 auto;
}

.about__content {
}

.about__text {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about__text strong {
  color: #fff;
}

.about__text:last-child {
  margin-bottom: 0;
}

/* VANTAGENS */
.vantagens {
  padding: 120px 0;
  border-top: 1px solid var(--gray-border);
}

.vantagens__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-border);
  border: 1px solid var(--gray-border);
  border-radius: 20px;
  overflow: hidden;
}

.vantagens__card {
  background: var(--black-2);
  padding: 48px 36px;
  transition: background 0.4s var(--transition);
  cursor: default;
}

.vantagens__card:hover {
  background: var(--black-3);
}

.vantagens__num {
  font-size: 0.8rem;
  color: var(--gray);
  letter-spacing: 0.2em;
  font-weight: 600;
  margin-bottom: 24px;
  display: block;
}

.vantagens__icon {
  width: 48px;
  height: 48px;
  color: var(--gray-light);
  margin-bottom: 24px;
  transition: color 0.4s var(--transition);
}

.vantagens__card:hover .vantagens__icon {
  color: var(--red);
}

.vantagens__icon svg {
  width: 100%;
  height: 100%;
}

.vantagens__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.vantagens__desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

/* PACKS */
.packs {
  padding: 120px 0;
  border-top: 1px solid var(--gray-border);
  background: var(--black-2);
}

.packs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.packs__card {
  background: var(--black-3);
  border: 1px solid var(--gray-border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s var(--transition);
  display: flex;
  flex-direction: column;
}

.packs__card .packs__body {
  flex: 1;
}

.packs__card.packs__card--featured {
  border: 2px solid var(--red) !important;
  position: relative;
  margin-top: 24px;
  overflow: visible;
}

.packs__card.packs__card--featured::before {
  content: "MAIS VENDIDO";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 100px;
  z-index: 2;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(255,26,26,0.35);
}

.packs__card:hover {
  border-color: rgba(255, 26, 26, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.packs__img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--black);
}

.packs__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s var(--transition);
}

.packs__card:hover .packs__img img {
  transform: scale(1.08);
}

.packs__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.packs__badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-top: auto;
  align-self: center;
}

.packs__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.packs__desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* YOUTUBE */
.youtube {
  padding: 100px 0;
  border-top: 1px solid var(--gray-border);
}

.youtube__card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 32px;
  background: linear-gradient(135deg, var(--black-3), var(--black-2));
  border: 1px solid var(--gray-border);
  border-radius: 24px;
}

.youtube__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--red-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
}

.youtube__title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.youtube__desc {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.youtube__desc strong {
  color: var(--white);
}

.youtube__subs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--gray-border);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 24px;
}

/* DEPOIMENTOS */
.depoimentos {
  padding: 120px 0;
  border-top: 1px solid var(--gray-border);
}

.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.depoimentos__card {
  background: var(--black-3);
  border: 1px solid var(--gray-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s var(--transition);
  display: flex;
  flex-direction: column;
}

.depoimentos__card:hover {
  border-color: var(--red-border);
  transform: translateY(-4px);
}

.depoimentos__stars {
  display: flex;
  gap: 2px;
  padding: 16px 16px 0;
}

.depoimentos__stars svg {
  width: 14px;
  height: 14px;
  fill: #facc15;
  color: #facc15;
}

.depoimentos__media {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.depoimentos__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--transition);
}

.depoimentos__card:hover .depoimentos__media img {
  transform: scale(1.05);
}

.depoimentos__text {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
  padding: 16px 16px 0;
  flex: 1;
  font-style: italic;
}

.depoimentos__author {
  padding: 16px;
  border-top: 1px solid var(--gray-border);
  margin-top: 16px;
}

.depoimentos__author strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.depoimentos__author span {
  font-size: 0.75rem;
  color: var(--gray);
}

/* PRICING */
.pricing {
  padding: 100px 0;
  border-top: 1px solid var(--gray-border);
  background: linear-gradient(to bottom, #0d0d0d, #000);
  text-align: center;
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.pricing__box {
  max-width: 520px;
  margin: 0 auto;
  padding: 48px 36px;
  background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
  border: 1px solid rgba(255, 26, 26, 0.2);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(255, 26, 26, 0.06), 0 20px 60px rgba(0,0,0,0.5);
}

.pricing__box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 26, 26, 0.08), transparent 60%);
  pointer-events: none;
}

.pricing__box::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,26,26,0.3), transparent 40%, transparent 60%, rgba(255,26,26,0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.pricing__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.pricing__discount-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, var(--red), #cc0000);
  color: #fff;
  padding: 8px 24px;
  border-radius: 16px;
  line-height: 1;
  box-shadow: 0 4px 20px rgba(255, 26, 26, 0.4);
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgba(255, 26, 26, 0.4); }
  50% { transform: scale(1.05); box-shadow: 0 4px 30px rgba(255, 26, 26, 0.6); }
}

.pricing__discount-pct {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.pricing__discount-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.9;
}

.pricing__urgency {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--gray-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

.pricing__urgency-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: blink-dot 1.4s ease-in-out infinite;
}

@keyframes blink-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.pricing__old {
  display: block;
  color: rgba(255,255,255,0.3);
  text-decoration: line-through;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.pricing__current {
  margin-bottom: 4px;
  line-height: 1;
  position: relative;
  display: inline-block;
}

.pricing__current::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: -20%;
  right: -20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  border-radius: 2px;
  opacity: 0.5;
}

.pricing__currency {
  font-size: 1.8rem;
  color: rgba(255,255,255,0.5);
  vertical-align: top;
  position: relative;
  top: 6px;
  font-weight: 700;
}

.pricing__value {
  font-size: clamp(4rem, 10vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  text-shadow: 0 0 40px rgba(34, 197, 94, 0.3);
  line-height: 1;
}

.pricing__cents {
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
}

.pricing__save {
  font-size: 1rem;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 20px;
  background: rgba(34,197,94,0.1);
  display: block;
  padding: 4px 16px;
  border-radius: 100px;
  border: 1px solid rgba(34,197,94,0.2);
}

.pricing__stock {
  margin-bottom: 28px;
}

.pricing__stock-bar {
  display: block;
  width: 100%;
  max-width: 280px;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  margin: 0 auto 10px;
  overflow: hidden;
}

.pricing__stock-fill {
  display: block;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, var(--red), #ff4444);
  border-radius: 10px;
}

.pricing__stock-text {
  font-size: 0.8rem;
  color: var(--gray-light);
}

.pricing__stock-text strong {
  color: var(--red);
}

.pricing__features {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.pricing__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray-light);
  font-weight: 600;
}

.pricing__feature svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}

.btn--pulse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 20px 36px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green), #16a34a);
  color: #000;
  box-shadow: 0 4px 24px rgba(34, 197, 94, 0.4);
  transition: all 0.3s var(--transition);
  animation: btn-glow 2.5s ease-in-out infinite;
  line-height: 1;
}

.btn--pulse:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 40px rgba(34, 197, 94, 0.5);
}

@keyframes btn-glow {
  0%, 100% { box-shadow: 0 4px 24px rgba(34, 197, 94, 0.4); }
  50% { box-shadow: 0 4px 40px rgba(34, 197, 94, 0.7), 0 0 60px rgba(34, 197, 94, 0.15); }
}

.btn__glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.15), transparent 60%);
  pointer-events: none;
  animation: btn-shine 4s ease-in-out infinite;
}

@keyframes btn-shine {
  0% { transform: translateX(-100%) rotate(25deg); }
  100% { transform: translateX(100%) rotate(25deg); }
}

.pricing__secure {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.pricing__secure span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pricing__secure svg {
  width: 14px;
  height: 14px;
}

.pricing__guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 16px;
  background: rgba(34,197,94,0.06);
  border: 1px solid rgba(34,197,94,0.15);
  border-radius: 12px;
  font-size: 0.78rem;
  color: var(--gray-light);
}

.pricing__guarantee svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex-shrink: 0;
}

.pricing__social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
  color: var(--gray);
  font-size: 0.9rem;
}

.pricing__social-proof strong {
  color: var(--white);
}

.pricing__proof-avatars {
  display: flex;
}

.pricing__proof-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #0d0d0d;
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
}

.pricing__proof-avatar:first-child {
  margin-left: 0;
}

/* FAQ */
.faq {
  padding: 120px 0;
  border-top: 1px solid var(--gray-border);
}

.faq__list {
  max-width: 640px;
  margin: 0 auto;
}

.faq__item {
  background: var(--black-3);
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s var(--transition);
}

.faq__item.open {
  border-color: var(--red-border);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 20px 24px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  transition: color 0.3s var(--transition);
  gap: 16px;
}

.faq__question:hover {
  color: var(--red);
}

.faq__question svg {
  flex-shrink: 0;
  transition: transform 0.3s var(--transition);
  color: rgba(255,255,255,0.3);
}

.faq__item.open .faq__question svg {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq__item.open .faq__answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq__answer p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

/* CTA */
.cta {
  padding: 100px 0;
  background: var(--red-hover);
  text-align: center;
}

.cta__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.cta__desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
}

.cta__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta__actions .btn--primary {
  background: #fff;
  color: var(--red-hover);
  box-shadow: none;
}

.cta__actions .btn--primary:hover {
  background: #f0f0f0;
}

.cta__actions .btn--whatsapp {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
}

.cta__actions .btn--whatsapp:hover {
  background: var(--whatsapp);
  border-color: var(--whatsapp);
}

.cta__mini {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.cta__mini span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cta__mini svg {
  width: 16px;
  height: 16px;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--gray-border);
  padding: 60px 0 30px;
  background: #000;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer__logo img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.footer__logo span {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.footer__tagline {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gray-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  transition: all 0.3s var(--transition);
}

.footer__social-link:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

.footer__links h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  color: var(--white);
}

.footer__links ul li {
  margin-bottom: 10px;
}

.footer__links a {
  font-size: 0.85rem;
  color: var(--gray);
  transition: color 0.3s var(--transition);
}

.footer__links a:hover {
  color: var(--white);
}

.footer__links ul li:last-child {
  color: var(--gray);
  font-size: 0.85rem;
}

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--gray-border);
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--gray-dark);
}

/* SOCIAL TOAST */
.social-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  max-width: 340px;
  width: calc(100% - 48px);
  background: var(--black-3);
  border: 1px solid #404040;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  overflow: hidden;
  transition: all 0.5s ease-out;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
}

.social-toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.social-toast__bar {
  height: 4px;
  background: linear-gradient(to right, var(--green), #4ade80, #10b981);
  width: 100%;
}

.social-toast__body {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
}

.social-toast__thumb {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  overflow: hidden;
  background: #262626;
  flex-shrink: 0;
}

.social-toast__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.social-toast__content {
  flex: 1;
  min-width: 0;
}

.social-toast__title {
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.social-toast__sub {
  font-size: 0.75rem;
  color: var(--gray-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}

.social-toast__time {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
}

.social-toast__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #262626;
  border: none;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.social-toast__close:hover {
  background: #333;
  color: #fff;
}

/* MOBILE OVERLAY */
@media (min-width: 768px) {
  .hero__line:nth-child(1),
  .hero__line:nth-child(2) {
    display: inline;
  }

  .header__nav {
    display: block;
  }

  .header__whatsapp {
    display: inline-flex;
  }

  .header__toggle {
    display: none;
  }
}

@media (max-width: 767px) {
  .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .header__right {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .header__toggle {
    z-index: 1000;
    padding: 8px;
  }

  .header__toggle span {
    width: 26px;
    height: 3px;
  }

  .container {
    padding: 0 16px;
  }

  .header__inner {
    padding: 0 16px;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--black-2);
    border-left: 1px solid var(--gray-border);
    padding: 100px 40px 40px;
    transition: right 0.4s var(--transition);
    display: block;
    z-index: 999;
  }

  .header__nav.open {
    right: 0;
  }

  .header__nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .header__nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  .header__menu {
    flex-direction: column;
    gap: 24px;
  }

  .header__link {
    font-size: 1rem;
  }

  .header__whatsapp {
    font-size: 0;
    gap: 0;
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .header__whatsapp svg {
    width: 20px;
    height: 20px;
  }

  .hero {
    min-height: 85vh;
    padding-top: 80px;
  }

  .hero__inner {
    padding: 40px 0;
  }

  .hero__word {
    font-size: clamp(2.8rem, 10vw, 3.6rem);
  }

  .hero__sub {
    font-size: 0.85rem;
  }

  .hero__logo {
    width: 80px;
    height: 80px;
  }

  .hero__stats {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero__stat-num {
    font-size: 1.4rem;
  }

  .hero__stat-label {
    font-size: 0.65rem;
  }

  .hero__cta .btn {
    font-size: 0.8rem;
    padding: 12px 20px;
  }

  .hero__badge {
    font-size: 0.7rem;
    padding: 6px 14px;
  }

  .trust__grid {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    max-width: 320px;
    margin: 0 auto;
  }

  .trust__item {
    justify-content: flex-start;
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
  }

  .vantagens {
    padding: 60px 0;
  }

  .vantagens__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .vantagens__card {
    padding: 28px 20px;
    text-align: center;
  }

  .vantagens__num {
    margin-bottom: 16px;
  }

  .vantagens__icon {
    margin-bottom: 16px;
  }

  .vantagens__title {
    font-size: 1rem;
  }

  .vantagens__desc {
    font-size: 0.85rem;
  }

  .packs {
    padding: 60px 0;
  }

  .packs__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .packs__card--featured {
    margin-top: 20px;
  }

  .depoimentos {
    padding: 60px 0;
  }

  .depoimentos__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pricing {
    padding: 60px 0;
  }

  .pricing__box {
    padding: 28px 16px;
  }

  .pricing__current {
    font-size: 3rem;
  }

  .pricing__features {
    gap: 8px;
    flex-direction: column;
    align-items: center;
  }

  .pricing__secure {
    gap: 8px;
    font-size: 0.75rem;
    flex-direction: column;
  }

  .btn--pulse {
    padding: 14px 20px;
    font-size: 0.85rem;
  }

  .about {
    padding: 60px 0;
  }

  .about__text {
    font-size: 0.95rem;
  }

  .youtube {
    padding: 60px 0;
  }

  .youtube__card {
    padding: 28px 20px;
  }

  .faq {
    padding: 60px 0;
  }

  .cta {
    padding: 60px 0;
  }

  .cta__actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .cta__actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .cta__mini {
    flex-direction: column;
    gap: 8px;
    font-size: 0.75rem;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .footer__tagline {
    max-width: none;
  }

  .footer__socials {
    justify-content: center;
  }

  .social-toast {
    bottom: 16px;
    left: 16px;
    width: calc(100% - 32px);
    max-width: none;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .section-tag {
    font-size: 0.65rem;
  }

  .vantagens__num {
    font-size: 1.5rem;
  }

  .pricing__discount-badge {
    width: 76px;
    height: 76px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    gap: 0;
  }

  .pricing__discount-pct {
    font-size: 1.3rem;
    line-height: 1;
  }

  .pricing__discount-label {
    font-size: 0.55rem;
    line-height: 1;
  }

  .hero__word--red {
    text-shadow: 0 0 20px rgba(255, 26, 26, 0.3);
  }
}
