.elementor-130 .elementor-element.elementor-element-b209fa0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-55d607d *//* style.css */

/* ------------------------------- */
/* 1. Global & Variables
/* ------------------------------- */
:root {
  --bg: #FBF8F9;
  --text: #201818;
  --muted: #605860;
  --card: #FFFFFF;
  --stroke: rgba(32, 24, 24, .12);
  --shadow-md: 0 4px 12px rgba(32, 24, 24, .07);
  --shadow-lg: 0 14px 50px rgba(32, 24, 24, .10);

  --pri: #D82878;
  --pri-light: #E860A0;
  --acc: #F8D058;
  --acc-dark: #D0A828;
  --success: #28a745;
  --green-wa: #25D366;

  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --radius: 18px;
  --max-width: 1060px;
  --transition: all 0.2s ease-in-out;
}

/* ------------------------------- */
/* 2. Reset & Base Styles
/* ------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(900px 500px at 12% -5%, hsla(335, 68%, 50%, 0.1), transparent 55%),
    radial-gradient(900px 500px at 92% 0%, hsla(47, 92%, 60%, 0.15), transparent 50%),
    radial-gradient(900px 650px at 50% 105%, hsla(330, 71%, 65%, 0.1), transparent 55%),
    var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
h1, h2, h3, h4, p, ul { margin: 0; }
ul { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }

/* ------------------------------- */
/* 3. Layout & Section Helpers
/* ------------------------------- */
.container { max-width: var(--max-width); margin-inline: auto; padding-inline: 18px; }
main > section { padding-block: clamp(40px, 8vh, 80px); }
.section-header { text-align: center; max-width: 50ch; margin-inline: auto; margin-bottom: 40px; }
.section-header__title { font-size: clamp(24px, 4vw, 32px); letter-spacing: -0.02em; margin-bottom: 8px; }
.section-header__subtitle { font-size: clamp(15px, 2vw, 17px); color: var(--muted); }
.card { background: rgba(255, 255, 255, 0.85); border: 1px solid var(--stroke); border-radius: var(--radius); box-shadow: var(--shadow-lg); backdrop-filter: blur(5px); }

/* ------------------------------- */
/* 4. Components
/* ------------------------------- */

/* Button */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  appearance: none; border: 0; cursor: pointer; user-select: none;
  padding: 12px 20px; border-radius: 14px;
  font-family: inherit; font-weight: 700; letter-spacing: .01em; font-size: 15px;
  text-align: center; transition: var(--transition);
}
.btn:active { transform: translateY(1px) scale(0.98); }
.btn--primary { background: linear-gradient(135deg, var(--pri), var(--pri-light)); color: #fff; box-shadow: 0 12px 28px hsla(335, 68%, 50%, 0.25); }
.btn--primary:hover { box-shadow: 0 14px 35px hsla(335, 68%, 50%, 0.3); transform: translateY(-2px); }
.btn--large { padding: 16px 24px; font-size: 16px; }
.btn--ghost { background: transparent; border: 1px solid var(--stroke); color: var(--muted); font-weight: 600; }
.btn--ghost:hover { border-color: var(--pri); color: var(--pri); }

/* Badge */
.badge {
    font-size: 12px; padding: 8px 12px; border-radius: 999px;
    background: hsla(47, 92%, 60%, 0.2); border: 1px solid hsla(47, 92%, 60%, 0.3);
    color: var(--text); display: inline-flex; align-items: center; gap: 6px; font-weight: 500;
}
.badge--bonus { background: hsla(134, 61%, 41%, 0.15); border-color: hsla(134, 61%, 41%, 0.3); }

/* Timer */
.timer { font-variant-numeric: tabular-nums; color: var(--pri); font-weight: 900; }

/* Top Bar */
.top-bar {
  position: sticky; top: 0; z-index: 100;
  background: hsla(348, 29%, 97%, 0.7); backdrop-filter: blur(12px);
  border-bottom: 1px solid hsla(30, 25%, 11%, 0.08);
}
.top-bar__container { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-block: 12px; }
.brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.brand__logo {
  width: 40px; height: 40px; border-radius: 14px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--pri), var(--acc));
  box-shadow: 0 8px 18px hsla(335, 68%, 50%, 0.2);
}
.brand__title { margin: 0; font-size: 14px; letter-spacing: .2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.session-pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 10px; border: 1px solid var(--stroke); border-radius: 999px; background: rgba(255,255,255,.6); box-shadow: var(--shadow-md); font-size: 12px; color: var(--muted); white-space: nowrap; }
.session-pill__dot { width: 8px; height: 8px; border-radius: 999px; background: var(--success); box-shadow: 0 0 0 4px hsla(134, 61%, 41%, 0.2); }

