/* Tu Pasto Sintético — component styles. Requires tokens.css (custom properties + @font-face). */

/* ------------------------------ Base ------------------------------ */
.pm-page { background: var(--cream-50); color: var(--ink); font-family: var(--font-body); font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
:where(.pm-page) *, :where(.pm-page) *::before, :where(.pm-page) *::after { box-sizing: border-box; }
:where(.pm-page) img { max-width: 100%; display: block; }
:where(.pm-page) :where(h1, h2, h3, p, ul, ol, figure, blockquote) { margin: 0; }
:where(.pm-page) :where(ul, ol) { padding: 0; list-style: none; }
:where(.pm-page) a { color: inherit; }
.pm-page :focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; border-radius: 6px; }
.pm-icon { flex: none; display: inline-block; vertical-align: middle; }
.pm-sr { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.pm-skip { position: absolute; left: 16px; top: -60px; z-index: 100; background: var(--white); color: var(--ink); padding: 10px 16px; border-radius: var(--radius-sm); font-weight: 700; }
.pm-skip:focus { top: calc(env(safe-area-inset-top, 0px) + 8px); }

.pm-container { width: 100%; max-width: calc(var(--container) + 2 * var(--space-6)); margin-inline: auto; padding-inline: var(--space-6); }
.pm-section { position: relative; padding-block: var(--space-9); }
.pm-section--tint { background: var(--green-100); }
.pm-section--dark { background: var(--green-900); color: var(--white); }
.pm-section--white { background: var(--white); }
.pm-section--flush-top { padding-top: var(--space-6); }
.pm-center { display: flex; justify-content: center; margin-top: var(--space-6); flex-wrap: wrap; gap: var(--space-3); }
.pm-accent { color: var(--green-600); }
.pm-section--dark .pm-accent { color: var(--green-400); }

/* ------------------------- Reveal animation ------------------------ */
.pm-pre { opacity: 0; transform: translateY(22px); }
.pm-pre.is-in { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }

/* ---------------------------- Typography --------------------------- */
.pm-eyebrow { font-family: var(--font-body); font-size: 13px; line-height: 16px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; color: var(--green-600); display: inline-flex; align-items: center; gap: 8px; }
.pm-eyebrow::before { content: ""; width: 22px; height: 3px; border-radius: 3px; background: var(--orange-500); }
.pm-eyebrow--light { color: var(--white); }
.pm-heading { text-align: center; max-width: 780px; margin: 0 auto var(--space-7); display: grid; justify-items: center; gap: var(--space-3); }
.pm-heading--left { text-align: left; justify-items: start; margin-inline: 0; }
.pm-title { font-family: var(--font-display); font-style: italic; font-weight: 900; font-stretch: 78%; text-transform: uppercase; font-size: clamp(30px, 4.2vw, 46px); line-height: .98; letter-spacing: -.2px; text-wrap: balance; color: var(--ink); }
.pm-subtitle { font-size: 18px; line-height: 28px; color: var(--ink-muted); max-width: 62ch; text-wrap: pretty; }
.pm-heading--dark .pm-title, .pm-section--dark .pm-title { color: var(--white); }
.pm-heading--dark .pm-subtitle, .pm-section--dark .pm-subtitle { color: var(--ink-on-dark); }
.pm-heading--dark .pm-eyebrow, .pm-section--dark .pm-eyebrow { color: var(--green-400); }

/* ------------------------------ Buttons ---------------------------- */
.pm-btn { --bg: var(--orange-600); --fg: var(--white); --bd: transparent; display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 12px 24px; border-radius: var(--radius-pill); border: 2px solid var(--bd); background: var(--bg); color: var(--fg); font-family: var(--font-body); font-size: 15px; line-height: 18px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; text-decoration: none; cursor: pointer; transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease; box-shadow: 0 10px 22px -12px rgba(201, 79, 12, .7); white-space: nowrap; }
.pm-btn:hover { --bg: var(--orange-700); transform: translateY(-1px); }
.pm-btn:active { transform: translateY(0); }
.pm-btn .pm-icon { transition: transform .2s ease; }
.pm-btn:hover .pm-icon { transform: translateX(3px); }
.pm-btn--whatsapp { --bg: var(--whatsapp); --fg: var(--whatsapp-ink); box-shadow: 0 10px 22px -12px rgba(11, 38, 21, .55); }
.pm-btn--whatsapp:hover { --bg: #1fbd5a; }
.pm-btn--whatsapp:hover .pm-icon { transform: none; }
.pm-btn--secondary { --bg: var(--white); --fg: var(--green-700); --bd: var(--white); box-shadow: none; }
.pm-btn--secondary:hover { --bg: var(--green-100); }
.pm-btn--outline { --bg: transparent; --fg: var(--green-700); --bd: var(--green-600); box-shadow: none; }
.pm-btn--outline:hover { --bg: var(--green-100); }
.pm-btn--outline-light { --bg: transparent; --fg: var(--white); --bd: rgba(255,255,255,.7); box-shadow: none; }
.pm-btn--outline-light:hover { --bg: rgba(255,255,255,.12); }
.pm-btn--sm { min-height: 42px; padding: 10px 18px; font-size: 14px; }
.pm-btn--lg { min-height: 56px; padding: 15px 28px; font-size: 15.5px; }
.pm-btn--block { width: 100%; }
.pm-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 15px; color: var(--green-700); text-decoration: none; border-bottom: 2px solid transparent; padding-bottom: 2px; }
.pm-link:hover { border-color: currentColor; }
.pm-link--sm { font-size: 14px; }
.pm-round { width: 44px; height: 44px; display: inline-grid; place-items: center; border-radius: var(--radius-pill); background: var(--green-600); color: var(--white); text-decoration: none; transition: background-color .2s, transform .2s; }
.pm-round:hover { background: var(--orange-600); transform: rotate(-12deg); }

/* ------------------------------- Logo ------------------------------ */
.pm-logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--white); }
.pm-logo__mark { width: 44px; height: 44px; border-radius: 14px 14px 14px 5px; display: grid; place-items: center; background: var(--green-600); color: var(--white); box-shadow: inset 0 -4px 0 rgba(0,0,0,.18); }
.pm-logo__text { white-space: nowrap; font-family: var(--font-display); font-style: italic; font-weight: 900; font-stretch: 78%; font-size: 23px; line-height: .9; letter-spacing: .2px; text-transform: uppercase; display: grid; }
.pm-logo__text em { font-style: inherit; color: #9fdc8c; }
.pm-logo--ink .pm-logo__text em { color: var(--green-600); }
.pm-logo__text small { font-family: var(--font-body); font-style: normal; font-weight: 700; font-size: 10.5px; letter-spacing: 1.6px; text-transform: uppercase; opacity: .85; margin-top: 4px; }
.pm-logo--ink { color: var(--ink); }

/* ------------------------------ Header ----------------------------- */
.pm-header { position: sticky; top: env(safe-area-inset-top, 0px); z-index: 50; margin-bottom: calc(-1 * var(--header-h)); color: var(--white); transition: background-color .25s ease, box-shadow .25s ease; }
.pm-header__inner { max-width: calc(var(--container) + 2 * var(--space-6)); margin-inline: auto; padding-inline: var(--space-6); height: var(--header-h); display: flex; align-items: center; gap: var(--space-5); }
.pm-header.is-scrolled, .pm-header.is-open { background: var(--green-900); box-shadow: var(--shadow-float); }
.pm-nav { margin-inline: auto; }
.pm-nav ul { display: flex; gap: 4px; }
.pm-nav a { display: block; padding: 10px 12px; border-radius: var(--radius-pill); color: var(--white); text-decoration: none; font-weight: 700; font-size: 15px; transition: background-color .2s; }
.pm-nav a:hover { background: rgba(255,255,255,.12); }
.pm-nav a[aria-current="page"] { background: rgba(255,255,255,.16); }
.pm-header__actions { display: flex; align-items: center; gap: 10px; }
.pm-burger { display: none; width: 46px; height: 46px; border-radius: 14px; border: 0; background: rgba(255,255,255,.14); color: var(--white); cursor: pointer; place-items: center; }
.pm-mobile-nav[hidden] { display: none; }
.pm-mobile-nav { background: var(--green-900); padding: 8px var(--space-4) var(--space-5); display: grid; gap: 10px; max-height: calc(100vh - 64px); overflow: auto; }
.pm-mobile-nav ul { display: grid; margin-bottom: 8px; }
.pm-mobile-nav li a { display: flex; justify-content: space-between; align-items: center; padding: 14px 4px; color: var(--white); text-decoration: none; font-weight: 700; font-size: 17px; border-bottom: 1px solid rgba(255,255,255,.12); }

/* ------------------------------- Hero ------------------------------ */
.pm-hero { position: relative; isolation: isolate; color: var(--white); padding-top: calc(var(--header-h) + 56px); padding-bottom: 150px; min-height: 760px; display: grid; align-content: start; overflow: hidden; }
.pm-hero__media { position: absolute; inset: 0; z-index: -2; }
.pm-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 40%; }
.pm-hero__shade { position: absolute; inset: 0; z-index: -1; background:
  linear-gradient(90deg, rgba(11,34,21,.92) 0%, rgba(11,34,21,.78) 34%, rgba(11,34,21,.25) 62%, rgba(11,34,21,0) 80%),
  linear-gradient(180deg, rgba(11,34,21,.55) 0%, rgba(11,34,21,0) 22%, rgba(11,34,21,0) 60%, rgba(11,34,21,.55) 100%); }
.pm-hero__content { width: 100%; max-width: calc(var(--container) + 2 * var(--space-6)); margin-inline: auto; padding-inline: var(--space-6); display: grid; gap: var(--space-4); justify-items: start; }
.pm-hero__content > * { max-width: 640px; }
.pm-hero__title { font-family: var(--font-display); font-style: italic; font-weight: 900; font-stretch: 75%; text-transform: uppercase; font-size: clamp(40px, 6.2vw, 72px); line-height: .93; letter-spacing: -.5px; text-wrap: balance; text-shadow: 0 2px 30px rgba(0,0,0,.25); }
.pm-hero__title em { font-style: inherit; color: #9fdc8c; }
.pm-hero__sub { font-size: 18.5px; line-height: 28px; color: rgba(255,255,255,.92); max-width: 56ch; }
.pm-hero__ctas { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: 6px; }
.pm-hero__trust { display: inline-flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 700; color: var(--white); background: rgba(11,34,21,.5); border: 1px solid rgba(255,255,255,.22); padding: 8px 14px 8px 12px; border-radius: var(--radius-pill); backdrop-filter: blur(6px); }
.pm-hero__trust .pm-icon { color: #9fdc8c; }
.pm-hero__form { position: relative; z-index: 2; width: 100%; max-width: calc(var(--container) + 2 * var(--space-6)); margin: var(--space-7) auto 0; padding-inline: var(--space-6); }
.pm-hero .pm-wave { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 1; }

/* ------------------------------- Wave ------------------------------ */
.pm-wave { line-height: 0; pointer-events: none; margin-block: -1px; position: relative; }
.pm-wave svg { width: 100%; height: clamp(38px, 6vw, 92px); display: block; }
.pm-wave path { fill: var(--wave); }
.pm-wave--flip svg { transform: scaleY(-1); }

/* ----------------------------- QuoteForm --------------------------- */
.pm-form { background: var(--white); color: var(--ink); border-radius: var(--radius-lg); padding: var(--space-5); box-shadow: var(--shadow-float); position: relative; }
.pm-form__title { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 17px; margin-bottom: var(--space-3); color: var(--green-700); }
.pm-form__grid { display: grid; gap: var(--space-3) var(--space-4); }
.pm-form--full .pm-form__grid { grid-template-columns: 1fr 1fr; }
.pm-form--compact { padding: 20px 22px 22px; }
.pm-form--compact .pm-form__grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.pm-form--compact { display: grid; grid-template-columns: 1fr auto; column-gap: var(--space-4); align-items: end; }
.pm-form--compact .pm-form__title { grid-column: 1 / -1; }
.pm-form--compact .pm-form__actions { padding-bottom: 22px; }
.pm-form--compact .pm-form__ok { grid-column: 1 / -1; }
.pm-field { display: grid; gap: 6px; align-content: start; min-width: 0; }
.pm-field--wide { grid-column: 1 / -1; }
.pm-field label, .pm-radios legend { font-size: 14px; line-height: 18px; font-weight: 700; color: var(--ink); }
.pm-opt { font-weight: 500; color: var(--ink-muted); }
.pm-field input, .pm-field select, .pm-field textarea { width: 100%; min-height: 50px; font: inherit; font-size: 16px; color: var(--ink); background: var(--white); border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm); padding: 12px 14px; transition: border-color .2s, box-shadow .2s; }
.pm-field textarea { min-height: 96px; resize: vertical; }
.pm-field input::placeholder, .pm-field textarea::placeholder { color: #6d7a70; }
.pm-field input:focus, .pm-field select:focus, .pm-field textarea:focus { outline: none; border-color: var(--green-600); box-shadow: 0 0 0 3px rgba(44,122,63,.22); }
.pm-field input:focus-visible, .pm-field select:focus-visible, .pm-field textarea:focus-visible { outline: 3px solid var(--focus); outline-offset: 1px; }
.pm-select { position: relative; }
.pm-select select { appearance: none; -webkit-appearance: none; padding-right: 40px; cursor: pointer; }
.pm-select .pm-icon { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--green-700); }
.pm-field__err { font-size: 13px; line-height: 17px; font-weight: 600; color: var(--danger); }
.pm-field.has-error input, .pm-field.has-error select { border-color: var(--danger); }
.pm-form--compact .pm-field__err { font-size: 12px; }
.pm-radios { border: 0; padding: 0; margin: 0; }
.pm-radios legend { padding: 0; margin-bottom: 6px; }
.pm-radios__row { display: flex; flex-wrap: wrap; gap: 8px; }
.pm-radio { position: relative; }
.pm-radio input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.pm-radio span { display: inline-flex; align-items: center; min-height: 46px; padding: 10px 16px; border-radius: var(--radius-pill); border: 1.5px solid var(--line-strong); font-weight: 700; font-size: 15px; background: var(--white); transition: background-color .2s, border-color .2s, color .2s; }
.pm-radio input:checked + span { background: var(--green-600); border-color: var(--green-600); color: var(--white); }
.pm-radio input:focus-visible + span { outline: 3px solid var(--focus); outline-offset: 2px; }
.pm-form__actions { display: grid; gap: var(--space-3); margin-top: var(--space-4); }
.pm-form--compact .pm-form__actions { margin-top: 0; }
.pm-form__legal { font-size: 13px; color: var(--ink-muted); text-align: center; }
.pm-form__legal a { color: var(--green-700); font-weight: 700; }
.pm-form__ok { display: flex; gap: var(--space-3); align-items: flex-start; margin-top: var(--space-4); padding: var(--space-4); border-radius: var(--radius-md); background: var(--green-100); color: var(--ink); }
.pm-form__ok[hidden] { display: none; }
.pm-form__ok p { font-size: 15px; margin-bottom: 10px; }
.pm-form__ok-title { font-weight: 800; font-size: 17px !important; margin-bottom: 4px !important; color: var(--green-700); }
.pm-form__ok-icon { width: 40px; height: 40px; flex: none; border-radius: 50%; display: grid; place-items: center; background: var(--green-600); color: var(--white); }
.pm-form.is-sent .pm-form__grid, .pm-form.is-sent .pm-form__actions { display: none; }
.pm-form.is-sent .pm-form__ok { margin-top: 0; }

/* ------------------------------ Benefits --------------------------- */
.pm-benefits { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--space-4); }
.pm-benefit { display: flex; gap: 14px; align-items: flex-start; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 18px 18px 18px 16px; box-shadow: var(--shadow-card); }
.pm-benefit__icon { width: 54px; height: 54px; flex: none; border-radius: 50%; display: grid; place-items: center; color: var(--white); background: var(--orange-500); box-shadow: 0 0 0 5px #fde8d9; }
.pm-benefit__title { font-family: var(--font-display); font-style: italic; font-weight: 900; font-stretch: 80%; text-transform: uppercase; font-size: 17.5px; line-height: 1.02; margin-bottom: 5px; }
.pm-benefit p { font-size: 14px; line-height: 20px; color: var(--ink-muted); }

/* --------------------------- Section helpers ----------------------- */
.pm-head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: var(--space-5); flex-wrap: wrap; margin-bottom: var(--space-7); }
.pm-head-row .pm-heading { margin: 0; }
.pm-split { display: grid; grid-template-columns: 1fr 1.15fr; gap: var(--space-7); align-items: start; }
.pm-bullets { display: grid; gap: 14px; margin-top: var(--space-5); }
.pm-bullets li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; line-height: 24px; }
.pm-bullets .pm-icon { color: var(--white); background: var(--green-600); border-radius: 50%; padding: 4px; width: 26px; height: 26px; margin-top: -1px; }
.pm-note { font-size: 14px; color: var(--ink-muted); margin-top: var(--space-4); }
.pm-legal { max-width: calc(var(--container) + 2 * var(--space-6)); margin-inline: auto; padding: 0 var(--space-6) var(--space-5); font-size: 13px; line-height: 20px; color: var(--ink-on-dark); display: grid; gap: 6px; }
.pm-legal h2 { font-size: 13px; color: var(--white); font-weight: 800; }

