
    :root {
      --pink: #BE0380;
      --pink-deep: #8A025D;
      --pink-soft: #F6ECF3;
      --pink-line: rgba(160, 34, 88, 0.14);
      --blush: #F3E7EF;
      --ink: #2B1B26;
      --ink-soft: #6B5563;
      --cream: #FFFDFB;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--cream);
      color: var(--ink);
      font-family: 'Poppins', sans-serif;
      font-weight: 400;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    h1,
    h2,
    h3 {
      font-family: 'Fraunces', serif;
      font-weight: 500;
      letter-spacing: -0.01em;
      color: var(--ink);
    }

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

    .eyebrow {
      font-size: 12px;
      letter-spacing: 0.26em;
      text-transform: uppercase;
      color: var(--pink);
      font-weight: 600;
    }

    .rule-eyebrow {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      margin-bottom: 14px;
    }

    .rule-eyebrow::before,
    .rule-eyebrow::after {
      content: "";
      width: 32px;
      height: 1px;
      background: var(--pink);
      opacity: 0.5;
    }

    /* ============ NAV ============ */
    .nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 253, 251, 0.9);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--pink-line);
    }

    .nav-inner {
      max-width: 1240px;
      margin: 0 auto;
      padding: 18px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .nav-brandrow {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .nav-logo {
      height: 34px;
      display: block;
    }

    .nav-via {
      font-size: 11.5px;
      color: var(--ink-soft);
      border-left: 1px solid var(--pink-line);
      padding-left: 14px;
      line-height: 1.3;
    }

    .nav-via strong {
      color: var(--ink);
      font-weight: 600;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 26px;
      list-style: none;
      flex: 1;
      justify-content: center;
    }

    .nav-links a {
      font-size: 13.5px;
      font-weight: 500;
      color: var(--ink);
      transition: color 0.2s ease;
      white-space: nowrap;
    }

    .nav-links a:hover {
      color: var(--pink);
    }

    .nav-cta {
      background: var(--pink);
      color: #fff;
      padding: 12px 26px;
      border-radius: 100px;
      font-size: 13.5px;
      font-weight: 600;
      letter-spacing: 0.01em;
      transition: background 0.25s ease, transform 0.25s ease;
      white-space: nowrap;
    }

    .nav-cta:hover {
      background: var(--pink-deep);
      transform: translateY(-1px);
    }

    /* ============ HERO ============ */
    .hero {
      position: relative;
      background: #BE0380;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
    }

    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 65% center;
      display: block;
    }

    .hero-bg::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, #BE0380 0%, #BE0380 32%, rgba(190, 3, 128, 0.88) 44%, rgba(190, 3, 128, 0.35) 62%, rgba(190, 3, 128, 0.06) 78%, rgba(190, 3, 128, 0) 92%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 1280px;
      margin: 0 auto;
      padding: 80px 40px;
      width: 100%;
    }

    .hero .eyebrow {
      display: inline-block;
      margin-bottom: 18px;
      color: #FFD9EB;
    }

    .hero h1 {
      font-size: clamp(32px, 3.8vw, 50px);
      line-height: 1.14;
      font-weight: 500;
      color: #fff;
      max-width: 620px;
    }

    .hero h1 .accent {
      display: block;
      color: #FFB6D9;
      font-style: italic;
    }

    .hero p.lead {
      font-size: 16.5px;
      color: rgba(255, 255, 255, 0.86);
      max-width: 460px;
      margin: 22px 0 32px;
    }

    .btn-primary {
      background: #fff;
      color: var(--pink-deep);
      padding: 16px 32px;
      border-radius: 100px;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.01em;
      display: inline-block;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
      transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
      background: #FFE9F4;
    }

    /* ============ SOBRE ============ */
    .sobre {
      padding: 96px 40px;
      text-align: center;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .sobre h2 {
      font-size: clamp(27px, 3.2vw, 36px);
      max-width: 640px;
      margin: 0 auto 18px;
      line-height: 1.28;
    }

    .sobre h2 .accent {
      color: var(--pink);
    }

    .sobre p.sub {
      color: var(--ink-soft);
      max-width: 640px;
      margin: 0 auto 56px;
      font-size: 16px;
      line-height: 1.75;
    }

    /* ============ VANTAGENS ============ */
    .vantagens {
      padding: 20px 40px 100px;
      text-align: center;
    }

    .vantagens h2 {
      font-size: clamp(26px, 3vw, 34px);
      max-width: 600px;
      margin: 0 auto 44px;
      line-height: 1.28;
    }

    .vantagens h2 .accent {
      color: var(--pink);
    }

    .feature-grid {
      max-width: 1080px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .feature-card {
      background: linear-gradient(155deg, #7A1642 0%, #4A0E2C 100%);
      border-radius: 18px;
      padding: 32px 26px;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(122, 22, 66, 0.28);
    }

    .feature-card-icon {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 34px;
    }

    .feature-card-icon svg {
      width: 26px;
      height: 26px;
      stroke: #fff;
    }

    .feature-card h3 {
      font-size: 17px;
      font-weight: 500;
      margin-bottom: 8px;
      line-height: 1.35;
      color: #fff;
      font-family: 'Fraunces', serif;
    }

    .feature-card p {
      font-size: 12.5px;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.5;
    }

    /* ============ REDE CREDENCIADA ============ */
    .rede {
      background: linear-gradient(160deg, var(--blush) 0%, var(--pink-soft) 100%);
      padding: 96px 40px;
      text-align: center;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .rede h2 {
      font-size: clamp(26px, 3vw, 34px);
      margin-bottom: 16px;
    }

    .rede p.sub {
      color: var(--ink-soft);
      max-width: 600px;
      margin: 0 auto 20px;
      font-size: 16px;
    }

    .rede-stats {
      display: flex;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
      margin-bottom: 52px;
    }

    .rede-stat-num {
      font-family: 'Fraunces', serif;
      font-size: clamp(28px, 3.4vw, 38px);
      color: var(--pink);
      line-height: 1;
      margin-bottom: 6px;
    }

    .rede-stat-label {
      font-size: 13px;
      color: var(--ink-soft);
    }

    .hosp-featured {
      max-width: 1040px;
      margin: 0 auto 20px;
      display: flex;
      justify-content: center;
      gap: 14px;
      height: 166px;
    }

    .hosp-featured img {
      height: 100%;
      width: auto;
      flex-shrink: 0;
      display: block;
      box-shadow: 0 10px 24px rgba(160, 34, 88, 0.14);
    }

    .hosp-grid {
      max-width: 1040px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }

    .hosp-grid img {
      width: 100%;
      height: auto;
      border-radius: 12px;
      display: block;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .hosp-grid img:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 28px rgba(160, 34, 88, 0.14);
    }

    .rede-note {
      margin-top: 28px;
      font-size: 13.5px;
      color: var(--ink-soft);
    }

    /* ============ COMPARATIVO ============ */
    .compare {
      padding: 96px 40px;
      text-align: center;
      background: var(--cream);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .compare h2 {
      font-size: clamp(24px, 2.8vw, 32px);
      max-width: 680px;
      margin: 0 auto 14px;
    }

    .compare p.sub {
      color: var(--ink-soft);
      max-width: 560px;
      margin: 0 auto 44px;
      font-size: 15.5px;
    }

    .compare-table-wrap {
      max-width: 980px;
      margin: 0 auto;
      overflow-x: auto;
      border-radius: 16px;
      box-shadow: 0 20px 50px rgba(160, 34, 88, 0.08);
    }

    .compare-table {
      width: 100%;
      border-collapse: collapse;
      background: #fff;
      font-size: 13.5px;
      min-width: 720px;
    }

    .compare-table th,
    .compare-table td {
      padding: 13px 16px;
      text-align: center;
      border-bottom: 1px solid var(--pink-line);
      white-space: nowrap;
    }

    .compare-table td:first-child,
    .compare-table th.th-hosp {
      text-align: left;
      color: var(--ink);
      font-weight: 500;
      white-space: normal;
    }

    .compare-table th {
      font-weight: 600;
      color: var(--ink-soft);
      font-size: 12.5px;
      background: var(--pink-soft);
    }

    .compare-table th span {
      display: block;
      font-weight: 400;
      font-size: 10.5px;
      color: var(--ink-soft);
      margin-top: 2px;
    }

    .compare-table th.th-alice {
      color: var(--pink);
      background: #FCE3EF;
    }

    .compare-table th.th-alice span {
      color: var(--pink);
    }

    .compare-table td.yes-alice {
      color: var(--pink);
      font-weight: 700;
      background: #FCE3EF;
    }

    .compare-table td {
      color: #b9b3b7;
    }

    .compare-note {
      max-width: 700px;
      margin: 20px auto 0;
      font-size: 12px;
      color: var(--ink-soft);
      line-height: 1.6;
    }

    /* ============ COBERTURA ============ */
    .coverage {
      background: linear-gradient(160deg, var(--blush) 0%, var(--pink-soft) 100%);
      padding: 88px 40px;
      text-align: center;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .coverage h2 {
      font-size: clamp(24px, 2.8vw, 32px);
      max-width: 640px;
      margin: 0 auto 14px;
    }

    .coverage h2 .accent {
      color: var(--pink);
    }

    .coverage p.sub {
      color: var(--ink-soft);
      max-width: 560px;
      margin: 0 auto 40px;
      font-size: 15.5px;
    }

    .city-grid {
      max-width: 1120px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 14px;
    }

    .city-card {
      position: relative;
      aspect-ratio: 1/0.72;
      border-radius: 16px;
      overflow: hidden;
      border: 2px solid transparent;
      transition: transform 0.25s ease;
    }

    .city-card.is-active {
      border-color: var(--pink);
    }

    .city-card:hover {
      transform: translateY(-3px);
    }

    .city-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .city-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(190, 3, 128, 0.05) 40%, rgba(60, 10, 45, 0.75) 100%);
    }

    .city-card-label {
      position: absolute;
      left: 10px;
      bottom: 9px;
      z-index: 2;
      color: #fff;
      font-size: 12.5px;
      font-weight: 600;
    }

    /* ============ REAJUSTE (BAR CHART) ============ */
    .reajuste {
      padding: 96px 40px 80px;
      background: var(--cream);
    }

    .reajuste-inner {
      max-width: 1160px;
      margin: 0 auto;
    }

    .reajuste-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 56px;
    }

    .reajuste-head h2 {
      font-size: clamp(24px, 2.8vw, 32px);
      line-height: 1.25;
    }

    .reajuste-head h2 .accent {
      color: var(--pink);
      display: block;
    }

    .reajuste-head p {
      font-size: 14.5px;
      color: var(--ink-soft);
      max-width: 260px;
      text-align: right;
    }

    .reajuste-chart {
      display: flex;
      align-items: flex-end;
      border-top: 1px solid var(--pink-line);
    }

    .reajuste-col {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 26px 14px 0;
      border-left: 1px solid var(--pink-line);
    }

    .reajuste-col:first-child {
      border-left: none;
    }

    .reajuste-value {
      font-family: 'Fraunces', serif;
      font-size: 26px;
      color: var(--ink);
      margin-bottom: 14px;
    }

    .reajuste-value sup {
      font-size: 13px;
      font-weight: 400;
    }

    .reajuste-col.is-alice .reajuste-value {
      color: var(--pink);
    }

    .reajuste-bar {
      width: 100%;
      max-width: 150px;
      border-radius: 20px 20px 0 0;
      background: var(--pink-soft);
    }

    .reajuste-col.is-alice .reajuste-bar {
      background: var(--pink);
    }

    .reajuste-label {
      margin-top: 18px;
      padding-bottom: 20px;
      font-size: 14px;
      color: var(--ink-soft);
    }

    .reajuste-col.is-alice .reajuste-label {
      color: var(--ink);
      font-weight: 600;
    }


    .form-section {
      background: var(--cream);
      padding: 88px 40px;
    }

    .form-wrap {
      max-width: 1160px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 64px;
      align-items: center;
    }

    .form-copy .eyebrow {
      margin-bottom: 12px;
      display: inline-block;
    }

    .form-copy h2 {
      font-size: clamp(24px, 2.8vw, 32px);
      line-height: 1.22;
      margin-bottom: 20px;
    }

    .form-copy h2 .accent {
      color: var(--pink);
    }

    .form-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 11px;
      margin-bottom: 24px;
    }

    .form-list li {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 14.5px;
      color: var(--ink);
    }

    .form-list li svg {
      width: 19px;
      height: 19px;
      stroke: var(--pink);
      flex-shrink: 0;
    }

    .form-callout {
      background: var(--ink);
      border-radius: 16px;
      padding: 18px 22px;
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .form-callout-icon {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--pink);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .form-callout-icon svg {
      width: 19px;
      height: 19px;
      stroke: #fff;
    }

    .form-callout-title {
      font-size: 12.5px;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 2px;
    }

    .form-callout-value {
      font-size: 18px;
      font-weight: 600;
      color: #fff;
    }

    .form-callout a:hover {
      opacity: 0.85;
    }

    .form-card {
      background: #fff;
      border-radius: 20px;
      padding: 36px;
      border: 1px solid var(--pink-line);
      box-shadow: 0 30px 70px rgba(160, 34, 88, 0.1);
    }

    .form-card>.rule-eyebrow {
      margin-bottom: 4px;
    }

    .form-card>.eyebrow {
      display: block;
      text-align: center;
      margin-bottom: 8px;
    }

    .form-card>h3 {
      text-align: center;
      font-size: 20px;
      line-height: 1.3;
      margin-bottom: 22px;
    }

    .form-row {
      margin-bottom: 16px;
    }

    .form-row label {
      display: block;
      font-size: 12.5px;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      color: var(--ink-soft);
      font-weight: 600;
      margin-bottom: 8px;
      white-space: nowrap;
    }

    .form-row input,
    .form-row select {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid var(--pink-line);
      border-radius: 10px;
      background: #fff;
      font-family: 'Poppins', sans-serif;
      font-size: 15px;
      color: var(--ink);
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .form-row input:focus,
    .form-row select:focus {
      outline: none;
      border-color: var(--pink);
      box-shadow: 0 0 0 3px rgba(236, 8, 104, 0.12);
    }

    .form-two {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .form-submit {
      width: 100%;
      background: var(--pink);
      color: #fff;
      border: none;
      padding: 17px;
      border-radius: 10px;
      font-family: 'Poppins', sans-serif;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      cursor: pointer;
      margin-top: 8px;
      transition: background 0.25s ease, transform 0.15s ease;
    }

    .form-submit:hover {
      background: var(--pink-deep);
      transform: translateY(-1px);
    }

    .form-fineprint {
      font-size: 12.5px;
      color: var(--ink-soft);
      text-align: center;
      margin-top: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }

    .form-fineprint svg {
      width: 13px;
      height: 13px;
      stroke: var(--ink-soft);
    }

    /* ============ FOOTER ============ */
    .footer {
      background: linear-gradient(180deg, #3D0029 0%, #2B001E 100%);
      padding: 44px 40px 28px;
    }

    .footer-top {
      max-width: 1160px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 24px;
      padding-bottom: 28px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .footer-brandrow {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .footer-logo {
      height: 30px;
    }

    .footer-via {
      font-size: 11.5px;
      color: rgba(255, 255, 255, 0.55);
      border-left: 1px solid rgba(255, 255, 255, 0.2);
      padding-left: 14px;
    }

    .footer-via strong {
      color: #fff;
      font-weight: 600;
    }

    .footer-contacts {
      display: flex;
      gap: 30px;
      flex-wrap: wrap;
    }

    .footer-contact {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .footer-contact-icon {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: rgba(236, 8, 104, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .footer-contact-icon svg {
      width: 15px;
      height: 15px;
      stroke: var(--pink);
    }

    .footer-contact-title {
      font-size: 13px;
      font-weight: 600;
      color: #fff;
    }

    .footer-contact-sub {
      font-size: 11.5px;
      color: rgba(255, 255, 255, 0.5);
    }

    .footer-bottom {
      max-width: 1160px;
      margin: 0 auto;
      padding-top: 20px;
      text-align: center;
    }

    .footer-bottom p {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.45);
    }

    /* ============ WHATSAPP FLOAT ============ */
    .wa-float {
      position: fixed;
      bottom: 26px;
      right: 26px;
      z-index: 200;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: #25D366;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      animation: waPulse 2.6s ease-in-out infinite;
    }

    .wa-float:hover {
      transform: scale(1.08);
      box-shadow: 0 14px 32px rgba(0, 0, 0, 0.34);
    }

    .wa-float svg {
      width: 30px;
      height: 30px;
      fill: #fff;
    }

    @keyframes waPulse {

      0%,
      100% {
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28), 0 0 0 0 rgba(37, 211, 102, 0.5);
      }

      50% {
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28), 0 0 0 10px rgba(37, 211, 102, 0);
      }
    }

    /* ============ CHAT WIDGET ============ */
    .chat-widget {
      position: fixed;
      bottom: 100px;
      right: 26px;
      z-index: 201;
      width: 340px;
      max-width: calc(100vw - 32px);
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
      overflow: hidden;
      opacity: 0;
      transform: translateY(24px) scale(0.96);
      pointer-events: none;
      transition: opacity 0.35s ease, transform 0.35s ease;
    }

    .chat-widget.is-open {
      opacity: 1;
      transform: translateY(0) scale(1);
      pointer-events: auto;
    }

    .chat-widget-header {
      background: var(--pink);
      padding: 16px 44px 16px 16px;
      display: flex;
      align-items: center;
      gap: 12px;
      position: relative;
    }

    .chat-widget-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      overflow: hidden;
    }

    .chat-widget-avatar svg {
      width: 24px;
      height: 24px;
      stroke: var(--pink);
    }

    .chat-widget-name {
      color: #fff;
      font-weight: 600;
      font-size: 14.5px;
      line-height: 1.3;
    }

    .chat-widget-status {
      color: rgba(255, 255, 255, 0.85);
      font-size: 12px;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .chat-widget-status::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #39FF88;
      display: inline-block;
    }

    .chat-widget-close {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      border: 1.5px solid rgba(255, 255, 255, 0.6);
      background: transparent;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 14px;
      line-height: 1;
      transition: background 0.2s ease;
    }

    .chat-widget-close:hover {
      background: rgba(255, 255, 255, 0.15);
    }

    .chat-widget-body {
      padding: 18px 16px 16px;
      background: #F4F1F3;
    }

    .chat-bubble-row {
      display: flex;
      align-items: flex-end;
      gap: 8px;
      margin-bottom: 12px;
      opacity: 0;
      transform: translateY(8px);
      animation: bubbleIn 0.4s ease forwards;
    }

    .chat-bubble-row.delay1 {
      animation-delay: 0.4s;
    }

    .chat-bubble-row.delay2 {
      animation-delay: 1.1s;
    }

    @keyframes bubbleIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .chat-bubble-avatar {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: var(--pink);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .chat-bubble-avatar svg {
      width: 14px;
      height: 14px;
      stroke: #fff;
    }

    .chat-bubble {
      background: #fff;
      border-radius: 14px 14px 14px 4px;
      padding: 11px 14px;
      font-size: 13.5px;
      color: var(--ink);
      line-height: 1.5;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    }

    .chat-cta-wrap {
      margin-left: 34px;
      opacity: 0;
      transform: translateY(8px);
      animation: bubbleIn 0.4s ease forwards;
      animation-delay: 1.1s;
    }

    .chat-cta-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      background: var(--pink);
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 13px;
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      margin-top: 4px;
      transition: background 0.2s ease, transform 0.15s ease;
    }

    .chat-cta-btn:hover {
      background: var(--pink-deep);
      transform: translateY(-1px);
    }

    .chat-cta-btn svg {
      width: 16px;
      height: 16px;
    }

    .chat-fineprint {
      font-size: 11px;
      color: var(--ink-soft);
      margin-top: 10px;
      line-height: 1.5;
    }

    /* ============ RESPONSIVE ============ */
    @media (max-width:980px) {
      .nav-via {
        display: none;
      }

      .nav-links {
        display: none;
      }
    }

    @media (max-width:900px) {
      .hero {
        min-height: 480px;
      }

      .hero-bg::after {
        background: linear-gradient(90deg, #BE0380 0%, #BE0380 55%, rgba(190, 3, 128, 0.85) 68%, rgba(190, 3, 128, 0.3) 85%, rgba(190, 3, 128, 0) 100%);
      }

      .hero p.lead {
        margin-left: 0;
        margin-right: 0;
      }

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

      .hosp-featured {
        flex-direction: column;
        height: auto;
      }

      .hosp-featured img {
        height: auto;
        width: 100%;
      }

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

      .form-wrap {
        grid-template-columns: 1fr;
        gap: 44px;
      }

      .rede-stats {
        gap: 32px;
      }

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

    @media (max-width:560px) {
      .nav-inner {
        padding: 14px 20px;
      }

      .hero {
        min-height: 420px;
      }

      .hero-content {
        padding: 50px 20px 60px;
      }

      .hero-bg::after {
        background: linear-gradient(180deg, rgba(190, 3, 128, 0.55) 0%, #BE0380 55%);
      }

      .sobre,
      .rede,
      .form-section,
      .compare,
      .coverage,
      .vantagens {
        padding: 64px 20px;
      }

      .footer {
        padding: 36px 20px 22px;
      }

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

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

      .form-two {
        grid-template-columns: 1fr;
      }

      .form-card {
        padding: 26px;
      }

      .footer-top {
        flex-direction: column;
        text-align: center;
      }

      .footer-contacts {
        justify-content: center;
      }

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

    @media (prefers-reduced-motion: reduce) {
      * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }
