﻿:root {
    --primary: #3a0f00;
    --primary-dark: #a23c18;
    --primary-light: #c57a45;
    --accent: #d0c6bc;
    --gold: #FCD34D;
    --success: #10B981;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-600: #4B5563;
    --gray-800: #1F2937;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(107, 70, 193, 0.1);
    --shadow-lg: 0 10px 40px rgba(107, 70, 193, 0.15);
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1)
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');

/* Container que esconde o excesso */
.ticker-container {
    width: 100%;
    overflow: hidden;
    background-color: #990000;
    white-space: nowrap;
    padding: 0;
}

/* Faixa animada */
.ticker-wrapper {
    display: inline-flex;
    animation: scroll 20s linear infinite;
}

/* Texto */
.ticker-content {
    color: #F5F5F5;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 500;
    padding-right: 0;
}

/* Animação */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-bar {
    width: 100%;
    height: 60px;              /* ajuste conforme o layout */
    display: flex;
    align-items: center;       /* centraliza verticalmente */
    justify-content: center;   /* centraliza horizontalmente */
    background-color: #ffffff; /* fundo branco como no exemplo */
}

.logo-bar img {
    max-height: 45px;          /* controla o tamanho do logo */
    width: auto;
    display: block;
}
.img2 img {
    max-height: 45px;        /* controla o tamanho do logo */
    width: auto;
    display: block;
}

/* ===== BORDA DOURADA PREMIUM - BEST VALUE ===== */

.pricing-card.featured {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
}

/* Anel dourado animado */
.pricing-card.featured::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 18px;
  padding: 3px;
  background: conic-gradient(
    from 0deg,
    #b8860b,
    #ffd700,
    #fff5b1,
    #ffd700,
    #b8860b
  );
  animation: rotateGold 4s linear infinite;
  z-index: -1;
}

/* Fundo interno branco */
.pricing-card.featured::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  border-radius: 16px;
  z-index: -1;
}