/* ------------------------------ Carousel --------------------------- */
.pm-carousel { position: relative; }
.pm-carousel__track { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 4 * var(--space-4)) / 5); gap: var(--space-4); overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 14px 4px 18px; scrollbar-width: none; overscroll-behavior-x: contain; }
.pm-carousel__track::-webkit-scrollbar { display: none; }
.pm-carousel__slide { scroll-snap-align: start; display: grid; }
.pm-carousel--3 .pm-carousel__track { grid-auto-columns: calc((100% - 2 * var(--space-4)) / 3); }
.pm-carousel__btn { position: absolute; top: 45%; z-index: 2; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: var(--white); color: var(--green-700); display: grid; place-items: center; cursor: pointer; box-shadow: var(--shadow-card); transition: background-color .2s, color .2s; }
.pm-carousel__btn:hover { background: var(--green-600); color: var(--white); }
.pm-carousel__btn--prev { left: -23px; }
.pm-carousel__btn--next { right: -23px; }
.pm-carousel.is-static .pm-carousel__btn, .pm-carousel.is-static .pm-carousel__dots { display: none; }
.pm-carousel__dots { display: flex; justify-content: center; gap: 8px; margin-top: 4px; }
.pm-carousel__dots span { width: 8px; height: 8px; border-radius: 99px; background: var(--line-strong); transition: width .25s, background-color .25s; }
.pm-carousel__dots span.is-on { width: 26px; background: var(--orange-500); }
.pm-section--dark .pm-carousel__btn { background: var(--green-800); color: var(--white); border-color: rgba(255,255,255,.18); }

