/* ==========================================
   CHECKOUT.CSS - Moderno e Responsivo
   Inkore Fitness - Com divisórias melhoradas
   ========================================== */

/* ==========================================
   SCROLLBAR PERSONALIZADA - FINA
   ========================================== */
.checkout-container::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.checkout-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
}

.checkout-container::-webkit-scrollbar-thumb {
  background: rgba(255, 0, 0, 0.3);
  border-radius: 4px;
  transition: background 0.3s ease;
}

.checkout-container::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 0, 0, 0.5);
}

/* Firefox */
.checkout-container {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 0, 0, 0.3) rgba(255, 255, 255, 0.03);
}

/* ==========================================
   OVERLAY
   ========================================== */
.checkout-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 20px;
}

.checkout-overlay.ativo {
  opacity: 1;
  visibility: visible;
}

/* ==========================================
   CONTAINER PRINCIPAL
   ========================================== */
.checkout-container {
  background: #0d0d0d;
  border-radius: 24px;
  width: 100%;
  max-width: 820px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transform: scale(0.95) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.checkout-overlay.ativo .checkout-container {
  transform: scale(1) translateY(0);
}

/* ==========================================
   HEADER - APENAS VALOR
   ========================================== */
.checkout-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
  background: #0d0d0d;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-total {
  font-size: 22px;
  font-weight: 700;
  color: #ff0000;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.5px;
}

.checkout-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #888;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-size: 14px;
  flex-shrink: 0;
}

.checkout-close:hover {
  background: rgba(255, 0, 0, 0.15);
  color: #ff0000;
  border-color: rgba(255, 0, 0, 0.3);
}

/* ==========================================
   BODY
   ========================================== */
.checkout-body {
  flex: 1;
  min-height: 380px;
}

/* ==========================================
   STEPS
   ========================================== */
.checkout-steps-wrapper {
  height: 100%;
}

.checkout-steps {
  height: 100%;
  position: relative;
}

.checkout-step {
  display: block;
  height: 100%;
}

.step-content {
  padding: 22px 28px 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

/* ==========================================
   STEP HEADER COM ÍCONES
   ========================================== */
.step-header {
  margin-bottom: 14px;
  flex-shrink: 0;
}

.step-header-left {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 2px;
}

.step-header-left .step-icon-title {
  color: #ff0000;
  font-size: 18px;
  flex-shrink: 0;
}

.step-header-left h2 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.3px;
  margin: 0;
}

/* ==========================================
   DIVISÓRIAS MELHORADAS
   ========================================== */
.step-divider {
  border: none;
  height: 2px;
  margin: 16px 0 14px;
  position: relative;
  background: linear-gradient(90deg,
      rgba(255, 0, 0, 0.05) 0%,
      rgba(255, 0, 0, 0.3) 30%,
      rgba(255, 0, 0, 0.5) 50%,
      rgba(255, 0, 0, 0.3) 70%,
      rgba(255, 0, 0, 0.05) 100%);
}

.step-divider::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 10px;
  background: #0d0d0d;
  border-left: 1px solid rgba(255, 0, 0, 0.2);
  border-right: 1px solid rgba(255, 0, 0, 0.2);
}

.step-divider .divider-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 0, 0, 0.3);
  font-size: 12px;
  background: #0d0d0d;
  padding: 0 10px;
}

/* ==========================================
   SEÇÃO COM FUNDO DIFERENCIADO
   ========================================== */
.section-wrapper {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  padding: 12px 14px 14px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

.section-wrapper:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.06);
}

.section-wrapper-adicionais {
  background: rgba(255, 0, 0, 0.03);
  border-color: rgba(255, 0, 0, 0.06);
}

.section-wrapper-adicionais:hover {
  background: rgba(255, 0, 0, 0.05);
  border-color: rgba(255, 0, 0, 0.1);
}

.section-wrapper-estacionamento {
  background: rgba(255, 0, 0, 0.03);
  border-color: rgba(255, 0, 0, 0.06);
}

.section-wrapper-estacionamento:hover {
  background: rgba(255, 0, 0, 0.05);
  border-color: rgba(255, 0, 0, 0.1);
}

.section-wrapper-dados {
  background: rgba(255, 0, 0, 0.03);
  border-color: rgba(255, 0, 0, 0.06);
}

.section-wrapper-dados:hover {
  background: rgba(255, 0, 0, 0.05);
  border-color: rgba(255, 0, 0, 0.1);
}

/* ==========================================
   ADICIONAIS
   ========================================== */
.adicionais-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 2px 0 4px 0;
}