/* Animação de rotação */
@keyframes rotateGold {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* POPUP FELIPE*/

.purchase-notification {
    position: fixed;
    bottom: ;: 100px;
    left: 25px;
    background: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1000;
    animation: slideIn .5s cubic-bezier(0.68, -0.55, 0.265, 1.55)
}

@keyframes slideIn {
    from {
        transform: translateX(-120%);
        opacity: 0
    }

    to {
        transform: translateX(0);
        opacity: 1
    }
}

@keyframes slideOut {
    to {
        transform: translateX(-120%);
        opacity: 0
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.notification-text {
    display: flex;
    flex-direction: column
}

.notification-text strong {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 14px
}

.notification-text span {
    font-size: 12px;
    color: var(--gray-600)
}


@media (max-width: 480px) {
  .purchase-notification {
    top: 150px;   /* fixa mais acima na tela */
    bottom: auto;
    height: 60px;
  }
}


  .purchase-notification img {
    width: 40px;
    height: 40px;
  }

  .notification-text strong {
    font-size: 12px;
  }

  .notification-text span {
    font-size: 11px;
  }
}

  .purchase-notification{ bottom: 240px; }
}

/*END POPUP*/

.logo-bar2 img {
    max-height: 100px;          /* controla o tamanho do logo */
    width: auto;
    display: flex;
}

.footer {
            background-color: #333;
            color: white;
            text-align: center;
            width: 100%;
            padding: 20px 0; /* Padding interno apenas para o texto não colar na borda */
        }


:root{
  --text:#111827;
  --muted:#6b7280;
  --line:#e5e7eb;
  --accent:#0ea5e9;
  --bg:#ffffff;
  --shadow:0 10px 30px rgba(0,0,0,.08);
  --radius:14px;
  --max:980px;
}
*{box-sizing:border-box}
body{
    
margin: 0;
            padding: 0;
            box-sizing: border-box;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
}

/* HEADER */
.topbar{
display: flex;
align-items: center;
justify-content: center;
background: #FF0000;
color: #ffffff
}
.topbar-inner{
  max-width:var(--max);
  margin:0 auto;
  padding:12px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.logo-placeholder{
  border:2px dashed var(--line);
  padding:6px 16px;
  font-weight:800;
  font-size:14px;
  border-radius:10px;
  color:var(--muted);
}

/* NAV */
.nav{
  border-top:1px solid var(--line);
}
.nav-inner{
  max-width:var(--max);
  margin:0 auto;
  padding:10px 16px;
  display:flex;
  gap:18px;
  overflow:auto;
}
.nav a{
  text-decoration:none;
  color:#111;
  font-weight:700;
  font-size:14px;
}

/* PAGE */
.page{
  max-width:var(--max);
  margin:0 auto;
}

/* BADGE */
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#f3f4f6;
  padding:6px 14px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
}
.badge span{
  width:8px;
  height:8px;
  background:var(--accent);
  border-radius:50%;
}

.breaking-bar {
    background: #d60000;
    color: #fff;
    padding: 12px 20px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breaking-bar span {
    font-weight: normal;
}

.close-btn {
    font-size: 20px;
    cursor: pointer;
}

/* ===== MAIN HEADER ===== */
.main-header {
    background: #0c1b2a;
    color: #fff;
    padding: 14px 18px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LEFT SIDE */
.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* LOGO */
.logo img {
    height: 35px;
}

/* LIVE */
.live-tag {
    background: red;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 3px;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.85;
}

/* RIGHT SIDE */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.watch {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: bold;
}

.watch-dot {
    width: 8px;
    height: 8px;
    background: red;
    border-radius: 50%;
}

/* MENU ICON */
.menu-icon {
    width: 22px;
    cursor: pointer;
    display: none; /* escondido no desktop */
}

.menu-icon div {
    height: 2px;
    background: #fff;
    margin: 5px 0;
}

/* ===== DESKTOP BASE (vale para PC por padrão) ===== */

/* limita e centraliza o header no desktop */
.header-container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px;
}

/* headline no topo (no PC estava sem regra, ficava “estranho”) */
.headline{
  font-size: 20px;
  font-weight: 900;
  margin: 14px 0;
  line-height: 1.15;
  text-align: center;
}

.headline2{
  font-size: 18px;
  font-weight: 800;
  margin: 14px 0 10px;
  line-height: 1.15;
  text-align: center;
  color:#FF0000;
}

/* meta se você usar */
.meta{
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
  margin: 10px;
  text-align: center;
}

.meta2{
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  color: #212129;
  font-weight: 700;
  margin: 10px;
  text-align:center ;
  font-weight: 700;
}


/* ===== VSL (no seu CSS estava travado em max-width:400px, fica minúsculo no PC) ===== */
.vsl-section{
  padding: 10px 24px
  display: flex;
  justify-content: center;
}

.vsl-container{
  width: 100%;
  margin: 8px;/* << AQUI melhora muito no desktop */
}

vturb-smartplayer{
  display:block;
  width:100%;
}

/* badge “A live” */
.livestart{
  display:flex;
  justify-content:center;
  align-items:center;
  margin: 10px 0 16px;
}

#live-counter{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #ffffff;
  color: #111111;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow:
    0 4px 12px rgba(0,0,0,0.08),
    0 1px 2px rgba(0,0,0,0.04);
  user-select: none;
}

.live-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e02020;
  box-shadow: 0 0 0 rgba(224, 32, 32, 0.6);
  animation: pulse 1.2s infinite;
}

.live-text{
  font-weight: 700;
  letter-spacing: 0.4px;
}

.sep{ color:#666; }

.views{
  color:#111;
  font-weight:400;
}
.views strong{ font-weight:700; }

@keyframes pulse{
  0%{ box-shadow:0 0 0 0 rgba(224,32,32,.45); transform:scale(1); }
  70%{ box-shadow:0 0 0 8px rgba(224,32,32,0); transform:scale(1.08); }
  100%{ box-shadow:0 0 0 0 rgba(224,32,32,0); transform:scale(1); }
}

/* ===== PRICING (grid no desktop) ===== */
.smartplayer-scroll-event{ margin-top: 40px; }
.pricing-grid{
  display:grid;
  gap:24px;
}

@media (min-width: 900px){
  .pricing-grid{ grid-template-columns: repeat(3, 1fr); }
}

/* ===== imagens/selos ===== */
.img2{
  display:flex;
  justify-content:center;
  align-items:center;
  margin: 8px;
}

/* ===== MOBILE (mantém sua disposição original) ===== */
@media (max-width: 768px){

  .nav-links{ display:none; }
  .live-tag{ display:none; }
  .menu-icon{ display:block; }
  .breaking-bar{ font-size: 13px; padding: 10px; }
  .logo img{ height: 28px; }

  /* mantém seu “look” mobile */
  .headline{
    font-size:18px;
    font-weight:900;
    margin:14px 14px 10px;
    line-height:1.15;
    text-align:center;
  }

  .headline2{
    font-size:16px;
    font-weight:800;
    margin:14px 0 10px;
    line-height:1.15;
    text-align:center;
    justify-items:center;
    color:#FF0000;
  }

  .meta{
    font-size:13px;
    color:var(--muted);
    font-weight:700;
    margin:10px;
    text-align:center;
  }

  .vsl-section{
    padding: 6px 6px;
    display:flex;
    justify-content:center;
  }

  .vsl-container{
    width:100%;
    max-width: 400px;  /* igual ao seu mobile */
  }

  /* ajuste fino do badge no mobile */
  #live-counter{
    font-size: 14px;
    padding: 9px 14px;
    gap: 8px;
  }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: #fff;
    -webkit-font-smoothing: antialiased
}

h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem)
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem)
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem)
}

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .5s ease, visibility .5s ease
}

.loader {
    width: 60px;
    height: 60px;
    position: relative
}

.loader-circle {
    width: 100%;
    height: 100%;
    border: 4px solid hsla(0, 0%, 100%, .2);
    border-top-color: #fcd34d;
    border-radius: 50%;
    animation: spin 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.loader-text {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14px;
    letter-spacing: 1px
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.progress-bar {
    background: hsla(0, 0%, 100%, .95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(229, 231, 235, .5);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100
}

.steps {
    display: flex;
    justify-content: center;
    gap: 20px
}

.step {
    padding: 6px 18px;
    border-radius: 20px;
    background: var(--primary);
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition)
}

.step.active {
    background: var(--primary);
    color: #fff;
    transform: scale(1.05)
}

.hero {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    color: #fff;
    padding: 60px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(159, 122, 234, 0.2) 0%, transparent 70%);
    border-radius: 50%
}

.hero-title {
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -0.02em
}

.text-gradient {
    color: var(--gold)
}

.rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: hsla(0, 0%, 100%, .1);
    padding: 8px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px)
}

.stars {
    color: var(--gold);
    font-size: 20px
}

.smartplayer-scroll-event {
    padding: 30px 0;
    background: rgba(0, 0, 0, 0)
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 30px
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 2px solid rgba(0, 0, 0, 0)

}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg)
}

.pricing-card.featured {
    border-color: var(--primary-dark);
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(107, 70, 193, .2)
      cursor: pointer;

}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px)
}

.featured-badge {
    position: absolute;
    top: -2px;
    left: -90px;
    background-color: #f59e0b;
    color: #000;
    padding: 8px 20px;
    font-weight: 700;
    font-size: 21px;
    border-radius: 0 0 12px 12px;
    z-index: 10;
    text-align: center;
    margin-left: 50%
}

.card-header {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    padding: 20px;
    text-align: center
}

.card-title {
    margin-bottom: 5px;
    color: #fff;
    font-size: 1.25rem
}

.card-subtitle {
    opacity: .9;
    font-size: 14px;
    color: #fff
}

.card-body {
    padding: 25px;
    text-align: center
}

.product-image {
    position: relative;
    margin-bottom: 25px;
    transform: scale(0.9);
    transition: var(--transition)
}

.pricing-card:hover .product-image {
    transform: scale(0.95)
}

.product-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1))
}

.guarantee-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    animation: pulse 2s infinite
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.05)
    }
}