/* ---------------------------- FeatureCard -------------------------- */
.pm-feature { position: relative; display: grid; justify-items: center; text-align: center; gap: 10px; padding: 30px 18px 26px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) var(--radius-lg); box-shadow: var(--shadow-card); transition: transform .3s ease, background-color .3s, color .3s; height: 100%; }
.pm-feature:hover { transform: translateY(-6px); }
.pm-feature__n { position: absolute; top: 14px; left: 18px; font-family: var(--font-display); font-style: italic; font-weight: 900; font-size: 15px; color: var(--green-600); }
.pm-feature__icon { width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center; background: var(--orange-500); color: var(--white); box-shadow: 0 0 0 6px var(--orange-100); }
.pm-feature__title { font-family: var(--font-display); font-style: italic; font-weight: 900; font-stretch: 80%; text-transform: uppercase; font-size: 20px; line-height: 1; margin-top: 6px; }
.pm-feature p { font-size: 14.5px; line-height: 21px; color: var(--ink-muted); }
.pm-feature.is-active { background: var(--green-600); color: var(--white); border-color: var(--green-600); border-radius: 60px 60px var(--radius-lg) var(--radius-lg); }
.pm-feature.is-active p { color: rgba(255,255,255,.9); }
.pm-feature.is-active .pm-feature__n { color: var(--white); }
.pm-feature.is-active .pm-feature__icon { background: var(--white); color: var(--green-600); box-shadow: 0 0 0 6px rgba(255,255,255,.22); }

/* ---------------------------- ProductCard -------------------------- */
.pm-products { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--space-4); }
.pm-product { position: relative; display: grid; grid-template-rows: 210px 1fr; border-radius: var(--radius-lg); overflow: hidden; background: var(--green-800); border: 1px solid rgba(255,255,255,.1); color: var(--white); transition: transform .3s ease, box-shadow .3s ease; }
.pm-product:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -24px rgba(0,0,0,.6); }
.pm-product img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.pm-product:hover img { transform: scale(1.05); }
.pm-product__body { display: grid; gap: 10px; align-content: start; padding: 20px 20px 22px; }
.pm-product__kicker { font-size: 12px; font-weight: 800; letter-spacing: 1.3px; text-transform: uppercase; color: var(--green-400); }
.pm-product__title { font-family: var(--font-display); font-style: italic; font-weight: 900; font-stretch: 78%; text-transform: uppercase; font-size: 25px; line-height: .98; }
.pm-product__label { font-size: 13px; font-weight: 700; color: var(--ink-on-dark); margin-top: 4px; }
.pm-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.pm-chips li { font-size: 13px; font-weight: 700; padding: 5px 10px; border-radius: var(--radius-pill); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14); }
.pm-checks { display: grid; gap: 4px; }
.pm-checks li { display: flex; gap: 8px; align-items: center; font-size: 14px; color: var(--ink-on-dark); }
.pm-checks .pm-icon { color: var(--green-400); }
.pm-product .pm-link { color: var(--white); margin-top: 6px; justify-self: start; }
.pm-product .pm-link .pm-icon { color: var(--orange-500); }