/* Hero Section */
.hero { padding-top: 34px; }
.hero__container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; align-items: center; }
.hero__card { padding: 28px 24px; }
.hero__kicker { font-size: 13px; font-weight: 700; color: var(--pri); letter-spacing: .05em; margin-bottom: 8px; }
.hero__title { font-size: clamp(32px, 4.5vw, 48px); letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 12px; font-weight: 900; }
.hero__subtitle { font-size: clamp(16px, 2vw, 18px); max-width: 45ch; line-height: 1.6; color: var(--muted); margin-bottom: 24px; }
.hero__benefits { display: grid; gap: 12px; margin-block: 24px; }
.benefit-item { display: flex; gap: 12px; align-items: center; padding: 12px; border-radius: 14px; background: rgba(255,255,255,.7); border: 1px solid var(--stroke); }
.benefit-item__icon { font-size: 18px; }
.benefit-item__title { font-size: 14px; font-weight: 500; }
.hero__actions { margin-bottom: 20px; }
.hero__trust-signals { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero__product-gallery { padding: 18px; display: flex; flex-direction: column; gap: 16px; }
.product-gallery__title { font-weight: 900; font-size: 14px; }
.product-gallery__subtitle { font-size: 12px; color: var(--muted); }
.product-gallery__images { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.product-gallery__image { width: 100%; border-radius: 16px; border: 1px solid var(--stroke); background: #fff; box-shadow: var(--shadow-md); aspect-ratio: 1 / 1; object-fit: cover; }
.product-gallery__tags { display: flex; gap: 10px; flex-wrap: wrap; }

/* Testimonials */
.testimonials__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.review-card { padding: 20px; display: flex; flex-direction: column; gap: 12px; background: rgba(255, 255, 255, .7); border-radius: 16px; border: 1px solid var(--stroke); }
.review-card__header { display: flex; align-items: center; gap: 10px; }
.review-card__avatar { width: 40px; height: 40px; border-radius: 999px; background-color: var(--pri-light); object-fit: cover; }
.review-card__name { font-weight: 700; font-size: 14px; }
.review-card__stars { color: var(--acc); letter-spacing: 1px; }
.review-card__body { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0; }

/* How-To */
.how-to__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.step { display: flex; gap: 16px; align-items: flex-start; padding: 20px; border-radius: 16px; border: 1px solid var(--stroke); background: rgba(255,255,255,.7); }
.step__number {
    width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
    background: hsla(47, 92%, 60%, 0.25); border: 1px solid hsla(47, 92%, 60%, 0.3);
    display: grid; place-items: center; font-weight: 900; font-size: 16px;
}
.step__title { margin: 0 0 4px; font-size: 16px; }
.step__description { font-size: 14px; color: var(--muted); }

/* Offer */
.offer__card { padding: 24px; }
.offer__grid { display: grid; grid-template-columns: 220px 1fr; gap: 28px; align-items: center; }
.offer__image-wrapper { text-align: center; }
.offer__image-wrapper img { filter: drop-shadow(0 10px 20px rgba(0,0,0,.1)); max-width: 100%; }
.offer__title { font-size: 24px; margin: 0 0 12px; letter-spacing: -0.02em; }
.offer__price { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.price-old { font-size: 20px; color: var(--muted); text-decoration: line-through; }
.price-new { font-size: 42px; font-weight: 900; letter-spacing: -0.03em; line-height: 1; }
.offer__benefits { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; margin-bottom: 24px; }
.offer__actions { display: flex; flex-direction: column; gap: 12px; }
.offer__hint { margin-top: 16px; font-size: 12px; color: var(--muted); text-align: center; }

/* FAQ */
.faq__container { max-width: 720px; }
.faq__list { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--stroke); background: rgba(255,255,255,.7); border-radius: 16px; padding: 16px; }
.faq-item summary { cursor: pointer; font-weight: 700; font-size: 15px; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 22px; font-weight: 400; color: var(--pri); transition: transform 0.2s; }
.faq-item[open] summary::after { content: '−'; transform: rotate(180deg); }
.faq-item div { padding-top: 16px; font-size: 14px; color: var(--muted); line-height: 1.6; }

/* Footer */
.footer { padding-block: 40px; text-align: center; font-size: 12px; color: var(--muted); }
.footer p { max-width: 60ch; margin-inline: auto; }
.footer p + p { margin-top: 8px; }

/* Sticky CTA */
.sticky-cta {
    position: fixed; inset-inline: 0; bottom: 0; z-index: 90;
    padding-block: 10px;
    background: hsla(348, 29%, 97%, 0.75); backdrop-filter: blur(12px);
    border-top: 1px solid hsla(30, 25%, 11%, 0.08);
    box-shadow: 0 -5px 20px rgba(0,0,0,.05);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.sticky-cta__text strong { font-size: 14px; display: block; }
.sticky-cta__text small { font-size: 12px; color: var(--muted); }

/* WhatsApp FAB */
.whatsapp-fab {
    position: fixed; right: 16px; bottom: 16px; z-index: 95;
    display: flex; align-items: center; gap: 10px;
}
.whatsapp-fab__bubble {
    padding: 10px 14px; border-radius: 999px;
    background: rgba(255,255,255,.9); border: 1px solid var(--stroke);
    box-shadow: var(--shadow-md); font-size: 13px; color: var(--text);
    display: none; /* Shows on larger screens */
}
.whatsapp-fab__icon {
    width: 56px; height: 56px; border-radius: 20px;
    background: linear-gradient(135deg, var(--green-wa), #128C7E);
    box-shadow: 0 12px 28px hsla(145, 63%, 42%, 0.3);
    display: grid; place-items: center;
    border: 1px solid rgba(255,255,255,.3);
    transition: var(--transition);
}
.whatsapp-fab:hover .whatsapp-fab__icon { transform: scale(1.05); box-shadow: 0 14px 35px hsla(145, 63%, 42%, 0.35); }

/* ------------------------------- */
/* 5. Responsive Media Queries
/* ------------------------------- */
@media (min-width: 768px) {
    .whatsapp-fab__bubble { display: block; }
}

@media (max-width: 920px) {
    .hero__container { grid-template-columns: 1fr; }
    .hero__card { order: 2; }
    .hero__product-gallery { order: 1; }
    .how-to__grid { grid-template-columns: 1fr; }
    .offer__grid { grid-template-columns: 1fr; gap: 20px; }
    .offer__image-wrapper { max-width: 200px; margin-inline: auto; }
    .offer__details { text-align: center; }
    .offer__benefits, .offer__actions { align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition: none !important; }
}
```__/* End custom CSS */