.product-showcase img {
    height: 300px;
    width: auto
}

.pricing {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px
}

.price-currency {
    font-size: 24px;
    font-weight: 600;
    margin-top: 8px;
    color: var(--primary)
}

.price-amount {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    color: var(--primary)
}

.price-period {
    font-size: 13px;
    margin-top: 12px;
    line-height: 1.2;
    color: var(--gray-600)
}

.savings {
    background: #ffc300;
    color: #632804;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
    display: inline-block
}

.savings.highlight {
    background: linear-gradient(135deg, var(--gold), #F59E0B);
    color: #000;
    animation: glow 2s ease-in-out infinite
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(252, 211, 77, .3)
    }

    50% {
        box-shadow: 0 0 30px rgba(252, 211, 77, .5)
    }
}

.discount-badge {
    background: #078d63;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 12px;
    display: inline-block
}

.guarantee {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--gray-600);
    font-size: 14px
}

.btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 36px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    width: 100%;
    max-width: 260px;
    margin: 0 auto 15px;
    position: relative;
    overflow: hidden
}

.btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: hsla(0, 0%, 100%, .2);
    transform: translate(-50%, -50%);
    transition: width .6s, height .6s
}

.btn:hover::before {
    width: 300px;
    height: 300px
}

.btn-primary {
    background: linear-gradient(135deg, #F59E0B, #EF4444);
    color: #fff;
    box-shadow: 0 4px 15px rgba(245, 158, 11, .3)
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(245, 158, 11, .4)
}

.btn-secondary {
    background: #fbbf24;
    color: #000;
    box-shadow: 0 4px 15px rgba(252, 211, 77, .3)
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(252, 211, 77, .4)
}

.btn-subtitle {
    font-size: 13px;
    font-weight: 500;
    opacity: .9;
    margin-top: 3px
}

.payment-icons {
    margin-bottom: 15px;
    opacity: .8
}

.price-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
    color: var(--gray-600)
}

.final-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-800)
}

.shipping {
    color: #ef4444;
    font-weight: 600
}

.shipping.free {
    color: var(--success)
}

.stock-counter {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--success);
    animation: fadeIn 1s ease
}

.stock-number,
.stock-number2 {
    font-size: 28px;
    font-weight: 800
}

.text-disclaimer {
    font-size: 16px;
    color: #000;
    text-align: center;
    padding: 20px 0
}

.trust-section {
    padding: 35px 0;
    background: #fff
}

.trust-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center
}

.highlight-purple {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    background-clip: text
}

.lead {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--gray-600)
}

.shipping-banner {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    padding: 60px 0;
    color: #fff;
    position: relative;
    overflow: hidden
}

.shipping-banner::after {
    content: "";
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(159, 122, 234, 0.2) 0%, transparent 70%);
    border-radius: 50%
}

.banner-content {
    text-align: center;
    position: relative;
    z-index: 1
}

.underline {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    text-decoration-color: var(--gold)
}

.highlight-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    margin: 25px 0
}

.cta-section,
.final-cta {
    background: linear-gradient(180deg, var(--gray-50), var(--white));
    padding: 50px 0;
    text-align: center
}

.cta-subtitle {
    background: linear-gradient(90deg, var(--gold), #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    background-clip: text;
    font-size: 28px
}

.arrow-down {
    width: 0;
    height: 0;
    border-left: 25px solid rgba(0, 0, 0, 0);
    border-right: 25px solid rgba(0, 0, 0, 0);
    border-top: 25px solid var(--primary);
    margin: 25px auto 0;
    animation: bounce 2s infinite
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(10px)
    }
}

.guarantee-section {
    padding: 20px 0;
    background: #fff
}

.guarantee-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center
}

.guarantee-seal {
    margin-bottom: 25px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1))
}

.guarantee-subtitle {
    color: var(--success);
    font-size: 24px;
    margin-bottom: 25px
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap
}

.trust-badges img {
    width: 70px;
    height: 70px;
    transition: var(--transition)
}

.trust-badges img:hover {
    transform: scale(1.1) rotate(5deg)
}