/* ---------------------------- ServiceCard -------------------------- */
.pm-services { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-4); }
.pm-service { display: grid; gap: 10px; align-content: start; padding: 26px 24px; border-radius: var(--radius-md); background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-card); transition: transform .3s, border-color .3s; }
.pm-service:hover { transform: translateY(-4px); border-color: var(--green-600); }
.pm-service__icon { width: 58px; height: 58px; border-radius: 18px 18px 18px 6px; display: grid; place-items: center; background: var(--green-100); color: var(--green-700); margin-bottom: 4px; }
.pm-service__title { font-size: 19px; line-height: 24px; font-weight: 800; }
.pm-service p { font-size: 15px; line-height: 23px; color: var(--ink-muted); }

/* ---------------------------- ProcessStep -------------------------- */
.pm-steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--space-5); position: relative; counter-reset: step; }
.pm-steps::before { content: ""; position: absolute; top: 62px; left: 12.5%; right: 12.5%; border-top: 3px dashed var(--green-400); z-index: 0; }
.pm-step { position: relative; z-index: 1; display: grid; justify-items: center; text-align: center; gap: 10px; }
.pm-step__ring { position: relative; width: 124px; height: 124px; border-radius: 50%; display: grid; place-items: center; background: var(--white); border: 2px solid var(--line); box-shadow: var(--shadow-card); margin-bottom: 6px; }
.pm-step__icon { width: 84px; height: 84px; border-radius: 50%; display: grid; place-items: center; background: var(--green-100); color: var(--green-700); }
.pm-step__n { position: absolute; top: -4px; right: -4px; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--orange-600); color: var(--white); font-family: var(--font-display); font-style: italic; font-weight: 900; font-size: 16px; border: 3px solid var(--cream-50); }
.pm-step__title { font-family: var(--font-display); font-style: italic; font-weight: 900; font-stretch: 80%; text-transform: uppercase; font-size: 20px; line-height: 1.02; max-width: 16ch; }
.pm-step p { font-size: 15px; line-height: 22px; color: var(--ink-muted); max-width: 30ch; }

/* ----------------------------- PhotoBand --------------------------- */
.pm-band { position: relative; isolation: isolate; min-height: 520px; display: grid; place-items: center; padding: var(--space-8) var(--space-4); overflow: hidden; }
.pm-band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.pm-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, var(--cream-50) 0%, rgba(247,248,241,0) 22%, rgba(11,34,21,0) 55%, rgba(11,34,21,.55) 100%); }
.pm-band__card { display: grid; justify-items: center; gap: var(--space-4); text-align: center; background: rgba(11,34,21,.72); backdrop-filter: blur(8px); color: var(--white); padding: 28px 34px; border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,.18); margin-top: 180px; }
.pm-band__title { font-family: var(--font-display); font-style: italic; font-weight: 900; font-stretch: 78%; text-transform: uppercase; font-size: clamp(26px, 3.4vw, 38px); line-height: .98; max-width: 18ch; text-wrap: balance; }

.pm-band--plain { min-height: 0; aspect-ratio: 1920 / 620; max-width: 100%; padding: 0; }
.pm-band--plain::after { background: linear-gradient(180deg, var(--cream-50) 0%, rgba(247,248,241,0) 30%, rgba(14,42,26,0) 70%, var(--green-900) 100%); }

/* ------------------------- BeforeAfterSlider ----------------------- */
.pm-ba { --pos: 50%; position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 7 / 4; max-width: 100%; user-select: none; touch-action: pan-y; cursor: ew-resize; box-shadow: 0 30px 60px -30px rgba(0,0,0,.7); border: 4px solid rgba(255,255,255,.1); }
.pm-ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.pm-ba__before { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.pm-ba__handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 4px; margin-left: -2px; background: var(--white); pointer-events: none; }
.pm-ba__handle span { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 52px; height: 52px; border-radius: 50%; background: var(--white); color: var(--green-700); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(0,0,0,.35); }
.pm-ba__tag { position: absolute; bottom: 18px; padding: 8px 16px; border-radius: var(--radius-pill); font-weight: 800; font-size: 13px; letter-spacing: 1.2px; text-transform: uppercase; pointer-events: none; }
.pm-ba__tag--before { left: 18px; background: rgba(11,34,21,.82); color: var(--white); }
.pm-ba__tag--after { right: 18px; background: var(--white); color: var(--green-700); }
.pm-ba__range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; }
.pm-ba__range:focus-visible + * , .pm-ba:focus-within { outline: 3px solid var(--focus); outline-offset: 3px; }
.pm-ba-legend { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); margin-top: var(--space-5); }
.pm-ba-legend div { background: var(--green-800); border-radius: var(--radius-md); padding: 18px 20px; border: 1px solid rgba(255,255,255,.1); }
.pm-ba-legend h3 { font-family: var(--font-display); font-style: italic; font-weight: 900; text-transform: uppercase; font-size: 18px; margin-bottom: 8px; }
.pm-ba-legend li { display: flex; gap: 8px; align-items: center; color: var(--ink-on-dark); font-size: 15px; line-height: 24px; }
.pm-ba-legend .is-before .pm-icon { color: var(--orange-500); }
.pm-ba-legend .is-after .pm-icon { color: var(--green-400); }

