    /* ===== ESTRUTURA GERAL ===== */
    .package-section.no-bg {
      background: linear-gradient(180deg, #f5f7fb, #eef4f8);
      padding: 40px 20px 70px;
    }

    .package-section.no-bg .package-hero {
      color: #18263b;
    }

    .package-section.no-bg .package-badge {
      background: #eef4ff;
      color: #18263b;
      border: none;
    }

    .package-section.no-bg p {
      color: #5b6b81;
    }

    .package-section {
      position: relative;
      min-height: 100vh;
      padding: 120px 20px 70px;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .package-shell {
      position: relative;
      z-index: 2;
      max-width: 1280px;
      margin: 0 auto;
    }

    /* ===== HERO ===== */
    .package-hero {
      max-width: 900px;
      margin: 0 auto 28px;
      text-align: center;
      color: #fff;
    }

    .package-badge {
      display: inline-block;
      padding: 8px 16px;
      border-radius: 999px;
      background: rgba(255,255,255,.14);
      border: 1px solid rgba(255,255,255,.20);
      color: #fff;
      font-size: .9rem;
      font-weight: 600;
      backdrop-filter: blur(10px);
      margin-bottom: 14px;
    }

    .package-hero h1 {
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 800;
      margin: 0 0 12px;
      line-height: 1.1;
    }

    .package-hero p {
      margin: 0 auto;
      max-width: 760px;
      color: rgba(255,255,255,.94);
      font-size: 1.05rem;
      line-height: 1.7;
    }

    /* ===== CONTAINER FULL ===== */
    .package-container-full {
      width: 100%;
    }

    /* ===== CARDS ===== */
    .package-card {
      background: rgba(255,255,255,.96);
      border: 1px solid rgba(255,255,255,.45);
      backdrop-filter: blur(14px);
      border-radius: 24px;
      box-shadow:
        0 8px 18px rgba(0,0,0,0.08),
        0 2px 6px rgba(0,0,0,0.04);
      padding: 26px;
      margin-bottom: 22px;
    }

    .intro-card {
      background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(246,249,255,.97));
    }

    .section-heading {
      margin: 0 0 8px;
      font-size: 1.35rem;
      font-weight: 800;
      color: #18263b;
    }

    .section-subheading {
      margin: 0;
      color: #617089;
      line-height: 1.6;
      font-size: .98rem;
    }

    .step-line {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 16px;
    }

    .step-pill {
      padding: 8px 12px;
      border-radius: 999px;
      background: #eef4ff;
      color: #3362aa;
      font-size: .85rem;
      font-weight: 700;
    }

    .step-pill.active {
      background: #1E3D6B;
      color: #FCFE00;
    }

    .section-title {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 20px;
    }

    .section-number {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #FCFE00;
      background: #1E3D6B;
      font-weight: 800;
      flex-shrink: 0;
      box-shadow: 0 6px 10px rgba(30, 61, 107, 0.20);
    }

    .section-title h3 {
      margin: 0 0 4px;
      font-size: 1.18rem;
      font-weight: 800;
      color: #18263b;
    }

    .section-title p {
      margin: 0;
      color: #617089;
      line-height: 1.55;
      font-size: .95rem;
    }

    /* ===== FORM ===== */
    .field-grid {
      display: grid;
      gap: 16px;
      margin-bottom: 16px;
    }

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

    .field-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .field-group label {
      font-size: .92rem;
      font-weight: 700;
      color: #21344e;
    }

    .input-icon {
      position: relative;
    }

    .input-icon i {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      color: #7a8aa0;
      font-size: .96rem;
    }

    .input-icon input,
    .input-icon textarea {
      padding-left: 42px !important;
    }

    .package-form input[type="text"],
    .package-form input[type="email"],
    .package-form input[type="date"],
    .package-form select,
    .package-form textarea,
    .readonly-field input {
      width: 100%;
      border: 1px solid #d8e1ef;
      border-radius: 14px;
      background: #fff;
      padding: 14px 14px;
      font-size: .98rem;
      color: #1d2a3a;
      outline: none;
      transition: .25s ease;
      box-sizing: border-box;
    }

    .package-form input:focus,
    .package-form select:focus,
    .package-form textarea:focus {
      border-color: #59a2ff;
      box-shadow: 0 0 0 4px rgba(13,110,253,.12);
    }

    .readonly-field input {
      background: #f5f8fd;
      color: #45607f;
      font-weight: 600;
    }

    textarea {
      resize: vertical;
      min-height: 130px;
    }

    /* ===== ESCOLHAS ===== */
    .choice-cards {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .choice-cards-lg .choice-card span {
      min-width: 140px;
    }

    .choice-card {
      position: relative;
      cursor: pointer;
    }

    .choice-card input {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }

    .choice-card span {
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 84px;
      padding: 13px 16px;
      border-radius: 14px;
      border: 1px solid #d6e2f3;
      background: #f8fbff;
      color: #24415f;
      font-weight: 700;
      transition: .22s ease;
    }

    
    .choice-card input:checked + span {
      background: #1E3D6B;
      color: #FCFE00 !important; /* ✅ garante legibilidade */
      border-color: #1E3D6B;
      box-shadow: 0 8px 18px rgba(30, 61, 107, 0.20);
    }

    /* ===== PASSEIOS ===== */
    .tour-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 14px;
    }

    .tour-card {
      position: relative;
      display: block;
      padding: 18px 18px 16px;
      border: 1px solid #dbe6f2;
      border-radius: 18px;
      background: linear-gradient(180deg, #fff, #f8fbff);
      cursor: pointer;
      transition: .25s ease;
      min-height: 104px;
    }

    .tour-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(24,38,59,.08);
    }

    .tour-card input {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 18px;
      height: 18px;
    }

    .tour-title {
      display: block;
      font-weight: 800;
      color: #1f3250;
      margin-bottom: 6px;
    }

    .tour-card small {
      color: #64758c;
      line-height: 1.45;
      display: block;
    }

    /* ===== RESUMO FINAL ===== */
    .summary-box {
      display: grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 12px;
    }

    .summary-item {
      padding: 14px 16px;
      border-radius: 14px;
      background: #f8fbff;
      border: 1px solid #e3ecf7;
      color: #26405f;
      line-height: 1.55;
    }

    /* ===== BOTÕES ===== */
    .action-stack {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 18px;
    }

    .btn-primary,
    .btn-whatsapp {
      width: 100%;
      border: none;
      border-radius: 16px;
      padding: 15px 18px;
      font-size: 1rem;
      font-weight: 800;
      cursor: pointer;
      transition: .25s ease;
    }

    .btn-primary {
      background: linear-gradient(135deg, #133a71, #133a71);
      color: #fff;
      box-shadow: 0 14px 26px rgba(19,58,113,.22);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 30px rgba(19,58,113,.28);
    }

    .btn-whatsapp {
      background: linear-gradient(135deg, #1ea952, #1ea952);
      color: #fff;
      box-shadow: 0 14px 26px rgba(37,211,102,.22);
    }

    .btn-whatsapp:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 30px rgba(37,211,102,.28);
    }

    .tiny-note {
      margin: 14px 0 0;
      color: #6b7a8f;
      font-size: .88rem;
      line-height: 1.5;
    }

    /* ===== RESPONSIVO ===== */
    @media (max-width: 1080px) {
      .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
      .tour-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    }

    @media (max-width: 760px) {
      .grid-2, .grid-3, .grid-4, .tour-grid, .summary-box {
        grid-template-columns: 1fr;
      }

      .package-section {
        padding-top: 100px;
      }

      .package-card {
        padding: 18px;
        border-radius: 20px;
      }

      .choice-cards {
        flex-direction: column;
      }

      .choice-card span,
      .choice-cards-lg .choice-card span {
        width: 100%;
        min-width: unset;
      }

      .package-hero h1 {
        font-size: 2rem;
      }
    }
 
    /* ✅ CORREÇÃO GLOBAL - evita texto vermelho */
.package-form label,
.package-form label span {
  color: #21344e !important;
}


/* ✅ CORREÇÃO INPUT TIME */
.package-form input[type="time"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  width: 100%;
  border: 1px solid #d8e1ef;
  border-radius: 14px;
  background: #fff;
  padding: 14px;
  font-size: .98rem;
  color: #1d2a3a;
}

/* melhora no ícone do relógio */
.package-form input[type="time"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.6;
}

.package-form input[type="time"]:hover::-webkit-calendar-picker-indicator {
  opacity: 1;
}

#modalPasseio {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  overflow-y: auto;
  padding: 40px 20px;
}

#modalPasseio .package-shell {
  max-width: 800px;
  margin: 0 auto;
}


* SCROLL INTERNO PADRÃO */
#outrosPasseios div {
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: #c9d6e8 #f5f8fd;
}

/* Chrome / Edge / Safari */
#outrosPasseios div::-webkit-scrollbar {
  width: 8px;
}

#outrosPasseios div::-webkit-scrollbar-thumb {
  background: #c9d6e8;
  border-radius: 6px;
}

#outrosPasseios div::-webkit-scrollbar-track {
  background: #f5f8fd;
}


.package-form textarea[name="observacoes"] {
  height: 60px !important;
  min-height: 60px !important;
  resize: vertical;
}

/* ✅ CORREÇÃO DATA NO MOBILE */
@media (max-width: 760px) {

  .package-form input[type="date"] {
    width: 100% !important;
    max-width: 100% !important;

    box-sizing: border-box !important;

    display: block !important;
  }

}

.package-form .field-group {
  width: 100%;
}

.package-form input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
}