.adicional-item {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 18px 18px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 100px;
  height: 100%;
  position: relative;
  width: 100%;
}

.adicional-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.adicional-item.selecionado {
  border-color: #ff0000;
  background: rgba(255, 0, 0, 0.07);
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.05);
}

.adicional-item.selecionado::after {
  content: '✓';
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 16px;
  color: #ff0000;
  font-weight: 700;
}

.adicional-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
  min-height: 30px;
}

.adicional-header h4 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  line-height: 1.3;
  word-break: break-word;
  flex: 1;
}

.adicional-preco {
  font-size: 14px;
  font-weight: 700;
  color: #ff0000;
  font-family: 'Montserrat', sans-serif;
  white-space: nowrap;
  flex-shrink: 0;
}

.adicional-preco .periodo {
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.3);
}

.adicional-descricao {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'Montserrat', sans-serif;
  margin: 2px 0 0;
  flex: 1;
  line-height: 1.4;
}

/* ==========================================
   ESTACIONAMENTO
   ========================================== */
.estacionamento-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 2px 0 4px 0;
}

.estacionamento-item {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 85px;
  width: 100%;
  position: relative;
}

.estacionamento-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
}

.estacionamento-item.selecionado {
  border-color: #ff0000;
  background: rgba(255, 0, 0, 0.07);
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.05);
}

.estacionamento-item.selecionado::after {
  content: '✓';
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  font-size: 18px;
  color: #ff0000;
  font-weight: 700;
}

.estacionamento-item>div {
  flex: 1;
  min-width: 0;
  padding-right: 30px;
}

.estacionamento-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.estacionamento-header h4 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
}

.estacionamento-preco {
  font-size: 14px;
  font-weight: 700;
  color: #ff0000;
  font-family: 'Montserrat', sans-serif;
}

.estacionamento-descricao {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  font-family: 'Montserrat', sans-serif;
  margin: 2px 0 0;
}

/* ==========================================
   FORMULÁRIO
   ========================================== */
.formulario-final {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 2px 0 4px 0;
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 3px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-group input {
  width: 100%;
  padding: 10px 14px 10px 38px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form-group input:focus {
  border-color: #ff0000;
  background: rgba(255, 0, 0, 0.05);
  box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.06);
}

.form-group .input-icon {
  position: absolute;
  left: 12px;
  bottom: 11px;
  color: rgba(255, 255, 255, 0.2);
  font-size: 15px;
  transition: color 0.3s ease;
}

.form-group input:focus+.input-icon {
  color: #ff0000;
}

/* ==========================================
   BOTÃO FINALIZAR
   ========================================== */
.btn-finalizar-mobile {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 14px;
  margin-top: 6px;
}

.btn-step {
  padding: 9px 22px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.btn-step:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
}

.btn-step.primary {
  background: #ff0000;
  border-color: #ff0000;
  color: #fff;
}

.btn-step.primary:hover:not(:disabled) {
  background: #cc0000;
  border-color: #cc0000;
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
}

.btn-step:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* ==========================================
   CHECKOUT.CSS - Moderno e Responsivo
   Inkore Fitness - Com divisórias melhoradas
   ========================================== */

/* ==========================================
   SCROLLBAR PERSONALIZADA - FINA
   ========================================== */
.checkout-container::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.checkout-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
}

.checkout-container::-webkit-scrollbar-thumb {
  background: rgba(255, 0, 0, 0.3);
  border-radius: 4px;
  transition: background 0.3s ease;
}

.checkout-container::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 0, 0, 0.5);
}

/* Firefox */
.checkout-container {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 0, 0, 0.3) rgba(255, 255, 255, 0.03);
}

/* ==========================================
   OVERLAY
   ========================================== */
.checkout-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 20px;
}

.checkout-overlay.ativo {
  opacity: 1;
  visibility: visible;
}

/* ==========================================
   CONTAINER PRINCIPAL
   ========================================== */
.checkout-container {
  background: #0d0d0d;
  border-radius: 24px;
  width: 100%;
  max-width: 820px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transform: scale(0.95) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.checkout-overlay.ativo .checkout-container {
  transform: scale(1) translateY(0);
}

/* ==========================================
   HEADER - APENAS VALOR
   ========================================== */
.checkout-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
  background: #0d0d0d;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-total {
  font-size: 22px;
  font-weight: 700;
  color: #ff0000;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.5px;
}

.checkout-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #888;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-size: 14px;
  flex-shrink: 0;
}

.checkout-close:hover {
  background: rgba(255, 0, 0, 0.15);
  color: #ff0000;
  border-color: rgba(255, 0, 0, 0.3);
}