/* -------------------------- ApplicationCard ------------------------ */
.pm-apps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-5); }
.pm-app { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-card); display: grid; grid-template-rows: auto 1fr; transition: transform .3s ease; }
.pm-app:hover { transform: translateY(-6px); }
.pm-app__media { position: relative; aspect-ratio: 4 / 3; max-width: 100%; margin: 10px 10px 0; border-radius: calc(var(--radius-lg) - 8px); overflow: visible; }
.pm-app__media img { width: 100%; height: 100%; object-fit: cover; border-radius: calc(var(--radius-lg) - 8px); }
.pm-app__icon { position: absolute; left: 50%; bottom: -26px; transform: translateX(-50%); width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; background: var(--orange-500); color: var(--white); border: 4px solid var(--white); }
.pm-app__body { display: grid; justify-items: center; text-align: center; gap: 8px; padding: 38px 22px 24px; }
.pm-app__title { font-family: var(--font-display); font-style: italic; font-weight: 900; font-stretch: 80%; text-transform: uppercase; font-size: 21px; line-height: 1.02; text-wrap: balance; }
.pm-app__body p { font-size: 15px; line-height: 22px; color: var(--ink-muted); margin-bottom: 6px; }

/* ----------------------------- TrustGrid --------------------------- */
.pm-trust { display: grid; grid-template-columns: 1fr minmax(0, 400px) 1fr; gap: var(--space-6); align-items: center; }
.pm-trust__col { display: grid; gap: var(--space-6); }
.pm-trust__item { display: grid; gap: 10px; }
.pm-trust__col:first-child .pm-trust__item { text-align: right; justify-items: end; }
.pm-trust__icon { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: var(--green-600); color: var(--white); box-shadow: 0 0 0 6px var(--white); }
.pm-trust__item h3 { font-family: var(--font-display); font-style: italic; font-weight: 900; font-stretch: 80%; text-transform: uppercase; font-size: 21px; line-height: 1; margin-bottom: 6px; }
.pm-trust__item p { font-size: 15px; line-height: 23px; color: var(--ink-muted); max-width: 32ch; }
.pm-trust__photo { position: relative; border-radius: 200px 200px var(--radius-xl) var(--radius-xl); overflow: hidden; border: 8px solid var(--white); box-shadow: var(--shadow-float); aspect-ratio: 10 / 11; max-width: 100%; }
.pm-trust__photo img { width: 100%; height: 100%; object-fit: cover; }
.pm-trust__photo figcaption { position: absolute; left: 12px; right: 12px; bottom: 12px; background: rgba(11,34,21,.8); color: var(--white); font-size: 13px; font-weight: 700; padding: 8px 12px; border-radius: var(--radius-pill); text-align: center; }

/* ---------------------------- StatsSection ------------------------- */
.pm-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--space-4); }
.pm-stat { text-align: center; padding: 22px 12px; border-radius: var(--radius-md); background: var(--green-800); border: 1px solid rgba(255,255,255,.1); display: grid; gap: 6px; justify-items: center; align-content: start; }
.pm-stat__value { font-family: var(--font-display); font-style: italic; font-weight: 900; font-stretch: 78%; font-size: clamp(44px, 5vw, 62px); line-height: .95; color: var(--white); font-variant-numeric: tabular-nums; }
.pm-stat__value span:first-child, .pm-stat__value span:last-child { color: var(--orange-500); }
.pm-stat__value span:last-child { font-size: .5em; letter-spacing: 0; margin-left: 2px; }
.pm-stat__label { font-weight: 700; font-size: 15px; color: var(--ink-on-dark); }
.pm-placeholder { display: inline-block; font-size: 11.5px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; color: #7a3306; background: var(--orange-100); padding: 4px 9px; border-radius: var(--radius-pill); }

/* --------------------------- TestimonialCard ----------------------- */
.pm-testimonial { display: grid; gap: 14px; align-content: start; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-card); height: 100%; }
.pm-testimonial .pm-placeholder { justify-self: start; }
.pm-stars { display: flex; gap: 2px; color: var(--orange-500); }
.pm-testimonial blockquote p { font-size: 15.5px; line-height: 24px; color: var(--ink); }
.pm-testimonial footer { display: flex; gap: 12px; align-items: center; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); }
.pm-avatar { width: 44px; height: 44px; flex: none; border-radius: 50%; display: grid; place-items: center; background: var(--orange-600); color: var(--white); font-weight: 800; font-size: 18px; }
.pm-testimonial__name { font-weight: 800; font-size: 15.5px; }
.pm-testimonial__meta { font-size: 13.5px; color: var(--ink-muted); }

/* ------------------------------- FAQ ------------------------------- */
.pm-faq { display: grid; gap: 10px; max-width: 860px; margin-inline: auto; }
.pm-faq__item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); }
.pm-faq__item summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 22px; cursor: pointer; }
.pm-faq__item summary::-webkit-details-marker { display: none; }
.pm-faq__item summary h3 { font-size: 17px; line-height: 23px; font-weight: 800; }
.pm-faq__item summary .pm-icon { color: var(--green-600); transition: transform .25s; }
.pm-faq__item[open] summary .pm-icon { transform: rotate(180deg); }
.pm-faq__item p { padding: 0 22px 20px; color: var(--ink-muted); font-size: 15.5px; line-height: 25px; max-width: 70ch; }

