
: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;
}
.headline{
    padding: 16px;
    background-color: #FF0000;
    color: #fff;
    text-align: center;
    font-weight: 900;
    font-size: 24px;
    }

/* 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;
}

.playervt{
    margin: 4px;
}

/* 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: 55px;          /* 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: 50px;          /* 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;
}



/* 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) ===== */
.esconder{ 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:20px;
    font-weight:900;
    line-height:1.15;
    text-align:center;
    background: #FF0000;
    color: #fff;
  }


  .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(1.5rem, 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
}

.esconder {
    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 #264f6f;
        background: #fff;
    }
}

        .featured-badge {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        background: linear-gradient(135deg, #2a4660, #102e4c);
        color: #ffffff;
        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: 170px
    }

    .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
    }
 
}
/* ========================================================================== */
/* PRICING CARDS - VISUAL OVERRIDE 2026-08-10                               */
/* Reference: desktop + mobile layouts supplied by the user.                  */
/* Scoped to #pricing so the rest of the site keeps its original styling.     */
/* ========================================================================== */

#pricing {
    --pricing-blue: #2f67b2;
    --pricing-blue-light: #527fba;
    --pricing-purple: #682a9b;
    --pricing-dark: #28004a;
    --pricing-dark-top: #170028;
    --pricing-lime: #9dff2d;
    --pricing-yellow: #ffd21a;
    --pricing-red: #e53043;
    --pricing-text: #0f0f12;
    --pricing-dash: #a5a5a5;
}

#pricing .container {
    max-width: 1180px;
    padding-left: 16px;
    padding-right: 16px;
}

#pricing.esconder {
    margin-top: 40px;
    padding: 20px 0 34px;
    background: transparent;
}

#pricing .pricing-grid {
    display: flex;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.03fr) minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    margin: 0 auto 30px;
    max-width: 1120px;
}

#pricing .pricing-card,
#pricing .pricing-card.featured {
    width: 100%;
    margin: 0;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--pricing-blue);
    border-radius: 15px;
    background: #ffffff;
    box-shadow: none;
    transform: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

#pricing .pricing-card:hover,
#pricing .pricing-card.featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(24, 55, 97, .12);
}

#pricing .pricing-card.featured {
    z-index: 2;
    background: var(--pricing-dark);
}

#pricing .pricing-card.featured::before,
#pricing .pricing-card.featured::after {
    content: none !important;
    display: none !important;
}

#pricing .featured-badge {
    display: none !important;
}

#pricing .card-header {
    display: block;
    padding: 8px 14px;
    text-align: center;
    border: 0;
    border-radius: 0;
    background: var(--pricing-blue-light);
}

#pricing .pricing-card[data-package="2"] .card-header {
    background: var(--pricing-purple);
}

#pricing .pricing-card[data-package="3"] .card-header {
    background: var(--pricing-blue-light);
}

#pricing .pricing-card.featured .card-header {
    background: #002a3f;
    padding-top: 10px;
    padding-bottom: 10px;
}

#pricing .card-title {
    margin: 0;
    color: #ffffff;
    font-size: 19px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: .01em;
}

#pricing .pricing-card.featured .card-title {
    color: #ffffff;
    font-size: 23px;
    text-transform: uppercase;
}

#pricing .card-subtitle {
    display: none;
}

#pricing .card-body {
    min-height: 790px;
    padding: 34px 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #ffffff;
    color: var(--pricing-text);
}

#pricing .pricing-card.featured .card-body {
    min-height: 900px;
    padding-top: 30px;
    padding-bottom: 25px;
    background: #1d67a3;
    color: #ffffff;
}

#pricing .card-body::before {
    content: attr(data-bottles) " BOTTLES";
    order: -2;
    display: block;
    margin: 0;
    color: var(--pricing-text);
    font-size: 33px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
}