/* ==========================================
   BODY
   ========================================== */
.checkout-body {
  flex: 1;
  min-height: 380px;
}

/* ==========================================
   STEPS
   ========================================== */
.checkout-steps-wrapper {
  height: 100%;
}

.checkout-steps {
  height: 100%;
  position: relative;
}

.checkout-step {
  display: block;
  height: 100%;
}

.step-content {
  padding: 22px 28px 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

/* ==========================================
   STEP HEADER COM ÍCONES
   ========================================== */
.step-header {
  margin-bottom: 14px;
  flex-shrink: 0;
}

.step-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px;
}

.step-header-left .step-icon-title {
  color: #ff0000;
  font-size: 18px;
  flex-shrink: 0;
}

.step-header-left h2 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.3px;
  margin: 0;
}

/* ==========================================
   DIVISÓRIAS MELHORADAS
   ========================================== */
.step-divider {
  border: none;
  height: 2px;
  margin: 16px 0 14px;
  position: relative;
  background: linear-gradient(90deg,
      rgba(255, 0, 0, 0.05) 0%,
      rgba(255, 0, 0, 0.3) 30%,
      rgba(255, 0, 0, 0.5) 50%,
      rgba(255, 0, 0, 0.3) 70%,
      rgba(255, 0, 0, 0.05) 100%);
}

.step-divider::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 10px;
  background: #0d0d0d;
  border-left: 1px solid rgba(255, 0, 0, 0.2);
  border-right: 1px solid rgba(255, 0, 0, 0.2);
}

.step-divider .divider-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 0, 0, 0.3);
  font-size: 12px;
  background: #0d0d0d;
  padding: 0 10px;
}

/* ==========================================
   SEÇÃO COM FUNDO DIFERENCIADO
   ========================================== */
.section-wrapper {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  padding: 12px 14px 14px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

.section-wrapper:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.06);
}

.section-wrapper-adicionais {
  background: rgba(255, 0, 0, 0.03);
  border-color: rgba(255, 0, 0, 0.06);
}

.section-wrapper-adicionais:hover {
  background: rgba(255, 0, 0, 0.05);
  border-color: rgba(255, 0, 0, 0.1);
}

.section-wrapper-estacionamento {
  background: rgba(255, 0, 0, 0.03);
  border-color: rgba(255, 0, 0, 0.06);
}

.section-wrapper-estacionamento:hover {
  background: rgba(255, 0, 0, 0.05);
  border-color: rgba(255, 0, 0, 0.1);
}

.section-wrapper-dados {
  background: rgba(255, 0, 0, 0.03);
  border-color: rgba(255, 0, 0, 0.06);
}

.section-wrapper-dados:hover {
  background: rgba(255, 0, 0, 0.05);
  border-color: rgba(255, 0, 0, 0.1);
}

/* ==========================================
   ADICIONAIS
   ========================================== */
.adicionais-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 2px 0 4px 0;
}

.adicional-item {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 18px 18px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 100px;
  height: 100%;
  position: relative;
  width: 100%;
}

.adicional-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.adicional-item.selecionado {
  border-color: #ff0000;
  background: rgba(255, 0, 0, 0.07);
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.05);
}

.adicional-item.selecionado::after {
  content: '✓';
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 16px;
  color: #ff0000;
  font-weight: 700;
}

.adicional-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
  min-height: 30px;
}

.adicional-header h4 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  line-height: 1.3;
  word-break: break-word;
  flex: 1;
}

.adicional-preco {
  font-size: 14px;
  font-weight: 700;
  color: #ff0000;
  font-family: 'Montserrat', sans-serif;
  white-space: nowrap;
  flex-shrink: 0;
}

.adicional-preco .periodo {
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.3);
}

.adicional-descricao {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'Montserrat', sans-serif;
  margin: 2px 0 0;
  flex: 1;
  line-height: 1.4;
}

/* ==========================================
   ESTACIONAMENTO
   ========================================== */
.estacionamento-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 2px 0 4px 0;
}

.estacionamento-item {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 85px;
  width: 100%;
  position: relative;
}

.estacionamento-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
}

.estacionamento-item.selecionado {
  border-color: #ff0000;
  background: rgba(255, 0, 0, 0.07);
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.05);
}

.estacionamento-item.selecionado::after {
  content: '✓';
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  font-size: 18px;
  color: #ff0000;
  font-weight: 700;
}

.estacionamento-item>div {
  flex: 1;
  min-width: 0;
  padding-right: 30px;
}

