/* CSS principal do projeto Mega Pack STL
   Copie para cá os estilos personalizados que estavam inline no HTML original,
   ajustando conforme necessário. */

:root {
  --bg-dark: #050816;
  --bg-light: #ffffff;
  --accent: #ff7a00;
  --accent-soft: rgba(255, 122, 0, 0.12);
  --text-main: #111827;
  --text-muted: #6b7280;
  --radius-lg: 16px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.35);
  --container-width: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #0b1120 0, #020617 55%, #000 100%);
  color: #f9fafb;
  overflow-x: hidden;
}

/* Poppins ExtraBold para títulos */
.section__title {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero {
  padding: 5rem 0 4rem;
  text-align: center;
}

.hero--dark {
  background: radial-gradient(circle at top, #020617 0, #020617 55%, #000 100%);
}

.hero__container {
  display: grid;
  gap: 2.5rem;
}

.hero__content {
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

.hero__title {
  font-size: clamp(2.1rem, 3.4vw, 2.375rem);
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
}

.hero__badge {
  display: inline-block;
  padding: 0.1rem 0.25rem;
  border-radius: 0.4rem;
  background: linear-gradient(135deg, #f97316, #facc15);
  color: #111827;
}

.hero .subtitle {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #e5e7eb;
  font-size: 1rem;
}

.hero__subtitle {
  max-width: 620px;
  margin: 1rem auto 2rem;
  color: #e5e7eb;
  font-size: 0.97rem;
}

.hero__media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero__cta {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.2rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #f97316, #facc15);
  color: #111827;
  font-weight: 800;
  font-size: 0.98rem;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(248, 113, 22, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  min-height: 52px;
}

.btn-primary strong {
  font-weight: 800;
}

.btn-primary--full {
  width: 100%;
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 20px 45px rgba(248, 113, 22, 0.6);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 10px 25px rgba(248, 113, 22, 0.5);
}

.section {
  padding: 3rem 0;
}

.section h2 {
  margin-bottom: 1.5rem;
  color: #f9fafb;
}

.section__title--center {
  text-align: center;
}

.section--light {
  background: #f9fafb;
  color: #111827;
}

.section--light .section__title {
  color: #111827;
}

.section__container--center {
  text-align: center;
}

.section__container.section__container--split {
  display: grid;
  gap: 2rem;
}

.section--dark {
  background: radial-gradient(circle at top, #020617 0, #020617 55%, #000 100%);
  color: #f9fafb;
}

.section-highlight {
  background: radial-gradient(circle at top, rgba(251, 146, 60, 0.12), transparent 60%);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.feature-list li {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.35);
  font-size: 0.95rem;
}

.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 1.25rem;
  display: grid;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.hero-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.hero-benefits li::before {
  content: "✔";
  color: #22c55e;
  font-size: 0.9rem;
  margin-top: 0.1rem;
}

.rating {
  margin-top: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: #fbbf24;
}

.rating__stars {
  letter-spacing: 0.12em;
}

.rating__text {
  font-size: 0.78rem;
  color: #e5e7eb;
}

.video-card {
  background: rgba(15, 23, 42, 0.85);
  border-radius: 1.25rem;
  padding: 1.4rem 1.4rem 1.6rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.video-card--secondary {
  background: #0b1120;
}

.video-card__frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
  background: #020617;
}

.video-card__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card__frame--vertical {
  padding-top: 133.33%;
}

.video-card__frame--wide {
  padding-top: 56.25%;
}

.cards-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.card {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 1rem;
  padding: 1.4rem 1.3rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-soft);
}

.section--light .card {
  background: #ffffff;
  border-color: #e5e7eb;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  font-size: 0.9rem;
  color: #d1d5db;
}

.section--light .card p {
  color: #4b5563;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.65rem;
  font-size: 0.95rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.check-list li::before {
  content: "✔";
  color: #16a34a;
  font-size: 0.9rem;
  margin-top: 0.15rem;
}

.highlight-box {
  background: #0b1120;
  border-radius: 1rem;
  padding: 1.4rem 1.6rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-soft);
  font-size: 0.95rem;
}

.highlight-box h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.highlight-box p {
  margin: 0;
  color: #e5e7eb;
}

.faq {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.faq__item {
  border-radius: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.9);
  padding: 0.9rem 1rem;
}

.faq__item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item p {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.section__subtitle {
  margin: 0.5rem auto 1.5rem;
  max-width: 560px;
  font-size: 0.95rem;
  color: #4b5563;
}

.footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  margin-top: 1rem;
}

.footer p {
  margin: 0;
  text-align: center;
  color: #9ca3af;
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .hero {
    padding-top: 6rem;
  }

  .hero__container {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    align-items: center;
  }

  .hero__content {
    text-align: left;
  }

  .hero__subtitle {
    margin-left: 0;
    margin-right: 0;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section__container.section__container--split {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
    align-items: center;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* BARRA PROMOCIONAL */
.promo-bar {
  background: #c00000;
  color: #f9fafb;
  text-align: center;
  padding: 0.45rem 1rem;
  font-weight: 700;
  font-size: 0.82rem;
}

.promo-text {
  margin: 0;
  text-transform: uppercase;
}

.promo-sub {
  text-transform: none;
  font-weight: 500;
  margin-left: 0.35rem;
}

#countdown-timer {
  color: #fbbf24;
  font-weight: 700;
  font-size: 1rem;
  font-family: monospace;
}

/* CHECK LIST HERO */
.check-list--hero {
  max-width: 700px;
  margin: 1.5rem auto 2rem;
  text-align: left;
}

.section--light .check-list--hero li {
  color: #1f2937;
}

/* BENEFIT CARDS */
.cards-grid--benefits {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .hero__title {
    font-size: clamp(1.8rem, 2.9vw, 2rem);
  }

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

.benefit-card {
  background: #ffffff;
  border-radius: 1.1rem;
  padding: 1.5rem 1.3rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  text-align: center;
}

.benefit-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  color: #f97316;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-card__icon svg {
  width: 100%;
  height: 100%;
}

.benefit-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: #111827;
  font-weight: 700;
}

.benefit-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
}

/* GALLERY CAROUSEL */
.gallery-carousel {
  position: relative;
  margin-top: 1.5rem;
  max-width: 100%;
}

.gallery-carousel__container {
  overflow: hidden;
  border-radius: 1rem;
  position: relative;
  scroll-snap-type: x mandatory;
}

.gallery-carousel__track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.gallery-carousel__slide {
  min-width: 100%;
  width: 100%;
  text-align: center;
  flex-shrink: 0;
  position: relative;
  scroll-snap-align: start;
}

.gallery-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 23, 42, 0.9);
  border: 2px solid rgba(148, 163, 184, 0.4);
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #f9fafb;
  z-index: 10;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.gallery-carousel__btn:hover {
  background: rgba(15, 23, 42, 1);
  border-color: #f97316;
}

.gallery-carousel__btn--prev {
  left: 0.5rem;
}

.gallery-carousel__btn--next {
  right: 0.5rem;
}

.gallery-carousel__btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

.gallery__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 0.9rem;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.6);
  position: relative;
}

.gallery__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery__label {
  display: block;
  width: 100%;
  max-width: 600px;
  margin: 1rem auto 0;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.95), rgba(234, 88, 12, 0.95));
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0.5rem;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  box-sizing: border-box;
}