.benefits-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--gray-50), var(--white))
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: 15px
}

.subtitle-bnfs {
    text-align: center;
    margin-bottom: 15px
}


.benefit-icon .subtitle {
    text-align: center;
    font-size: 16px;
    margin-bottom: 40px;
    color: var(--gray-600);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px
}

.benefit-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-100)
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light)
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.1), rgba(159, 122, 234, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px
}

.benefit-icon.icon-1 path {
    stroke: var(--primary)
}

.benefit-icon.icon-2 path {
    stroke: var(--primary)
}

.benefit-icon.icon-2 circle {
    stroke: var(--primary)
}

.benefit-icon.icon-3 path {
    stroke: var(--primary)
}

.benefit-icon.icon-4 path {
    stroke: var(--primary)
}

.benefit-icon.icon-5 path {
    fill: var(--primary)
}

.benefit-icon.icon-6 path {
    fill: var(--primary)
}

.benefit-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--gray-800)
}

.benefit-card p {
    color: var(--gray-600);
    line-height: 1.5;
    font-size: 14px
}

.ingredients-section {
    padding: 60px 0;
    background: #fff
}

.ingredients-section h2 {
    text-align: center;
    margin-bottom: 40px
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 2fr));
    gap: 20px
}

.ingredient-card {
    text-align: center;
    padding: 25px;
    background: var(--gray-50);
    border-radius: 12px;
    transition: var(--transition);
    border: 2px solid rgba(0, 0, 0, 0)
}

.ingredient-card:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    color: #fff;
    transform: translateY(-3px);
    border-color: var(--primary-dark)
}

.ingredient-card h3 {
    font-size: 16px;
    margin-bottom: 8px
}

.ingredient-card p {
    font-size: 13px;
    line-height: 1.4
}

.ingredient-card:hover p {
    color: #fff
}

.faq-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--gray-50), var(--white))
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto
}

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition)
}

.faq-item:hover {
    box-shadow: var(--shadow-md)
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    color: var(--gray-800)
}

.faq-question:hover {
    background: var(--gray-50)
}

.faq-icon {
    font-size: 20px;
    transition: var(--transition);
    color: var(--primary)
}

.faq-question[aria-expanded=true] .faq-icon {
    transform: rotate(45deg)
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease
}

.faq-answer.active {
    padding: 15px 25px 25px;
    max-height: 500px
}

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 14px
}

.footer {
    background: var(--gray-800);
    color: #fff;
    padding: 50px 0 25px
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition)
}

.footer-links a:hover {
    color: var(--primary-light)
}

.footer-disclaimer {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 12px;
    color: #9ca3af;
    line-height: 1.5
}

.footer-disclaimer p {
    margin-bottom: 15px
}

.copyright {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #374151;
    font-weight: 600;
    font-size: 13px
}

.purchase-notification {
    position: fixed;
    bottom: 100px;
    left: 25px;
    background: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1000;
    animation: slideIn .5s cubic-bezier(0.68, -0.55, 0.265, 1.55)
}

@keyframes slideIn {
    from {
        transform: translateX(-120%);
        opacity: 0
    }

    to {
        transform: translateX(0);
        opacity: 1
    }
}

