/* Public base shell styles (extracted from base_public.html) */
    :root {
      --brand-50: #f0f7f4;
      --brand-700: #014633;
      --brand-600: #1f644a;
      --brand-500: #377b5d;
      --brand-900: #001a13;
      --accent-gold: #C5A059;
      --neutral-cream: #FDFBF7;
      --neutral-stone: #5C5E58;
      --neutral-dark: #0F0F0F;
      --glass: rgba(255, 255, 255, 0.8);
    }
    body {
      font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
      color: var(--neutral-dark);
      background:
        radial-gradient(circle at 10% 10%, var(--brand-50) 0%, rgba(240, 247, 244, 0) 45%),
        radial-gradient(circle at 90% 0%, var(--neutral-cream) 0%, rgba(253, 251, 247, 0) 40%),
        #fff;
    }
    h1, h2, h3, h4 {
      font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
      letter-spacing: -0.01em;
      font-weight: 700;
    }
    .glass {
      background: var(--glass);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(226, 232, 240, 0.5);
    }
    .btn-primary {
      background: var(--brand-700);
      color: #fff;
      border-radius: 9999px;
      padding: 0.625rem 1rem;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 300ms ease;
    }
    .btn-primary:hover {
      background: var(--brand-600);
      box-shadow: 0 8px 24px rgba(1, 70, 51, 0.2);
    }
    .btn-primary:active {
      transform: scale(0.97);
    }
    .btn-whatsapp {
      background: var(--brand-700);
      color: #fff;
      border-radius: 9999px;
      padding: 0.625rem 1rem;
      font-weight: 600;
      font-size: 0.875rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      transition: all 300ms ease;
    }
    .btn-whatsapp:hover {
      background: var(--brand-600);
      box-shadow: 0 8px 24px rgba(1, 70, 51, 0.2);
    }
    .btn-whatsapp:active {
      transform: scale(0.97);
    }
    .btn-secondary {
      border: 2px solid rgb(203, 213, 225);
      border-radius: 9999px;
      padding: 0.5rem 1rem;
      font-weight: 600;
      font-size: 0.875rem;
      color: rgb(51, 65, 85);
      background: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      transition: all 300ms ease;
    }
    .btn-secondary:hover {
      background: rgb(248, 250, 252);
      border-color: rgb(148, 163, 184);
    }
    .btn-secondary:active {
      transform: scale(0.97);
    }
    .btn-outline {
      border: 2px solid var(--brand-700);
      border-radius: 9999px;
      padding: 0.5rem 1rem;
      font-weight: 600;
      font-size: 0.875rem;
      color: var(--brand-700);
      background: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      transition: all 300ms ease;
    }
    .btn-outline:hover {
      background: var(--brand-50);
      border-color: var(--brand-600);
    }
    .btn-outline:active {
      transform: scale(0.97);
    }
    .btn-ghost {
      border: 1px solid rgba(255, 255, 255, 0.4);
      border-radius: 9999px;
      padding: 0.65rem 1.2rem;
      font-weight: 600;
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      transition: all 300ms ease;
    }
    .btn-ghost:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.6);
    }
    .btn-ghost:active {
      transform: scale(0.97);
    }
    .toast-container {
      position: fixed;
      top: 24px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 70;
      display: flex;
      flex-direction: column;
      gap: 10px;
      width: min(420px, calc(100vw - 24px));
      pointer-events: none;
    }
    .toast {
      position: relative;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: start;
      gap: 12px;
      padding: 12px 14px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.96);
      border: 1px solid rgba(148, 163, 184, 0.28);
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
      opacity: 0;
      transform: translateY(-8px);
      transition: opacity 200ms ease, transform 200ms ease;
      pointer-events: auto;
      overflow: hidden;
    }
    .toast.is-visible {
      opacity: 1;
      transform: translateY(0);
    }
    .toast.is-leaving {
      opacity: 0;
      transform: translateY(-6px);
    }
    .toast-success {
      color: #166534;
      border-color: rgba(74, 222, 128, 0.35);
    }
    .toast-error {
      color: #b91c1c;
      border-color: rgba(248, 113, 113, 0.38);
    }
    .toast-warning {
      color: #b45309;
      border-color: rgba(251, 191, 36, 0.42);
    }
    .toast-info {
      color: #075985;
      border-color: rgba(56, 189, 248, 0.36);
    }
    .toast-icon {
      width: 20px;
      height: 20px;
      flex: 0 0 auto;
    }
    .toast-content {
      min-width: 0;
    }
    .toast-message {
      font-size: 0.92rem;
      font-weight: 600;
      line-height: 1.35;
    }
    .toast-close {
      border: 0;
      background: transparent;
      color: inherit;
      padding: 0;
      width: 20px;
      height: 20px;
      cursor: pointer;
    }
    .toast-progress {
      position: absolute;
      inset: auto 0 0;
      height: 3px;
      background: currentColor;
      opacity: 0.14;
    }
    .form-error {
      display: flex;
      align-items: flex-start;
      gap: 0.45rem;
      margin-top: 0.45rem;
      font-size: 0.8rem;
      line-height: 1.35;
      color: #b91c1c;
    }
    .form-error-icon {
      flex: 0 0 auto;
      width: 0.95rem;
      height: 0.95rem;
      margin-top: 0.05rem;
    }
    input.is-invalid,
    textarea.is-invalid,
    select.is-invalid {
      border-color: rgba(239, 68, 68, 0.9) !important;
      box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
      outline: none;
    }
    input.is-valid,
    textarea.is-valid,
    select.is-valid {
      border-color: rgba(5, 150, 105, 0.65) !important;
      box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.12);
      outline: none;
    }
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.35rem 0.75rem;
      border-radius: 9999px;
      background: var(--brand-50);
      color: var(--brand-700);
      border: 1px solid rgba(1, 70, 51, 0.2);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }
    .reveal {
      animation: fade-in-up 0.8s ease-out;
    }
    .reveal-delay {
      animation: fade-in-up 0.8s ease-out 0.2s both;
    }
    @keyframes fade-in-up {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .card {
      border-radius: 16px;
      border: 1px solid rgba(226, 232, 240, 0.6);
      background: #fff;
      box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
      transition: all 300ms ease-out;
    }
    .card:hover {
      box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    }
    .site-header {
      position: sticky;
      top: 0;
      z-index: 40;
    }
    .site-header-shell {
      border-bottom: 1px solid rgba(203, 213, 225, 0.7);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.88));
      backdrop-filter: blur(14px) saturate(140%);
      -webkit-backdrop-filter: blur(14px) saturate(140%);
      box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
    }
    .site-header-main {
      min-height: 74px;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .site-brand {
      display: inline-flex;
      align-items: center;
      gap: 0.7rem;
      text-decoration: none;
      min-width: 0;
    }
    .site-brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background: linear-gradient(145deg, var(--brand-700), #0a5b43);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.95rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      box-shadow: 0 8px 22px rgba(1, 70, 51, 0.32);
      flex-shrink: 0;
    }
    .site-brand-copy {
      display: flex;
      flex-direction: column;
      min-width: 0;
      line-height: 1.15;
    }
    .site-brand-eyebrow {
      font-size: 0.62rem;
      text-transform: uppercase;
      letter-spacing: 0.22em;
      color: #64748b;
      font-weight: 600;
    }
    .site-brand-title {
      font-size: 0.93rem;
      font-weight: 700;
      color: #0f172a;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 38vw;
    }
    .site-nav-desktop {
      display: none;
      align-items: center;
      gap: 0.3rem;
      margin-left: auto;
      margin-right: 0.8rem;
    }
    .site-nav-link {
      border-radius: 9999px;
      padding: 0.5rem 0.8rem;
      font-size: 0.85rem;
      font-weight: 600;
      color: #334155;
      text-decoration: none;
      transition: all 180ms ease;
    }
    .site-nav-link:hover {
      color: var(--brand-700);
      background: rgba(148, 163, 184, 0.12);
    }
    .site-nav-link.is-active {
      color: var(--brand-700);
      background: rgba(1, 70, 51, 0.1);
      box-shadow: inset 0 0 0 1px rgba(1, 70, 51, 0.2);
    }
    .site-header-actions {
      display: none;
      align-items: center;
      gap: 0.55rem;
    }
    .site-header-actions .btn-primary,
    .site-header-actions .btn-outline {
      font-size: 0.8rem;
      padding: 0.45rem 0.78rem;
      white-space: nowrap;
    }
    .site-menu-toggle {
      margin-left: auto;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(148, 163, 184, 0.45);
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.75);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #0f172a;
      transition: all 180ms ease;
      flex-shrink: 0;
    }
    .site-menu-toggle:hover {
      border-color: rgba(1, 70, 51, 0.35);
      color: var(--brand-700);
      background: #fff;
    }
    .site-menu-toggle-icon {
      position: relative;
      width: 18px;
      height: 12px;
      display: inline-block;
    }
    .site-menu-toggle-icon::before,
    .site-menu-toggle-icon::after,
    .site-menu-toggle-icon span {
      content: "";
      position: absolute;
      left: 0;
      width: 18px;
      height: 2px;
      border-radius: 9999px;
      background: currentColor;
      transition: transform 180ms ease, opacity 180ms ease, top 180ms ease;
    }
    .site-menu-toggle-icon::before { top: 0; }
    .site-menu-toggle-icon span { top: 5px; }
    .site-menu-toggle-icon::after { top: 10px; }
    .site-menu-toggle[aria-expanded="true"] .site-menu-toggle-icon::before {
      top: 5px;
      transform: rotate(45deg);
    }
    .site-menu-toggle[aria-expanded="true"] .site-menu-toggle-icon span {
      opacity: 0;
    }
    .site-menu-toggle[aria-expanded="true"] .site-menu-toggle-icon::after {
      top: 5px;
      transform: rotate(-45deg);
    }
    .site-mobile-nav {
      border-top: 1px solid rgba(203, 213, 225, 0.65);
      max-height: 0;
      overflow: hidden;
      transition: max-height 260ms ease;
      background: rgba(255, 255, 255, 0.92);
    }
    .site-mobile-nav.is-open {
      max-height: 78vh;
    }
    .site-mobile-nav-inner {
      padding: 0.85rem 0 1.15rem;
      display: grid;
      gap: 0.45rem;
    }
    .site-mobile-link {
      border-radius: 12px;
      padding: 0.72rem 0.85rem;
      font-size: 0.94rem;
      font-weight: 600;
      color: #1e293b;
      text-decoration: none;
      border: 1px solid rgba(226, 232, 240, 0.9);
      background: rgba(255, 255, 255, 0.92);
      transition: all 180ms ease;
    }
    .site-mobile-link:hover {
      border-color: rgba(1, 70, 51, 0.35);
      color: var(--brand-700);
      background: #fff;
    }
    .site-mobile-link.is-active {
      border-color: rgba(1, 70, 51, 0.42);
      color: var(--brand-700);
      background: rgba(1, 70, 51, 0.08);
    }
    .site-mobile-actions {
      display: grid;
      gap: 0.45rem;
      margin-top: 0.25rem;
      padding-top: 0.65rem;
      border-top: 1px solid rgba(226, 232, 240, 0.95);
    }
    .site-mobile-actions .btn-primary,
    .site-mobile-actions .btn-outline {
      width: 100%;
      justify-content: center;
      padding: 0.68rem 0.85rem;
    }
    @media (min-width: 1024px) {
      .site-nav-desktop,
      .site-header-actions {
        display: inline-flex;
      }
      .site-menu-toggle,
      .site-mobile-nav {
        display: none;
      }
      .site-brand-title {
        max-width: none;
      }
    }
    @media (max-width: 640px) {
      .site-brand-eyebrow {
        letter-spacing: 0.18em;
      }
      .site-brand-title {
        font-size: 0.88rem;
        max-width: 48vw;
      }
    }

/* Public utility classes moved from inline page styles */
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.animate-fade-in {
  animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
  from { opacity: 0.7; }
  to { opacity: 1; }
}