/* ------------------------------ FinalCTA --------------------------- */
.pm-final { position: relative; isolation: isolate; min-height: 640px; display: grid; place-items: center; padding: 150px var(--space-4) 120px; overflow: hidden; }
.pm-final__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.pm-final::after { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(ellipse at center, rgba(11,34,21,.15), rgba(11,34,21,.5)); }
.pm-final > .pm-wave { position: absolute; top: -1px; left: 0; right: 0; }
.pm-final__panel { position: relative; max-width: 660px; text-align: center; display: grid; justify-items: center; gap: var(--space-4); background: var(--green-900); color: var(--white); padding: 56px 44px 44px; border-radius: var(--radius-xl); box-shadow: var(--shadow-float); border: 1px solid rgba(255,255,255,.12); }
.pm-final__badge { position: absolute; top: -34px; width: 68px; height: 68px; border-radius: 50%; display: grid; place-items: center; background: var(--orange-500); color: var(--white); border: 5px solid var(--green-900); }
.pm-final__title { font-family: var(--font-display); font-style: italic; font-weight: 900; font-stretch: 76%; text-transform: uppercase; font-size: clamp(32px, 4.6vw, 52px); line-height: .95; text-wrap: balance; }
.pm-final__panel p { color: var(--ink-on-dark); font-size: 18px; line-height: 27px; max-width: 44ch; }
.pm-final__ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-3); }

/* ------------------------------- Footer ---------------------------- */
.pm-footer { position: relative; background: var(--green-950); color: var(--ink-on-dark); margin-top: -1px; }
.pm-footer > .pm-wave { position: absolute; left: 0; right: 0; top: 0; transform: translateY(-99%); }
.pm-footer__inner { max-width: calc(var(--container) + 2 * var(--space-6)); margin-inline: auto; padding: var(--space-8) var(--space-6) var(--space-6); display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: var(--space-6); }
.pm-footer__brand { display: grid; gap: var(--space-4); align-content: start; justify-items: start; }
.pm-footer__brand p { font-size: 15px; line-height: 23px; max-width: 34ch; }
.pm-footer__col h2 { font-family: var(--font-display); font-style: italic; font-weight: 900; text-transform: uppercase; font-size: 17px; color: var(--white); margin-bottom: 14px; letter-spacing: .3px; }
.pm-footer__col ul { display: grid; gap: 8px; }
.pm-footer__col a, .pm-footer__col span { overflow-wrap: anywhere; color: var(--ink-on-dark); text-decoration: none; font-size: 14.5px; display: inline-flex; align-items: center; gap: 8px; }
.pm-footer__col a:hover { color: var(--white); text-decoration: underline; }
.pm-footer__contact .pm-icon { color: var(--green-400); }
.pm-footer__legal { max-width: calc(var(--container) + 2 * var(--space-6)); margin-inline: auto; padding: 18px var(--space-6) calc(18px + env(safe-area-inset-bottom, 0px)); border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; font-size: 13.5px; }
.pm-footer__legal a { color: var(--ink-on-dark); margin-left: 18px; }