#pricing .card-body::after {
    content: attr(data-days) " DAY SUPPLY";
    order: -1;
    display: block;
    margin-top: 10px;
    color: var(--pricing-text);
    font-size: 20px;
    line-height: 1.1;
    font-weight: 500;
    text-transform: uppercase;
}

#pricing .pricing-card.featured .card-body::before {
    color: var(--pricing-lime);
    font-size: 34px;
    text-shadow: 0 2px 2px rgba(0, 0, 0, .45);
}

#pricing .pricing-card.featured .card-body::after {
    color: #ffffff;
}

#pricing .product-image {
    order: 1;
    width: 100%;
    height: 285px;
    margin: 45px auto 28px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform: none !important;
    transition: none;
}

#pricing .pricing-card.featured .product-image {
    height: 320px;
    margin-top: 42px;
    margin-bottom: 34px;
    transform: none !important;
}

#pricing .pricing-card .product-image img {
    display: block;
    width: auto;
    max-width: 255px;
    max-height: 270px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 7px 11px rgba(0, 0, 0, .14));
}

#pricing .pricing-card.featured .product-image img {
    max-width: 335px;
    max-height: 305px;
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .28));
}

#pricing .guarantee-badge {
    display: none !important;
}

#pricing .pricing {
    order: 2;
    width: 100%;
    margin: 0 0 22px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
}

#pricing .price-currency {
    margin: 5px -2px 0 0;
    color: var(--pricing-yellow);
    font-size: 38px;
    line-height: 1;
    font-weight: 900;
    text-shadow: 2px 4px 3px rgba(0, 0, 0, .35);
}

#pricing .price-amount {
    color: var(--pricing-yellow);
    font-size: 66px;
    line-height: .9;
    font-weight: 900;
    letter-spacing: -2px;
    text-shadow: 2px 4px 3px rgba(0, 0, 0, .35);
}

#pricing .price-period {
    margin: 12px 0 0 5px;
    color: #050505;
    font-size: 13px;
    line-height: 1.15;
    font-weight: 800;
    text-align: left;
    text-transform: uppercase;
}

#pricing .pricing-card.featured .price-currency,
#pricing .pricing-card.featured .price-amount {
    color: var(--pricing-lime);
    text-shadow: 0 3px 2px rgba(0, 0, 0, .55);
}

#pricing .pricing-card.featured .price-period {
    color: #ffffff;
}

#pricing .benefits-list {
    order: 3;
    width: calc(100% + 56px);
    margin-left: -28px;
    margin-right: -28px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

#pricing .pricing-card.featured .benefits-list {
    width: calc(100% + 56px);
}

#pricing .benefits-list > div,
#pricing .savings,
#pricing .savings.highlight,
#pricing .discount-badge,
#pricing .guarantee {
    width: 100%;
    margin: 0;
    padding: 11px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-bottom: 1px dashed var(--pricing-dash);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    animation: none;
    color: #1e5ea8;
    font-size: 14px;
    line-height: 1.1;
    font-weight: 800;
    text-align: center;
}

#pricing .benefits-list > div::before {
    content: "✓";
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #2e68b3;
    color: #ffffff;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
}

#pricing .guarantee {
    color: #050505;
}

#pricing .guarantee::before {
    background: #050505 !important;
}

#pricing .pricing-card.featured .benefits-list > div {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, .52);
}

#pricing .pricing-card.featured .benefits-list > div::before {
    background: #ffffff;
    color: var(--pricing-dark);
}

#pricing .pricing-card.featured .savings,
#pricing .pricing-card.featured .savings.highlight,
#pricing .pricing-card.featured .discount-badge {
    color: var(--pricing-yellow);
}

#pricing .pricing-card.featured .savings::before,
#pricing .pricing-card.featured .savings.highlight::before,
#pricing .pricing-card.featured .discount-badge::before {
    background: var(--pricing-yellow);
    color: var(--pricing-dark);
}

#pricing .pricing-card.featured .guarantee {
    color: #ffffff;
}

#pricing .pricing-card.featured .guarantee::before {
    background: #ffffff !important;
    color: var(--pricing-dark) !important;
}