/* COMPARE BOXES */
.compare {
  border-radius: 1rem;
  padding: 1.4rem 1.3rem;
  border: 2px dashed;
  background: rgba(15, 23, 42, 0.6);
}

.compare h3 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  font-weight: 800;
  color: #f9fafb;
}

.compare ul {
  margin: 0;
  padding-left: 1.2rem;
  color: #e5e7eb;
  display: grid;
  gap: 0.6rem;
  font-size: 0.95rem;
  list-style: none;
}

.compare ul li::before {
  content: "✗";
  color: #ef4444;
  font-weight: 700;
  margin-right: 0.5rem;
}

.compare--danger {
  border-color: rgba(239, 68, 68, 0.6);
  background: rgba(239, 68, 68, 0.08);
}

.compare--success {
  border-color: rgba(34, 197, 94, 0.6);
  background: rgba(34, 197, 94, 0.08);
}

.compare--success ul li::before {
  content: "✓";
  color: #22c55e;
}

.section--light .compare {
  background: #ffffff;
}

.section--light .compare h3 {
  color: #111827;
}

.section--light .compare ul {
  color: #1f2937;
}

/* FEATURE CARDS */
.cards-grid--features {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: #ffffff;
  border-radius: 1.1rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  padding: 1.3rem 1.2rem;
  display: grid;
  gap: 0.75rem;
}

.feature-card__title {
  background: #0f172a;
  color: #f9fafb;
  padding: 0.7rem 0.9rem;
  border-radius: 0.9rem;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  margin: 0;
}

.feature-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #1f2937;
}

/* BONUS CARDS */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.bonus-card {
  background: #ffffff;
  border-radius: 1.1rem;
  padding: 1.3rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.bonus-card--special {
  background: #ffffff;
  border-color: #f97316;
  border-width: 2px;
}

.bonus-card__number {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  color: #ffffff;
  background: linear-gradient(135deg, #f97316, #ea580c);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.2;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.bonus-card__title {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  color: #111827;
  font-weight: 700;
}

.bonus-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 0.9rem;
  overflow: hidden;
  background: #020617;
  margin-bottom: 0.75rem;
}

.bonus-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 2px solid rgba(249, 115, 22, 0.3);
  border-radius: 0.9rem;
  box-sizing: border-box;
}

