/* FONTES LOCAIS */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('assets/fonts/cormorant-garamond-300.ttf') format('truetype');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/cormorant-garamond-400.ttf') format('truetype');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/cormorant-garamond-500.ttf') format('truetype');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/cormorant-garamond-400-italic.ttf') format('truetype');
}

    :root {
      --blue: #203f59;
      --beige: #f2e9d8;
      --off: #f3f2ee;
      --light-blue: #a2b5d3;
      --gold: #cd934d;
      --white: #fffaf2;
      --ink: #243746;
      --muted: #5a6a72;
      --shadow: 0 4px 24px rgba(32, 63, 89, 0.08);
      --shadow-lg: 0 12px 48px rgba(32, 63, 89, 0.12);
      --radius: 20px;
      --serif: 'Cormorant Garamond', 'Bodoni 72', 'Didot', serif;
      --sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: var(--sans);
      color: var(--ink);
      background: var(--off);
      line-height: 1.8;
      -webkit-font-smoothing: antialiased;
      text-wrap: pretty;
      word-break: keep-all;
      overflow-wrap: normal;
      hyphens: none;
      -webkit-hyphens: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: min(1140px, calc(100% - 48px));
      margin: 0 auto;
    }

    .page {
      overflow: hidden;
    }

    .eyebrow {
      margin: 0 0 16px;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
    }

    h1, h2, h3 {
      margin: 0;
      font-family: var(--serif);
      font-weight: 400;
      line-height: 1.1;
      color: var(--blue);
      text-wrap: balance;
      word-break: keep-all;
      overflow-wrap: normal;
      hyphens: manual;
      -webkit-hyphens: manual;
    }

    h1 {
      font-size: clamp(2.4rem, 4.5vw, 4rem);
      font-weight: 300;
    }

    h2 {
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 300;
    }

    h3 {
      font-size: clamp(1.25rem, 2vw, 1.6rem);
      font-weight: 400;
    }

    p {
      margin: 0;
    }

    .lead {
      color: var(--muted);
      font-size: clamp(1rem, 1.4vw, 1.2rem);
      line-height: 1.85;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 54px;
      padding: 15px 28px;
      border: none;
      border-radius: 999px;
      font-family: var(--sans);
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.25s ease;
      white-space: nowrap;
    }

    .btn:active {
      transform: translateY(0) scale(0.98);
    }

    .btn-primary {
      background: var(--blue);
      color: var(--white);
      box-shadow: 0 8px 24px rgba(32, 63, 89, 0.25);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(32, 63, 89, 0.35);
    }

    .btn-gold {
      background: var(--gold);
      color: var(--white);
      box-shadow: 0 8px 24px rgba(205, 147, 77, 0.3);
    }

    .btn-gold:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(205, 147, 77, 0.4);
      background: #c48a44;
    }

    .btn-secondary {
      background: transparent;
      color: var(--blue);
      border: 1.5px solid rgba(32, 63, 89, 0.25);
    }

    .btn-secondary:hover {
      border-color: var(--blue);
      background: rgba(32, 63, 89, 0.05);
    }

    .btn-whatsapp {
      background: #25D366;
      color: white;
      box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    }

    .btn-whatsapp:hover {
      background: #20bd5a;
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
    }

    .btn-whatsapp svg {
      width: 20px;
      height: 20px;
    }

    /* TOPBAR */
    .topbar {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(243, 242, 238, 0.92);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(32, 63, 89, 0.06);
    }

    .topbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }

    .logo {
      height: 42px;
      width: auto;
    }

    .logo-small {
      height: 36px;
    }

    .topbar .btn {
      font-size: 0.9rem;
      min-height: 46px;
      padding: 12px 20px;
    }

    /* HERO */
    .hero {
      padding: 90px 0 110px;
      background: linear-gradient(135deg, var(--off) 0%, var(--beige) 100%);
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -20%;
      right: -10%;
      width: 55%;
      height: 140%;
      background: url('assets/icons/icone-integraville-azul-transparente.webp') center / contain no-repeat;
      opacity: 0.045;
      pointer-events: none;
      animation: brandDrift 16s ease-in-out infinite alternate;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 480px;
      gap: 60px;
      align-items: center;
    }

    .hero-content {
      position: relative;
      z-index: 1;
    }

    .hero-content .lead {
      margin-top: 18px;
      max-width: 560px;
    }

    .hero-support {
      margin-top: 14px;
      max-width: 540px;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .hero-cta .btn {
      min-width: 220px;
    }

    .seal-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 24px;
    }

    .seal {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 16px;
      background: rgba(255, 250, 242, 0.7);
      border: 1px solid rgba(32, 63, 89, 0.1);
      border-radius: 999px;
      font-size: 0.85rem;
      color: var(--ink);
    }

    .seal::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--gold);
      border-radius: 50%;
    }

    .hero-visual {
      position: relative;
    }

    .hero-image {
      width: 100%;
      height: 520px;
      border-radius: 240px 240px 24px 24px;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      background: var(--beige);
    }

    .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 38%;
    }

    .hero-card-label {
      display: block;
      margin-bottom: 12px;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .hero-card {
      position: absolute;
      bottom: 40px;
      left: -40px;
      width: 340px;
      padding: 36px;
      background: rgba(255, 250, 242, 0.96);
      border-radius: 26px;
      box-shadow: 0 24px 64px rgba(32, 63, 89, 0.16), 0 8px 24px rgba(32, 63, 89, 0.08);
      border: 1px solid rgba(205, 147, 77, 0.18);
      backdrop-filter: blur(12px);
    }

    .hero-card strong {
      display: block;
      font-family: var(--serif);
      font-size: 1.4rem;
      font-weight: 400;
      color: var(--blue);
      line-height: 1.35;
    }

    .hero-card p {
      font-size: 0.88rem;
      color: var(--muted);
    }

    /* SECTIONS */
    .section {
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }

    .section > .container {
      position: relative;
      z-index: 1;
    }

    .section-header {
      max-width: 800px;
      margin-bottom: 48px;
      text-align: center;
    }

    .section-header.center {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .section-header .lead {
      margin-top: 18px;
    }

    .section-beige {
      background: var(--beige);
    }

    .section-dark {
      background: var(--blue);
      color: var(--white);
      text-align: center;
    }

    .section-dark > .container {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    .section-dark .section-header {
      margin-left: auto;
      margin-right: auto;
    }

    .section-dark::before {
      content: '';
      position: absolute;
      top: -220px;
      right: -90px;
      bottom: auto;
      left: auto;
      width: min(42vw, 500px);
      aspect-ratio: 0.52;
      background-image: url('assets/icons/icone-integraville-bege-transparente.webp');
      background-position: center;
      background-size: contain;
      background-repeat: no-repeat;
      opacity: 0.075;
      transform: none;
      pointer-events: none;
      animation: brandFloat 18s ease-in-out infinite alternate;
    }

    .section-dark h2,
    .section-dark h3 {
      color: var(--white);
    }

    .section-dark .lead,
    .section-dark p {
      color: rgba(255, 250, 242, 0.8);
    }

    .section-dark .eyebrow {
      color: var(--gold);
    }

    /* CARDS */
    .cards {
      display: grid;
      gap: 24px;
    }

    .grid-2 {
      grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
      grid-template-columns: repeat(3, 1fr);
    }

    .grid-4 {
      grid-template-columns: repeat(4, 1fr);
    }

    .card {
      background: rgba(255, 250, 242, 0.8);
      border: 1px solid rgba(32, 63, 89, 0.08);
      border-radius: var(--radius);
      padding: 32px;
      transition: all 0.3s ease;
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
      border-color: rgba(205, 147, 77, 0.2);
    }

    .card-icon {
      width: 52px;
      height: 52px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(162, 181, 211, 0.15);
      border: 1px solid rgba(162, 181, 211, 0.3);
      border-radius: 50%;
      margin-bottom: 20px;
      color: var(--blue);
    }

    .card-icon svg {
      width: 24px;
      height: 24px;
      stroke-width: 1.5;
    }

    .card h3 {
      margin-bottom: 12px;
      font-size: 1.3rem;
    }

    .card p {
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.75;
    }

    .pain-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .pain-card {
      background: rgba(255, 250, 242, 0.85);
      border: 1px solid rgba(32, 63, 89, 0.08);
      border-radius: 20px;
      padding: 28px 24px;
      transition: all 0.3s ease;
    }

    .pain-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
      border-color: rgba(205, 147, 77, 0.22);
    }

    .pain-icon {
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(205, 147, 77, 0.1);
      border: 1px solid rgba(205, 147, 77, 0.25);
      border-radius: 50%;
      margin-bottom: 18px;
      color: var(--blue);
    }

    .pain-icon svg {
      width: 24px;
      height: 24px;
      stroke-width: 1.4;
    }

    .pain-card h3 {
      margin-bottom: 8px;
      font-size: 1.2rem;
    }

    .pain-card p {
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.75;
    }

    .reset-intro {
      margin-bottom: 44px;
      text-align: center;
    }

    .reset-intro-text {
      max-width: 760px;
      margin: 0 auto;
    }

    .reset-layout {
      display: grid;
      grid-template-columns: 340px 1fr;
      gap: 24px;
      align-items: start;
    }

    .reset-main-card {
      position: sticky;
      top: 96px;
      padding: 28px;
      background: var(--blue);
      border-radius: 22px;
      box-shadow: 0 20px 60px rgba(32, 63, 89, 0.2);
      text-align: center;
    }

    .reset-main-badge {
      display: inline-block;
      margin-bottom: 16px;
      padding: 6px 12px;
      background: rgba(205, 147, 77, 0.2);
      border: 1px solid rgba(205, 147, 77, 0.3);
      border-radius: 999px;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .reset-main-text {
      color: rgba(255, 250, 242, 0.85);
      font-size: 0.95rem;
      line-height: 1.8;
      margin-bottom: 24px;
    }

    .reset-main-btn {
      width: 100%;
      background: var(--gold);
      min-height: 48px;
      font-size: 0.9rem;
      padding: 14px 20px;
    }

    .reset-steps {
      display: grid;
      gap: 14px;
    }

    .reset-step {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      padding: 24px;
      background: rgba(255, 250, 242, 0.88);
      border: 1px solid rgba(32, 63, 89, 0.08);
      border-radius: 18px;
      transition: all 0.3s ease;
    }

    .reset-step:hover {
      transform: translateX(6px);
      border-color: rgba(205, 147, 77, 0.25);
      box-shadow: var(--shadow);
    }

    .step-number {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      background: var(--light-blue);
      border-radius: 50%;
      font-family: var(--serif);
      font-size: 1.3rem;
      color: var(--blue);
    }

    .step-content h3 {
      margin-bottom: 6px;
      font-size: 1.15rem;
    }

    .step-content p {
      color: var(--muted);
      font-size: 0.88rem;
      line-height: 1.6
    }

    .profile-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .profile-card {
      position: relative;
      padding: 26px 20px;
      background: rgba(255, 250, 242, 0.88);
      border: 1px solid rgba(32, 63, 89, 0.08);
      border-radius: 20px;
      overflow: hidden;
      transition: all 0.35s ease;
    }

    .profile-card:hover {
      transform: translateY(-4px);
      border-color: rgba(205, 147, 77, 0.25);
      box-shadow: var(--shadow-lg);
    }

    .profile-icon {
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(205, 147, 77, 0.1);
      border: 1px solid rgba(205, 147, 77, 0.25);
      border-radius: 50%;
      margin-bottom: 18px;
      color: var(--blue);
    }

    .profile-icon svg {
      width: 22px;
      height: 22px;
      stroke-width: 1.5;
    }

    .profile-content {
      position: relative;
      z-index: 1;
    }

    .profile-content h3 {
      margin-bottom: 6px;
      font-size: 1.15rem;
      color: var(--blue);
    }

    .profile-content p {
      color: var(--muted);
      font-size: 0.88rem;
      line-height: 1.75;
    }

    .included-categories {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .category-card {
      padding: 28px 24px;
      background: rgba(255, 250, 242, 0.88);
      border: 1px solid rgba(32, 63, 89, 0.08);
      border-radius: 20px;
      transition: all 0.3s ease;
    }

    .category-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
      border-color: rgba(205, 147, 77, 0.22);
    }

    .category-header {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 20px;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(32, 63, 89, 0.08);
    }

    .category-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      background: rgba(205, 147, 77, 0.1);
      border: 1px solid rgba(205, 147, 77, 0.25);
      border-radius: 50%;
      color: var(--blue);
    }

    .category-header h3 {
      font-size: 1.25rem;
    }

    .category-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 12px;
    }

    .category-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--ink);
      font-size: 0.9rem;
      line-height: 1.7;
    }

    /* RESET INVESTMENT */
    .reset-investment {
      background:
        linear-gradient(180deg, rgba(242, 233, 216, 0.9), rgba(243, 242, 238, 0.98));
    }

    .reset-investment::before {
      content: '';
      position: absolute;
      left: -120px;
      top: 120px;
      width: min(28vw, 360px);
      height: 620px;
      background: url('assets/icons/icone-integraville-azul-transparente.webp') center / contain no-repeat;
      opacity: 0.035;
      pointer-events: none;
    }

    .reset-program-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .reset-program-card {
      --program-color: var(--blue);
      --program-soft: rgba(32, 63, 89, 0.08);
      position: relative;
      display: flex;
      flex-direction: column;
      min-height: 100%;
      padding: 24px;
      border: 1px solid rgba(32, 63, 89, 0.065);
      border-radius: 18px;
      background: rgba(255, 250, 242, 0.72);
      box-shadow: 0 10px 32px rgba(32, 63, 89, 0.07);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }

    .reset-program-card::before {
      content: '';
      position: absolute;
      inset: 0 0 auto 0;
      height: 4px;
      background: var(--program-color);
    }

    .reset-program-card:hover {
      transform: translateY(-3px);
      border-color: color-mix(in srgb, var(--program-color) 34%, transparent);
      box-shadow: 0 18px 44px rgba(32, 63, 89, 0.1);
    }

    .reset-program-card.featured {
      padding: 26px;
      border-color: rgba(83, 34, 70, 0.16);
      box-shadow: 0 16px 46px rgba(83, 34, 70, 0.09);
    }

    .program-slim {
      --program-color: #532246;
      --program-soft: rgba(83, 34, 70, 0.09);
    }

    .program-slim-green {
      --program-color: #2f6f73;
      --program-soft: rgba(47, 111, 115, 0.1);
    }

    .program-move {
      --program-color: #203f59;
      --program-soft: rgba(32, 63, 89, 0.09);
    }

    .program-kids {
      --program-color: var(--gold);
      --program-soft: rgba(205, 147, 77, 0.12);
    }

    .program-badge {
      align-self: flex-start;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      margin-bottom: 14px;
      padding: 6px 10px;
      border: 1px solid color-mix(in srgb, var(--program-color) 20%, transparent);
      border-radius: 999px;
      background: var(--program-soft);
      color: var(--program-color);
      font-size: 0.6rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .program-badge::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--program-color);
    }

    .reset-program-card h3 {
      margin-bottom: 10px;
      color: var(--program-color);
      font-size: clamp(1.7rem, 2.4vw, 2.35rem);
      line-height: 1.05;
    }

    .program-description {
      margin-bottom: 18px;
      color: var(--muted);
      font-size: 0.88rem;
      line-height: 1.65;
    }

    .program-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
      margin: 0 0 18px;
      padding: 0;
      list-style: none;
    }

    .reset-program-card:nth-child(2) .program-list,
    .reset-program-card:nth-child(4) .program-list {
      grid-template-columns: 1fr;
    }

    .program-list li {
      display: grid;
      grid-template-columns: 24px 1fr;
      gap: 9px;
      align-items: start;
      color: var(--ink);
      font-size: 0.82rem;
      line-height: 1.48;
    }

    .program-icon {
      display: grid;
      place-items: center;
      width: 24px;
      height: 24px;
      border: 1px solid color-mix(in srgb, var(--program-color) 18%, transparent);
      border-radius: 50%;
      color: var(--program-color);
      background: rgba(255, 250, 242, 0.74);
    }

    .program-icon svg {
      width: 13px;
      height: 13px;
      stroke-width: 1.45;
    }

    .investment-box {
      margin-top: auto;
      padding: 14px;
      border: 1px solid color-mix(in srgb, var(--program-color) 14%, transparent);
      border-radius: 14px;
      background:
        linear-gradient(135deg, rgba(255, 250, 242, 0.92), var(--program-soft));
    }

    .investment-title {
      margin-bottom: 10px;
      color: var(--program-color);
      font-size: 0.64rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .investment-options {
      display: grid;
      gap: 6px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .investment-options li {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 12px;
      padding: 7px 0;
      border-bottom: 1px solid rgba(32, 63, 89, 0.08);
      color: var(--ink);
      font-size: 0.82rem;
    }

    .investment-options li:last-child {
      border-bottom: none;
    }

    .investment-options strong,
    .investment-consult {
      color: var(--program-color);
      font-family: var(--serif);
      font-size: 1.12rem;
      font-weight: 500;
      line-height: 1.1;
      white-space: nowrap;
    }

    .investment-note {
      margin-top: 10px;
      color: var(--muted);
      font-size: 0.74rem;
      line-height: 1.55;
    }

    .program-cta {
      width: 100%;
      margin-top: 14px;
      background: var(--program-color);
      color: var(--white);
      min-height: 46px;
      padding: 12px 18px;
      font-size: 0.86rem;
      box-shadow: 0 8px 22px color-mix(in srgb, var(--program-color) 20%, transparent);
    }

    .program-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 36px color-mix(in srgb, var(--program-color) 34%, transparent);
    }

    /* NUMBERED CARDS */
    .number-card .number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      background: var(--blue);
      color: var(--white);
      font-family: var(--serif);
      font-size: 1.3rem;
      border-radius: 50%;
      margin-bottom: 20px;
    }

    /* HIGHLIGHT */
    .highlight {
      margin-top: 40px;
      padding-top: 32px;
      border-top: 1px solid var(--gold);
      font-family: var(--serif);
      font-size: clamp(1.4rem, 2.5vw, 2rem);
      font-weight: 300;
      color: var(--blue);
      line-height: 1.4;
      text-align: center;
    }

    .section-dark .highlight {
      color: var(--white);
      border-top-color: rgba(205, 147, 77, 0.5);
    }

    /* BEFORE AFTER */
    .before-after {
      background:
        linear-gradient(180deg, rgba(243, 242, 238, 0.98), rgba(242, 233, 216, 0.78));
      padding-top: 82px;
    }

    .before-after::before {
      content: '';
      position: absolute;
      right: -120px;
      top: 50%;
      width: min(34vw, 420px);
      height: 640px;
      background: url('assets/icons/icone-integraville-azul-transparente.webp') center / contain no-repeat;
      opacity: 0.035;
      transform: translateY(-50%);
      pointer-events: none;
    }

    .before-after .section-header {
      max-width: 860px;
    }

    .before-after-showcase {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
      align-items: stretch;
    }

    .before-after-card {
      position: relative;
      display: block;
      border: 1px solid rgba(32, 63, 89, 0.1);
      border-radius: 24px;
      background: rgba(255, 250, 242, 0.84);
      box-shadow: 0 20px 56px rgba(32, 63, 89, 0.11);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }

    .before-after-card:hover {
      transform: translateY(-4px);
      border-color: rgba(205, 147, 77, 0.28);
      box-shadow: 0 26px 70px rgba(32, 63, 89, 0.16);
    }

    .before-after-media {
      position: relative;
      width: 100%;
      aspect-ratio: 0.86;
      background: var(--beige);
      overflow: hidden;
    }

    .before-after-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 40%;
    }

    .before-after-caption {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 13px 16px;
      color: var(--gold);
      font-size: 0.84rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .before-after-note {
      max-width: 720px;
      margin: 28px auto 0;
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.75;
      text-align: center;
    }

    /* SPLIT */
    .split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .split-content .cta-row {
      margin-top: 28px;
    }

    .soft-panel {
      padding: 40px;
      background: rgba(255, 250, 242, 0.9);
      border: 1px solid rgba(32, 63, 89, 0.08);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    /* CHECK LIST */
    .check-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 16px;
    }

    .check-list li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      color: var(--ink);
    }

    .check-icon {
      flex-shrink: 0;
      width: 26px;
      height: 26px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(205, 147, 77, 0.15);
      border-radius: 50%;
      color: var(--gold);
      font-size: 0.85rem;
    }

    /* INCLUDED GRID */
    .included-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .included-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 18px 20px;
      background: rgba(255, 250, 242, 0.8);
      border: 1px solid rgba(32, 63, 89, 0.08);
      border-radius: 14px;
      font-size: 0.95rem;
      color: var(--ink);
    }

    .included-item .check-icon {
      width: 24px;
      height: 24px;
      font-size: 0.75rem;
    }

    /* PROTOCOLS SHOWCASE */
    .protocols-showcase {
      background:
        linear-gradient(180deg, rgba(243, 242, 238, 0.98), rgba(242, 233, 216, 0.88));
    }

    .protocols-showcase::before {
      content: '';
      position: absolute;
      right: -80px;
      top: 60px;
      width: min(28vw, 340px);
      height: 520px;
      background: url('assets/icons/icone-integraville-azul-transparente.webp') center / contain no-repeat;
      opacity: 0.035;
      pointer-events: none;
    }

    .protocols-intro {
      margin-bottom: 48px;
      text-align: center;
    }

    .protocols-intro .section-header {
      margin-bottom: 0;
      max-width: 860px;
      margin-left: auto;
      margin-right: auto;
    }

    .protocol-section-name {
      margin: 0 0 10px;
      color: var(--blue);
      font-size: 0.92rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .protocols-quote {
      margin-top: 0;
      padding: 24px 28px;
      border-left: 4px solid rgba(205, 147, 77, 0.7);
      border-radius: 0 18px 18px 0;
      background: rgba(255, 250, 242, 0.62);
      color: var(--blue);
      font-family: var(--serif);
      font-size: clamp(1.4rem, 2.2vw, 1.9rem);
      font-style: italic;
      line-height: 1.5;
      box-shadow: var(--shadow);
    }

    .protocols-quote::before {
      content: '"';
      font-size: 3rem;
      color: var(--gold);
      line-height: 0;
      vertical-align: -0.4em;
      margin-right: 6px;
    }

    .protocols-quote::after {
      content: '"';
      font-size: 3rem;
      color: var(--gold);
      line-height: 0;
      vertical-align: -0.4em;
      margin-left: 6px;
    }

    .protocols-left .protocols-quote {
      width: 100%;
    }

    .protocols-left {
      display: flex;
      flex-direction: column;
      gap: 20px;
      height: auto;
      justify-content: flex-start;
    }

    .protocols-left > article,
    .protocols-left > div,
    .protocols-left > p {
      flex-shrink: 0;
    }

    .protocols-left .protocol-hero-card {
      flex: 0 0 auto;
    }

    .protocols-left .protocol-closing {
      flex: 0 0 auto;
    }

    .protocols-left .protocols-quote {
      flex: 0 0 auto;
      align-self: flex-end;
      width: 100%;
    }

    .protocols-layout {
      display: grid;
      grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.3fr);
      gap: 22px;
      align-items: start;
    }

    .protocol-hero-card,
    .protocol-card,
    .protocol-closing {
      position: relative;
      overflow: hidden;
    }

    .protocol-hero-card {
      position: sticky;
      top: 96px;
      padding: 36px 38px 40px;
      border: 1px solid rgba(205, 147, 77, 0.28);
      border-radius: 26px;
      background:
        linear-gradient(145deg, rgba(32, 63, 89, 0.98), rgba(26, 53, 75, 0.98));
      color: rgba(255, 250, 242, 0.84);
      box-shadow: 0 24px 64px rgba(32, 63, 89, 0.22);
    }

    .protocol-hero-card::before {
      content: '';
      position: absolute;
      right: -92px;
      bottom: -190px;
      width: min(70%, 360px);
      height: 620px;
      background: url('assets/icons/icone-integraville-bege-transparente.webp') center / contain no-repeat;
      opacity: 0.06;
      pointer-events: none;
    }

    .protocol-hero-card > * {
      position: relative;
      z-index: 1;
    }

    .protocol-kicker {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 16px;
      padding: 6px 10px;
      border: 1px solid rgba(205, 147, 77, 0.38);
      border-radius: 999px;
      color: var(--beige);
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .protocol-kicker::before {
      content: '';
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--gold);
    }

    .protocol-hero-card h3 {
      color: var(--white);
      font-size: clamp(2.4rem, 4vw, 4rem);
      line-height: 1;
      margin-bottom: 16px;
    }

    .protocol-hero-card p {
      color: rgba(255, 250, 242, 0.82);
      font-size: 1rem;
      line-height: 1.8;
    }

    .protocol-bullets {
      display: grid;
      gap: 10px;
      margin: 22px 0;
      padding: 0;
      list-style: none;
    }

    .protocol-bullets li {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255, 250, 242, 0.86);
      font-size: 0.92rem;
      line-height: 1.6;
    }

    .protocol-bullets li::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
      flex: 0 0 auto;
    }

    .protocol-micro {
      margin: 6px 0 24px;
      padding-top: 18px;
      border-top: 1px solid rgba(205, 147, 77, 0.35);
      font-family: var(--serif);
      font-size: 1.2rem;
      line-height: 1.25;
      color: var(--beige);
    }

    .protocol-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .protocol-card {
      min-height: 100%;
      padding: 22px;
      border: 1px solid rgba(162, 181, 211, 0.36);
      border-radius: 20px;
      background: rgba(255, 250, 242, 0.72);
      box-shadow: var(--shadow);
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }

    .protocol-card:nth-child(even) {
      background: rgba(243, 242, 238, 0.86);
    }

    .protocol-card:hover {
      transform: translateY(-4px);
      border-color: rgba(205, 147, 77, 0.34);
      box-shadow: var(--shadow-lg);
    }

    .protocol-card-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 14px;
    }

    .protocol-icon {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(205, 147, 77, 0.32);
      border-radius: 50%;
      background: rgba(205, 147, 77, 0.08);
      color: var(--blue);
      flex: 0 0 auto;
    }

    .protocol-icon svg {
      width: 18px;
      height: 18px;
      stroke-width: 1.55;
    }

    .protocol-index {
      color: rgba(32, 63, 89, 0.32);
      font-family: var(--serif);
      font-size: 1.6rem;
      line-height: 1;
    }

    .protocol-tag {
      display: inline-block;
      margin-bottom: 8px;
      color: var(--gold);
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .protocol-card h3 {
      margin-bottom: 10px;
      font-size: 1.35rem;
    }

    .protocol-card p {
      color: var(--muted);
      font-size: 0.88rem;
      line-height: 1.75;
    }

    .protocol-indication {
      margin-top: 14px;
      padding-top: 12px;
      border-top: 1px solid rgba(162, 181, 211, 0.28);
      color: #405463;
      font-size: 0.82rem;
      line-height: 1.5;
    }

    .protocol-indication strong {
      color: var(--blue);
    }

    .protocol-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 16px;
      color: var(--blue);
      font-size: 0.84rem;
      font-weight: 700;
    }

    .protocol-link::after {
      content: '→';
      color: var(--gold);
      transition: transform 0.2s ease;
    }

    .protocol-link:hover::after {
      transform: translateX(3px);
    }

    .protocol-closing {
      margin-top: 0;
      padding: 24px 26px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 14px;
      border: 1px solid rgba(205, 147, 77, 0.22);
      border-radius: 18px;
      background: rgba(255, 250, 242, 0.74);
      box-shadow: var(--shadow);
    }

    .protocol-closing h3 {
      margin-bottom: 0;
      font-size: 1.4rem;
      color: var(--blue);
      line-height: 1.3;
    }

    .protocol-closing p {
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.7;
    }

    .protocol-closing .btn {
      margin-top: 6px;
      min-height: 48px;
      font-size: 0.9rem;
      padding: 14px 20px;
    }

    .note {
      margin-top: 24px;
      padding: 18px 22px;
      background: rgba(205, 147, 77, 0.08);
      border-radius: 12px;
      font-size: 0.88rem;
      color: var(--muted);
      border-left: 3px solid var(--gold);
    }

    /* CTA ROW */
    .cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .cta-center {
      text-align: center;
      justify-content: center;
    }

    /* FAQ */
    .faq-wrap {
      max-width: 860px;
      margin: 0 auto;
      display: grid;
      gap: 14px;
    }

    details {
      background: rgba(255, 250, 242, 0.8);
      border: 1px solid rgba(32, 63, 89, 0.1);
      border-radius: var(--radius);
      overflow: hidden;
      transition: all 0.3s ease;
    }

    details:hover {
      border-color: rgba(205, 147, 77, 0.2);
    }

    summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 22px 26px;
      font-weight: 600;
      color: var(--blue);
      cursor: pointer;
      list-style: none;
    }

    summary::-webkit-details-marker {
      display: none;
    }

    summary::after {
      content: '+';
      color: var(--gold);
      font-size: 1.5rem;
      font-weight: 400;
      line-height: 1;
      transition: transform 0.3s ease;
    }

    details[open] summary::after {
      transform: rotate(45deg);
    }

    details p {
      padding: 0 26px 22px;
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.8;
    }

    /* FINAL CTA */
    .final-cta {
      text-align: center;
      padding: 80px 0;
    }

    .section-dark.final-cta::before {
      top: 50%;
      right: auto;
      bottom: auto;
      left: clamp(24px, 6vw, 96px);
      width: min(24vw, 330px);
      height: 78%;
      aspect-ratio: auto;
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      transform: translateY(-50%) rotate(180deg);
    }

    .final-cta h2 {
      max-width: 680px;
      margin: 0 auto;
    }

    .final-cta .lead {
      margin: 18px auto 0;
      max-width: 520px;
    }

    .final-cta .btn {
      margin-top: 28px;
    }

    .final-note {
      margin-top: 18px;
      font-size: 0.84rem;
      color: rgba(255, 250, 242, 0.6);
    }

    /* FOOTER */
    .footer {
      padding: 60px 0 36px;
      background: var(--blue);
      color: rgba(255, 250, 242, 0.8);
      position: relative;
      overflow: hidden;
    }

    .footer::before {
      content: '';
      position: absolute;
      right: clamp(18px, 5vw, 82px);
      top: 50%;
      width: min(24vw, 310px);
      height: 82%;
      aspect-ratio: auto;
      background: url('assets/icons/icone-integraville-bege-transparente.webp') center / contain no-repeat;
      opacity: 0.055;
      pointer-events: none;
      transform: translateY(-50%);
      animation: footerMarkFloat 20s ease-in-out infinite alternate;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1.1fr;
      gap: 40px;
      position: relative;
      z-index: 1;
    }

    .footer-logo {
      width: 160px;
      padding: 10px;
      background: var(--beige);
      border-radius: 12px;
      margin-bottom: 20px;
    }

    .footer-brand-line {
      margin-top: 14px;
      font-family: var(--serif);
      font-size: 1.1rem;
      color: var(--beige);
      line-height: 1.4;
    }

    .footer h4 {
      margin: 0 0 14px;
      font-family: var(--serif);
      font-size: 1.2rem;
      font-weight: 400;
      color: var(--white);
    }

    .footer-contact-title {
      margin-top: 28px !important;
    }

    .footer p,
    .footer li {
      font-size: 0.88rem;
      line-height: 1.7;
    }

    .footer ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 7px;
    }

    .footer strong {
      color: var(--beige);
    }

    .instagram {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      margin-top: 20px;
      border: 1px solid rgba(255, 250, 242, 0.2);
      border-radius: 50%;
      color: var(--beige);
      transition: all 0.3s ease;
    }

    .instagram:hover {
      border-color: var(--beige);
      background: rgba(255, 250, 242, 0.1);
    }

    .copyright {
      margin-top: 44px;
      padding-top: 24px;
      border-top: 1px solid rgba(255, 250, 242, 0.15);
      font-size: 0.78rem;
      color: rgba(255, 250, 242, 0.5);
      text-align: center;
      position: relative;
      z-index: 1;
    }

    /* MOTION */
    @keyframes brandDrift {
      from { transform: translate3d(0, 0, 0) rotate(0deg); }
      to { transform: translate3d(-18px, 22px, 0) rotate(2deg); }
    }

    @keyframes brandFloat {
      from { transform: translate3d(0, 0, 0) rotate(0deg); }
      to { transform: translate3d(-14px, 18px, 0) rotate(-2deg); }
    }

    @keyframes footerMarkFloat {
      from { transform: translateY(-50%) translateX(0) rotate(0deg); }
      to { transform: translateY(-50%) translateX(-18px) rotate(2deg); }
    }

    @keyframes softPulse {
      0%, 100% { box-shadow: 0 8px 24px rgba(32, 63, 89, 0.25); }
      50% { box-shadow: 0 14px 38px rgba(32, 63, 89, 0.33); }
    }

    @keyframes detailOpen {
      from { transform: translateY(-2px); }
      to { transform: translateY(0); }
    }

    .hero .btn-primary {
      animation: softPulse 3.8s ease-in-out infinite;
    }

    .motion-ready .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition:
        opacity 900ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 1000ms cubic-bezier(0.22, 1, 0.36, 1);
      transition-delay: var(--delay, 0ms);
      will-change: transform, opacity;
    }

    .motion-ready .reveal.in-view {
      opacity: 1;
      transform: translateY(0);
    }

    .motion-ready .hero-content.reveal {
      transform: translateX(-40px);
      opacity: 0;
    }

    .motion-ready .hero-visual.reveal {
      transform: translateX(40px) scale(0.96);
      opacity: 0;
    }

    .motion-ready .hero-content.reveal.in-view,
    .motion-ready .hero-visual.reveal.in-view {
      transform: translateX(0) scale(1);
      opacity: 1;
      transition:
        opacity 1000ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 1200ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .motion-ready .hero-card.reveal {
      transform: translateY(30px) scale(0.94);
      opacity: 0;
      transition-delay: 400ms;
    }

    .motion-ready .hero-card.reveal.in-view {
      transform: translateY(0) scale(1);
      opacity: 1;
    }

    .motion-ready .card.reveal:hover,
    .motion-ready .pain-card.reveal:hover,
    .motion-ready .protocol-card.reveal:hover,
    .motion-ready .category-card.reveal:hover,
    .motion-ready .profile-card.reveal:hover {
      transform: translateY(-6px) scale(1.02);
    }

    .motion-ready .reset-step.reveal:hover {
      transform: translateX(8px) scale(1.01);
    }

    details[open] {
      animation: detailOpen 300ms ease;
    }

    @keyframes detailOpen {
      from {
        opacity: 0.7;
        transform: translateY(-6px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .motion-ready .btn {
      transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .motion-ready .btn:hover {
      transform: translateY(-3px);
    }

    .motion-ready .btn-gold:hover,
    .motion-ready .btn-whatsapp:hover {
      transform: translateY(-4px) scale(1.02);
      box-shadow: 0 16px 40px rgba(32, 63, 89, 0.3);
    }

    .motion-ready .btn-primary:hover {
      box-shadow: 0 14px 36px rgba(32, 63, 89, 0.35);
    }

    @keyframes brandFloat {
      from { transform: translate3d(0, 0, 0) rotate(0deg); }
      to { transform: translate3d(-14px, 18px, 0) rotate(1.5deg); }
    }

    @keyframes footerMarkFloat {
      from { transform: translate3d(0, 0, 0) rotate(0deg); }
      to { transform: translate3d(14px, -18px, 0) rotate(-1.5deg); }
    }

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

      .motion-ready .reveal,
      .motion-ready .reveal.in-view {
        opacity: 1;
        transform: none;
      }
    }

    /* STORY SECTION */
    .story-image {
      width: 100%;
      height: 500px;
      border-radius: 230px 230px 24px 24px;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      background: var(--beige);
    }

    .story-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }

    .story-lead-primary {
      margin-top: 24px;
    }

    .story-lead-secondary {
      margin-top: 16px;
    }

    .story-highlight {
      font-size: 1.4rem;
    }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .hero-grid {
        grid-template-columns: 1fr 400px;
        gap: 40px;
      }

      .grid-4 {
        grid-template-columns: repeat(2, 1fr);
      }

      .protocols-intro,
      .protocols-layout,
      .protocol-closing {
        grid-template-columns: 1fr;
      }

      .protocol-hero-card {
        position: relative;
        top: auto;
      }

      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 1024px) {
      body {
        text-align: center;
      }

      .container {
        width: min(calc(100% - 40px), 760px);
      }

      .topbar-inner {
        height: 68px;
        gap: 16px;
      }

      .topbar .logo {
        height: 34px;
      }

      .topbar .btn {
        width: 110px;
        min-height: 42px;
        padding: 10px 16px;
        font-size: 0;
      }

      .topbar .btn::after {
        content: 'Agendar';
        font-size: 0.82rem;
      }

      .hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .hero-visual {
        display: block;
        width: min(440px, 100%);
        margin: 0 auto;
      }

      .hero-image {
        height: clamp(330px, 62vw, 470px);
        border-radius: 180px 180px 22px 22px;
      }

      .hero-card {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        margin: 18px auto 0;
        padding: 24px;
        border-radius: 18px;
      }

      .split {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .section-header,
      .reset-intro-text,
      .split-content,
      .protocols-intro .section-header,
      .final-cta h2,
      .final-cta .lead {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
      }

      .lead,
      .hero-support,
      .card p,
      .pain-card p,
      .profile-content p,
      .category-list li,
      .protocol-card p,
      .protocol-indication,
      .protocol-closing p,
      .footer p,
      .footer li {
        text-align: center;
      }

      .hero-content .lead,
      .hero-support {
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
      }

      .seal-row,
      .hero-cta,
      .cta-row {
        justify-content: center;
      }

      .pain-grid,
      .grid-3 {
        grid-template-columns: 1fr;
      }

      .before-after-showcase {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .before-after-card {
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
      }

      .reset-program-grid {
        grid-template-columns: 1fr;
      }

      .reset-program-card,
      .reset-program-card.featured {
        padding: 24px;
        text-align: center;
      }

      .program-badge {
        align-self: center;
      }

      .program-list li {
        grid-template-columns: 22px 1fr;
        justify-items: start;
        text-align: left;
      }

      .program-icon {
        width: 22px;
        height: 22px;
      }

      .program-icon svg {
        width: 12px;
        height: 12px;
      }

      .program-list,
      .reset-program-card:nth-child(2) .program-list,
      .reset-program-card:nth-child(4) .program-list {
        grid-template-columns: 1fr;
      }

      .investment-options li {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .included-grid {
        grid-template-columns: 1fr;
      }

      .protocol-grid {
        grid-template-columns: 1fr;
      }

      .protocols-layout,
      .protocols-left,
      .protocol-grid {
        width: 100%;
        max-width: 100%;
        min-width: 0;
      }

      .protocol-hero-card,
      .protocol-card,
      .protocol-closing,
      .protocols-quote {
        width: 100%;
        max-width: 100%;
        min-width: 0;
      }

      .protocol-kicker,
      .protocol-tag,
      .protocol-card h3,
      .protocol-card p,
      .protocol-indication,
      .protocol-link {
        overflow-wrap: anywhere;
      }

      .profile-grid {
        grid-template-columns: 1fr;
      }

      .included-categories {
        grid-template-columns: 1fr;
      }

      .reset-layout {
        grid-template-columns: 1fr;
      }

      .reset-main-card {
        position: relative;
        top: auto;
      }

      .reset-step {
        display: grid;
        justify-items: center;
        gap: 14px;
        text-align: center;
      }

      .reset-step:hover {
        transform: translateY(-4px);
      }

      .category-header,
      .protocol-card-top {
        justify-content: center;
      }

      .card-icon,
      .pain-icon,
      .profile-icon,
      .category-icon,
      .protocol-icon {
        margin-left: auto;
        margin-right: auto;
      }

      .included-item {
        justify-content: center;
        text-align: center;
      }

      .category-list li,
      .protocol-bullets li {
        justify-content: center;
      }

      .protocol-closing {
        align-items: center;
        text-align: center;
      }

      .story-image {
        width: min(520px, 100%);
        margin: 0 auto;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .footer-logo {
        margin-left: auto;
        margin-right: auto;
      }

      .instagram {
        margin-left: auto;
        margin-right: auto;
      }

    }

    @media (max-width: 640px) {
      .container {
        width: min(calc(100% - 32px), 1140px);
      }

      .topbar-inner {
        height: 62px;
      }

      .logo {
        height: 30px;
      }

      .topbar .btn {
        width: 96px;
        min-height: 38px;
        padding: 8px 12px;
      }

      .topbar .btn::after {
        font-size: 0.74rem;
      }

      .hero {
        padding: 52px 0 62px;
      }

      h1 {
        font-size: clamp(2rem, 11vw, 2.55rem);
      }

      h2 {
        font-size: clamp(1.8rem, 9vw, 2.15rem);
      }

      .section {
        padding: 60px 0;
      }

      .section-header {
        margin-bottom: 36px;
      }

      .hero-cta {
        flex-direction: column;
      }

      .hero-cta .btn,
      .cta-row .btn,
      .final-cta .btn {
        width: 100%;
        white-space: normal;
      }

      .hero-image {
        height: 360px;
        border-radius: 150px 150px 18px 18px;
      }

      .hero-card {
        padding: 20px;
      }

      .grid-2,
      .grid-3,
      .grid-4,
      .included-grid {
        grid-template-columns: 1fr;
      }

      .pain-grid {
        grid-template-columns: 1fr;
      }

      .profile-grid {
        grid-template-columns: 1fr;
      }

      .soft-panel {
        padding: 24px;
      }

      .card {
        padding: 22px;
      }

      .before-after {
        padding-top: 58px;
      }

      .before-after-showcase {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .before-after-media {
        aspect-ratio: 0.9;
      }

      .before-after-card {
        border-radius: 18px;
      }

      .before-after-caption {
        padding: 12px 14px;
        font-size: 0.72rem;
      }

      .reset-program-card,
      .reset-program-card.featured {
        padding: 22px 18px;
        border-radius: 18px;
      }

      .reset-program-card h3 {
        font-size: 1.95rem;
      }

      .program-description {
        font-size: 0.86rem;
      }

      .investment-box {
        padding: 14px;
      }

      .investment-options strong,
      .investment-consult {
        white-space: normal;
      }

      .protocols-intro {
        gap: 24px;
        margin-bottom: 32px;
      }

      .protocols-quote,
      .protocol-hero-card,
      .protocol-card,
      .protocol-closing {
        border-radius: 18px;
      }

      .protocol-hero-card,
      .protocol-card,
      .protocol-closing,
      .protocols-quote {
        padding: 20px 22px;
      }

      .protocol-hero-card h3 {
        font-size: 2.2rem;
      }

      .protocol-closing .btn {
        width: 100%;
        margin-top: 8px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .footer-logo {
        width: 140px;
      }

      .story-image {
        height: 320px;
        border-radius: 160px 160px 18px 18px;
      }

      .final-cta {
        padding: 60px 0;
      }
    }

    @media (max-width: 390px) {
      .container {
        width: min(calc(100% - 28px), 1140px);
      }

      .topbar .logo {
        height: 26px;
      }

      .topbar .btn {
        width: 88px;
        padding: 8px 10px;
      }

      .topbar .btn::after {
        font-size: 0.68rem;
      }

      .seal {
        width: 100%;
        justify-content: center;
      }

      .hero-image {
        height: 330px;
      }

      .card,
      .pain-card,
      .profile-card,
      .category-card,
      .reset-step,
      .protocol-card {
        padding: 20px;
      }
    }