.estacionamento-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.estacionamento-header h4 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
}

.estacionamento-preco {
  font-size: 14px;
  font-weight: 700;
  color: #ff0000;
  font-family: 'Montserrat', sans-serif;
}

.estacionamento-descricao {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  font-family: 'Montserrat', sans-serif;
  margin: 2px 0 0;
}

/* ==========================================
   FORMULÁRIO
   ========================================== */
.formulario-final {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 2px 0 4px 0;
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 3px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-group input {
  width: 100%;
  padding: 10px 14px 10px 38px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form-group input:focus {
  border-color: #ff0000;
  background: rgba(255, 0, 0, 0.05);
  box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.06);
}

.form-group .input-icon {
  position: absolute;
  left: 12px;
  bottom: 11px;
  color: rgba(255, 255, 255, 0.2);
  font-size: 15px;
  transition: color 0.3s ease;
}

.form-group input:focus+.input-icon {
  color: #ff0000;
}

/* ==========================================
   BOTÃO FINALIZAR
   ========================================== */
.btn-finalizar-mobile {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 14px;
  margin-top: 6px;
}

.btn-step {
  padding: 9px 22px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.btn-step:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
}

.btn-step.primary {
  background: #ff0000;
  border-color: #ff0000;
  color: #fff;
}

.btn-step.primary:hover:not(:disabled) {
  background: #cc0000;
  border-color: #cc0000;
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
}

.btn-step:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* ==========================================
   RESPONSIVO - TABLETS
   ========================================== */
@media (max-width: 820px) {
  .step-content {
    padding: 18px 22px 14px;
  }

  .adicionais-container {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .checkout-header {
    padding: 12px 18px 10px;
  }

  .header-total {
    font-size: 20px;
  }

  .adicional-item {
    padding: 14px 14px 12px;
    min-height: 80px;
  }

  .estacionamento-item {
    padding: 14px 16px;
    min-height: 75px;
  }

  .estacionamento-item.selecionado::after {
    right: 12px;
    font-size: 16px;
  }

  .step-header-left .step-icon-title {
    font-size: 16px;
  }

  .step-header-left h2 {
    font-size: 16px;
  }

  .step-divider {
    margin: 14px 0 12px;
  }

  .section-wrapper {
    padding: 10px 12px 12px;
  }
}

/* ==========================================
   RESPONSIVO - MOBILE (com espaçamento)
   ========================================== */
@media (max-width: 480px) {
  .checkout-overlay {
    padding: 16px 12px;
    align-items: center;
    justify-content: center;
  }

  .checkout-container {
    max-height: 88vh;
    height: auto;
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
    transform: scale(0.95) translateY(20px);
    min-height: auto;
  }

  .checkout-overlay.ativo .checkout-container {
    transform: scale(1) translateY(0);
  }

  .checkout-header {
    padding: 10px 14px 8px;
    position: sticky;
    top: 0;
    z-index: 10;
  }

  .header-total {
    font-size: 18px;
  }

  .checkout-close {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .checkout-body {
    flex: 0 1 auto;
    min-height: 0;
  }

  .checkout-steps-wrapper {
    flex: 0 1 auto;
    overflow: visible;
  }

  .checkout-steps {
    height: auto;
    overflow: visible;
  }

  .checkout-step {
    display: block !important;
    height: auto;
  }

  .step-content {
    padding: 12px 14px 20px;
    height: auto;
    overflow: visible;
    display: flex;
    flex-direction: column;
  }

  .step-header {
    margin-bottom: 10px;
  }

  .step-header-left .step-icon-title {
    font-size: 16px;
  }

  .step-header-left h2 {
    font-size: 15px;
  }

  .step-divider {
    margin: 12px 0 10px;
    height: 1.5px;
  }

  .step-divider::after {
    width: 30px;
    height: 8px;
  }

  .section-wrapper {
    padding: 8px 10px 10px;
    border-radius: 10px;
  }

  /* ==========================================
     ADICIONAIS - MOBILE
     ========================================== */
  .adicionais-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
  }

  .adicional-item {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 14px 16px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 60px;
    position: relative;
    width: 100%;
  }

  .adicional-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
  }

  .adicional-item.selecionado {
    border-color: #ff0000;
    background: rgba(255, 0, 0, 0.07);
  }

  .adicional-item.selecionado::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 14px;
    color: #ff0000;
    font-weight: 700;
  }

  .adicional-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: auto;
    margin-bottom: 2px;
    width: 100%;
    padding-right: 20px;
  }

  .adicional-header h4 {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    flex: 1;
    line-height: 1.3;
  }

  .adicional-preco {
    font-size: 12px;
    font-weight: 700;
    color: #ff0000;
    font-family: 'Montserrat', sans-serif;
    flex-shrink: 0;
    margin-left: 8px;
  }

  .adicional-preco .periodo {
    font-size: 9px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.3);
  }

  .adicional-descricao {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Montserrat', sans-serif;
    margin: 2px 0 0;
    width: 100%;
    line-height: 1.4;
    padding-right: 20px;
  }

  /* ==========================================
     ESTACIONAMENTO - MOBILE
     ========================================== */
  .estacionamento-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
  }

  .estacionamento-item {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 60px;
    width: 100%;
    position: relative;
  }

  .estacionamento-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
  }

  .estacionamento-item.selecionado {
    border-color: #ff0000;
    background: rgba(255, 0, 0, 0.07);
  }

  .estacionamento-item.selecionado::after {
    content: '✓';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 14px;
    color: #ff0000;
    font-weight: 700;
  }

  .estacionamento-item>div {
    flex: 1;
    min-width: 0;
    padding-right: 20px;
  }

  .estacionamento-header {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .estacionamento-header h4 {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
  }

  .estacionamento-preco {
    font-size: 13px;
    font-weight: 700;
    color: #ff0000;
    font-family: 'Montserrat', sans-serif;
  }

  .estacionamento-descricao {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    font-family: 'Montserrat', sans-serif;
    margin: 2px 0 0;
  }

  /* ==========================================
     FORMULÁRIO - MOBILE
     ========================================== */
  .formulario-final {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .form-group input {
    padding: 8px 12px 8px 34px;
    font-size: 13px;
    border-radius: 8px;
  }

  .form-group .input-icon {
    left: 10px;
    bottom: 9px;
    font-size: 13px;
  }

  .form-group label {
    font-size: 10px;
  }

  .btn-finalizar-mobile {
    padding: 12px;
    font-size: 13px;
    margin-top: 8px;
  }
}

/* ==========================================
   RESPONSIVO - MOBILE MÉDIO
   ========================================== */
@media (min-width: 481px) and (max-width: 600px) {
  .checkout-container {
    max-width: 95%;
    max-height: 88vh;
    border-radius: 20px;
    min-height: auto;
  }

  .checkout-overlay {
    padding: 10px;
    align-items: center;
    justify-content: center;
  }

  .checkout-body {
    min-height: 400px;
  }

  .adicionais-container {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .step-header-left .step-icon-title {
    font-size: 16px;
  }

  .step-header-left h2 {
    font-size: 16px;
  }

  .header-total {
    font-size: 19px;
  }
}

/* ==========================================
   RESPONSIVO - MOBILE MUITO PEQUENO
   ========================================== */
@media (max-width: 360px) {
  .checkout-overlay {
    padding: 12px 8px;
  }

  .checkout-container {
    max-height: 85vh;
    border-radius: 16px;
    max-width: 100%;
  }

  .checkout-header {
    padding: 8px 10px 6px;
  }

  .header-total {
    font-size: 16px;
  }

  .checkout-close {
    width: 24px;
    height: 24px;
    font-size: 10px;
  }

  .step-content {
    padding: 10px 10px 16px;
  }

  .step-header-left .step-icon-title {
    font-size: 14px;
  }

  .step-header-left h2 {
    font-size: 13px;
  }

  .step-divider {
    margin: 10px 0 8px;
  }

  .step-divider::after {
    width: 24px;
    height: 6px;
  }

  .section-wrapper {
    padding: 6px 8px 8px;
    border-radius: 8px;
  }

  .adicional-item {
    min-height: 50px;
    padding: 10px 12px 8px;
  }

  .adicional-header h4 {
    font-size: 12px;
  }

  .adicional-preco {
    font-size: 11px;
  }

  .adicional-descricao {
    font-size: 10px;
  }

  .estacionamento-item {
    min-height: 50px;
    padding: 10px 12px;
  }

  .estacionamento-header h4 {
    font-size: 12px;
  }

  .estacionamento-preco {
    font-size: 12px;
  }

  .estacionamento-descricao {
    font-size: 10px;
  }

  .btn-finalizar-mobile {
    padding: 10px;
    font-size: 12px;
  }

  .form-group input {
    padding: 6px 10px 6px 30px;
    font-size: 12px;
  }

  .form-group .input-icon {
    left: 8px;
    bottom: 7px;
    font-size: 12px;
  }

  .form-group label {
    font-size: 9px;
  }
}