.bonus-card__description {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.5;
}

.bonus-card__price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.bonus-card__price del {
  color: #9ca3af;
  font-size: 0.9rem;
}

.bonus-card__free {
  color: #22c55e;
  font-weight: 700;
  font-size: 0.95rem;
}

.bonus-special {
  margin-top: 3rem;
  text-align: center;
}

.bonus-special__title {
  font-size: 1.8rem;
  margin: 0 0 0.5rem;
  color: #f9fafb;
  font-weight: 800;
}

.bonus-special__subtitle {
  font-size: 1rem;
  margin: 0 0 1.5rem;
  color: #e5e7eb;
}

.bonus-special__total {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  color: #fbbf24;
  font-weight: 700;
}

/* WHATSAPP TESTIMONIALS CAROUSEL */
.whatsapp-testimonials {
  margin: 2rem 0 3rem;
}

.whatsapp-carousel {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.whatsapp-carousel__container {
  overflow: hidden;
  border-radius: 1rem;
  background: transparent;
  padding: 0;
}

.whatsapp-carousel__track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.whatsapp-carousel__slide {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  scroll-snap-align: start;
  display: flex;
  justify-content: center;
  align-items: center;
}

.whatsapp-carousel__slide {
  min-width: 100%;
  flex-shrink: 0;
  scroll-snap-align: start;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
}

.whatsapp-carousel__slide img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  display: block;
  object-fit: contain;
}

.whatsapp-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 23, 42, 0.9);
  border: 2px solid rgba(148, 163, 184, 0.4);
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #f9fafb;
  z-index: 10;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.whatsapp-carousel__btn:hover {
  background: rgba(15, 23, 42, 1);
  border-color: #f97316;
}

.whatsapp-carousel__btn--prev {
  left: 0.5rem;
}

.whatsapp-carousel__btn--next {
  right: 0.5rem;
}

.whatsapp-carousel__btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