#pricing .price-details {
    order: 4;
    width: 100%;
    margin: 15px 0 14px;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    color: #0b0b0d;
    font-size: 15px;
    line-height: 1.25;
}

#pricing .price-details::before {
    content: "total:";
    color: inherit;
    font-size: 15px;
    font-weight: 500;
    text-transform: lowercase;
}

#pricing .price-details > div {
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
}

#pricing .original-price {
    color: #111111;
    font-size: 15px;
    font-weight: 500;
}

#pricing .final-price {
    color: #0b0b0d;
    font-size: 17px;
    line-height: 1;
    font-weight: 900;
}

#pricing .shipping,
#pricing .shipping.free {
    color: var(--pricing-red);
    font-size: 15px;
    line-height: 1.1;
    font-weight: 900;
}

#pricing .pricing-card.featured .price-details,
#pricing .pricing-card.featured .original-price,
#pricing .pricing-card.featured .final-price {
    color: #ffffff;
}

#pricing .pricing-card.featured .shipping,
#pricing .pricing-card.featured .shipping.free {
    color: var(--pricing-yellow);
}

#pricing .btn {
    order: 5;
    width: 100%;
    max-width: none;
    margin: 0 0 12px;
    padding: 16px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(180deg, #e8e8e8 0%, #dddddd 100%);
    box-shadow: 0 5px 0 #c7c7c7;
    color: #111111;
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
}

#pricing .btn:hover,
#pricing .btn-secondary:hover,
#pricing .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 0 #c7c7c7;
}

#pricing .pricing-card.featured .btn,
#pricing .pricing-card.featured .btn-primary {
    background: linear-gradient(180deg, #ffd91f 0%, #ffca0d 100%);
    box-shadow: 0 5px 0 #d9a600;
    color: #050505;
}

#pricing .pricing-card.featured .btn:hover,
#pricing .pricing-card.featured .btn-primary:hover {
    box-shadow: 0 6px 0 #d9a600;
}

#pricing .btn-subtitle {
    display: none;
}

#pricing .payment-icons {
    order: 6;
    display: block;
    width: 220px;
    max-width: 78%;
    height: auto;
    margin: 0 auto;
    opacity: 1;
}

#pricing .badge.badge--top {
    margin: 7px auto 0;
    background: transparent;
    color: inherit;
    font-size: 12px;
    padding: 0;
    border-radius: 0;
}

/* Desktop: center kit intentionally taller, like the supplied reference. */
@media (min-width: 900px) {
    #pricing .pricing-card.featured {
        transform: scale(1.015);
    }

    #pricing .pricing-card.featured:hover {
        transform: scale(1.015) translateY(-3px);
    }
}

/* Tablet: keep the cards readable before entering the phone layout. */
@media (min-width: 769px) and (max-width: 899px) {
    #pricing .pricing-grid {
        display: flex;
        flex-direction: column;
        max-width: 520px;
        gap: 18px;
    }

    #pricing .pricing-card,
    #pricing .pricing-card.featured {
        max-width: 520px;
    }

    #pricing .pricing-card.featured {
        order: -1;
    }
}

