:root {
  --bg: #f7f9f8;
  --bg-soft: #eef3f1;
  --surface: #ffffff;
  --surface-2: #f4f7f6;
  --dark: #071011;
  --dark-soft: #0d1819;
  --dark-surface: #122022;
  --text: #11191a;
  --muted: #5e6b6c;
  --text-on-dark: #f5f9f9;
  --muted-on-dark: #b7c4c4;
  --line: #dbe4e2;
  --line-dark: rgba(255,255,255,.13);
  --accent: #19c5c7;
  --accent-dark: #0c9da0;
  --accent-soft: #dff7f6;
  --danger: #b83b3b;
  --font-display: "Outfit", sans-serif;
  --font-body: "Inter", sans-serif;
  --container: 1180px;
  --section: clamp(4.5rem, 8vw, 7.5rem);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --header-height: 74px;
  --shadow: 0 22px 58px rgba(15, 43, 44, .12);
  --shadow-dark: 0 24px 70px rgba(0,0,0,.34);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 16px); }
body { margin: 0; min-width: 320px; overflow-x: hidden; background: var(--bg); color: var(--text); font-family: var(--font-body); line-height: 1.6; -webkit-font-smoothing: antialiased; }
body, h1, h2, h3, p, ul, ol, figure { margin-top: 0; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

h1, h2, h3 { margin-bottom: .85rem; font-family: var(--font-display); line-height: 1.08; letter-spacing: -.025em; }
h1 { font-size: clamp(2.75rem, 6vw, 5.35rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4.4vw, 3.5rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
p { color: var(--muted); }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section { position: relative; padding-block: var(--section); }
.light-section { background: var(--bg); color: var(--text); }
.light-soft-section { background: var(--bg-soft); color: var(--text); }
.dark-section { background: var(--dark); color: var(--text-on-dark); }
.dark-section p { color: var(--muted-on-dark); }
.section-heading { max-width: 790px; margin: 0 auto 3rem; text-align: center; }
.section-heading p:last-child { max-width: 660px; margin-inline: auto; font-size: 1.04rem; }
.eyebrow { margin-bottom: 1rem; color: var(--accent-dark); font-family: var(--font-display); font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.dark-section .eyebrow { color: #65e2e2; }
.pill { display: inline-flex; padding: .35rem .7rem; border: 1px solid rgba(12,157,160,.28); border-radius: 999px; background: var(--accent-soft); color: #087f82; font-size: .75rem; font-weight: 800; }

.skip-link { position: fixed; top: -100px; left: 1rem; z-index: 9999; padding: .75rem 1rem; border-radius: 8px; background: var(--accent); color: #001112; font-weight: 700; }
.skip-link:focus { top: 1rem; }

.btn { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: .86rem 1.35rem; border: 1px solid transparent; border-radius: 999px; font-family: var(--font-display); font-weight: 500; line-height: 1.1; text-align: center; transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #ffffff; box-shadow: 0 12px 30px rgba(25,197,199,.22); }
.btn-primary:visited { color: #ffffff; }
.btn-primary:hover { background: #43dcde; color: #ffffff; box-shadow: 0 16px 38px rgba(25,197,199,.3); }
.btn-secondary { border-color: rgba(255,255,255,.34); background: rgba(4,12,13,.42); color: var(--text-on-dark); backdrop-filter: blur(8px); }
.btn-secondary:hover { border-color: rgba(255,255,255,.8); background: rgba(255,255,255,.09); }
.btn-large { min-height: 56px; padding: 1rem 1.65rem; }
.btn-block { width: 100%; }
.text-link { color: #087f82; font-family: var(--font-display); font-weight: 600; }
.text-link:hover { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 4px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 1000; height: var(--header-height); border-bottom: 1px solid rgba(15,43,44,.10); background: #fff; box-shadow: 0 8px 26px rgba(14,42,42,.07); }
.site-header.is-scrolled { border-color: rgba(15,43,44,.10); background: #fff; box-shadow: 0 8px 26px rgba(14,42,42,.07); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; }
.brand img { width: 190px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 1.45rem; }
.main-nav a { color: #263334; font-size: .9rem; font-weight: 600; transition: color .2s ease; }
.site-header.is-scrolled .main-nav a { color: #263334; }
.main-nav a:hover, .site-header.is-scrolled .main-nav a:hover { color: var(--accent-dark); }
.header-cta { min-height: 44px; padding: .7rem 1.1rem; font-size: .88rem; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 10px; }
.nav-toggle span { display: block; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--text); transition: transform .2s ease, opacity .2s ease, background .2s ease; }
.site-header.is-scrolled .nav-toggle span { background: var(--text); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { position: relative; min-height: clamp(500px, 61svh, 560px); display: grid; align-items: center; overflow: hidden; }
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-media picture, .hero-media img { width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: center; }
.hero-overlay { background: linear-gradient(90deg, rgba(3,9,10,.98) 0%, rgba(3,9,10,.9) 42%, rgba(3,9,10,.45) 70%, rgba(3,9,10,.18) 100%), linear-gradient(0deg, var(--dark) 0%, transparent 22%); }
.hero-content { position: relative; z-index: 2; padding-top: calc(var(--header-height) + 1.7rem); padding-bottom: 1.7rem; }
.hero-copy { max-width: 760px; }
.hero-corner-copy { position: absolute; right: 1.2rem; bottom: 1.35rem; z-index: 2; max-width: min(34vw, 420px); margin: 0; color: #dce7e7; font-size: clamp(.94rem, 1.15vw, 1.04rem); line-height: 1.55; font-weight: 400; text-align: left; }

.hero h1 { font-size: clamp(2.35rem, 4.6vw, 4.1rem); font-weight: 500; line-height: 1.03; letter-spacing: -.012em; }
.hero h1 span { display: block; color: #5ce0e1; }
.hero .eyebrow { font-weight: 600; letter-spacing: .11em; }
.hero-lead { max-width: 660px; margin-bottom: 1.15rem; color: #dce7e7; font-size: clamp(.97rem, 1.45vw, 1.08rem); font-weight: 400; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; }
.hero-actions .btn { font-weight: 500; }
.cta-note { margin: .65rem 0 1rem; color: #c0cccc; font-size: .84rem; }
.hero-checks { display: flex; flex-wrap: wrap; gap: .7rem 1.35rem; padding: 0; margin: 0; list-style: none; }
.hero-checks li { color: #f0f5f5; font-size: .88rem; font-weight: 500; }
.hero-checks li::before { content: "✓"; margin-right: .45rem; color: #5ce0e1; }

.trust-strip { border-bottom: 1px solid var(--line); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { padding: 1.45rem 1rem; border-right: 1px solid var(--line); text-align: center; }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { color: var(--text); font-family: var(--font-display); font-size: .98rem; }
.trust-grid span { margin-top: .22rem; color: var(--muted); font-size: .76rem; }

.results { background: radial-gradient(circle at 50% 0, rgba(25,197,199,.10), transparent 32%), var(--bg); }
.results-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.5rem; }
.result-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow); }
.ba-slider { position: relative; aspect-ratio: 4/5; overflow: hidden; background: #071011; }
.ba-after, .ba-before { position: absolute; inset: 0; overflow: hidden; }
.ba-before { width: 50%; border-right: 2px solid #fff; }
.ba-slider picture, .ba-slider img { width: 100%; height: 100%; }
.ba-slider img { max-width: none; object-fit: cover; }
.ba-before img { width: calc((min(100vw - 2.5rem, 1180px) - 1.5rem) / 2); }
.ba-range { position: absolute; inset: 0; z-index: 8; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.ba-handle { position: absolute; top: 50%; left: 50%; z-index: 6; width: 44px; height: 44px; display: grid; place-items: center; transform: translate(-50%,-50%); border: 2px solid #fff; border-radius: 50%; background: rgba(4,10,11,.76); color: #fff; box-shadow: 0 6px 20px rgba(0,0,0,.3); }
.ba-label { position: absolute; top: 1rem; z-index: 5; padding: .38rem .65rem; border-radius: 999px; background: rgba(4,10,11,.77); color: #fff; font-size: .72rem; font-weight: 800; backdrop-filter: blur(6px); }
.ba-label-before { left: 1rem; }
.ba-label-after { right: 1rem; }
.result-copy { padding: 1.35rem 1.4rem 1.5rem; }
.result-copy h3 { margin-top: .8rem; color: var(--text); }
.result-copy p { margin-bottom: 0; }
.section-cta { display: flex; align-items: center; justify-content: center; gap: 1.2rem; margin-top: 2.6rem; }
.section-cta p { margin: 0; color: #344142; font-weight: 700; }

.split-layout { display: grid; grid-template-columns: .94fr 1.06fr; gap: clamp(2.5rem, 7vw, 6rem); align-items: center; }
.split-copy p { max-width: 620px; font-size: 1.04rem; }
.purpose-points { display: grid; gap: 1rem; }
.purpose-points > div { display: grid; grid-template-columns: 54px 1fr; column-gap: 1rem; padding: 1.25rem; border: 1px solid #cfdcda; border-radius: var(--radius); background: rgba(255,255,255,.72); }
.purpose-points span { grid-row: span 2; width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: var(--accent-soft); color: var(--accent-dark); font-family: var(--font-display); font-weight: 800; }
.purpose-points strong { align-self: end; font-family: var(--font-display); font-size: 1.06rem; }
.purpose-points p { margin: .2rem 0 0; font-size: .9rem; }

.services-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.25rem; }
.service-card { position: relative; padding: 1.65rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 12px 34px rgba(15,43,44,.07); }
.service-card.service-featured { border-color: rgba(12,157,160,.48); background: linear-gradient(145deg, #fff, #edfbfa); }
.service-media { margin: 0 0 1.15rem; aspect-ratio: 4 / 3; overflow: hidden; border: 1px solid #d7e3e1; border-radius: 16px; background: #eaf1f0; }
.service-media picture, .service-media img { width: 100%; height: 100%; }
.service-media img { object-fit: cover; transition: transform .45s var(--ease); }
.service-card:hover .service-media img { transform: scale(1.025); }
.service-tag { position: absolute; top: 1.1rem; right: 1.1rem; padding: .35rem .62rem; border-radius: 999px; background: var(--dark); color: #fff; font-size: .7rem; font-weight: 800; }
.service-icon { width: fit-content; margin-bottom: 1.25rem; padding: .45rem .65rem; border-radius: 9px; background: var(--accent-soft); color: #087f82; font-family: var(--font-display); font-size: .74rem; font-weight: 800; letter-spacing: .06em; }
.service-card h3 { color: var(--text); }
.service-card p { max-width: 510px; }
.service-card ul { padding: 0; margin: 1.1rem 0 1.35rem; list-style: none; }
.service-card li { margin: .48rem 0; color: #364445; font-size: .9rem; }
.service-card li::before { content: "✓"; margin-right: .55rem; color: var(--accent-dark); font-weight: 800; }


.protocol-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.protocol-card { min-height: 270px; padding: 1.7rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 12px 36px rgba(15,43,44,.06); }
.protocol-card.featured { border-color: rgba(12,157,160,.55); background: linear-gradient(160deg, #dff7f6, #fff 68%); transform: translateY(-12px); }
.card-number { display: inline-grid; width: 44px; height: 44px; place-items: center; margin-bottom: 2.5rem; border-radius: 50%; background: var(--accent-soft); color: var(--accent-dark); font-family: var(--font-display); font-weight: 800; }
.protocol-card p { margin-bottom: 0; }


.process-social {
  border-block: 1px solid var(--line-dark);
  background: radial-gradient(circle at 80% 0, rgba(25,197,199,.12), transparent 32%), var(--dark);
}
.process-social-grid {
  display: grid;
  grid-template-columns: minmax(0,.78fr) minmax(320px,1.22fr);
  gap: clamp(2.4rem, 6vw, 5.5rem);
  align-items: center;
}
.process-social-copy { max-width: 600px; }
.process-social-copy > p:not(.eyebrow) { font-size: 1.04rem; line-height: 1.75; }
.process-social-points {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: .7rem;
  margin: 1.45rem 0 1.8rem;
}
.process-social-points span {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: .72rem .85rem;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background: rgba(255,255,255,.045);
  color: #e5eeee;
  font-size: .88rem;
  font-weight: 650;
}
.process-social-points span::before {
  content: "✓";
  margin-right: .55rem;
  color: #65e2e2;
  font-weight: 800;
}
.tiktok-profile-shell {
  position: relative;
  min-width: 0;
  min-height: 430px;
  padding: clamp(.65rem,1.5vw,1rem);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.035);
  box-shadow: var(--shadow-dark);
}
.tiktok-profile-shell .tiktok-embed {
  position: relative;
  z-index: 2;
  width: 100% !important;
  margin: 0 auto !important;
}
.tiktok-loading {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: .8rem;
  color: var(--muted-on-dark);
  text-align: center;
}
.tiktok-loading span {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(101,226,226,.22);
  border-top-color: #65e2e2;
  border-radius: 50%;
  animation: tiktok-loading-spin .8s linear infinite;
}
.tiktok-loading p { margin: 0; font-size: .87rem; }
@keyframes tiktok-loading-spin { to { transform: rotate(360deg); } }

.offer-card { display: grid; grid-template-columns: .9fr 1.1fr; overflow: hidden; border: 1px solid rgba(12,157,160,.3); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow); }
.offer-copy { padding: clamp(2rem, 5vw, 4rem); }
.offer-copy p { max-width: 560px; }
.offer-note { display: block; max-width: 500px; margin-top: 1rem; color: var(--muted); font-size: .82rem; }
.included-list { display: grid; grid-template-columns: repeat(2, 1fr); align-content: center; gap: .8rem; padding: clamp(2rem, 5vw, 4rem); background: #e8f4f2; }
.included-list div { display: flex; align-items: center; min-height: 62px; padding: .9rem 1rem; border: 1px solid #cbddda; border-radius: 14px; background: rgba(255,255,255,.78); font-weight: 700; }
.included-list div::before { content: "✓"; margin-right: .65rem; color: var(--accent-dark); }

.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; padding: 0; list-style: none; }
.process-grid li { position: relative; padding: 1.25rem; border-top: 2px solid #ccdbd9; }
.process-grid li > span { display: inline-flex; margin-bottom: 2.3rem; color: var(--accent-dark); font-family: var(--font-display); font-size: 1.35rem; font-weight: 800; }
.process-grid li:not(:last-child)::after { content: "→"; position: absolute; top: 1.2rem; right: -.75rem; z-index: 2; color: #9ba9a8; }
.process-grid h3 { font-size: 1.05rem; }
.process-grid p { margin-bottom: 0; font-size: .86rem; }

.video-proof { border-block: 1px solid var(--line-dark); background: #0a1415; }
.video-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.video-copy p { max-width: 580px; }
.simple-list { padding: 0; margin: 1.6rem 0 0; list-style: none; }
.simple-list li { margin: .75rem 0; color: #e0e7e7; }
.simple-list li::before { content: "✓"; margin-right: .65rem; color: #65e2e2; }
.video-frame { position: relative; max-width: 440px; margin-inline: auto; overflow: hidden; border: 1px solid var(--line-dark); border-radius: var(--radius-lg); background: #000; box-shadow: var(--shadow-dark); }
.video-frame video { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.video-sound-toggle {
  position: absolute;
  top: .85rem;
  right: .85rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .68rem .82rem;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
  background: rgba(4,13,14,.82);
  color: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  font: inherit;
}
.video-sound-toggle:hover { background: rgba(8,127,130,.94); }
.video-sound-toggle:focus-visible { outline: 3px solid #65e2e2; outline-offset: 3px; }
.video-sound-toggle span { font-size: 1rem; }
.video-sound-toggle strong { color: inherit; font-size: .76rem; font-weight: 700; }
@media (max-width: 480px) {
  .video-sound-toggle { top: .65rem; right: .65rem; padding: .58rem .7rem; }
  .video-sound-toggle strong { font-size: .7rem; }
}

.faq-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(2.5rem, 7vw, 6rem); }
.faq-heading { position: sticky; top: calc(var(--header-height) + 2rem); align-self: start; }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item h3 { margin: 0; }
.accordion-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.4rem 0; border: 0; background: transparent; color: var(--text); text-align: left; font-family: var(--font-display); font-size: 1.06rem; font-weight: 700; }
.accordion-trigger span { color: var(--accent-dark); font-size: 1.45rem; transition: transform .2s ease; }
.accordion-trigger[aria-expanded="true"] span { transform: rotate(45deg); }
.accordion-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s var(--ease); }
.accordion-panel > p { overflow: hidden; margin: 0; }
.accordion-item.is-open .accordion-panel { grid-template-rows: 1fr; }
.accordion-item.is-open .accordion-panel > p { padding-bottom: 1.35rem; }

.quote { background: radial-gradient(circle at 82% 10%, rgba(25,197,199,.15), transparent 25%), var(--bg-soft); }
.quote-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(2.5rem, 7vw, 6rem); align-items: start; }
.quote-copy { position: sticky; top: calc(var(--header-height) + 2rem); }
.quote-confidence { display: grid; gap: .65rem; margin-top: 1.6rem; }
.quote-confidence span { color: #344142; font-size: .9rem; }
.quote-confidence span::before { content: "✓"; margin-right: .55rem; color: var(--accent-dark); }
.quote-form { padding: clamp(1.3rem, 4vw, 2.2rem); border: 1px solid #ccdbd9; border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow); }
.form-row { display: grid; gap: 1rem; }
.two-columns { grid-template-columns: repeat(2, 1fr); }
.form-field { margin-bottom: 1rem; }
.form-field label { display: block; margin-bottom: .45rem; color: #263334; font-size: .86rem; font-weight: 700; }
.form-field label span { color: var(--muted); font-weight: 400; }
.form-field input, .form-field select, .form-field textarea { width: 100%; min-height: 50px; padding: .8rem .9rem; border: 1px solid #bccdca; border-radius: 12px; background: #fbfdfc; color: var(--text); transition: border-color .2s ease, box-shadow .2s ease; }
.form-field textarea { resize: vertical; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #83908f; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--accent-dark); box-shadow: 0 0 0 4px rgba(25,197,199,.14); outline: none; }
.form-field.has-error input, .form-field.has-error select { border-color: var(--danger); }
.field-error { display: block; min-height: 1.1rem; margin-top: .25rem; color: var(--danger); font-size: .75rem; }
.photo-note { display: flex; align-items: flex-start; gap: .6rem; margin: .25rem 0 1.2rem; color: #435152; font-size: .84rem; }
.photo-note input { width: 18px; height: 18px; margin-top: .15rem; accent-color: var(--accent-dark); }
.form-status { min-height: 1.2rem; margin: .7rem 0 0; color: #087f82; font-size: .82rem; text-align: center; }
.form-legal { margin: .45rem 0 0; color: #778382; font-size: .7rem; text-align: center; }

.final-cta { padding-block: 4.5rem; border-top: 1px solid var(--line-dark); background: radial-gradient(circle at 20% 0, rgba(25,197,199,.14), transparent 35%), var(--dark); }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.final-cta h2 { max-width: 760px; margin-bottom: 0; font-size: clamp(1.8rem, 4vw, 3rem); }

.site-footer { padding-top: 4rem; padding-bottom: 6.5rem; border-top: 1px solid var(--line-dark); background: #040808; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .6fr; gap: 3rem; }
.footer-brand img { width: 190px; height: auto; margin-bottom: 1rem; }
.footer-brand p { max-width: 480px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: .55rem; }
.footer-grid strong { margin-bottom: .35rem; font-family: var(--font-display); }
.footer-grid a, .footer-grid span { color: var(--muted-on-dark); font-size: .88rem; }
.footer-grid a:hover { color: #65e2e2; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.2rem; border-top: 1px solid var(--line-dark); }
.footer-bottom p { margin: 0; font-size: .72rem; }

.mobile-cta { display: none; }
.reveal { opacity: 1; transform: none; }

@media (max-width: 1020px) {
  .header-cta { display: none; }
  .nav-toggle { display: block; }
  .main-nav { position: fixed; inset: var(--header-height) 0 auto; display: grid; gap: 0; padding: .8rem 1.25rem 1.2rem; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.98); box-shadow: 0 18px 35px rgba(15,43,44,.1); transform: translateY(-135%); transition: transform .3s var(--ease); }
  .main-nav.is-open { transform: translateY(0); }
  .main-nav a, .site-header.is-scrolled .main-nav a { padding: .85rem 0; border-bottom: 1px solid var(--line); color: var(--text); }
  .hero-overlay { background: linear-gradient(90deg, rgba(3,9,10,.98), rgba(3,9,10,.74) 72%, rgba(3,9,10,.4)), linear-gradient(0deg, var(--dark), transparent 26%); }
  .split-layout, .offer-card, .video-grid, .faq-layout, .quote-grid { grid-template-columns: 1fr; }
  .protocol-grid { grid-template-columns: 1fr; }
  .protocol-card.featured { transform: none; }
  .offer-copy, .included-list { padding: 2rem; }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid li:nth-child(3)::after { display: none; }
  .faq-heading, .quote-copy { position: static; }
  .video-frame { max-width: 400px; }
}

@media (max-width: 760px) {
  :root { --header-height: 66px; --section: 4.25rem; }
  .container { width: min(100% - 1.5rem, var(--container)); }
  .brand img { width: 155px; }
  .hero { min-height: 600px; }
  .hero-media img { object-position: 58% center; }
  .hero-overlay { background: linear-gradient(180deg, rgba(3,9,10,.48) 0%, rgba(3,9,10,.93) 48%, var(--dark) 96%); }
  .hero-content { align-self: end; padding-top: calc(var(--header-height) + 2.2rem); padding-bottom: 2.15rem; }
  .hero h1 { font-size: clamp(1.95rem, 8.6vw, 2.6rem); font-weight: 500; line-height: 1.04; }
  .hero-lead { font-size: .91rem; line-height: 1.5; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-checks { gap: .45rem .9rem; }
  .hero-checks li { font-size: .82rem; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div { border-bottom: 1px solid var(--line); }
  .trust-grid > div:nth-child(2n) { border-right: 0; }
  .trust-grid > div:nth-last-child(-n+2) { border-bottom: 0; }
  .results-grid, .services-grid { grid-template-columns: 1fr; }
  .ba-before img { width: calc(100vw - 1.5rem); }
  .section-cta { flex-direction: column; text-align: center; }
  .purpose-points > div { grid-template-columns: 44px 1fr; }
  .purpose-points span { width: 44px; height: 44px; }
  .included-list { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { display: grid; grid-template-columns: 48px 1fr; column-gap: .8rem; }
  .process-grid li > span { grid-row: span 2; margin-bottom: 0; }
  .process-grid li::after { display: none; }
  .two-columns { grid-template-columns: 1fr; gap: 0; }
  .final-cta-inner { align-items: stretch; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; }
  .mobile-cta { position: fixed; z-index: 950; left: .75rem; right: .75rem; bottom: calc(.75rem + env(safe-area-inset-bottom)); display: block; transition: opacity .2s ease, transform .2s ease; }
  .mobile-cta .btn { width: 100%; box-shadow: 0 12px 34px rgba(0,0,0,.35); }
  .mobile-cta.is-hidden { opacity: 0; visibility: hidden; transform: translateY(140%); pointer-events: none; }
  .site-footer { padding-bottom: 7.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .001ms !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}


/* Dynamic service configurator */
.configurator {
  background:
    radial-gradient(circle at 10% 0, rgba(25,197,199,.14), transparent 28%),
    linear-gradient(180deg, #f5f9f8 0%, #edf4f2 100%);
}
.configurator-heading { margin-bottom: 2.4rem; }
.configurator-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(310px, .65fr);
  gap: 1.5rem;
  align-items: start;
}
.configurator-main,
.selection-summary {
  border: 1px solid #cfddda;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}
.configurator-main { padding: clamp(1.15rem, 3vw, 2rem); }
.builder-step + .config-panels,
.config-panels + .common-config { margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.step-title { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.step-title > span {
  width: 38px; height: 38px; flex: 0 0 38px; display: grid; place-items: center;
  border-radius: 50%; background: var(--dark); color: #65e2e2;
  font-family: var(--font-display); font-weight: 800;
}
.step-title strong, .step-title small { display: block; }
.step-title strong { color: var(--text); font-family: var(--font-display); font-size: 1.08rem; }
.step-title small { margin-top: .1rem; color: var(--muted); font-size: .78rem; }
.category-picker { position: relative; }
.category-picker > summary {
  min-height: 64px; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .85rem 1.1rem; border: 2px solid var(--accent);
  border-radius: 17px; background: #f8fbfb; color: var(--text);
  font-size: 1rem; cursor: pointer; list-style: none;
  transition: box-shadow .2s ease, background .2s ease;
}
.category-picker > summary::-webkit-details-marker { display: none; }
.category-picker[open] > summary { background: #fff; box-shadow: 0 0 0 4px rgba(25,197,199,.13); }
.picker-current { font-weight: 700; }
.picker-chevron { width: 10px; height: 10px; border-right: 2px solid #263334; border-bottom: 2px solid #263334; transform: rotate(45deg) translateY(-3px); transition: transform .2s ease; }
.category-picker[open] .picker-chevron { transform: rotate(225deg) translate(-2px,-2px); }
.category-options {
  position: absolute; z-index: 30; top: calc(100% + .35rem); left: 0; right: 0;
  max-height: min(520px, 65vh); overflow-y: auto; padding: .55rem;
  border: 1px solid #d5dfdd; border-radius: 20px; background: #fff;
  box-shadow: 0 26px 65px rgba(15,43,44,.18);
}
.category-option {
  width: 100%; display: grid; grid-template-columns: 48px 1fr; align-items: center;
  gap: .8rem; padding: .78rem; border: 0; border-radius: 14px; background: transparent;
  color: var(--text); text-align: left; transition: background .18s ease, transform .18s ease;
}
.category-option:hover, .category-option.is-selected { background: #edf9f8; }
.category-option:hover { transform: translateX(2px); }
.category-option strong, .category-option small { display: block; }
.category-option strong { font-size: .98rem; }
.category-option small { margin-top: .08rem; color: #6b7879; font-size: .76rem; }
.category-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: #e8f8f7; color: var(--accent-dark); }
.category-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.config-panel { animation: configFade .28s var(--ease); }
@keyframes configFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.package-fieldset { padding: 0; margin: .2rem 0 0; border: 0; }
.package-fieldset legend { margin-bottom: .7rem; color: #263334; font-size: .86rem; font-weight: 700; }
.package-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: .8rem; }
.package-card {
  position: relative; min-height: 210px; display: flex; flex-direction: column;
  padding: 1.05rem; border: 2px solid #dde5e3; border-radius: 18px;
  background: #fbfdfc; cursor: pointer; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.package-card:hover { transform: translateY(-2px); border-color: #9fd6d4; }
.package-card:has(input:checked) { border-color: var(--accent-dark); background: #eaf9f8; box-shadow: 0 10px 28px rgba(12,157,160,.13); }
.package-card input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.package-card::after {
  content: ""; position: absolute; top: .95rem; right: .95rem; width: 20px; height: 20px;
  border: 2px solid #bdc9c8; border-radius: 50%; background: #fff;
}
.package-card:has(input:checked)::after { border: 6px solid var(--accent-dark); }
.package-name { margin-bottom: 1.35rem; color: var(--accent-dark); font-family: var(--font-display); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.package-card strong { padding-right: 1.25rem; color: var(--text); font-family: var(--font-display); font-size: 1.05rem; line-height: 1.2; }
.package-card small { margin-top: .5rem; color: var(--muted); font-size: .76rem; line-height: 1.5; }
.package-recommended { border-color: rgba(12,157,160,.5); }
.recommended-badge { position: absolute; top: -.62rem; left: 50%; transform: translateX(-50%); padding: .28rem .58rem; border-radius: 999px; background: var(--dark); color: #65e2e2; font-size: .64rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; white-space: nowrap; }
.common-config { animation: configFade .28s var(--ease); }
.selection-summary {
  position: sticky; top: calc(var(--header-height) + 1.25rem);
  padding: 1.4rem;
  background: linear-gradient(165deg, #071011, #102022);
  color: var(--text-on-dark); box-shadow: var(--shadow-dark);
}
.summary-kicker { color: #65e2e2; font-size: .72rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.selection-summary h3 { margin: .35rem 0 1.1rem; color: #fff; font-size: 1.45rem; }
.summary-empty { min-height: 180px; display: grid; place-items: center; align-content: center; padding: 1.2rem; border: 1px dashed rgba(255,255,255,.2); border-radius: 16px; text-align: center; }
.summary-empty span { color: #65e2e2; font-size: 2rem; }
.summary-empty p { margin: .3rem 0 0; color: #b7c4c4; font-size: .84rem; }
.summary-list { margin: 0 0 1rem; }
.summary-row { display: grid; grid-template-columns: .76fr 1.24fr; gap: .7rem; padding: .68rem 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.summary-row dt { color: #91a2a2; font-size: .76rem; }
.summary-row dd { margin: 0; color: #f5f9f9; font-size: .78rem; font-weight: 700; text-align: right; overflow-wrap: anywhere; }
.summary-row.is-pending dd { color: #d6a96c; font-weight: 600; }
.summary-missing { min-height: 2.4rem; margin: .3rem 0 .8rem; color: #d5b07b; font-size: .76rem; text-align: center; }
.summary-missing.is-ready { color: #76e3c0; }
.selection-summary .btn:disabled { opacity: .42; cursor: not-allowed; transform: none; box-shadow: none; }
.summary-note { margin: .7rem 0 0; color: #91a2a2; font-size: .68rem; text-align: center; }
.selection-summary .form-status { color: #76e3c0; }
.configurator [hidden] { display: none !important; }

@media (max-width: 1020px) {
  .configurator-shell { grid-template-columns: 1fr; }
  .selection-summary { position: static; }
}

@media (max-width: 760px) {
  .configurator-main { padding: 1rem; }
  .category-picker > summary { min-height: 58px; padding: .75rem .9rem; }
  .category-options { position: static; max-height: none; margin-top: .35rem; box-shadow: 0 14px 32px rgba(15,43,44,.12); }
  .category-option { grid-template-columns: 42px 1fr; padding: .7rem; }
  .category-icon { width: 40px; height: 40px; }
  .package-grid { grid-template-columns: 1fr; }
  .package-card { min-height: 158px; }
  .summary-row { grid-template-columns: .7fr 1.3fr; }
}

/* Compact section headings and four-card before/after gallery */
.configurator,
.results {
  padding-block: clamp(2.8rem, 5vw, 4.4rem);
}

.configurator-heading,
.results .section-heading {
  max-width: 720px;
  margin-bottom: clamp(1.5rem, 3vw, 2.1rem);
}

.configurator-heading .eyebrow,
.results .section-heading .eyebrow {
  margin-bottom: .65rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.configurator-heading h2,
.results .section-heading h2 {
  margin-bottom: .65rem;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.018em;
}

.configurator-heading p:last-child,
.results .section-heading p:last-child {
  max-width: 700px;
  margin-bottom: 0;
  font-size: clamp(.9rem, 1.35vw, 1rem);
  line-height: 1.55;
}

.results-grid-compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.results-grid-compact .result-card {
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(15, 43, 44, .09);
}

.results-grid-compact .ba-slider {
  aspect-ratio: 4 / 3;
}

.results-grid-compact .ba-before {
  width: 100%;
  border-right: 0;
  will-change: clip-path;
}

.results-grid-compact .ba-before::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 2px;
  background: #fff;
  transform: translateX(1px);
}

.results-grid-compact .ba-before img {
  width: 100% !important;
}

.results-grid-compact .ba-handle {
  width: 34px;
  height: 34px;
  border-width: 1.5px;
  font-size: .78rem;
}

.results-grid-compact .ba-label {
  top: .65rem;
  padding: .26rem .5rem;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .01em;
}

.results-grid-compact .ba-label-before { left: .65rem; }
.results-grid-compact .ba-label-after { right: .65rem; }

.results-grid-compact .result-copy {
  padding: .9rem 1rem 1rem;
}

.results-grid-compact .pill {
  padding: .24rem .52rem;
  font-size: .64rem;
  font-weight: 600;
}

.results-grid-compact .result-copy h3 {
  margin: .55rem 0 .28rem;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.012em;
}

.results-grid-compact .result-copy p {
  font-size: .78rem;
  line-height: 1.45;
}

.results .section-cta {
  margin-top: 1.8rem;
}

@media (max-width: 1080px) {
  .results-grid-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .configurator,
  .results {
    padding-block: 2.7rem;
  }

  .configurator-heading,
  .results .section-heading {
    margin-bottom: 1.35rem;
  }

  .configurator-heading h2,
  .results .section-heading h2 {
    font-size: clamp(1.85rem, 8.5vw, 2.35rem);
    font-weight: 500;
  }

  .configurator-heading p:last-child,
  .results .section-heading p:last-child {
    font-size: .9rem;
  }

  .results-grid-compact {
    grid-template-columns: 1fr;
    gap: .9rem;
  }

  .results-grid-compact .result-card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(135px, .9fr);
    align-items: stretch;
  }

  .results-grid-compact .ba-slider {
    min-height: 190px;
    aspect-ratio: auto;
  }

  .results-grid-compact .result-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: .85rem;
  }

  .results-grid-compact .result-copy h3 {
    font-size: .98rem;
  }

  .results-grid-compact .result-copy p {
    font-size: .72rem;
  }
}

@media (max-width: 430px) {
  .results-grid-compact .result-card {
    grid-template-columns: 1fr;
  }

  .results-grid-compact .ba-slider {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
}

/* Production accessibility, SEO landing pages and conversion refinements */
:root {
  --action: #087f82;
  --action-hover: #006f73;
  --action-soft: #e5f5f5;
}

h1, h2, h3 { font-weight: 600; }
.btn-primary,
.btn-primary:visited {
  background: var(--action);
  color: #fff;
  box-shadow: 0 12px 30px rgba(8,127,130,.24);
}
.btn-primary:hover {
  background: var(--action-hover);
  color: #fff;
  box-shadow: 0 16px 38px rgba(0,111,115,.3);
}
.btn-ghost {
  border-color: #b9c8c6;
  background: #fff;
  color: #263334;
}
.btn-ghost:hover { border-color: var(--action); background: #f2f8f8; }
.text-link { font-weight: 600; }

.hero { min-height: clamp(460px, 54svh, 520px); }
.hero-content { padding-top: calc(var(--header-height) + 1.25rem); padding-bottom: 1.25rem; }

.package-card { min-height: 350px; }
.package-card:focus-within {
  border-color: var(--action);
  box-shadow: 0 0 0 4px rgba(8,127,130,.16);
}
.package-includes {
  display: grid;
  gap: .42rem;
  padding: 0;
  margin: .85rem 0 0;
  list-style: none;
}
.package-includes li {
  position: relative;
  padding-left: 1.05rem;
  color: #3f4d4e;
  font-size: .72rem;
  line-height: 1.4;
}
.package-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--action);
  font-weight: 700;
}
.package-recommended .package-includes li::before { color: #087f82; }

.service-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .65rem 1rem;
  margin-top: auto;
}
.service-card { display: flex; flex-direction: column; }
.service-card ul { flex: 1; }
.service-seo-links {
  margin-top: 1.4rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  text-align: center;
}
.service-seo-links p { margin: 0; font-size: .86rem; }
.service-seo-links a { color: var(--action); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

.category-picker > summary:focus-visible,
.category-option:focus-visible,
.accordion-trigger:focus-visible {
  outline: 3px solid var(--action);
  outline-offset: 3px;
}

.noscript-notice {
  padding: .75rem 1rem;
  background: #fff4d7;
  color: #4d3a00;
  text-align: center;
  font-size: .88rem;
}

.consent-banner {
  position: fixed;
  z-index: 2000;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  max-width: 960px;
  margin-inline: auto;
  padding: 1rem;
  border: 1px solid #cbd8d6;
  border-radius: 18px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 24px 70px rgba(15,43,44,.24);
  backdrop-filter: blur(12px);
}
.consent-banner[hidden] { display: none; }
.consent-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; }
.consent-inner strong { display: block; margin-bottom: .18rem; font-family: var(--font-display); }
.consent-inner p { margin: 0; font-size: .8rem; line-height: 1.45; }
.consent-inner a { color: var(--action); text-decoration: underline; text-underline-offset: 2px; }
.consent-actions { display: flex; flex: 0 0 auto; gap: .55rem; }
.consent-actions .btn { min-height: 42px; padding: .7rem 1rem; font-size: .78rem; }

.footer-grid { grid-template-columns: 1.35fr .75fr .65fr .8fr; }

/* Shared styles for SEO service and legal pages */
.page-hero {
  padding: calc(var(--header-height) + 4rem) 0 4rem;
  background: radial-gradient(circle at 78% 0, rgba(25,197,199,.16), transparent 30%), var(--dark);
  color: var(--text-on-dark);
}
.page-hero-grid { display: grid; grid-template-columns: 1fr .8fr; gap: clamp(2rem,6vw,5rem); align-items: center; }
.page-hero h1 { max-width: 780px; font-size: clamp(2.2rem,5vw,4.4rem); font-weight: 600; }
.page-hero p { max-width: 680px; color: var(--muted-on-dark); font-size: 1.04rem; }
.page-hero-media { overflow: hidden; border: 1px solid var(--line-dark); border-radius: var(--radius-lg); box-shadow: var(--shadow-dark); }
.page-hero-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.breadcrumbs { margin-bottom: 1.1rem; color: #b9c8c8; font-size: .78rem; }
.breadcrumbs a { color: #65e2e2; }
.content-grid { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(280px,.75fr); gap: clamp(2rem,6vw,5rem); align-items: start; }
.content-prose h2 { margin-top: 2.2rem; font-size: clamp(1.65rem,3vw,2.5rem); }
.content-prose h2:first-child { margin-top: 0; }
.content-prose h3 { margin-top: 1.5rem; }
.content-prose p, .content-prose li { font-size: .98rem; }
.content-prose ul { padding-left: 1.25rem; }
.sticky-contact { position: sticky; top: calc(var(--header-height) + 1.5rem); padding: 1.4rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.sticky-contact h2 { font-size: 1.4rem; }
.sticky-contact .btn { width: 100%; margin-top: .6rem; }
.related-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.related-links a { padding: 1.1rem; border: 1px solid var(--line); border-radius: 14px; background: #fff; color: var(--action); font-weight: 600; }
.legal-page { padding: calc(var(--header-height) + 3.5rem) 0 5rem; background: #fff; }
.legal-page article { max-width: 840px; margin-inline: auto; }
.legal-page h1 { font-size: clamp(2rem,5vw,3.5rem); }
.legal-page h2 { margin-top: 2rem; font-size: 1.45rem; }
.legal-page p, .legal-page li { font-size: .94rem; }

@media (max-width: 1020px) {
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .page-hero-grid, .content-grid { grid-template-columns: 1fr; }
  .sticky-contact { position: static; }
}

@media (max-width: 760px) {
  .hero { min-height: 520px; }
  .hero-content { padding-top: calc(var(--header-height) + 1.4rem); padding-bottom: 1.25rem; }
  .package-card { min-height: auto; }
  .consent-inner { align-items: stretch; flex-direction: column; }
  .consent-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .page-hero { padding-top: calc(var(--header-height) + 2.5rem); padding-bottom: 2.5rem; }
  .related-links { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* 2026-07-22: ajustes de estructura solicitados */
.service-media {
  aspect-ratio: 16 / 7;
  max-height: 210px;
  margin-bottom: .95rem;
  border-radius: 14px;
}
.service-media img {
  object-fit: cover;
  object-position: center;
}
.service-card {
  padding: 1.35rem;
}
.service-icon {
  margin-bottom: .85rem;
}

.summary-empty {
  min-height: 0;
  display: block;
  padding: 1rem;
  text-align: left;
}
.summary-guide-heading {
  margin-bottom: .95rem;
}
.summary-guide-kicker {
  display: block;
  margin-bottom: .25rem;
  color: #65e2e2;
  font-size: .64rem !important;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.summary-guide-heading > strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
}
.summary-guide-heading p {
  margin: .35rem 0 0;
  color: #aebcbc;
  font-size: .72rem;
  line-height: 1.45;
}
.summary-guide {
  display: grid;
  gap: .62rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.summary-guide li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: .65rem;
  align-items: start;
}
.summary-guide li > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(101,226,226,.13);
  color: #65e2e2;
  font-size: .72rem;
  font-weight: 700;
}
.summary-guide strong,
.summary-guide small {
  display: block;
}
.summary-guide strong {
  color: #f5f9f9;
  font-size: .76rem;
  font-weight: 600;
  line-height: 1.25;
}
.summary-guide small {
  margin-top: .1rem;
  color: #91a2a2;
  font-size: .65rem;
  line-height: 1.35;
}

@media (max-width: 760px) {
  .service-media {
    max-height: 180px;
    aspect-ratio: 16 / 7;
  }
  .service-card {
    padding: 1.1rem;
  }
  .summary-empty {
    padding: .9rem;
  }
}

/* 2026-07-22: resumen progresivo y detalles desplegables de servicios */
.quote-progress {
  margin-bottom: 1rem;
  padding: .95rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  background: rgba(255,255,255,.04);
}
.quote-progress-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .8rem;
  margin-bottom: .7rem;
}
.quote-progress-heading span {
  color: #65e2e2;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.quote-progress-heading strong {
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  text-align: right;
  line-height: 1.3;
}
.quote-progress-track {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
}
.quote-progress-track span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #19c5c7, #65e2e2);
  transition: width .28s var(--ease);
}
.quote-progress-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: .35rem;
  padding: 0;
  margin: .85rem 0 0;
  list-style: none;
}
.quote-progress-steps li {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: .18rem;
  color: #718181;
  text-align: center;
}
.quote-progress-steps li > span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  color: #9aabab;
  font-size: .65rem;
  font-weight: 700;
}
.quote-progress-steps small {
  color: #9aabab;
  font-size: .58rem;
  line-height: 1.15;
}
.quote-progress-steps em {
  color: #718181;
  font-size: .52rem;
  font-style: normal;
  line-height: 1.1;
}
.quote-progress-steps li.is-active > span {
  border-color: #65e2e2;
  background: rgba(101,226,226,.12);
  color: #65e2e2;
}
.quote-progress-steps li.is-active small,
.quote-progress-steps li.is-active em { color: #dce8e8; }
.quote-progress-steps li.is-complete > span {
  border-color: #76e3c0;
  background: #76e3c0;
  color: #06201a;
}
.quote-progress-steps li.is-complete small,
.quote-progress-steps li.is-complete em { color: #76e3c0; }
.summary-empty {
  min-height: 118px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 1rem;
  text-align: center;
}
.summary-empty > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(101,226,226,.12);
  color: #65e2e2;
  font-size: 1rem;
}
.summary-empty > strong {
  margin-top: .55rem;
  color: #f5f9f9;
  font-size: .78rem;
  font-weight: 600;
}
.summary-empty > p {
  max-width: 245px;
  margin: .25rem auto 0;
  color: #91a2a2;
  font-size: .68rem;
  line-height: 1.4;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .7rem 1rem;
}
.service-details-toggle {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}
.service-details-toggle:focus-visible {
  border-radius: 4px;
  outline: 3px solid rgba(25,197,199,.35);
  outline-offset: 4px;
}
.service-detail-panel {
  width: 100%;
  margin: .15rem 0 1rem;
  padding: 1rem;
  border: 1px solid #cfe0de;
  border-radius: 15px;
  background: #f3faf9;
  animation: serviceDetailOpen .24s var(--ease);
}
.service-detail-panel[hidden] { display: none !important; }
@keyframes serviceDetailOpen {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: none; }
}
.service-detail-panel h4 {
  margin: 0 0 .3rem;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
}
.service-detail-panel > p {
  margin-bottom: .85rem;
  font-size: .78rem;
  line-height: 1.5;
}
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: .65rem;
}
.service-detail-group {
  padding: .7rem;
  border: 1px solid #d7e5e3;
  border-radius: 12px;
  background: #fff;
}
.service-detail-group h5 {
  margin: 0 0 .45rem;
  color: #087f82;
  font-family: var(--font-display);
  font-size: .73rem;
  font-weight: 700;
}
.service-detail-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-detail-group li {
  margin: .3rem 0;
  color: #445253;
  font-size: .68rem;
  line-height: 1.35;
}
.service-detail-group li::before {
  content: "✓";
  margin-right: .35rem;
  color: var(--accent-dark);
  font-weight: 700;
}
.service-page-link {
  display: inline-flex;
  margin-top: .8rem;
  color: #087f82;
  font-size: .7rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 760px) {
  .quote-progress-heading { display: block; }
  .quote-progress-heading strong { display: block; margin-top: .2rem; text-align: left; }
  .quote-progress-steps { gap: .2rem; }
  .quote-progress-steps small { font-size: .54rem; }
  .quote-progress-steps em { display: none; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-actions { align-items: flex-start; flex-direction: column; }
}



@media (max-width: 980px) {
  .hero-corner-copy { max-width: min(42vw, 360px); right: 1rem; bottom: 1.2rem; font-size: .93rem; }
}
@media (max-width: 720px) {
  .hero-corner-copy { position: static; max-width: 100%; margin-top: .9rem; color: #dce7e7; font-size: .94rem; line-height: 1.5; }
}

/* 2026-07-22: tarjetas de servicios más compactas */
.services-grid {
  max-width: 1080px;
  margin-inline: auto;
  gap: 1rem;
}
.service-card {
  padding: 1.15rem;
}
.service-media {
  max-height: 180px;
  aspect-ratio: 16 / 6.5;
  margin-bottom: .8rem;
}
.service-card h3 {
  font-size: clamp(1.12rem, 1.5vw, 1.32rem);
}
.service-card > p {
  font-size: .9rem;
  line-height: 1.55;
}
.service-card ul {
  margin-top: .85rem;
  margin-bottom: 1rem;
}
@media (max-width: 760px) {
  .services-grid { max-width: 560px; }
  .service-card { padding: 1rem; }
  .service-media { max-height: 160px; aspect-ratio: 16 / 7; }
}

@media (max-width: 980px) {
  .process-social-grid { grid-template-columns: 1fr; }
  .process-social-copy { max-width: 760px; }
  .tiktok-profile-shell { min-height: 390px; }
}
@media (max-width: 600px) {
  .process-social-points { grid-template-columns: 1fr; }
  .tiktok-profile-shell { min-height: 360px; padding: .4rem; border-radius: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .tiktok-loading span { animation: none; }
}

/* 2026-07-22: optimización móvil compacta y carruseles táctiles */
.mobile-swipe-hint { display: none; }

@media (max-width: 760px) {
  :root {
    --header-height: 60px;
    --section: 3.1rem;
  }

  .container { width: min(100% - 1.25rem, var(--container)); }
  .site-header { height: var(--header-height); }
  .brand img { width: 142px; }
  .nav-toggle { width: 42px; height: 42px; }

  .section { padding-block: var(--section); }
  .section-heading { margin-bottom: 1.25rem; }
  .section-heading .eyebrow { margin-bottom: .5rem; }
  .section-heading h2 { margin-bottom: .55rem; font-size: clamp(1.75rem, 8vw, 2.2rem); }
  .section-heading p:last-of-type:not(.mobile-swipe-hint) { font-size: .88rem; line-height: 1.48; }

  .mobile-swipe-hint {
    display: block;
    margin: .65rem 0 0 !important;
    color: #087f82 !important;
    font-size: .72rem !important;
    font-weight: 700;
    letter-spacing: .01em;
    text-align: center;
  }

  /* Hero compacto sin cambiar la vista de escritorio */
  .hero { min-height: 515px; }
  .hero-media img { object-position: 60% center; }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(3,9,10,.38) 0%, rgba(3,9,10,.88) 43%, rgba(3,9,10,.99) 100%);
  }
  .hero-content {
    align-self: end;
    padding-top: calc(var(--header-height) + 1rem);
    padding-bottom: 1rem;
  }
  .hero .eyebrow {
    margin-bottom: .65rem;
    font-size: .66rem;
    line-height: 1.35;
    letter-spacing: .095em;
  }
  .hero h1 {
    margin-bottom: .9rem;
    font-size: clamp(1.9rem, 8.6vw, 2.25rem);
    line-height: 1.02;
  }
  .hero-actions { gap: .55rem; }
  .hero-actions .btn {
    min-height: 48px;
    padding: .78rem 1rem;
    font-size: .9rem;
  }
  .hero-actions .btn-secondary { min-height: 44px; }
  .cta-note { display: none; }
  .hero-checks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: .35rem .65rem;
    margin-top: .8rem;
  }
  .hero-checks li { font-size: .72rem; white-space: nowrap; }
  .hero-checks li:last-child { grid-column: 1 / -1; }
  .hero-corner-copy {
    position: static;
    max-width: 270px;
    margin: .55rem 0 0 auto;
    color: #bdcaca;
    font-size: .72rem;
    line-height: 1.35;
    text-align: right;
  }

  /* Carrusel de beneficios bajo el hero */
  .trust-strip { overflow: hidden; }
  .trust-grid {
    display: flex;
    gap: .7rem;
    overflow-x: auto;
    padding-block: .75rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .trust-grid::-webkit-scrollbar { display: none; }
  .trust-grid > div {
    flex: 0 0 min(76vw, 275px);
    padding: .9rem 1rem;
    border: 1px solid var(--line) !important;
    border-radius: 14px;
    background: #fff;
    scroll-snap-align: start;
    text-align: left;
  }
  .trust-grid strong { font-size: .9rem; }
  .trust-grid span { font-size: .72rem; }

  /* Cotizador: menos altura y planes deslizables */
  .configurator,
  .results { padding-block: 2.65rem; }
  .configurator-main { padding: .85rem; border-radius: 20px; }
  .builder-step + .config-panels,
  .config-panels + .common-config { margin-top: 1rem; padding-top: 1rem; }
  .step-title { margin-bottom: .75rem; }
  .step-title > span { width: 32px; height: 32px; flex-basis: 32px; font-size: .8rem; }
  .step-title strong { font-size: .96rem; }
  .step-title small { font-size: .7rem; }
  .category-picker > summary { min-height: 52px; padding: .65rem .8rem; border-radius: 14px; font-size: .9rem; }
  .category-option { grid-template-columns: 36px 1fr; gap: .65rem; padding: .6rem; }
  .category-icon { width: 36px; height: 36px; }
  .category-option strong { font-size: .88rem; }
  .category-option small { font-size: .68rem; }
  .package-grid {
    display: flex;
    gap: .75rem;
    overflow-x: auto;
    padding: .7rem .05rem .35rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .package-grid::-webkit-scrollbar { display: none; }
  .package-card {
    flex: 0 0 min(80vw, 295px);
    min-height: 0 !important;
    padding: .95rem;
    scroll-snap-align: start;
  }
  .package-name { margin-bottom: .75rem; }
  .package-card small { font-size: .72rem; line-height: 1.4; }
  .package-includes { margin-top: .7rem; }
  .package-includes li { font-size: .7rem; }
  .selection-summary { padding: 1rem; border-radius: 20px; }
  .selection-summary h3 { margin-bottom: .8rem; font-size: 1.2rem; }
  .quote-progress { padding: .75rem; }
  .summary-empty { min-height: 92px; }

  /* Video de trabajo real más compacto */
  .video-proof { padding-block: 2.8rem; }
  .video-grid { gap: 1.35rem; }
  .video-copy h2 { font-size: 1.9rem; }
  .video-copy > p:not(.eyebrow) { font-size: .87rem; line-height: 1.5; }
  .simple-list {
    display: flex;
    gap: .55rem;
    overflow-x: auto;
    margin-top: .9rem;
    padding-bottom: .2rem;
    scrollbar-width: none;
  }
  .simple-list::-webkit-scrollbar { display: none; }
  .simple-list li {
    flex: 0 0 auto;
    margin: 0;
    padding: .45rem .65rem;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    font-size: .7rem;
    white-space: nowrap;
  }
  .video-frame { width: min(82vw, 315px); border-radius: 22px; }
  .video-sound-toggle { top: .6rem; right: .6rem; padding: .55rem .68rem; }

  /* Resultados antes/después en carrusel */
  .results-grid-compact {
    display: flex !important;
    grid-template-columns: none !important;
    gap: .85rem;
    overflow-x: auto;
    padding: .15rem .05rem .7rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .results-grid-compact::-webkit-scrollbar { display: none; }
  .results-grid-compact .result-card {
    flex: 0 0 min(84vw, 330px);
    display: block !important;
    scroll-snap-align: start;
  }
  .results-grid-compact .ba-slider {
    min-height: 0 !important;
    aspect-ratio: 4 / 3 !important;
  }
  .results-grid-compact .result-copy { padding: .75rem .85rem .85rem; }
  .results-grid-compact .result-copy h3 { font-size: .95rem; }
  .results-grid-compact .result-copy p { font-size: .7rem; }
  .results .section-cta { margin-top: 1.2rem; gap: .7rem; }
  .results .section-cta p { font-size: .82rem; }

  /* Servicios en carrusel: una tarjeta visible y una pequeña pista de la siguiente */
  .services { padding-block: 2.8rem; }
  .services-grid {
    display: flex !important;
    max-width: none;
    gap: .85rem;
    overflow-x: auto;
    padding: .15rem .05rem .75rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .services-grid::-webkit-scrollbar { display: none; }
  .service-card {
    flex: 0 0 min(86vw, 340px);
    padding: .9rem;
    border-radius: 20px;
    scroll-snap-align: start;
  }
  .service-media { max-height: 135px; margin-bottom: .65rem; border-radius: 13px; }
  .service-icon { margin-bottom: .45rem; padding: .28rem .55rem; font-size: .66rem; }
  .service-card h3 { margin-bottom: .55rem; font-size: 1.16rem; }
  .service-card > p { margin-bottom: .65rem; font-size: .8rem; line-height: 1.45; }
  .service-card ul { margin: .55rem 0 .75rem; }
  .service-card li { margin: .28rem 0; font-size: .78rem; }
  .service-actions { gap: .45rem; }
  .service-actions .text-link { font-size: .79rem; }
  .service-detail-panel { padding: .75rem; margin-bottom: .7rem; }
  .service-detail-panel > p { font-size: .72rem; }
  .service-detail-group { padding: .6rem; }

  /* Protocolo 3 en 1 en carrusel */
  .protocol { padding-block: 2.8rem; }
  .protocol-grid {
    display: flex !important;
    grid-template-columns: none !important;
    gap: .85rem;
    overflow-x: auto;
    padding: .15rem .05rem .75rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .protocol-grid::-webkit-scrollbar { display: none; }
  .protocol-card,
  .protocol-card.featured {
    flex: 0 0 min(82vw, 315px);
    min-height: 215px;
    padding: 1.15rem;
    transform: none;
    scroll-snap-align: start;
  }
  .protocol-card .card-number { width: 44px; height: 44px; margin-bottom: 2.1rem; }
  .protocol-card h3 { font-size: 1.1rem; }
  .protocol-card p { font-size: .82rem; line-height: 1.5; }

  /* Limpieza interior completa: contenido y lista incluidos más compactos */
  .included { padding-block: 2.8rem; }
  .offer-card { border-radius: 22px; }
  .offer-copy { padding: 1.25rem; }
  .offer-copy .eyebrow { margin-bottom: .45rem; }
  .offer-copy h2 { margin-bottom: .7rem; font-size: 2rem; }
  .offer-copy p { margin-bottom: .85rem; font-size: .88rem; line-height: 1.5; }
  .offer-copy .btn { width: 100%; min-height: 48px; padding: .75rem 1rem; font-size: .86rem; }
  .offer-note { margin-top: .75rem; font-size: .76rem; line-height: 1.4; }
  .included-swipe-hint {
    padding: .8rem 1rem 0;
    margin: 0 !important;
    background: #e8f4f2;
    text-align: left;
  }
  .included-list {
    display: flex !important;
    grid-template-columns: none !important;
    gap: .7rem;
    overflow-x: auto;
    padding: .8rem 1rem 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .included-list::-webkit-scrollbar { display: none; }
  .included-list div {
    flex: 0 0 min(70vw, 240px);
    min-height: 58px;
    padding: .75rem .85rem;
    font-size: .82rem;
    scroll-snap-align: start;
  }

  /* Cómo lo hacemos y TikTok contenidos dentro de una altura razonable */
  .process-social { padding-block: 2.9rem; }
  .process-social-grid { gap: 1.5rem; }
  .process-social-copy h2 { font-size: 1.95rem; }
  .process-social-copy > p:not(.eyebrow) { font-size: .87rem; line-height: 1.55; }
  .process-social-points {
    display: flex;
    gap: .6rem;
    overflow-x: auto;
    padding-bottom: .25rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .process-social-points::-webkit-scrollbar { display: none; }
  .process-social-points span {
    flex: 0 0 auto;
    min-height: 42px;
    padding: .65rem .8rem;
    font-size: .72rem;
    white-space: nowrap;
  }
  .process-social-copy .btn { width: 100%; min-height: 46px; font-size: .82rem; }
  .tiktok-profile-shell {
    min-height: 0;
    max-height: 560px;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: .35rem;
    border-radius: 18px;
  }

  /* FAQ y cierre más compactos */
  .faq { padding-block: 2.8rem; }
  .faq-layout { gap: 1rem; }
  .faq-heading h2 { font-size: 1.9rem; }
  .faq-heading p { font-size: .86rem; line-height: 1.5; }
  .accordion-trigger { padding: 1rem 0; font-size: .92rem; line-height: 1.3; }
  .accordion-item.is-open .accordion-panel > p { padding-bottom: 1rem; font-size: .82rem; line-height: 1.5; }
  .final-cta { padding-block: 2.8rem; }
  .final-cta h2 { font-size: 1.75rem; }
  .final-cta .btn { width: 100%; min-height: 48px; }

  /* Footer compacto y CTA flotante menos invasivo */
  .site-footer { padding-top: 2.8rem; padding-bottom: 6.5rem; }
  .footer-grid { gap: 1.2rem; }
  .footer-brand img { width: 155px; margin-bottom: .65rem; }
  .footer-brand p { margin-bottom: .2rem; font-size: .8rem; line-height: 1.5; }
  .footer-grid > div:not(.footer-brand) {
    gap: .35rem;
    padding-top: .85rem;
    border-top: 1px solid var(--line-dark);
  }
  .footer-grid a,
  .footer-grid span { font-size: .78rem; }
  .footer-bottom { margin-top: 1.4rem; padding-top: .9rem; gap: .2rem; }

  .mobile-cta {
    left: auto;
    right: .7rem;
    width: min(278px, calc(100% - 1.4rem));
    bottom: calc(.65rem + env(safe-area-inset-bottom));
  }
  .mobile-cta .btn {
    min-height: 48px;
    padding: .72rem 1rem;
    font-size: .86rem;
  }
}

@media (max-width: 390px) {
  .hero { min-height: 500px; }
  .hero h1 { font-size: 1.82rem; }
  .hero .eyebrow { font-size: .62rem; }
  .hero-checks li { font-size: .68rem; }
  .service-card { flex-basis: 88vw; }
  .protocol-card { flex-basis: 84vw; }
  .results-grid-compact .result-card { flex-basis: 86vw; }
}



.tiktok-mobile-card { display: none; }

/* 2026-07-22: corrección crítica de desbordamiento horizontal en iPhone/Safari */
@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip !important;
    overscroll-behavior-x: none;
  }

  body {
    position: relative;
  }

  .site-header,
  main,
  main > section,
  .site-footer {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .container {
    width: calc(100% - 1.25rem) !important;
    max-width: calc(100% - 1.25rem) !important;
    min-width: 0;
  }

  .header-inner,
  .hero-content,
  .hero-copy,
  .configurator-shell,
  .configurator-main,
  .selection-summary,
  .offer-card,
  .process-social-grid,
  .process-social-copy,
  .video-grid,
  .video-copy,
  .faq-layout,
  .footer-grid {
    min-width: 0;
    max-width: 100%;
  }

  .trust-grid,
  .package-grid,
  .results-grid-compact,
  .services-grid,
  .protocol-grid,
  .included-list,
  .process-social-points,
  .simple-list {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overscroll-behavior-inline: contain;
  }

  .trust-grid > *,
  .package-grid > *,
  .results-grid-compact > *,
  .services-grid > *,
  .protocol-grid > *,
  .included-list > *,
  .process-social-points > *,
  .simple-list > * {
    max-width: calc(100vw - 1.25rem);
  }

  .tiktok-profile-shell,
  .tiktok-profile-shell blockquote,
  .tiktok-profile-shell .tiktok-embed,
  .tiktok-profile-shell iframe,
  .tiktok-profile-shell > * {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .tiktok-profile-shell {
    overflow-x: clip !important;
  }

  iframe,
  video,
  img,
  svg,
  canvas {
    max-width: 100%;
  }

  .ba-before img {
    width: min(84vw, 330px);
  }
}


/* 2026-07-22: aislamiento del embed de TikTok y bloqueo del desplazamiento lateral */
@media (max-width: 760px) {
  html {
    overflow-x: hidden !important;
  }

  body {
    overflow-x: hidden !important;
  }

  .tiktok-profile-shell {
    display: none !important;
  }

  .tiktok-mobile-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: .75rem;
    align-items: center;
    margin-top: .75rem;
    padding: .85rem;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 16px;
    background: rgba(255,255,255,.07);
    color: #fff;
  }

  .tiktok-mobile-card span {
    grid-row: 1 / span 2;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #fff;
    color: #071011;
    font-size: 1.25rem;
    font-weight: 800;
  }

  .tiktok-mobile-card strong,
  .tiktok-mobile-card small {
    min-width: 0;
  }

  .tiktok-mobile-card strong {
    font-family: var(--font-display);
    font-size: .86rem;
    line-height: 1.25;
  }

  .tiktok-mobile-card small {
    color: #b7c4c4;
    font-size: .68rem;
    line-height: 1.35;
  }

  .process-social-copy > .btn {
    margin-top: .25rem;
  }

  main,
  main > section,
  .site-header,
  .site-footer,
  .hero,
  .trust-strip,
  .configurator,
  .services,
  .protocol,
  .included,
  .process-social,
  .video-proof,
  .results,
  .faq,
  .final-cta {
    contain: inline-size;
  }
}


/* Opiniones reales de clientes */
.testimonials { background: #f3f8f7; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.testimonial-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid #d5e3e1;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(11, 31, 33, .08);
}
.testimonial-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: #efe9df;
  border-bottom: 1px solid #e0e7e6;
}
.testimonial-card figcaption { padding: 1rem 1rem 1.1rem; }
.testimonial-card blockquote {
  margin: 0 0 .55rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: .98rem;
  font-weight: 700;
  line-height: 1.45;
}
.testimonial-card figcaption span {
  color: var(--muted);
  font-size: .74rem;
}
@media (max-width: 1080px) {
  .testimonials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .testimonials-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(82%, 1fr);
    grid-template-columns: none;
    gap: .8rem;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    padding-bottom: .4rem;
  }
  .testimonials-grid::-webkit-scrollbar { display: none; }
  .testimonial-card { scroll-snap-align: start; }
  .testimonial-card img { aspect-ratio: 3 / 2; }
  .testimonial-card figcaption { padding: .85rem .9rem .95rem; }
  .testimonial-card blockquote { font-size: .9rem; }
}

/* Header: navegación, CTA y accesos directos a redes */
.header-actions {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex: 0 0 auto;
}
.header-socials {
  display: flex;
  align-items: center;
  gap: .35rem;
}
.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 1px solid #cfdcda;
  border-radius: 50%;
  background: #fff;
  color: var(--accent-dark);
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}
.social-icon-link:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: var(--accent-dark);
  color: #fff;
}
.social-icon-link:focus-visible {
  outline: 3px solid rgba(25,197,199,.34);
  outline-offset: 2px;
}
.social-icon-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-icon-link[aria-label*="Facebook"] svg path { fill: currentColor; stroke: none; }
.main-nav-social { display: none; }

@media (max-width: 1320px) {
  .main-nav { gap: .9rem; }
  .main-nav a { font-size: .82rem; }
  .header-cta { padding-inline: .9rem; font-size: .82rem; }
  .social-icon-link { width: 31px; height: 31px; flex-basis: 31px; }
}

/* Opiniones: carrusel real en escritorio y móvil */
.testimonials-carousel {
  position: relative;
  width: 100%;
  min-width: 0;
}
.testimonials-grid {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 1rem;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  padding: .25rem .15rem 1rem;
}
.testimonials-grid::-webkit-scrollbar { display: none; }
.testimonial-card {
  flex: 0 0 clamp(300px, 29vw, 370px);
  min-width: 0;
  scroll-snap-align: start;
}
.testimonial-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cae0dd;
  border-radius: 50%;
  background: rgba(255,255,255,.96);
  color: var(--accent-dark);
  box-shadow: 0 12px 30px rgba(11,31,33,.14);
  cursor: pointer;
  transform: translateY(-50%);
  font-size: 1.35rem;
  line-height: 1;
  transition: transform .2s ease, background .2s ease, color .2s ease, opacity .2s ease;
}
.testimonial-arrow:hover { background: var(--accent-dark); color: #fff; transform: translateY(-50%) scale(1.04); }
.testimonial-arrow:focus-visible { outline: 3px solid rgba(25,197,199,.34); outline-offset: 3px; }
.testimonial-arrow:disabled { opacity: .28; cursor: default; }
.testimonial-arrow-prev { left: -22px; }
.testimonial-arrow-next { right: -22px; }
.carousel-hint {
  margin-top: .6rem;
  color: var(--accent-dark);
  font-size: .8rem;
  font-weight: 700;
}

@media (max-width: 980px) {
  .header-actions { display: none; }
  .main-nav-social {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding-top: .85rem;
  }
  .main-nav-social .social-icon-link { border-bottom: 1px solid #cfdcda !important; padding: 0 !important; }
  .testimonial-arrow { display: none; }
  .testimonial-card { flex-basis: min(82vw, 350px); }
}

@media (max-width: 720px) {
  .testimonials-grid { gap: .8rem; padding-inline: 0; }
  .testimonial-card { flex-basis: 84%; }
  .carousel-hint { font-size: .76rem; }
}

/* 2026-07-23: mejora del hero móvil + video TikTok visible */
.tiktok-video-shell {
  min-width: 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  padding: .9rem;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: 0 22px 56px rgba(0,0,0,.24);
}
.tiktok-video-frame {
  overflow: hidden;
  border-radius: 22px;
  background: #000;
  box-shadow: 0 16px 36px rgba(0,0,0,.26);
}
.tiktok-video-frame video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
}
.tiktok-video-caption {
  display: grid;
  gap: .28rem;
  padding: .85rem .25rem .15rem;
}
.tiktok-video-caption strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
}
.tiktok-video-caption small {
  color: #b7c4c4;
  font-size: .84rem;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .hero {
    min-height: 620px;
  }
  .hero-media img {
    object-position: 72% center;
  }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(2,9,10,.44) 0%, rgba(2,9,10,.68) 30%, rgba(2,9,10,.82) 62%, rgba(2,9,10,.94) 100%),
      linear-gradient(90deg, rgba(2,9,10,.72) 0%, rgba(2,9,10,.30) 42%, rgba(2,9,10,.18) 100%);
  }
  .hero-content {
    padding-top: calc(var(--header-height) + 1.2rem);
    padding-bottom: 1.3rem;
  }
  .hero-copy {
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
  }
  .hero .eyebrow {
    margin-inline: auto;
    text-align: center;
  }
  .hero h1 {
    max-width: 11ch;
    margin-inline: auto;
    font-size: clamp(2.08rem, 8vw, 2.8rem);
    line-height: 1.02;
    text-wrap: balance;
  }
  .hero h1 span {
    display: inline;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-checks {
    justify-items: center;
    align-items: center;
    gap: .4rem .7rem;
  }
  .hero-checks li {
    white-space: normal;
    text-align: center;
    line-height: 1.35;
  }
  .hero-checks li:last-child {
    grid-column: auto;
  }
  .hero-corner-copy {
    max-width: 100%;
    margin: .75rem auto 0;
    text-align: center;
    font-size: .8rem;
    line-height: 1.4;
    color: #d7e3e3;
  }

  .process-social-copy,
  .process-social-copy .eyebrow,
  .process-social-copy h2,
  .process-social-copy > p,
  .process-social-copy .btn {
    text-align: center;
    margin-inline: auto;
  }
  .process-social-points {
    justify-content: flex-start;
  }
  .process-social-points span {
    white-space: normal;
    text-align: left;
  }
  .tiktok-video-shell {
    padding: .65rem;
    border-radius: 22px;
  }
  .tiktok-video-caption {
    text-align: center;
    padding-inline: .15rem;
  }

  /* ocultar fallback antiguo en móvil si existiera en caché de CSS */
  .tiktok-mobile-card,
  .tiktok-profile-shell {
    display: none !important;
  }
}

@media (min-width: 761px) {
  .tiktok-video-shell {
    max-width: 360px;
    justify-self: end;
  }
}


/* 2026-07-23: perfil real de TikTok responsive */
.tiktok-real-profile {
  min-width: 0;
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
  box-shadow: 0 22px 56px rgba(0,0,0,.24);
  contain: layout paint;
}
.tiktok-section-label {
  display: grid;
  gap: .28rem;
  margin-bottom: .8rem;
  text-align: center;
}
.tiktok-section-label strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.tiktok-section-label small {
  color: #b7c4c4;
  font-size: .84rem;
  line-height: 1.45;
}
.tiktok-real-profile .tiktok-embed {
  width: 100% !important;
  max-width: 720px !important;
  min-width: 288px !important;
  margin: 0 auto !important;
}
.tiktok-real-profile iframe,
.tiktok-real-profile > iframe,
.tiktok-real-profile .tiktok-embed iframe {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 auto !important;
  border: 0 !important;
}
.tiktok-real-profile .tiktok-loading {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  color: #dce7e7;
}
.tiktok-real-profile .tiktok-loading span {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border: 2px solid rgba(255,255,255,.25);
  border-top-color: #58dddd;
  border-radius: 50%;
  animation: tiktok-real-spin .8s linear infinite;
}
@keyframes tiktok-real-spin { to { transform: rotate(360deg); } }

@media (max-width: 760px) {
  .process-social-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 1.35rem;
  }
  .tiktok-real-profile {
    width: 100%;
    max-width: 100%;
    padding: .55rem;
    border-radius: 20px;
    overflow: hidden;
  }
  .tiktok-section-label {
    padding: .35rem .35rem 0;
  }
  .tiktok-section-label strong {
    font-size: .96rem;
  }
  .tiktok-section-label small {
    font-size: .78rem;
  }
  .tiktok-real-profile .tiktok-embed {
    max-width: 100% !important;
    min-width: 288px !important;
  }
  .tiktok-real-profile iframe,
  .tiktok-real-profile > iframe,
  .tiktok-real-profile .tiktok-embed iframe {
    max-width: 100vw !important;
  }
}

/* Redes sociales visibles en la barra móvil */
.mobile-header-socials { display: none; align-items: center; gap: .38rem; margin-left: auto; }
@media (max-width: 980px) {
  .mobile-header-socials { display: flex; }
  .mobile-header-socials .social-icon-link {
    width: 31px;
    height: 31px;
    flex-basis: 31px;
    border-color: #d5e2e0;
  }
  .mobile-header-socials .social-icon-link svg { width: 15px; height: 15px; }
  .header-inner { gap: .55rem; }
  .nav-toggle { flex: 0 0 42px; }
  .main-nav-social { display: none !important; }
}
@media (max-width: 430px) {
  .brand img { width: 142px; }
  .mobile-header-socials { gap: .25rem; }
  .mobile-header-socials .social-icon-link {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }
  .mobile-header-socials .social-icon-link svg { width: 14px; height: 14px; }
  .header-inner { gap: .35rem; }
  .nav-toggle { width: 40px; height: 40px; flex-basis: 40px; padding: 9px; }
}
@media (max-width: 360px) {
  .brand img { width: 128px; }
  .mobile-header-socials .social-icon-link { width: 26px; height: 26px; flex-basis: 26px; }
}


/* Eco Fusión Blog — 2026-07-23 */
.main-nav a[aria-current="page"] { color: var(--accent-dark); }
.blog-hero { padding: calc(var(--header-height) + 4.5rem) 0 5rem; overflow: hidden; }
.blog-hero-grid, .article-hero-grid { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(320px,.72fr); gap: clamp(2rem,6vw,5rem); align-items: center; }
.blog-hero h1 { max-width: 820px; font-size: clamp(2.45rem,5.3vw,4.7rem); font-weight: 600; }
.blog-hero-lead, .article-deck { max-width: 760px; color: var(--muted-on-dark); font-size: clamp(1rem,1.5vw,1.14rem); }
.blog-hero-media, .article-hero-media { overflow: hidden; border: 1px solid var(--line-dark); border-radius: var(--radius-lg); background: var(--dark-surface); box-shadow: var(--shadow-dark); }
.blog-hero-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 1.2rem; color: #b7c4c4; font-size: .78rem; }
.breadcrumbs a:hover { color: #65e2e2; }
.blog-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1.5rem; }
.blog-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow); }
.blog-card-media { display: block; overflow: hidden; aspect-ratio: 16/10; background: #dfe9e7; }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); }
.blog-card:hover .blog-card-media img { transform: scale(1.025); }
.blog-card-copy { padding: clamp(1.35rem,3vw,2rem); }
.blog-card-copy h2 { margin-top: .55rem; font-size: clamp(1.5rem,2.7vw,2.15rem); }
.blog-card-copy h2 a:hover { color: var(--accent-dark); }
.blog-card-meta { margin: .8rem 0 .2rem; color: #738181; font-size: .74rem; }
.blog-value-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem,6vw,5rem); align-items: start; }
.blog-value-list { display: grid; gap: .85rem; }
.blog-value-list > div { padding: 1.2rem 1.3rem; border: 1px solid #ccdbd8; border-radius: 16px; background: rgba(255,255,255,.76); }
.blog-value-list strong { display: block; margin-bottom: .2rem; font-family: var(--font-display); font-size: 1.05rem; }
.blog-value-list p { margin: 0; font-size: .88rem; }
.article-hero { padding: calc(var(--header-height) + 4rem) 0 4.5rem; }
.article-hero h1 { max-width: 900px; font-size: clamp(2.35rem,5vw,4.45rem); font-weight: 600; }
.article-hero-media img { width: 100%; aspect-ratio: 4/4.5; object-fit: cover; }
.article-meta { display: flex; flex-wrap: wrap; gap: .55rem 1.25rem; margin-top: 1.4rem; color: #c6d1d1; font-size: .78rem; }
.article-layout { display: grid; grid-template-columns: minmax(0,760px) minmax(240px,310px); justify-content: space-between; gap: clamp(2.5rem,6vw,5rem); padding-top: clamp(3.5rem,7vw,6rem); padding-bottom: clamp(4.5rem,8vw,7rem); }
.article-body { min-width: 0; }
.article-body > p, .article-body > ul, .article-body > ol { font-size: 1.01rem; line-height: 1.78; }
.article-body h2 { margin-top: 3.2rem; scroll-margin-top: calc(var(--header-height) + 22px); font-size: clamp(1.75rem,3.3vw,2.55rem); }
.article-body h3 { font-size: 1.16rem; }
.article-body a:not(.btn) { color: #087f82; text-decoration: underline; text-underline-offset: 3px; }
.article-answer { padding: 1.35rem 1.45rem; border-left: 4px solid var(--accent); border-radius: 0 15px 15px 0; background: #e9f8f7; color: #273435; }
.article-answer strong { color: #075f62; }
.article-factor-grid, .odor-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: .9rem; margin: 1.4rem 0 2rem; }
.article-factor-grid section, .odor-grid section { padding: 1.15rem; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.article-factor-grid section:last-child { grid-column: 1/-1; }
.article-factor-grid span { display: inline-flex; margin-bottom: .8rem; color: var(--accent-dark); font-family: var(--font-display); font-size: .8rem; font-weight: 700; }
.article-factor-grid p, .odor-grid p { margin: 0; font-size: .86rem; }
.article-plan-table { margin: 1.5rem 0; overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.article-plan-table table { width: 100%; min-width: 700px; border-collapse: collapse; }
.article-plan-table th, .article-plan-table td { padding: 1rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; font-size: .84rem; }
.article-plan-table thead th { background: #e7f5f4; color: #075f62; font-family: var(--font-display); }
.article-plan-table tbody th { color: var(--text); font-family: var(--font-display); }
.article-note { color: #536263; font-size: .84rem !important; }
.article-checklist { padding: 0; list-style: none; }
.article-checklist li { position: relative; padding-left: 1.7rem; margin: .55rem 0; }
.article-checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-dark); font-weight: 800; }
.article-callout { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; margin: 2.6rem 0; padding: clamp(1.35rem,3vw,2rem); border: 1px solid rgba(12,157,160,.35); border-radius: 20px; background: linear-gradient(145deg,#e7f8f7,#fff); }
.article-callout h2 { margin: .65rem 0 .45rem; font-size: 1.55rem; }
.article-callout p { margin: 0; }
.article-callout-soft { display: block; background: #f5f9f8; }
.article-process { padding: 0; list-style: none; }
.article-process li { display: grid; grid-template-columns: 42px 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.article-process li > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--accent-soft); color: var(--accent-dark); font-family: var(--font-display); font-weight: 700; }
.article-process h3 { margin: 0 0 .2rem; }
.article-process p { margin: 0; font-size: .88rem; }
.article-faq { display: grid; gap: .7rem; }
.article-faq details { border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.article-faq summary { padding: 1rem 1.1rem; cursor: pointer; color: var(--text); font-family: var(--font-display); font-weight: 600; }
.article-faq p { padding: 0 1.1rem 1rem; margin: 0; font-size: .9rem; }
.article-aside { align-self: start; position: sticky; top: calc(var(--header-height) + 24px); display: grid; gap: 1rem; }
.article-toc, .article-side-cta { padding: 1.25rem; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: 0 12px 34px rgba(15,43,44,.06); }
.article-toc strong, .article-side-cta strong { display: block; margin-bottom: .8rem; font-family: var(--font-display); }
.article-toc a { display: block; padding: .48rem 0; border-bottom: 1px solid #edf2f1; color: #4a5859; font-size: .8rem; }
.article-toc a:hover { color: var(--accent-dark); }
.article-side-cta { border-color: rgba(12,157,160,.36); background: #eaf8f7; }
.article-side-cta p { font-size: .8rem; }
.related-post-card { max-width: 880px; margin-inline: auto; display: grid; grid-template-columns: 250px 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.related-post-card img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; }
.related-post-card > div { padding: 1.5rem; }
.related-post-card h3 { margin-top: .65rem; font-size: 1.55rem; }
.home-blog-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1.25rem; }
.home-blog-grid article { display: grid; grid-template-columns: 170px 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 12px 34px rgba(15,43,44,.06); }
.home-blog-grid article > img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; }
.home-blog-grid article > div { padding: 1.2rem; }
.home-blog-grid h3 { margin: .55rem 0; font-size: 1.3rem; }
.home-blog-grid p { font-size: .84rem; }
.service-blog-links { border-top: 1px solid var(--line); }

@media (max-width: 980px) {
  .blog-hero-grid, .article-hero-grid, .article-layout, .blog-value-grid { grid-template-columns: 1fr; }
  .blog-hero-media { max-width: 580px; }
  .article-hero-media { max-width: 600px; }
  .article-aside { position: static; grid-row: 1; }
  .article-toc { display: none; }
  .article-side-cta { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
  .article-side-cta p { margin: 0; }
  .article-side-cta .btn { width: auto; white-space: nowrap; }
  .home-blog-grid article { grid-template-columns: 140px 1fr; }
}
@media (max-width: 720px) {
  .blog-hero, .article-hero { padding-top: calc(var(--header-height) + 2.7rem); padding-bottom: 3rem; }
  .blog-grid, .article-factor-grid, .odor-grid, .home-blog-grid { grid-template-columns: 1fr; }
  .article-factor-grid section:last-child { grid-column: auto; }
  .article-layout { padding-top: 2.8rem; }
  .article-callout, .article-side-cta { display: block; }
  .article-callout .btn, .article-side-cta .btn { width: 100%; margin-top: 1rem; }
  .related-post-card, .home-blog-grid article { grid-template-columns: 1fr; }
  .related-post-card img, .home-blog-grid article > img { min-height: 210px; max-height: 270px; }
  .article-body > p, .article-body > ul, .article-body > ol { font-size: .96rem; }
}


/* Portada editorial artículo malos olores — 2026-07-24 */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.article-hero-cover {
  padding: calc(var(--header-height) + 2.1rem) 0 2.15rem;
}
.article-hero-cover .breadcrumbs {
  margin-bottom: 1rem;
}
.article-cover-media {
  width: min(100%, 1120px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: clamp(18px, 2.4vw, 30px);
  background: var(--dark-surface);
  box-shadow: var(--shadow-dark);
}
.article-cover-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}
.article-cover-footer {
  max-width: 1040px;
  margin: 1.35rem auto 0;
}
.article-cover-footer .article-deck {
  max-width: 900px;
  margin: 0;
  font-size: clamp(.98rem, 1.45vw, 1.12rem);
}
.article-cover-footer .article-meta {
  margin-top: .85rem;
}
@media (max-width: 720px) {
  .article-hero-cover {
    padding-top: calc(var(--header-height) + 1.45rem);
    padding-bottom: 1.85rem;
  }
  .article-cover-media {
    border-radius: 16px;
  }
  .article-cover-media img {
    aspect-ratio: 16 / 9;
  }
  .article-cover-footer {
    margin-top: 1rem;
  }
}

/* Blog y artículos optimizados — 2026-07-27 */
.blog-hero-v2 {
  position: relative;
  padding: calc(var(--header-height) + 3.2rem) 0 4.5rem;
  background:
    radial-gradient(circle at 82% 18%, rgba(23,197,199,.14), transparent 34%),
    linear-gradient(145deg, #071516 0%, #0a1f20 58%, #081213 100%);
}
.blog-hero-v2-grid {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(420px, 1.06fr);
  gap: clamp(2rem, 5vw, 4.75rem);
  align-items: center;
}
.blog-hero-copy h1 {
  max-width: 820px;
  margin-bottom: 1.15rem;
  font-size: clamp(2.65rem, 5.1vw, 4.85rem);
  line-height: .98;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.blog-hero-copy .blog-hero-lead {
  max-width: 700px;
  margin-bottom: 1.55rem;
  color: #d5e1e0;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.7;
}
.blog-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.35rem;
}
.blog-hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: .55rem .8rem;
  border: 1px solid rgba(101,226,226,.24);
  border-radius: 999px;
  color: #d9e6e5;
  background: rgba(255,255,255,.04);
  font-size: .76rem;
  font-weight: 600;
}
.blog-hero-points span::before {
  content: "✓";
  margin-right: .45rem;
  color: #65e2e2;
}
.blog-hero-media-v2 {
  position: relative;
  isolation: isolate;
  max-width: none;
  margin: 0;
  border-color: rgba(101,226,226,.24);
  border-radius: clamp(22px, 2.4vw, 34px);
}
.blog-hero-media-v2::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgba(3,12,13,.38));
}
.blog-hero-media-v2 picture,
.blog-hero-media-v2 img {
  display: block;
  width: 100%;
}
.blog-hero-media-v2 img {
  aspect-ratio: 8 / 5;
  object-fit: cover;
}
.blog-hero-media-v2 figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.blog-card {
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(12,157,160,.34);
  box-shadow: 0 22px 58px rgba(15,43,44,.12);
}
.blog-card-media { aspect-ratio: 16 / 9; }
.blog-card-copy > p:not(.blog-card-meta) { max-width: 62ch; }

.article-hero-v2 {
  position: relative;
  padding: calc(var(--header-height) + 3rem) 0 4.2rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(23,197,199,.12), transparent 34%),
    linear-gradient(145deg, #071516 0%, #0a1e20 100%);
}
.article-hero-v2-grid {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(420px, 1.06fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.article-hero-copy h1 {
  max-width: 860px;
  margin-bottom: 1.15rem;
  font-size: clamp(2.45rem, 4.8vw, 4.55rem);
  line-height: 1.01;
  letter-spacing: -.042em;
  text-wrap: balance;
}
.article-hero-copy .article-deck {
  max-width: 720px;
  margin-bottom: 0;
  color: #d2dfde;
  line-height: 1.7;
}
.article-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  margin-top: 1.45rem;
}
.article-hero-actions .text-link { color: #e7f4f3; }
.article-hero-actions .text-link:hover { color: #65e2e2; }
.article-hero-media-v2 {
  position: relative;
  max-width: none;
  margin: 0;
  border-color: rgba(101,226,226,.22);
  border-radius: clamp(22px, 2.4vw, 34px);
}
.article-hero-media-v2 picture,
.article-hero-media-v2 img { display: block; width: 100%; }
.article-hero-media-v2 img {
  aspect-ratio: 8 / 5;
  object-fit: cover;
}
.article-body[id] { scroll-margin-top: calc(var(--header-height) + 20px); }

/* Aviso de cookies compacto */
.consent-banner {
  inset: auto 16px 16px 16px;
  padding: 0;
  background: transparent;
  pointer-events: none;
}
.consent-inner {
  width: min(980px, 100%);
  min-height: 72px;
  margin: 0 auto;
  padding: .8rem .9rem .8rem 1rem;
  border: 1px solid rgba(8,127,130,.22);
  border-radius: 18px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 18px 55px rgba(5,30,31,.18);
  pointer-events: auto;
}
.consent-inner > div:first-child { min-width: 0; }
.consent-inner strong { margin-bottom: .12rem; font-size: .96rem; }
.consent-inner p { margin: 0; font-size: .78rem; line-height: 1.4; }
.consent-actions { flex: 0 0 auto; gap: .5rem; }
.consent-actions .btn { min-height: 42px; padding: .65rem .9rem; font-size: .78rem; }

@media (max-width: 980px) {
  .blog-hero-v2-grid,
  .article-hero-v2-grid { grid-template-columns: 1fr; }
  .blog-hero-media-v2,
  .article-hero-media-v2 { max-width: 760px; }
  .blog-hero-copy h1,
  .article-hero-copy h1 { max-width: 900px; }
}

@media (max-width: 720px) {
  .blog-hero-v2,
  .article-hero-v2 {
    padding-top: calc(var(--header-height) + 1.35rem);
    padding-bottom: 2.25rem;
  }
  .blog-hero-v2 .breadcrumbs,
  .article-hero-v2 .breadcrumbs { margin-bottom: 1rem; }
  .blog-hero-v2-grid,
  .article-hero-v2-grid { gap: 1.55rem; }
  .blog-hero-copy h1,
  .article-hero-copy h1 {
    font-size: clamp(2.05rem, 10.5vw, 3rem);
    line-height: 1.04;
    letter-spacing: -.035em;
  }
  .blog-hero-copy .blog-hero-lead,
  .article-hero-copy .article-deck {
    font-size: .95rem;
    line-height: 1.58;
  }
  .blog-hero-copy .hero-actions,
  .article-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: .7rem;
  }
  .blog-hero-copy .hero-actions .btn,
  .article-hero-actions .btn { width: 100%; }
  .article-hero-actions .text-link { text-align: center; }
  .blog-hero-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: .5rem;
    margin-top: 1rem;
  }
  .blog-hero-points span {
    min-height: 42px;
    justify-content: center;
    padding: .5rem .6rem;
    text-align: center;
    font-size: .69rem;
  }
  .blog-hero-points span:last-child { grid-column: 1 / -1; }
  .blog-hero-media-v2,
  .article-hero-media-v2 { border-radius: 18px; }
  .blog-hero-media-v2 img,
  .article-hero-media-v2 img { aspect-ratio: 4 / 5; }
  .blog-hero-media-v2 figcaption { right: .8rem; bottom: .8rem; left: .8rem; font-size: .68rem; }
  .article-meta { gap: .4rem .8rem; margin-top: 1rem; font-size: .7rem; }
  .blog-grid { gap: 1rem; }
  .blog-card-copy { padding: 1.15rem; }
  .blog-card-copy h2 { font-size: 1.42rem; line-height: 1.16; }
  .blog-card-copy > p:not(.blog-card-meta) { font-size: .88rem; line-height: 1.55; }
  .article-layout { padding-top: 2.2rem; padding-bottom: 4rem; }
  .article-body h2 { margin-top: 2.35rem; font-size: 1.72rem; }
  .article-answer { padding: 1.05rem 1.1rem; }
  .article-factor-grid section,
  .odor-grid section { padding: 1rem; }
  .consent-banner { inset: auto 10px 10px 10px; }
  .consent-inner {
    display: grid;
    gap: .65rem;
    min-height: 0;
    padding: .75rem;
    border-radius: 16px;
  }
  .consent-inner strong { font-size: .9rem; }
  .consent-inner p { font-size: .72rem; }
  .consent-actions { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .consent-actions .btn { width: 100%; min-height: 40px; padding: .58rem .55rem; font-size: .72rem; }
}


/* Blog premium 2026-07-27 */
.blog-cover-premium { padding: calc(var(--header-height) + 1.25rem) 0 1.25rem; overflow: hidden; }
.blog-cover-premium .breadcrumbs { margin-bottom: 1rem; }
.blog-cover-picture { margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 28px; box-shadow: 0 28px 70px rgba(0,0,0,.34); background: #050b0d; }
.blog-cover-picture picture, .blog-cover-picture img { display: block; width: 100%; }
.blog-cover-picture img { height: auto; aspect-ratio: 16/9; object-fit: cover; }
.blog-intro-premium { padding: 3.2rem 0 3.6rem; }
.blog-intro-premium-inner { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: clamp(2rem,5vw,5rem); align-items: end; }
.blog-intro-premium h1 { max-width: 920px; margin-bottom: .85rem; font-size: clamp(2.15rem,4.4vw,4rem); line-height: .98; }
.blog-intro-premium p:not(.eyebrow) { max-width: 800px; color: var(--muted); font-size: 1.08rem; }
.blog-intro-premium .hero-actions { justify-content: flex-end; flex-wrap: wrap; }

.article-cover-premium { position: relative; padding: calc(var(--header-height) + 2.25rem) 0 3.4rem; overflow: hidden; isolation: isolate; }
.article-cover-premium::before, .article-cover-premium::after { content:""; position:absolute; z-index:-1; width:360px; height:360px; border-radius:50%; filter:blur(72px); opacity:.17; background:#fff; }
.article-cover-premium::before { left:-220px; top:10%; }
.article-cover-premium::after { right:-220px; bottom:-160px; }
.article-cover-premium .breadcrumbs { margin-bottom: 1.35rem; }
.article-cover-premium-grid { display:grid; grid-template-columns:minmax(0,.88fr) minmax(480px,1.12fr); gap:clamp(2rem,5vw,5rem); align-items:center; }
.article-cover-premium-copy h1 { max-width:880px; margin:.55rem 0 1rem; font-size:clamp(2.4rem,4.9vw,4.65rem); line-height:.96; letter-spacing:-.035em; }
.article-cover-premium-copy .article-deck { max-width:760px; }
.article-cover-premium-media { position:relative; margin:0; overflow:hidden; border:1px solid rgba(255,255,255,.15); border-radius:28px; background:#10191b; box-shadow:0 28px 70px rgba(0,0,0,.34); }
.article-cover-premium-media::after { content:""; position:absolute; inset:0; pointer-events:none; background:linear-gradient(90deg,rgba(4,12,14,.18),transparent 35%),linear-gradient(0deg,rgba(4,12,14,.12),transparent 30%); }
.article-cover-premium-media picture, .article-cover-premium-media img { display:block; width:100%; }
.article-cover-premium-media img { aspect-ratio:16/9; object-fit:cover; }
.article-key-summary { margin:1.2rem 0 2rem; padding:1.15rem 1.25rem; border:1px solid #b8dddd; border-left:5px solid var(--primary); border-radius:16px; background:#f0fbfa; }
.article-key-summary strong { display:block; margin-bottom:.35rem; color:#075f62; font-size:1.05rem; }
.article-key-summary p { margin:0; color:#37585a; }
.article-body { max-width: 780px; }
.article-body h2 { scroll-margin-top: calc(var(--header-height) + 1.5rem); }
.article-body p, .article-body li { line-height: 1.78; }
.article-body > p:first-of-type { font-size:1.08rem; }

@media (max-width: 980px) {
  .blog-intro-premium-inner, .article-cover-premium-grid { grid-template-columns:1fr; }
  .blog-intro-premium .hero-actions { justify-content:flex-start; }
  .article-cover-premium-media { max-width:820px; }
}
@media (max-width: 720px) {
  .blog-cover-premium { padding: calc(var(--header-height) + .65rem) 0 .8rem; }
  .blog-cover-premium .container { padding-inline:.75rem; }
  .blog-cover-picture { border-radius:20px; }
  .blog-cover-picture img { aspect-ratio:4/5; object-position:center; }
  .blog-intro-premium { padding:2rem 0 2.5rem; text-align:center; }
  .blog-intro-premium-inner { gap:1.35rem; }
  .blog-intro-premium h1 { font-size:clamp(2rem,10vw,3rem); line-height:1.02; }
  .blog-intro-premium p:not(.eyebrow) { font-size:.98rem; }
  .blog-intro-premium .hero-actions { display:grid; grid-template-columns:1fr; width:100%; }
  .blog-intro-premium .btn { width:100%; }
  .article-cover-premium { padding:calc(var(--header-height) + 1rem) 0 2.25rem; }
  .article-cover-premium-grid { gap:1.5rem; }
  .article-cover-premium-copy { text-align:center; }
  .article-cover-premium-copy h1 { font-size:clamp(2.15rem,10.5vw,3.25rem); line-height:1; }
  .article-cover-premium-copy .article-deck { font-size:.98rem; }
  .article-cover-premium-copy .article-meta { justify-content:center; }
  .article-cover-premium-copy .article-hero-actions { display:grid; grid-template-columns:1fr; width:100%; }
  .article-cover-premium-copy .btn { width:100%; }
  .article-cover-premium-media { order:-1; border-radius:20px; }
  .article-cover-premium-media img { aspect-ratio:4/5; object-fit:cover; }
  .article-body { max-width:100%; }
  .article-body h2 { font-size:clamp(1.55rem,7vw,2rem); line-height:1.12; }
  .article-body h3 { line-height:1.2; }
  .article-body p, .article-body li { font-size:1rem; line-height:1.72; }
  .article-key-summary { padding:1rem; }
}

/* Respaldo visible si el reproductor externo de TikTok es bloqueado */
.tiktok-fallback {
  display: grid;
  justify-items: center;
  gap: .8rem;
  padding: 1.3rem;
  text-align: center;
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  background: rgba(255,255,255,.06);
}
.tiktok-fallback[hidden] { display: none !important; }
.tiktok-fallback strong { font-size: .95rem; }

/* Planes automotrices premium — actualización visual */
.package-grid-auto {
  align-items: stretch;
  gap: 1.1rem;
}
.package-grid-auto .package-card {
  min-height: 480px;
  padding: 1.55rem 1.4rem 1.35rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  background: linear-gradient(180deg, #292a28 0%, #2d2e2b 100%);
  color: #f7f7f5;
  box-shadow: none;
}
.package-grid-auto .package-card:hover {
  transform: translateY(-3px);
  border-color: rgba(76,179,255,.55);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}
.package-grid-auto .package-card:has(input:checked) {
  border-color: #2f88e8;
  background: linear-gradient(180deg, #292a28 0%, #2d2e2b 100%);
  box-shadow: 0 0 0 1px #2f88e8, 0 18px 44px rgba(22,83,160,.2);
}
.package-grid-auto .package-card::after {
  top: 1.55rem;
  right: 1.4rem;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255,255,255,.3);
  background: transparent;
}
.package-grid-auto .package-card:has(input:checked)::after {
  border: 0;
  background: #2f88e8;
  box-shadow: 0 0 0 1px rgba(255,255,255,.08);
}
.package-grid-auto .package-name {
  margin: .35rem 2rem .9rem 0;
  color: #d7d5d0;
  font-size: .92rem;
  letter-spacing: .03em;
}
.package-grid-auto .package-card strong {
  padding-right: 1.2rem;
  color: #fff;
  font-size: 1.42rem;
  line-height: 1.12;
}
.package-grid-auto .package-card small {
  margin-top: .55rem;
  color: #c5c2bd;
  font-size: .98rem;
  line-height: 1.28;
}
.package-grid-auto .package-includes {
  gap: .72rem;
  margin-top: 1.15rem;
}
.package-grid-auto .package-includes li {
  padding-left: 1.7rem;
  color: #f3f3f1;
  font-size: .98rem;
  font-weight: 650;
  line-height: 1.28;
}
.package-grid-auto .package-includes li::before {
  content: "✓";
  top: -.05rem;
  color: #21c83f;
  font-size: 1.25rem;
}
.package-grid-auto .package-includes li.is-not-included {
  color: #8e8c87;
  font-weight: 550;
}
.package-grid-auto .package-includes li.is-not-included::before {
  content: "×";
  color: #8e8c87;
  font-size: 1.45rem;
  font-weight: 400;
}
.package-grid-auto .package-duration {
  margin: auto 0 0;
  padding-top: 1.25rem;
  color: #98958f;
  font-size: .9rem;
  line-height: 1.3;
}
.package-grid-auto .package-recommended {
  border-color: #176ac4;
}
.package-grid-auto .recommended-badge {
  position: static;
  align-self: flex-start;
  transform: none;
  margin: -.1rem 0 .75rem;
  padding: .38rem .8rem;
  background: #07376c;
  color: #69aaf2;
  font-size: .77rem;
  letter-spacing: 0;
  text-transform: none;
}
.package-grid-auto .package-recommended .package-name {
  margin-top: .15rem;
}

@media (max-width: 720px) {
  .package-grid-auto {
    padding-top: .55rem;
  }
  .package-grid-auto .package-card {
    flex-basis: min(84vw, 315px);
    min-height: 455px !important;
    padding: 1.3rem 1.15rem 1.15rem;
    border-radius: 18px;
  }
  .package-grid-auto .package-card::after {
    top: 1.3rem;
    right: 1.15rem;
  }
  .package-grid-auto .package-card strong {
    font-size: 1.3rem;
  }
  .package-grid-auto .package-card small,
  .package-grid-auto .package-includes li {
    font-size: .9rem;
  }
  .package-grid-auto .package-duration {
    font-size: .84rem;
  }
}
