/* â”€â”€ Dev Page â€” Hero â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .hosp-hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 10rem 2rem 6rem;
      position: relative;
      overflow: hidden;
    }

    .hosp-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background:
        radial-gradient(ellipse 70% 50% atÃ© 50% 40%, rgba(0, 136, 255, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% atÃ© 20% 80%, rgba(0, 80, 180, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% atÃ© 80% 80%, rgba(0, 100, 200, 0.04) 0%, transparent 60%);
      pointer-events: none;
      z-index: 0;
    }

    /* Animated floating orbs */
    .hosp-hero-orb {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
    }

    .hosp-hero-orb-1 {
      width: 600px;
      height: 600px;
      top: -10%;
      right: -10%;
      background: radial-gradient(circle, rgba(0, 136, 255, 0.07) 0%, transparent 70%);
      animation: orbFloat1 20s ease-in-out infinite;
    }

    .hosp-hero-orb-2 {
      width: 400px;
      height: 400px;
      bottom: -5%;
      left: -5%;
      background: radial-gradient(circle, rgba(0, 100, 200, 0.06) 0%, transparent 70%);
      animation: orbFloat2 25s ease-in-out infinite;
    }

    .hosp-hero-orb-3 {
      width: 300px;
      height: 300px;
      top: 30%;
      left: 60%;
      background: radial-gradient(circle, rgba(0, 136, 255, 0.05) 0%, transparent 70%);
      animation: orbFloat3 18s ease-in-out infinite;
    }

    @keyframes orbFloat1 {

      0%,
      100% {
        transform: translate(0, 0) scale(1);
      }

      50% {
        transform: translate(-30px, 20px) scale(1.05);
      }
    }

    @keyframes orbFloat2 {

      0%,
      100% {
        transform: translate(0, 0) scale(1);
      }

      50% {
        transform: translate(20px, -30px) scale(1.08);
      }
    }

    @keyframes orbFloat3 {

      0%,
      100% {
        transform: translate(0, 0) scale(1);
      }

      33% {
        transform: translate(-20px, 10px) scale(1.03);
      }

      66% {
        transform: translate(15px, -20px) scale(0.97);
      }
    }

    .hosp-hero-content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      max-width: 800px;
    }

    .hosp-hero-content h1 {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 200;
      line-height: 1.1;
      margin-bottom: 1rem;
    }

    .hosp-hero-content h1 .text-grad {
      color: transparent;
      background: linear-gradient(135deg, #e0edfa 0%, #a8d8ff 60%, #7ec8ff 100%);
      -webkit-background-clip: text;
      background-clip: text;
      display: inline-block;
      padding-bottom: 0.1em;
      margin-bottom: -0.1em;
    }

    .hosp-hero-subtitle {
      font-size: clamp(1rem, 1.5vw, 1.15rem);
      color: var(--kd-color-accent);
      font-weight: 500;
      letter-spacing: 0.02em;
      margin-bottom: 1.5rem;
    }

    .hosp-hero-desc {
      font-size: 1.05rem;
      color: rgba(224, 237, 250, 0.8);
      font-weight: 300;
      line-height: 1.8;
      max-width: 680px;
      margin-bottom: 1rem;
    }

    .hosp-hero-desc-secondary {
      font-size: 0.95rem;
      color: rgba(224, 237, 250, 0.6);
      font-weight: 300;
      line-height: 1.7;
      max-width: 600px;
      margin-bottom: 2.5rem;
    }

    /* â”€â”€ Section badge pill (page-specific) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .hosp-section-badge {
      display: inline-flex;
      align-items: center;
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--kd-color-accent);
      background: rgba(0, 136, 255, 0.08);
      border: 1px solid rgba(0, 136, 255, 0.22);
      padding: 0.28rem 0.9rem;
      border-radius: 9999px;
      margin-bottom: 1.5rem;
    }

    /* â”€â”€ O que  section (Dark) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .hosp-oque-section {
      position: relative;
      overflow: hidden;
    }

    .hosp-oque-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(180deg,
          var(--kd-color-bg-base) 0%,
          var(--kd-color-bg-surface) 40%,
          var(--kd-color-bg-base) 100%);
      z-index: 0;
    }

    .hosp-oque-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hosp-oque-text h2 {
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 200;
      line-height: 1.15;
      margin-bottom: 2rem;
    }

    .hosp-oque-text h2 .text-grad {
      color: transparent;
      background: linear-gradient(135deg, #e0edfa 0%, #a8d8ff 60%, #7ec8ff 100%);
      -webkit-background-clip: text;
      background-clip: text;
      display: inline-block;
      padding-bottom: 0.1em;
      margin-bottom: -0.1em;
    }

    .hosp-oque-text p {
      font-size: 0.95rem;
      color: var(--kd-color-text-muted);
      font-weight: 300;
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }

    .hosp-oque-text p:last-child {
      margin-bottom: 0;
    }

    .hosp-oque-visual {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .hosp-oque-card {
      background: rgba(0, 20, 45, 0.4);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(0, 136, 255, 0.12);
      border-radius: 24px;
      padding: 2.5rem 2rem;
      position: relative;
      overflow: hidden;
      transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .hosp-oque-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      padding: 1.4px;
      background: linear-gradient(180deg,
          rgba(255, 255, 255, 0.15) 0%,
          rgba(255, 255, 255, 0.05) 20%,
          transparent 40%,
          transparent 60%,
          rgba(255, 255, 255, 0.05) 80%,
          rgba(255, 255, 255, 0.15) 100%);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
    }

    .hosp-oque-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: -150%;
      width: 50%;
      height: 100%;
      background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.03) 50%, rgba(255, 255, 255, 0) 100%);
      transform: skewX(-25deg);
      transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
      pointer-events: none;
    }

    .hosp-oque-card:hover {
      transform: translateY(-4px);
      border-color: rgba(0, 136, 255, 0.3);
      box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.1),
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(0, 136, 255, 0.1);
    }

    .hosp-oque-card:hover::after {
      left: 200%;
    }

    .hosp-oque-card-icon {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      background: rgba(0, 136, 255, 0.1);
      border: 1px solid rgba(0, 136, 255, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--kd-color-accent);
      font-size: 1.6rem;
      margin-bottom: 1.2rem;
      transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .hosp-oque-card:hover .hosp-oque-card-icon {
      background: rgba(0, 136, 255, 0.2);
      box-shadow: 0 0 20px rgba(0, 136, 255, 0.2);
      transform: scale(1.05);
    }

    .hosp-oque-card h3 {
      font-size: 1.3rem;
      font-weight: 400;
      margin-bottom: 0.8rem;
      color: #fff;
    }

    .hosp-oque-card p {
      font-size: 0.9rem;
      color: var(--kd-color-text-muted);
      font-weight: 300;
      line-height: 1.7;
    }

    .hosp-oque-card .hosp-ideal-para {
      margin-top: 1.2rem;
      padding-top: 1.2rem;
      border-top: 1px solid rgba(0, 136, 255, 0.12);
    }

    .hosp-oque-card .hosp-ideal-label {
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--kd-color-accent);
      margin-bottom: 0.5rem;
    }

    .hosp-oque-card .hosp-ideal-text {
      font-size: 0.85rem;
      color: rgba(224, 237, 250, 0.6);
      line-height: 1.6;
    }

    @media (max-width: 1024px) {
      .hosp-oque-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
    }

    /* â”€â”€ Benefits Section (Light) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .hosp-benefits-section {
      background: #d6e0ec;
      position: relative;
      overflow: hidden;
    }

    .hosp-benefits-section .hosp-orb {
      position: absolute;
      top: 30%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(0, 120, 220, 0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .hosp-benefits-header {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 720px;
      margin: 0 auto 4rem;
    }

    .hosp-benefits-header h2 {
      color: #0a1d30 !important;
      font-weight: 300;
      font-size: clamp(2rem, 3.5vw, 3rem);
      line-height: 1.15;
      margin-bottom: 1.5rem;
    }

    .hosp-benefits-header h2 .text-grad-dark {
      background: linear-gradient(135deg, #002b54 0%, #005bb5 50%, #0077dd 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      display: inline-block;
      padding-bottom: 0.1em;
      margin-bottom: -0.1em;
    }

    .hosp-benefits-header p {
      color: #1a3350 !important;
      font-weight: 400;
      font-size: 1.05rem;
      line-height: 1.7;
    }

    /* Pill for light sections */
    .hosp-light-pill {
      background: rgba(0, 50, 110, 0.05);
      border: 1px solid rgba(0, 50, 110, 0.15);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      display: inline-flex;
      padding: 0.35rem 0.85rem 0.35rem 0.35rem;
      border-radius: 9999px;
      align-items: center;
      gap: 0.6rem;
      margin-bottom: 1.5rem;
      cursor: default;
      transition: all 0.3s ease;
    }

    .hosp-light-pill:hover {
      background: rgba(0, 50, 110, 0.08);
      border-color: rgba(0, 136, 255, 0.3);
      box-shadow: 0 8px 20px rgba(0, 136, 255, 0.1);
      transform: translateY(-2px);
    }

    .hosp-light-pill .pill-badge {
      background: #004d99;
      color: #fff;
      padding: 0.15rem 0.6rem;
      border-radius: 9999px;
      font-size: 0.65rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .hosp-light-pill .pill-text {
      color: #004d99;
      font-size: 14px;
      font-weight: 400;
    }

    /* Benefits grid on light bg */
    .hosp-benefits-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .hosp-benefit-card {
      background: rgba(255, 255, 255, 0.18);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border: none;
      border-radius: 28px;
      padding: 2rem 1.5rem;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
      transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
      box-shadow:
        4px 4px 4px rgba(0, 0, 0, 0.03),
        inset 0 1px 1px rgba(255, 255, 255, 0.6);
    }

    .hosp-benefit-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      padding: 1.4px;
      background: linear-gradient(180deg,
          rgba(255, 255, 255, 0.7) 0%,
          rgba(255, 255, 255, 0.3) 20%,
          rgba(255, 255, 255, 0) 40%,
          rgba(255, 255, 255, 0) 60%,
          rgba(255, 255, 255, 0.3) 80%,
          rgba(255, 255, 255, 0.7) 100%);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
      z-index: 1;
    }

    .hosp-benefit-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: -150%;
      width: 50%;
      height: 100%;
      background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.45) 50%, rgba(255, 255, 255, 0) 100%);
      transform: skewX(-25deg);
      transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
      pointer-events: none;
      z-index: 2;
    }

    .hosp-benefit-card:hover {
      background: rgba(255, 255, 255, 0.40);
      box-shadow:
        inset 0 1px 2px rgba(255, 255, 255, 0.9),
        inset 0 -1px 2px rgba(255, 255, 255, 0.3),
        0 8px 32px rgba(0, 100, 200, 0.10),
        0 0 0 1px rgba(255, 255, 255, 0.5);
      transform: translateY(-4px);
    }

    .hosp-benefit-card:hover::after {
      left: 200%;
    }

    .hosp-benefit-card iconify-icon {
      color: #0066cc;
      margin-bottom: 1rem;
      filter: drop-shadow(0 0 10px rgba(0, 136, 255, 0.3));
    }

    .hosp-benefit-card h4 {
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
      font-weight: 500;
      color: #091b2e;
    }

    .hosp-benefit-card p {
      font-size: 0.9rem;
      line-height: 1.6;
      color: #2a4560;
    }

    @media (max-width: 1024px) {
      .hosp-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 640px) {
      .hosp-benefits-grid {
        grid-template-columns: 1fr;
      }
    }

    /* â”€â”€ Process Timeline (Dark) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .hosp-process-section {
      position: relative;
      overflow: hidden;
    }

    .hosp-process-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(180deg,
          var(--kd-color-bg-base) 0%,
          var(--kd-color-bg-surface) 40%,
          var(--kd-color-bg-base) 100%);
      z-index: 0;
    }

    .hosp-process-header {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 720px;
      margin: 0 auto 4rem;
    }

    .hosp-process-header h2 {
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 200;
      line-height: 1.15;
      margin-bottom: 1rem;
    }

    .hosp-process-header h2 .text-grad {
      color: transparent;
      background: linear-gradient(135deg, #e0edfa 0%, #a8d8ff 60%, #7ec8ff 100%);
      -webkit-background-clip: text;
      background-clip: text;
      display: inline-block;
      padding-bottom: 0.1em;
      margin-bottom: -0.1em;
    }

    .hosp-process-header p {
      font-size: 1.05rem;
      color: var(--kd-color-text-muted);
      font-weight: 300;
      line-height: 1.7;
    }

    .hosp-timeline {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
      max-width: 100%;
      margin: 4rem auto 0;
    }

    .hosp-step {
      display: flex;
      flex-direction: column;
      gap: 0;
      opacity: 0;
      transform: translateY(20px);
      will-change: opacity, transform;
    }

    .hosp-step-marker {
      display: flex;
      align-items: center;
      margin-bottom: 24px;
    }

    .hosp-step-number {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1px solid rgba(0, 136, 255, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--kd-font-heading);
      font-size: 0.8125rem;
      font-weight: 700;
      color: #fff;
      background: rgba(0, 136, 255, 0.05);
      flex-shrink: 0;
      transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    }

    .hosp-step.is-visible .hosp-step-number {
      border-color: #fff;
      background: #fff;
      color: #091b2e;
      box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    }

    .hosp-step-line {
      height: 1px;
      flex: 1;
      background: rgba(255, 255, 255, 0.1);
      position: relative;
      overflow: hidden;
      --fill: 0%;
    }

    .hosp-step-line::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: var(--fill);
      height: 100%;
      background: #0088ff;
    }
    
    .hosp-step:last-child .hosp-step-line {
      display: none;
    }

    .hosp-step-content {
      padding-right: 48px;
    }

    .hosp-step-label {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--kd-color-accent);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      display: block;
      margin-bottom: 8px;
    }

    .hosp-step-content h3 {
      font-size: 1.0625rem;
      font-weight: 600;
      color: #fff;
      margin-bottom: 8px;
    }

    .hosp-step-content p {
      font-size: 0.875rem;
      color: var(--kd-color-text-muted);
      line-height: 1.6;
    }

    @media (max-width: 992px) {
      .hosp-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 0;
      }
      .hosp-step-content {
        padding-right: 24px;
      }
      .hosp-step:nth-child(2) .hosp-step-line,
      .hosp-step:nth-child(4) .hosp-step-line {
        display: none;
      }
    }

    @media (max-width: 768px) {
      .hosp-timeline {
        grid-template-columns: 1fr;
        gap: 0;
      }
      .hosp-step {
        flex-direction: row;
        gap: 24px;
      }
      .hosp-step-marker {
        flex-direction: column;
        margin-bottom: 0;
      }
      .hosp-step-line {
        display: block !important;
        height: auto;
        width: 1px;
        min-height: 24px;
        flex: 1;
      }
      .hosp-step-line::after {
        width: 100%;
        height: var(--fill);
      }
      .hosp-step:last-child .hosp-step-line {
        display: none !important;
      }
      .hosp-step-content {
        padding-right: 0;
        padding-bottom: 56px;
      }
      .hosp-step:last-child .hosp-step-content {
        padding-bottom: 0;
      }
      .hosp-step-number {
        width: 40px;
        height: 40px;
        font-size: 0.75rem;
      }
    }

    /* â”€â”€ Includes Section (Light) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .hosp-includes-section {
      background: #d6e0ec;
      position: relative;
      overflow: hidden;
    }

    .hosp-includes-section .hosp-orb {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(0, 120, 220, 0.05) 0%, transparent 70%);
      pointer-events: none;
    }

    .hosp-includes-header {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 720px;
      margin: 0 auto 4rem;
    }

    .hosp-includes-header h2 {
      color: #0a1d30 !important;
      font-weight: 300;
      font-size: clamp(2rem, 3.5vw, 3rem);
      line-height: 1.15;
      margin-bottom: 1.5rem;
    }

    .hosp-includes-header h2 .text-grad-dark {
      background: linear-gradient(135deg, #002b54 0%, #005bb5 50%, #0077dd 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      display: inline-block;
      padding-bottom: 0.1em;
      margin-bottom: -0.1em;
    }

    .hosp-includes-header p {
      color: #1a3350;
      font-weight: 400;
      font-size: 1.05rem;
      line-height: 1.7;
    }

    .hosp-includes-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
    }

    .hosp-include-card {
      background: rgba(255, 255, 255, 0.18);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border: none;
      border-radius: 24px;
      padding: 2rem 1.5rem;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
      box-shadow:
        4px 4px 4px rgba(0, 0, 0, 0.03),
        inset 0 1px 1px rgba(255, 255, 255, 0.6);
    }

    .hosp-include-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      padding: 1.4px;
      background: linear-gradient(180deg,
          rgba(255, 255, 255, 0.7) 0%,
          rgba(255, 255, 255, 0.3) 20%,
          rgba(255, 255, 255, 0) 40%,
          rgba(255, 255, 255, 0) 60%,
          rgba(255, 255, 255, 0.3) 80%,
          rgba(255, 255, 255, 0.7) 100%);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
      z-index: 1;
    }

    .hosp-include-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: -150%;
      width: 50%;
      height: 100%;
      background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.45) 50%, rgba(255, 255, 255, 0) 100%);
      transform: skewX(-25deg);
      transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
      pointer-events: none;
      z-index: 2;
    }

    .hosp-include-card:hover {
      background: rgba(255, 255, 255, 0.40);
      box-shadow:
        inset 0 1px 2px rgba(255, 255, 255, 0.9),
        inset 0 -1px 2px rgba(255, 255, 255, 0.3),
        0 8px 32px rgba(0, 100, 200, 0.10),
        0 0 0 1px rgba(255, 255, 255, 0.5);
      transform: translateY(-4px);
    }

    .hosp-include-card:hover::after {
      left: 200%;
    }

    .hosp-include-card iconify-icon {
      color: #0066cc;
      margin-bottom: 1rem;
      filter: drop-shadow(0 0 10px rgba(0, 136, 255, 0.3));
    }

    .hosp-include-card h4 {
      font-size: 1rem;
      margin-bottom: 0.4rem;
      font-weight: 500;
      color: #091b2e;
    }

    .hosp-include-card p {
      font-size: 0.85rem;
      line-height: 1.55;
      color: #2a4560;
    }

    @media (max-width: 1024px) {
      .hosp-includes-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 640px) {
      .hosp-includes-grid {
        grid-template-columns: 1fr;
      }
    }

    /* â”€â”€ CTA Final (Dark) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .hosp-cta-section {
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .hosp-cta-glow {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(0, 136, 255, 0.10) 0%, rgba(0, 136, 255, 0.06) 30%, rgba(0, 136, 255, 0.02) 50%, transparent 70%);
      pointer-events: none;
    }

    .hosp-cta-inner {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
    }

    .hosp-cta-inner h2 {
      font-size: clamp(2rem, 4.5vw, 3.5rem);
      line-height: 1.1;
      font-weight: 200;
    }

    .hosp-cta-inner h2 .text-grad {
      color: transparent;
      background: linear-gradient(135deg, #e0edfa 0%, #a8d8ff 60%, #7ec8ff 100%);
      -webkit-background-clip: text;
      background-clip: text;
      display: inline-block;
      padding-bottom: 0.1em;
      margin-bottom: -0.1em;
    }

    .hosp-cta-text {
      max-width: 600px;
      font-size: 1rem;
      color: var(--kd-color-text-muted);
      font-weight: 300;
      line-height: 1.7;
    }

    .hosp-cta-btn-group {
      display: flex;
      gap: 1.25rem;
      align-items: center;
      margin-top: 1rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    @media (max-width: 768px) {
      .hosp-cta-btn-group {
        flex-direction: column;
      }
    }

    /* â”€â”€ Header Light Mode for this page â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .brand-logo {
      overflow: visible !important;
    }

    .logo-default,
    .logo-dark {
      position: absolute;
      left: -1rem;
      top: 50%;
      transform: translateY(-50%);
      height: 180px !important;
      width: auto !important;
      max-width: none !important;
    }

    .logo-default {
      opacity: 1;
    }

    .logo-dark {
      opacity: 0;
    }

    .header-nav.header-light .nav-links {
      background: rgba(255, 255, 255, 0.35) !important;
      box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.5),
        0 4px 20px rgba(0, 30, 60, 0.06) !important;
      transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .header-nav.header-light .nav-links::before {
      background: linear-gradient(180deg,
          rgba(0, 40, 80, 0.12) 0%,
          rgba(0, 40, 80, 0.04) 20%,
          rgba(0, 40, 80, 0) 40%,
          rgba(0, 40, 80, 0) 60%,
          rgba(0, 40, 80, 0.04) 80%,
          rgba(0, 40, 80, 0.12) 100%) !important;
    }

    .header-nav.header-light .nav-links a {
      color: #1a2d42 !important;
      transition: color 0.7s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .header-nav.header-light .nav-links a:hover {
      color: #003d7a !important;
    }

    .header-nav.header-light .btn.liquid-glass-strong {
      background: rgba(0, 40, 80, 0.08) !important;
      color: #0a1929 !important;
      box-shadow:
        0 1px 3px rgba(0, 20, 50, 0.08),
        inset 0 1px 1px rgba(255, 255, 255, 0.4) !important;
      transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .header-nav.header-light .btn.liquid-glass-strong::before {
      background: linear-gradient(180deg,
          rgba(0, 40, 80, 0.15) 0%,
          rgba(0, 40, 80, 0.05) 20%,
          rgba(0, 40, 80, 0) 40%,
          rgba(0, 40, 80, 0) 60%,
          rgba(0, 40, 80, 0.05) 80%,
          rgba(0, 40, 80, 0.15) 100%) !important;
    }

    .header-nav.header-light .btn.liquid-glass-strong:hover {
      background: rgba(0, 60, 120, 0.12) !important;
      color: #002b54 !important;
      box-shadow:
        0 2px 8px rgba(0, 40, 100, 0.12),
        inset 0 1px 1px rgba(255, 255, 255, 0.5) !important;
    }

    /* Header Light Mode fixes for mega menu */
    .header-nav.header-light .mega-menu {
      background: rgba(255, 255, 255, 0.9);
      border-color: rgba(0, 0, 0, 0.1);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    }

    .header-nav.header-light .mega-menu-item {
      background: transparent;
    }

    .header-nav.header-light .mega-menu-item:hover {
      background: rgba(0, 0, 0, 0.03);
      border-color: rgba(0, 0, 0, 0.05);
    }

    .header-nav.header-light .mega-menu-title {
      color: #0a1d30;
    }

    /* â”€â”€ Por que seu site importa (Why Layout) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .hosp-why-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
    }
    .hosp-why-left {
      position: sticky;
      top: 120px;
    }
    .hosp-why-right {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .hosp-why-card {
      display: flex;
      gap: 20px;
      padding: 32px 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    .hosp-why-card:first-child { 
      border-top: 1px solid rgba(0, 0, 0, 0.1); 
    }
    .hosp-why-card-number {
      font-size: 0.85rem;
      font-weight: 600;
      color: rgba(0, 50, 110, 0.4);
      min-width: 32px;
      padding-top: 2px;
    }
    .hosp-why-card-content h4 {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 10px;
      color: #0a1d30;
    }
    .hosp-why-card-content p {
      font-size: 1rem;
      color: #1a3350;
      line-height: 1.6;
    }
    @media (max-width: 900px) {
      .hosp-why-layout {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .hosp-why-left {
        position: static;
      }
    }

    /* â”€â”€ Compare Layout (Site Institucional vs LP) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    #solucoes h2 .text-grad,
    .hosp-compare-card-header h3 .text-grad {
      color: transparent;
      background: linear-gradient(135deg, #e0edfa 0%, #a8d8ff 60%, #7ec8ff 100%);
      -webkit-background-clip: text;
      background-clip: text;
      display: inline-block;
      padding-bottom: 0.1em;
      margin-bottom: -0.1em;
    }
    .hosp-compare-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 3rem;
    }
    .hosp-compare-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 40px 32px;
      transition: transform 0.3s ease, border-color 0.3s ease;
    }
    .hosp-compare-card:hover {
      transform: translateY(-4px);
      border-color: rgba(255, 255, 255, 0.2);
    }
    .hosp-compare-card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 32px;
      padding-bottom: 24px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .hosp-compare-card-header h3 {
      font-size: 1.25rem;
      font-weight: 600;
      color: #fff;
      margin: 0;
    }
    .hosp-compare-tag {
      font-size: 0.75rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: rgba(255, 255, 255, 0.5);
      background: rgba(255, 255, 255, 0.05);
      padding: 6px 18px;
      border-radius: 100px;
      white-space: nowrap;
      flex-shrink: 0;
      text-align: center;
    }
    .hosp-compare-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .hosp-compare-desc {
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.6;
      margin-bottom: 24px;
    }
    .hosp-compare-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.6;
    }
    .hosp-compare-list li iconify-icon {
      flex-shrink: 0;
      margin-top: 4px;
      color: #fff;
      font-size: 1.2rem;
    }
    @media (max-width: 768px) {
      .hosp-compare-grid {
        grid-template-columns: 1fr;
      }
      .hosp-compare-card {
        padding: 32px 24px;
      }
    }

    /* â”€â”€ Footer forced styles â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .footer-nav {
      display: flex !important;
      flex-direction: column !important;
      justify-content: flex-start !important;
      gap: 4px !important;
      align-items: flex-start !important;
    }

    .footer-nav-link {
      font-family: var(--kd-font-heading) !important;
      font-size: 26px !important;
      font-weight: 600 !important;
      color: var(--kd-color-text-main) !important;
      letter-spacing: -0.04em !important;
      line-height: 1.1 !important;
      display: inline-block !important;
      width: fit-content !important;
      text-align: left !important;
    }

    .footer-nav:hover .footer-nav-link {
      opacity: 1 !important;
    }

    .footer-nav:has(.footer-nav-link:hover) .footer-nav-link {
      opacity: 0.3 !important;
    }

    .footer-nav:has(.footer-nav-link:hover) .footer-nav-link:hover {
      opacity: 1 !important;
    }

    .footer-nav-link::after {
      content: '' !important;
      position: absolute !important;
      bottom: 2px !important;
      left: 0 !important;
      width: 0 !important;
      height: 2px !important;
      background: var(--kd-color-text-main) !important;
      transition: width 0.3s ease !important;
    }

    .footer-nav-link:hover::after {
      width: 100% !important;
    }

    .footer-col-title {
      color: var(--kd-color-text-muted) !important;
      font-size: 0.75rem !important;
      letter-spacing: 0.1em !important;
    }

    .footer-link {
      color: rgba(255, 255, 255, 0.9) !important;
      font-size: 0.9rem !important;
      font-weight: 300 !important;
    }

    .footer-chat-label {
      color: var(--kd-color-text-muted) !important;
      font-size: 0.8rem !important;
      letter-spacing: 0.1em !important;
    }

    .footer-email {
      color: rgba(255, 255, 255, 1) !important;
      font-size: 1.15rem !important;
      font-weight: 500 !important;
    }

    @media (min-width: 641px) {
      .footer-columns {
        grid-template-columns: 1fr 1fr 1.8fr !important;
      }
    }

    /* â”€â”€ Breadcrumb â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .hosp-breadcrumb {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.8rem;
      color: var(--kd-color-text-muted);
      margin-bottom: 2rem;
    }

    .hosp-breadcrumb a {
      color: var(--kd-color-text-muted);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .hosp-breadcrumb a:hover {
      color: var(--kd-color-accent);
    }

    .hosp-breadcrumb .separator {
      opacity: 0.4;
    }

    .hosp-breadcrumb .current {
      color: var(--kd-color-accent);
      font-weight: 500;
    }

    /* â”€â”€ Layout da SeÃ§Ã£o OrÃ§amento â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .orcamento-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    @media (max-width: 992px) {
      .orcamento-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
    }

    /* â”€â”€ OrÃ§amento Form (Premium Light Glassmorphism) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .orcamento-form-wrapper {
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(40px);
      -webkit-backdrop-filter: blur(40px);
      border: 1px solid rgba(255, 255, 255, 0.4);
      border-radius: 24px;
      padding: 3rem;
      position: relative;
      box-shadow:
        0 24px 48px rgba(0, 40, 90, 0.08),
        inset 0 1px 2px rgba(255, 255, 255, 0.9),
        inset 0 -1px 2px rgba(255, 255, 255, 0.2);
    }

    .orcamento-form-wrapper::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      padding: 2px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.5) 100%);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
    }

    .orcamento-form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .orcamento-field {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .orcamento-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }

    @media (max-width: 640px) {
      .orcamento-row {
        grid-template-columns: 1fr;
      }

      .orcamento-form-wrapper {
        padding: 2rem 1.5rem;
      }
    }

    .orcamento-field label {
      font-size: 0.8rem;
      font-weight: 600;
      color: #004d99;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-left: 0.2rem;
    }

    .orcamento-field input,
    .orcamento-field select,
    .orcamento-field textarea {
      width: 100%;
      background: rgba(255, 255, 255, 0.65);
      border: 1px solid rgba(0, 50, 110, 0.12);
      border-radius: 12px;
      padding: 1rem 1.25rem;
      font-size: 1rem;
      color: #0a1d30;
      font-family: inherit;
      transition: all 0.3s ease;
      box-shadow: inset 0 2px 4px rgba(0, 50, 110, 0.02);
    }

    .orcamento-field input:focus,
    .orcamento-field select:focus,
    .orcamento-field textarea:focus {
      outline: none;
      background: #ffffff;
      border-color: rgba(0, 136, 255, 0.4);
      box-shadow:
        inset 0 2px 4px rgba(0, 50, 110, 0.02),
        0 0 0 4px rgba(0, 136, 255, 0.1);
    }

    .orcamento-field input::placeholder,
    .orcamento-field textarea::placeholder {
      color: rgba(10, 29, 48, 0.4);
    }

    .orcamento-select-wrapper {
      position: relative;
    }

    .orcamento-select-wrapper select {
      appearance: none;
      -webkit-appearance: none;
      padding-right: 3rem;
      cursor: pointer;
    }

    .orcamento-select-wrapper .select-icon {
      position: absolute;
      right: 1.25rem;
      top: 50%;
      transform: translateY(-50%);
      color: #004d99;
      pointer-events: none;
      font-size: 1.2rem;
    }