/* ========================================================================== */
/* MOBILE - two-column kit layout matching the supplied phone references.     */
/* ========================================================================== */
@media (max-width: 768px) {
    #pricing.esconder {
        margin-top: 18px;
        padding: 10px 0 26px;
    }

    #pricing .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    #pricing .pricing-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        max-width: 520px;
        margin: 0 auto;
        padding: 0;
    }

    #pricing .pricing-card,
    #pricing .pricing-card.featured {
        max-width: 500px;
        margin: 0 auto;
        border-width: 2px;
        border-radius: 18px;
        overflow: hidden;
        transform: none !important;
        box-shadow: none;
    }

    #pricing .pricing-card.featured {
        order: -1;
        border-color: var(--pricing-blue);
        background: var(--pricing-dark);
    }

    #pricing .pricing-card[data-package="3"] {
        order: 0;
    }

    #pricing .pricing-card[data-package="2"] {
        order: 1;
    }

    #pricing .card-header,
    #pricing .pricing-card.featured .card-header {
        display: block;
        padding: 9px 10px;
        border-radius: 0;
    }

    #pricing .card-title {
        font-size: 24px;
        line-height: 1.1;
    }

    #pricing .pricing-card.featured .card-title {
        font-size: 28px;
    }

    #pricing .card-subtitle {
        display: none;
    }

    #pricing .card-body,
    #pricing .pricing-card.featured .card-body {
        min-height: 0;
        padding: 18px 12px 24px;
        display: grid;
        grid-template-columns: minmax(0, .95fr) minmax(0, 1.35fr);
        grid-template-areas:
            "kit price"
            "supply price"
            "image benefits"
            "total total"
            "button button"
            "payment payment";
        column-gap: 12px;
        row-gap: 4px;
        align-items: center;
    }

    #pricing .pricing-card .card-body {
        background: #ffffff;
        color: var(--pricing-text);
    }

    #pricing .pricing-card.featured .card-body {
        background: #003d76;
        color: #ffffff;
    }

    #pricing .card-body::before,
    #pricing .pricing-card.featured .card-body::before {
        content: attr(data-bottles) " BOTTLES";
        grid-area: kit;
        order: initial;
        align-self: end;
        margin: 0;
        padding: 0 0 0 4px;
        color: var(--pricing-text);
        font-size: 26px;
        line-height: 1;
        font-weight: 900;
        text-align: center;
        text-transform: uppercase;
    }

    #pricing .card-body::after,
    #pricing .pricing-card.featured .card-body::after {
        content: attr(data-days) " DAY SUPPLY";
        grid-area: supply;
        order: initial;
        align-self: start;
        margin: 4px 0 0;
        padding: 0 0 0 4px;
        color: var(--pricing-text);
        font-size: 18px;
        line-height: 1.1;
        font-weight: 500;
        text-align: center;
        text-transform: uppercase;
    }

    #pricing .pricing-card.featured .card-body::before {
        color: var(--pricing-lime);
        text-shadow: 0 2px 2px rgba(0, 0, 0, .5);
    }

    #pricing .pricing-card.featured .card-body::after {
        color: #ffffff;
    }

    #pricing .product-image,
    #pricing .pricing-card.featured .product-image,
    #pricing .pricing-card[data-package="2"] .product-image,
    #pricing .pricing-card[data-package="3"] .product-image {
        grid-area: image;
        order: initial;
        width: 100%;
        height: 190px;
        max-height: none;
        min-height: 0;
        margin: 5px auto 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: none !important;
    }

    #pricing .pricing-card.featured .product-image {
        height: 205px;
    }

    #pricing .pricing-card .product-image img,
    #pricing .pricing-card[data-package="2"] .product-image img,
    #pricing .pricing-card[data-package="3"] .product-image img {
        width: auto;
        height: auto;
        max-width: 175px;
        max-height: 180px;
        object-fit: contain;
        filter: drop-shadow(0 5px 7px rgba(0, 0, 0, .12));
    }

    #pricing .pricing-card.featured .product-image img {
        max-width: 205px;
        max-height: 195px;
        filter: drop-shadow(0 6px 9px rgba(0, 0, 0, .30));
    }

    #pricing .pricing {
        grid-area: price;
        order: initial;
        align-self: start;
        width: 100%;
        margin: 4px 0 10px;
        padding: 0;
        justify-content: center;
        align-items: flex-start;
        gap: 0;
    }

    #pricing .price-currency {
        margin: 5px -2px 0 0;
        color: var(--pricing-yellow);
        font-size: 31px;
        line-height: 1;
        font-weight: 900;
        text-shadow: 2px 4px 3px rgba(0, 0, 0, .35);
    }

    #pricing .price-amount,
    #pricing .pricing-card .price-amount {
        color: var(--pricing-yellow);
        font-size: 54px;
        line-height: .9;
        font-weight: 900;
        letter-spacing: -2px;
        text-shadow: 2px 4px 3px rgba(0, 0, 0, .35);
    }

    #pricing .price-period {
        margin: 8px 0 0 3px;
        color: #060606;
        font-size: 12px;
        line-height: 1.05;
        font-weight: 900;
        text-align: left;
        text-transform: uppercase;
    }

    #pricing .pricing-card.featured .price-currency,
    #pricing .pricing-card.featured .price-amount {
        color: var(--pricing-lime);
        text-shadow: 0 3px 2px rgba(0, 0, 0, .55);
    }

    #pricing .pricing-card.featured .price-period {
        color: #ffffff;
    }

    #pricing .benefits-list,
    #pricing .pricing-card.featured .benefits-list {
        grid-area: benefits;
        order: initial;
        align-self: stretch;
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 0;
    }

    #pricing .benefits-list > div,
    #pricing .savings,
    #pricing .savings.highlight,
    #pricing .discount-badge,
    #pricing .guarantee {
        width: 100%;
        min-height: 42px;
        margin: 0;
        padding: 9px 4px;
        justify-content: flex-start;
        gap: 7px;
        border-bottom: 1px dashed var(--pricing-dash);
        background: transparent;
        color: #145ea8;
        font-size: 14px;
        line-height: 1.05;
        font-weight: 900;
        text-align: left;
    }

    #pricing .benefits-list > div::before {
        width: 20px;
        height: 20px;
        flex-basis: 20px;
        background: #2e68b3;
        color: #ffffff;
        font-size: 12px;
    }

    #pricing .guarantee {
        color: #050505;
    }

    #pricing .guarantee::before {
        background: #050505 !important;
    }

    #pricing .pricing-card.featured .benefits-list > div {
        color: #ffffff;
        border-bottom-color: rgba(255, 255, 255, .5);
    }

    #pricing .pricing-card.featured .savings,
    #pricing .pricing-card.featured .savings.highlight,
    #pricing .pricing-card.featured .discount-badge {
        color: var(--pricing-yellow);
    }

    #pricing .pricing-card.featured .benefits-list > div::before {
        background: #ffffff;
        color: var(--pricing-dark);
    }

    #pricing .pricing-card.featured .savings::before,
    #pricing .pricing-card.featured .savings.highlight::before,
    #pricing .pricing-card.featured .discount-badge::before {
        background: var(--pricing-yellow);
        color: var(--pricing-dark);
    }

    #pricing .pricing-card.featured .guarantee {
        color: #ffffff;
    }

    #pricing .pricing-card.featured .guarantee::before {
        background: #ffffff !important;
        color: var(--pricing-dark) !important;
    }

    #pricing .price-details,
    #pricing .pricing-card .price-details {
        grid-area: total;
        order: initial;
        width: 100%;
        margin: 10px 0 12px;
        padding: 8px 0 0;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: baseline;
        justify-content: center;
        gap: 4px;
        border: 0;
        border-top: 0;
        color: #08080a;
        font-size: 20px;
        line-height: 1.2;
        text-align: center;
    }

    #pricing .price-details::before,
    #pricing .pricing-card .price-details > div:first-child::before {
        content: none;
    }

    #pricing .price-details::before {
        content: "total:";
        display: inline;
        color: inherit;
        font-size: 20px;
        font-weight: 500;
    }

    #pricing .price-details > div,
    #pricing .pricing-card .price-details > div {
        display: inline-flex;
        align-items: baseline;
        gap: 5px;
    }

    #pricing .price-details .original-price,
    #pricing .pricing-card .price-details .original-price {
        color: #111111;
        font-size: 20px;
        font-weight: 500;
    }

    #pricing .price-details .final-price,
    #pricing .pricing-card .price-details .final-price {
        color: #08080a;
        font-size: 22px;
        line-height: 1;
        font-weight: 900;
    }

    #pricing .price-details .shipping,
    #pricing .price-details .shipping.free,
    #pricing .pricing-card .price-details .shipping,
    #pricing .pricing-card .price-details .shipping.free {
        color: var(--pricing-red);
        font-size: 20px;
        line-height: 1.05;
        font-weight: 900;
        white-space: normal;
    }

    #pricing .pricing-card.featured .price-details,
    #pricing .pricing-card.featured .price-details .original-price,
    #pricing .pricing-card.featured .price-details .final-price {
        color: #ffffff;
    }

    #pricing .pricing-card.featured .price-details .shipping,
    #pricing .pricing-card.featured .price-details .shipping.free {
        color: var(--pricing-yellow);
    }

    #pricing .btn,
    #pricing .pricing-card .btn,
    #pricing .pricing-card.featured .btn {
        grid-area: button;
        order: initial;
        width: 86%;
        max-width: none;
        margin: 2px auto 0;
        padding: 18px 14px;
        border-radius: 9px;
        background: linear-gradient(180deg, #e8e8e8 0%, #dddddd 100%);
        box-shadow: 0 5px 0 #c7c7c7;
        color: #111111;
        font-size: 30px;
        line-height: 1;
        font-weight: 900;
        text-align: center;
    }

    #pricing .pricing-card.featured .btn,
    #pricing .pricing-card.featured .btn-primary {
        width: 84%;
        background: linear-gradient(180deg, #ffdc23 0%, #ffca0d 100%);
        box-shadow: 0 5px 0 #d9a600;
        color: #050505;
    }

    #pricing .btn-subtitle {
        display: none !important;
    }

    #pricing .payment-icons,
    #pricing .pricing-card .payment-icons {
        grid-area: payment;
        order: initial;
        display: block !important;
        width: 260px;
        max-width: 72%;
        height: auto;
        margin: 3px auto 0;
        opacity: 1;
    }

    #pricing .badge.badge--top {
        grid-column: 1 / -1;
        justify-self: center;
        margin-top: 5px;
        color: inherit;
    }
}