/* --------------------------- WhatsAppButton ------------------------ */
.pm-wa-float { position: fixed; right: 18px; bottom: calc(18px + env(safe-area-inset-bottom, 0px)); z-index: 60; display: inline-flex; align-items: center; gap: 10px; min-height: 58px; padding: 10px 20px 10px 14px; border-radius: var(--radius-pill); background: var(--whatsapp); color: var(--whatsapp-ink); font-weight: 800; font-size: 15px; text-decoration: none; box-shadow: var(--shadow-float); transition: transform .2s; }
.pm-wa-float:hover { transform: translateY(-2px) scale(1.02); }
.pm-wa-float::before { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: 0 0 0 0 rgba(37,211,102,.55); animation: pm-pulse 2.6s infinite; }
@keyframes pm-pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* ------------------------------ Responsive ------------------------- */
@media (min-width: 1121px) { .pm-mobile-nav { display: none !important; } }
@media (max-width: 1120px) {
  .pm-nav { display: none; }
  .pm-header__actions { margin-left: auto; }
  .pm-burger { display: grid; }
  .pm-form--compact { grid-template-columns: 1fr; }
  .pm-form--compact .pm-form__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pm-form--compact .pm-form__actions { padding-bottom: 0; margin-top: var(--space-3); }
  .pm-benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pm-products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pm-carousel__track, .pm-carousel--3 .pm-carousel__track { grid-auto-columns: calc((100% - 2 * var(--space-4)) / 3); }
  .pm-split { grid-template-columns: 1fr; gap: var(--space-5); }
  .pm-footer__inner { grid-template-columns: repeat(3, 1fr); }
  .pm-footer__brand { grid-column: 1 / -1; }
  .pm-trust { grid-template-columns: 1fr 1fr; }
  .pm-trust__photo { grid-column: 1 / -1; grid-row: 1; max-width: 420px; justify-self: center; width: 100%; }
}
@media (max-width: 860px) {
  .pm-section { padding-block: var(--space-8); }
  .pm-carousel--3 .pm-carousel__track { grid-auto-columns: calc((100% - var(--space-4)) / 2); }
  .pm-services, .pm-apps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pm-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: var(--space-6); }
  .pm-steps::before { display: none; }
  .pm-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pm-form--full .pm-form__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  :root { --header-h: 64px; }
  .pm-container, .pm-header__inner, .pm-hero__content, .pm-hero__form, .pm-footer__inner, .pm-footer__legal { padding-inline: var(--space-4); }
  .pm-section { padding-block: var(--space-7); }
  .pm-heading { margin-bottom: var(--space-6); }
  .pm-subtitle { font-size: 16.5px; line-height: 25px; }
  .pm-header__actions .pm-btn { padding-inline: 14px; font-size: 13px; min-height: 40px; }
  .pm-logo__mark { width: 38px; height: 38px; }
  .pm-logo__text { font-size: 18px; }
  .pm-logo__text small { font-size: 8.5px; letter-spacing: 1px; }
  .pm-hero { padding-top: calc(var(--header-h) + 30px); padding-bottom: 70px; min-height: 0; }
  .pm-hero__media img { object-position: 64% 50%; }
  .pm-hero__shade { background: linear-gradient(180deg, rgba(11,34,21,.8) 0%, rgba(11,34,21,.72) 45%, rgba(11,34,21,.35) 70%, rgba(11,34,21,.6) 100%); }
  .pm-hero__title { font-size: clamp(36px, 10.4vw, 46px); }
  .pm-hero__sub { font-size: 16.5px; line-height: 25px; }
  .pm-hero__ctas { display: grid; width: 100%; }
  .pm-hero__ctas .pm-btn { width: 100%; }
  .pm-hero__form { margin-top: var(--space-6); }
  .pm-form--compact .pm-form__grid { grid-template-columns: 1fr 1fr; }
  .pm-form--compact .pm-field:nth-child(1), .pm-form--compact .pm-field:nth-child(2), .pm-form--compact .pm-field:nth-child(3) { grid-column: 1 / -1; }
  .pm-form--compact .pm-btn { width: 100%; }
  .pm-form { padding: 18px; }
  .pm-benefits { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 82%; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 4px 14px; margin-inline: -4px; scrollbar-width: none; }
  .pm-benefit { scroll-snap-align: start; }
  .pm-carousel__track, .pm-carousel--3 .pm-carousel__track { grid-auto-columns: 82%; }
  .pm-head-row { margin-bottom: var(--space-6); }
  .pm-legal { padding-inline: var(--space-4); }
  .pm-carousel__btn { display: none; }
  .pm-products, .pm-apps { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 84%; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 4px 16px; margin-inline: -4px; scrollbar-width: none; }
  .pm-products > *, .pm-apps > * { scroll-snap-align: start; }
  .pm-services { grid-template-columns: 1fr; }
  .pm-service { grid-template-columns: auto 1fr; column-gap: 14px; padding: 18px; }
  .pm-service__icon { grid-row: span 3; width: 50px; height: 50px; }
  .pm-steps { grid-template-columns: 1fr; gap: var(--space-4); }
  .pm-step { grid-template-columns: 88px 1fr; text-align: left; justify-items: start; column-gap: 16px; align-items: center; }
  .pm-step__ring { width: 88px; height: 88px; grid-row: span 2; margin: 0; }
  .pm-step__icon { width: 60px; height: 60px; }
  .pm-step__icon .pm-icon { width: 26px; height: 26px; }
  .pm-step__n { width: 32px; height: 32px; font-size: 13px; }
  .pm-step__title { font-size: 18px; max-width: none; align-self: end; }
  .pm-step p { align-self: start; }
  .pm-band { min-height: 420px; }
  .pm-band__card { margin-top: 120px; padding: 22px; }
  .pm-ba { aspect-ratio: 4 / 5; }
  .pm-ba-legend { grid-template-columns: 1fr; }
  .pm-trust { grid-template-columns: 1fr; gap: var(--space-5); }
  .pm-trust__col { gap: var(--space-4); }
  .pm-trust__col:first-child .pm-trust__item, .pm-trust__item { text-align: left; justify-items: start; grid-template-columns: 56px 1fr; column-gap: 14px; }
  .pm-trust__photo { border-radius: 140px 140px var(--radius-lg) var(--radius-lg); }
  .pm-stats { gap: 10px; }
  .pm-stat { padding: 18px 8px; }
  .pm-final { padding: 110px var(--space-4) 80px; min-height: 0; }
  .pm-final__panel { padding: 50px 22px 28px; }
  .pm-final__ctas { display: grid; width: 100%; }
  .pm-footer__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-5); padding-top: var(--space-7); }
  .pm-footer__legal a { margin: 0 14px 0 0; }
  .pm-wa-float { right: 12px; bottom: calc(12px + env(safe-area-inset-bottom, 0px)); min-height: 54px; padding: 10px 16px 10px 12px; font-size: 14px; }
}
@media (max-width: 480px) {
  .pm-header .pm-logo__text { font-size: 18px; line-height: .88; }
  .pm-header .pm-logo__text em { display: block; }
  .pm-header .pm-logo__text small { display: none; }
  .pm-header__inner { gap: 10px; }
  .pm-header__actions { gap: 8px; }
  .pm-header__actions .pm-btn { padding-inline: 12px; font-size: 12.5px; letter-spacing: .3px; }
  .pm-burger { width: 42px; height: 42px; }
}
@media (max-width: 340px) {
  .pm-header__actions .pm-btn { display: none; }
}
@media (max-width: 380px) {
  .pm-wa-float span { display: none; }
  .pm-wa-float { padding: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .pm-page *, .pm-page *::before, .pm-page *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .pm-pre { opacity: 1; transform: none; }
}