@media (min-width: 768px) {
  .whatsapp-carousel__slide {
    min-width: 50%;
  }
  
  .whatsapp-carousel__slide img {
    max-width: 500px;
  }
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 1.1rem;
  padding: 1.4rem 1.3rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.testimonial-card__stars {
  color: #fbbf24;
  font-size: 1.54rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.testimonial-card__text {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: #1f2937;
  line-height: 1.6;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #e5e7eb;
  color: #4b5563;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  overflow: hidden;
}

.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-card__author strong {
  display: block;
  color: #111827;
  font-size: 0.95rem;
}

.testimonial-card__verified {
  display: block;
  color: #22c55e;
  font-size: 0.8rem;
  margin-top: 0.15rem;
}

/* PRICING CARDS */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  position: relative;
  background: rgba(15, 23, 42, 0.9);
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  border: 2px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.pricing-card--premium {
  border-color: #f97316;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(15, 23, 42, 0.95));
  position: relative;
  padding-top: 3rem;
}

.pricing-card__name {
  margin: 0 0 1rem;
  font-size: 1.3rem;
  color: #f9fafb;
  font-weight: 800;
  text-align: center;
}

.pricing-card__rating {
  text-align: center;
  margin-bottom: 1rem;
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex-grow: 1;
  display: grid;
  gap: 0.6rem;
}

.pricing-card__features li {
  font-size: 0.9rem;
  color: #e5e7eb;
  padding-left: 1.85rem;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 1.275rem;
}

.pricing-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.275rem;
  height: 1.275rem;
  background: #22c55e;
  color: #ffffff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.75rem;
}

.pricing-card__price {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing-card__old-price {
  display: block;
  color: #ef4444;
  text-decoration: line-through;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  opacity: 0.9;
}

.pricing-card__label {
  display: block;
  color: #e5e7eb;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.pricing-card__value {
  display: block;
  color: #22c55e;
  font-size: 3.36rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(34, 197, 94, 0.4);
}

.pricing-card__badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.pricing-card__security-text {
  margin: 0;
  font-size: 0.85rem;
  color: #9ca3af;
  text-align: center;
  line-height: 1.4;
}

.badge {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(249, 115, 22, 0.2);
  color: #f97316;
  border: 1px solid rgba(249, 115, 22, 0.4);
}

.badge--bestseller {
  background: rgba(249, 115, 22, 0.2);
  color: #f97316;
  border: 1px solid rgba(249, 115, 22, 0.4);
}

.badge--top-right {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  margin-top: 0;
  background: #0f172a;
  border-top: 3px solid #f97316;
  border-left: 2px solid rgba(249, 115, 22, 0.4);
  border-right: 2px solid rgba(249, 115, 22, 0.4);
  border-bottom: none;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* GUARANTEE BADGE */
.guarantee-badge {
  margin-bottom: 1.5rem;
}

.guarantee-badge__outer {
  width: 180px;
  height: 180px;
  margin: 0 auto;
  background: #fbbf24;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.guarantee-badge__inner {
  width: 100%;
  height: 100%;
  background: #1f2937;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
}

.guarantee-badge__text-top {
  font-size: 0.65rem;
  color: #fbbf24;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.guarantee-badge__number {
  font-size: 2rem;
  color: #ffffff;
  font-weight: 800;
  line-height: 1;
  margin: 0.25rem 0;
}

.guarantee-badge__text-bottom {
  font-size: 0.65rem;
  color: #fbbf24;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* FOOTER */
.footer {
  background: radial-gradient(circle at top, #020617 0, #020617 55%, #000 100%);
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  margin-top: 2rem;
}

.footer__content {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__brand {
  text-align: center;
}

.footer__title {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  color: #f9fafb;
  font-weight: 800;
}

.footer__description {
  margin: 0;
  color: #9ca3af;
  font-size: 0.9rem;
}

.footer__contact {
  text-align: center;
}

.footer__contact h4 {
  margin: 0 0 0.5rem;
  color: #f9fafb;
  font-size: 1rem;
}

.footer__contact p {
  margin: 0;
  color: #9ca3af;
  font-size: 0.9rem;
}

.footer__contact a {
  color: #f97316;
  text-decoration: none;
}

.footer__contact a:hover {
  text-decoration: underline;
}

.footer__links {
  text-align: center;
  color: #9ca3af;
  font-size: 0.85rem;
}

.footer__links a {
  color: #9ca3af;
  text-decoration: none;
}

.footer__links a:hover {
  color: #f97316;
}

.footer__bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.footer__bottom p {
  margin: 0.5rem 0;
  color: #9ca3af;
  font-size: 0.85rem;
}

.footer__disclaimer {
  font-size: 0.75rem !important;
  color: #6b7280 !important;
  max-width: 700px;
  margin: 1rem auto 0 !important;
}

@media (min-width: 768px) {
  .gallery-carousel__slide {
    min-width: 50%;
  }
  
  .gallery-carousel__track {
    display: flex;
  }

  .bonus-grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, minmax(300px, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(300px, 1fr));
  }

  .footer__content {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }

  .footer__brand,
  .footer__contact,
  .footer__links {
    text-align: left;
  }

  .whatsapp-carousel__slide img {
    max-width: 400px;
  }
}

/* MODAL DE UPGRADE */
.upgrade-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.upgrade-modal.active {
  display: flex;
}

.upgrade-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
}

.upgrade-modal__content {
  position: relative;
  background: #ffffff;
  border-radius: 1.5rem;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.upgrade-modal__header {
  background: linear-gradient(135deg, #f97316, #ea580c);
  padding: 1.5rem;
  text-align: center;
}

.upgrade-modal__header h2 {
  margin: 0;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.upgrade-modal__body {
  padding: 2rem 1.5rem;
}

.upgrade-modal__subtitle {
  margin: 0 0 0.75rem;
  text-align: center;
  color: #f97316;
  font-size: 1.1rem;
  font-weight: 600;
}

.upgrade-modal__badge {
  display: inline-block;
  background: #fef3c7;
  color: #ea580c;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0 auto 1.5rem;
  display: block;
  text-align: center;
  width: fit-content;
}

.upgrade-modal__pricing {
  text-align: center;
  margin-bottom: 1.5rem;
}

.upgrade-modal__old-price {
  display: block;
  color: #9ca3af;
  text-decoration: line-through;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.upgrade-modal__label {
  margin: 0.5rem 0;
  color: #374151;
  font-size: 0.95rem;
}

.upgrade-modal__new-price {
  margin: 0.5rem 0;
  color: #f97316;
  font-size: 3rem;
  font-weight: 900;
  font-family: "Poppins", sans-serif;
  line-height: 1;
}

.upgrade-modal__savings {
  margin: 0.5rem 0 0;
  color: #22c55e;
  font-weight: 700;
  font-size: 1rem;
}

.upgrade-modal__benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.upgrade-modal__benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #374151;
  font-size: 1rem;
}

.upgrade-modal__check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.275rem;
  height: 1.275rem;
  background: #22c55e;
  color: #ffffff;
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.75rem;
}

.upgrade-modal__cta {
  margin-bottom: 1rem;
  text-decoration: none;
  display: inline-flex;
}

.upgrade-modal__skip {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 0.85rem;
  text-align: center;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s ease;
}

.upgrade-modal__skip:hover {
  color: #6b7280;
  text-decoration: underline;
}