@media (max-width: 520px) {
    #pricing .card-title {
        font-size: 21px;
    }

    #pricing .pricing-card.featured .card-title {
        font-size: 25px;
    }

    #pricing .card-body,
    #pricing .pricing-card.featured .card-body {
        grid-template-columns: minmax(0, .92fr) minmax(0, 1.38fr);
        column-gap: 8px;
        padding-left: 9px;
        padding-right: 9px;
    }

    #pricing .card-body::before,
    #pricing .pricing-card.featured .card-body::before {
        font-size: 22px;
    }

    #pricing .card-body::after,
    #pricing .pricing-card.featured .card-body::after {
        font-size: 16px;
    }

    #pricing .pricing-card .product-image img,
    #pricing .pricing-card[data-package="2"] .product-image img,
    #pricing .pricing-card[data-package="3"] .product-image img {
        max-width: 145px;
        max-height: 165px;
    }

    #pricing .pricing-card.featured .product-image img {
        max-width: 172px;
        max-height: 180px;
    }

    #pricing .price-currency {
        font-size: 26px;
    }

    #pricing .price-amount,
    #pricing .pricing-card .price-amount {
        font-size: 48px;
    }

    #pricing .price-period {
        margin-top: 7px;
        font-size: 10px;
    }

    #pricing .benefits-list > div,
    #pricing .savings,
    #pricing .savings.highlight,
    #pricing .discount-badge,
    #pricing .guarantee {
        min-height: 39px;
        padding: 8px 2px;
        font-size: 12px;
    }

    #pricing .price-details,
    #pricing .pricing-card .price-details,
    #pricing .price-details::before,
    #pricing .price-details .original-price,
    #pricing .pricing-card .price-details .original-price,
    #pricing .price-details .shipping,
    #pricing .price-details .shipping.free,
    #pricing .pricing-card .price-details .shipping,
    #pricing .pricing-card .price-details .shipping.free {
        font-size: 17px;
    }

    #pricing .price-details .final-price,
    #pricing .pricing-card .price-details .final-price {
        font-size: 19px;
    }

    #pricing .btn,
    #pricing .pricing-card .btn,
    #pricing .pricing-card.featured .btn {
        width: 90%;
        padding: 16px 10px;
        font-size: 27px;
    }

    #pricing .payment-icons,
    #pricing .pricing-card .payment-icons {
        max-width: 75%;
    }
}

/* =========================================================
   RESPONSIVE PRODUCT IMAGE - MOBILE
   ========================================================= */

@media (max-width: 768px) {

  #pricing .product-image {
    min-width: 0;
    width: 100%;
  }

  #pricing .product-image > img {
    display: block;
    width: clamp(95px, 32vw, 190px) !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain;
    margin-left: auto;
    margin-right: auto;
  }

}


/* Celulares menores */
@media (max-width: 480px) {

  #pricing .product-image > img {
    width: clamp(85px, 29vw, 140px) !important;
  }

}


/* Celulares muito estreitos */
@media (max-width: 360px) {

  #pricing .product-image > img {
    width: clamp(75px, 27vw, 105px) !important;
  }

}

/* ================================
   PURCHASE NOTICE
================================ */

.purchase-notice {
    width: calc(100% - 28px);
    max-width: 850px;

    margin: 18px auto 24px;

    background: #ffffff;

    border: 1px solid #ead49a;
    border-radius: 12px;

    overflow: hidden;

    font-family: Arial, Helvetica, sans-serif;

    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
}


/* HEADER */

.purchase-notice-header {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 12px 16px;

    background: #fff3cf;

    border-bottom: 1px solid #ead49a;

    color: #8a5a00;

    font-size: 14px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: .4px;
}