@keyframes slideOut {
    to {
        transform: translateX(-120%);
        opacity: 0
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.notification-text {
    display: flex;
    flex-direction: column
}

.notification-text strong {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 14px
}

.notification-text span {
    font-size: 12px;
    color: var(--gray-600)
}

@media(max-width: 1024px) {
    .pricing-grid {
        display: flex;
        flex-direction: column;
        max-width: 450px;
        margin: 0 auto 30px
    }

    .pricing-card.featured {
        order: -1;
        transform: scale(1);
        margin-bottom: 25px
    }

    .pricing-card:last-child:not(.featured) {
        order: 0
    }

    .pricing-card:first-child:not(.featured) {
        order: 1
    }

    .benefits-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width: 768px) {
    .product-showcase img {
        height: 220px;
        width: auto
    }

    .pricing-grid {
        display: flex;
        flex-direction: column;
        padding: 0 10px
    }

    .pricing-card.featured {
        order: -1 !important;
        margin-top: -10px
    }

    .pricing-card {
        border-radius: 15px;
        overflow: visible;
        margin-bottom: 15px
    }

    .pricing-card.featured {
        border: 3px solid var(--gold);
        background: #fff
    }

    .featured-badge {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        background: linear-gradient(135deg, var(--gold), #F59E0B);
        color: #000;
        padding: 6px;
        font-weight: 900;
        font-size: 13px;
        letter-spacing: 1px;
        text-align: center;
        border-radius: 12px 12px 0 0;
        left: -50%;
        margin-top: -1px;
        margin-right: -3px
    }

    .card-header {
        display: none
    }

    .card-body {
        padding: 12px
    }

    .pricing-card .card-body {
        display: grid;
        grid-template-areas: "info price" "benefits benefits" "image image" "total total" "button button";
        grid-template-columns: 1.2fr 1fr;
        gap: 5px;
        align-items: center;
        justify-content: center;
        padding: 12px 10px
    }

    .pricing-card.featured .card-body {
        grid-template-areas: "info price" "benefits benefits" "image image" "total total" "button button";
        gap: 4px
    }

    .pricing-card .package-info {
        grid-area: info;
        display: flex;
        flex-direction: column;
        gap: 3px;
        align-items: flex-start;
        padding-left: 5px
    }

    .pricing-card .card-body::before {
        content: attr(data-bottles) " Bottles";
        grid-area: info;
        font-size: 18px;
        font-weight: 800;
        color: var(--gray-800);
        line-height: 1;
        text-align: left;
        padding-left: 5px;
        margin-top: -28px
    }

    .pricing-card .card-body::after {
        content: attr(data-days) " Day Supply";
        grid-area: info;
        font-size: 13px;
        color: var(--gray-600);
        margin-top: 15px;
        line-height: 1.2;
        text-align: left;
        padding-left: 5px;
        font-weight: 500
    }

    .pricing-card[data-package="2"] .card-body::before {
        content: "2 Bottles"
    }

    .pricing-card[data-package="3"] .card-body::before {
        content: "3 Bottles"
    }

    .pricing-card[data-package="6"] .card-body::before {
        content: "6 Bottles"
    }

    .pricing-card[data-package="2"] .card-body::after,
    .pricing-card[data-package="3"] .card-body::after {
        margin-top: 20px
    }

    .pricing-card .pricing {
        grid-area: price;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-end;
        gap: 2px;
        padding-right: 5px
    }

    .pricing-card .price-currency {
        font-size: 20px;
        margin-top: 3px;
        color: var(--gray-800);
        font-weight: 600
    }

    .pricing-card .price-amount {
        font-size: 38px;
        line-height: .9;
        font-weight: 800
    }

    .pricing-card .price-period {
        font-size: 9px;
        text-align: left;
        margin-top: 5px;
        margin-left: 2px;
        line-height: 1.1;
        color: var(--gray-600);
        text-transform: uppercase;
        font-weight: 600
    }

    .pricing-card .benefits-list {
        grid-area: benefits;
        display: flex;
        flex-direction: column;
        gap: 2px;
        width: 100%;
        padding: 3px 0;
        align-items: center
    }

    .pricing-card .savings,
    .pricing-card .discount-badge,
    .pricing-card .guarantee {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: auto;
        text-align: center;
        background: none;
        padding: 1px 5px;
        margin: 0;
        font-weight: 600;
        font-size: 11px;
        border-radius: 0
    }

    .pricing-card .savings::before,
    .pricing-card .discount-badge::before,
    .pricing-card .guarantee::before {
        content: "✓ ";
        color: var(--success);
        font-weight: bold;
        margin-right: 5px;
        font-size: 12px
    }

    .pricing-card.featured .savings {
        color: #d97706;
        font-weight: 700
    }

    .pricing-card.featured .discount-badge {
        color: var(--success);
        font-weight: 700
    }

    .pricing-card .product-image {
        grid-area: image;
        transform: scale(1);
        margin: 3px auto;
        padding: 70px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        max-height: 120px
    }

    .pricing-card.featured .product-image {
        transform: scale(1.2);
        max-height: 90px;
        margin: 0 auto
    }

    .pricing-card .product-image img {
    ;
        max-width: 260px
    }

    .pricing-card.featured .product-image img {
        max-width: 270px
    }

    .pricing-card[data-package="2"] .product-image,
    .pricing-card[data-package="3"] .product-image {
        transform: scale(1);
        max-height: 110px;
        margin: 0 auto
    }

    .pricing-card[data-package="2"] .product-image img,
    .pricing-card[data-package="3"] .product-image img {
        max-width: 220px
    }

    .pricing-card .guarantee-badge {
        display: none
    }

    .pricing-card .price-details {
        grid-area: total;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 6px 0;
        border-top: 1px solid var(--gray-200);
        margin-top: -3px
    }

    .pricing-card .price-details>div {
        display: flex;
        align-items: baseline;
        gap: 5px
    }

    .pricing-card .price-details>div:first-child::before {
        content: "Total: ";
        font-weight: normal;
        color: var(--gray-600);
        font-size: 12px
    }

    .pricing-card .price-details .original-price {
        text-decoration: line-through;
        font-size: 12px;
        color: var(--gray-400)
    }

    .pricing-card .price-details .final-price {
        font-size: 16px;
        font-weight: 700;
        color: var(--gray-800)
    }

    .pricing-card .price-details .shipping {
        font-size: 10px;
        font-weight: 600;
        white-space: nowrap
    }

    .pricing-card .btn {
        grid-area: button;
        width: 100%;
        max-width: none;
        margin: 3px 0 0 0;
        padding: 12px;
        font-size: 15px;
        font-weight: 700;
        border-radius: 8px
    }

    .pricing-card.featured .btn {
        background: linear-gradient(135deg, #FB923C, #EA580C);
        padding: 14px;
        font-size: 16px;
        margin: 8px 0 0 0
    }

    .pricing-card .btn-subtitle {
        font-size: 10px;
        opacity: .9;
        margin-top: 1px
    }

    .pricing-card .payment-icons {
        display: none
    }

    .pricing-card.featured .card-body {
        position: relative
    }

    .pricing-card.featured .savings.highlight {
        order: -1;
        background: none;
        color: #dc2626;
        font-size: 11px;
        font-weight: 700;
        animation: none
    }

    .hero {
        padding: 40px 0 30px
    }

    .hero-title {
        font-size: 22px;
        margin-bottom: 15px
    }

    .rating {
        padding: 6px 15px
    }

    .steps {
        gap: 10px
    }

    .step {
        padding: 4px 10px;
        font-size: 11px
    }

    .ingredients-grid {
        grid-template-columns: 1fr
    }

    .trust-badges img {
        width: 60px;
        height: 60px
    }

    .purchase-notification {
        left: 10px;
        right: 10px;
        bottom: 100px
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 12px
    }
}

@media(max-width: 480px) {
    .pricing-card.featured {
        order: -1 !important;
        margin-bottom: 15px;
        margin-top: -15px
    }

    .pricing-card .price-amount {
        font-size: 32px
    }

    body {
        font-size: 14px
    }

    .container {
        padding: 0 10px
    }

    h1 {
        font-size: 20px
    }

    h2 {
        font-size: 18px
    }

    h3 {
        font-size: 15px
    }

    .benefit-card {
        padding: 20px
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 14px
    }

    .hero {
        padding: 30px 0 20px
    }

    .hero-title {
        font-size: 18px
    }

    .stock-counter {
        font-size: 16px;
        margin-top: 10px
    }

    .stock-number {
        font-size: 22px
    }
}

img {
    loading: lazy;
    will-change: transform
}

html {
    scroll-behavior: smooth
}

button:focus,
a:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px
}

@media(prefers-reduced-motion: reduce) {
    * {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important
    }
}

@media print {

    .progress-bar,
    .purchase-notification,
    .btn,
    .arrow-down {
        display: none
    }
}