/* WARNING ICON */

.purchase-notice-icon {
    width: 27px;
    height: 27px;

    min-width: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e1a600;

    color: #ffffff;

    font-size: 16px;
    font-weight: 900;
}


/* CONTENT */

.purchase-notice-content {
    padding: 18px;
}


.purchase-notice-text {
    margin: 0;

    color: #303840;

    font-size: 16px;
    line-height: 1.55;
}


.purchase-notice-text strong {
    color: #17212b;
    font-weight: 800;
}


/* BUY NOW */

.buy-now-highlight {
    display: inline-block;

    padding: 2px 7px;

    background: #eaf5ff;

    border: 1px solid #b9daf3;
    border-radius: 4px;

    color: #1d67a3;

    font-size: .92em;
    font-weight: 900;
}


/* LIMITED STOCK */

.limited-stock {
    color: #b87900;
    font-weight: 800;
}


/* SUPPORT AREA */

.purchase-support {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-top: 15px;
    padding-top: 14px;

    border-top: 1px solid #edf0f2;

    color: #47545e;

    font-size: 14px;
    font-weight: 600;
}


.purchase-support-icon {
    width: 26px;
    height: 26px;

    min-width: 26px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #1d67a3;

    color: #ffffff;

    font-size: 13px;
    font-weight: 900;
}


/* MOBILE */

@media (max-width: 600px) {

    .purchase-notice {
        width: calc(100% - 20px);
        margin: 14px auto 20px;
        border-radius: 10px;
    }

    .purchase-notice-header {
        padding: 11px 13px;
        font-size: 13px;
    }

    .purchase-notice-content {
        padding: 15px;
    }

    .purchase-notice-text {
        font-size: 14px;
        line-height: 1.5;
    }

    .purchase-support {
        font-size: 13px;
    }

}

.purchase-notice-header-text {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.american-flag {
    width: 24px;
    height: auto;
    display: inline-block;
    flex-shrink: 0;
    border-radius: 2px;
}

@media (max-width: 600px) {

    .purchase-notice-header-text {
        gap: 6px;
    }

    .american-flag {
        width: 21px;
    }

}