:root {
  --checkout-radius: 16px;
  --checkout-radius-sm: 10px;
  --checkout-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --checkout-bg: #0d0d0d;
  --checkout-border: rgba(255, 255, 255, 0.06);
  --checkout-border-hover: rgba(255, 255, 255, 0.12);
  --checkout-red: #ff0000;
  --checkout-red-dark: #cc0000;
  --checkout-green: #2ecc71;
  --checkout-gold: #f39c12;
  --checkout-text: #fff;
  --checkout-text-muted: rgba(255, 255, 255, 0.4);
  --checkout-text-dim: rgba(255, 255, 255, 0.2);
}

.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 var(--checkout-transition);
}

.checkout-container::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 0, 0, 0.5);
}

.checkout-container {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 0, 0, 0.993) rgba(255, 255, 255, 0.03);
}

.checkout-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  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;
}

.checkout-container {
  background: var(--checkout-bg);
  border-radius: var(--checkout-radius);
  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.6);
  border: 1px solid rgba(255, 255, 255, 0.04);
  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);
}

.checkout-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  flex-shrink: 0;
  background: var(--checkout-bg);
  position: sticky;
  top: 0;
  z-index: 10;
  border-radius: var(--checkout-radius) var(--checkout-radius) 0 0;
}

.header-total {
  font-size: 24px;
  font-weight: 800;
  color: var(--checkout-red);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.5px;
}

.header-total .currency {
  font-size: 16px;
  font-weight: 600;
  opacity: 0.6;
}

.checkout-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--checkout-transition);
  font-size: 15px;
  flex-shrink: 0;
}

.checkout-close:hover {
  background: rgba(255, 0, 0, 0.15);
  color: var(--checkout-red);
  border-color: rgba(255, 0, 0, 0.25);
  transform: rotate(90deg);
}

.checkout-close:active {
  transform: rotate(90deg) scale(0.92);
}

.checkout-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px 12px;
  gap: 0;
  background: var(--checkout-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: default;
  transition: all var(--checkout-transition);
}

.progress-step.active {
  opacity: 1;
}

.progress-step.active .step-number {
  background: var(--checkout-red);
  color: #fff;
  border-color: var(--checkout-red);
}

.progress-step.active .step-label {
  color: var(--checkout-text);
}

.progress-step.completed .step-number {
  background: var(--checkout-green);
  color: #fff;
  border-color: var(--checkout-green);
}

.progress-step.completed .step-number::after {
  content: '✓';
  font-size: 10px;
}

.progress-step .step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  background: transparent;
  transition: all var(--checkout-transition);
  flex-shrink: 0;
}

.progress-step .step-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  font-family: 'Montserrat', sans-serif;
  transition: all var(--checkout-transition);
  white-space: nowrap;
}

.progress-line {
  flex: 1;
  max-width: 60px;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  margin: 0 8px;
  border-radius: 2px;
  transition: all var(--checkout-transition);
}

.progress-line.active {
  background: var(--checkout-red);
}

.progress-line.completed {
  background: var(--checkout-green);
}

.checkout-body {
  flex: 1;
  min-height: 380px;
  padding: 0 0 4px 0;
}

.checkout-steps-wrapper {
  height: 100%;
}

.checkout-steps {
  height: 100%;
  position: relative;
}

.checkout-step {
  display: none !important;
  animation: fadeStep 0.3s ease;
}

.checkout-step.active {
  display: block !important;
}

@keyframes fadeStep {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-content {
  padding: 20px 28px 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.step-header {
  margin-bottom: 12px;
  flex-shrink: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.step-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-header-left .step-icon-title {
  color: var(--checkout-red);
  font-size: 18px;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 0, 0, 0.08);
  border-radius: 50%;
}

.step-header-left h2 {
  font-size: 17px;
  font-weight: 700;
  color: var(--checkout-text);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.3px;
  margin: 0;
}

.step-header-left .step-count {
  font-size: 11px;
  font-weight: 600;
  color: rgb(190, 190, 190);
  background: rgb(255 0 0 / 35%);
  padding: 2px 12px;
  border-radius: 20px;
  margin-left: auto;
}

.step-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  font-family: 'Montserrat', sans-serif;
  margin: 4px 0 0 46px;
}

.step-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.step-actions .btn-step {
  padding: 10px 24px;
  border-radius: var(--checkout-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: all var(--checkout-transition);
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.step-actions .btn-step:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.04);
  color: var(--checkout-text);
  border-color: rgba(255, 255, 255, 0.1);
}

.step-actions .btn-step.primary {
  background: var(--checkout-red);
  border-color: var(--checkout-red);
  color: var(--checkout-text);
}

.step-actions .btn-step.primary:hover:not(:disabled) {
  background: var(--checkout-red-dark);
  border-color: var(--checkout-red-dark);
  box-shadow: 0 4px 24px rgba(255, 0, 0, 0.25);
  transform: translateY(-1px);
}

.step-actions .btn-step.primary:active {
  transform: translateY(0);
}

.step-actions .btn-step:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.step-actions .btn-step.btn-finalizar {
  background: var(--checkout-green);
  border-color: var(--checkout-green);
  color: #fff;
}

.step-actions .btn-step.btn-finalizar:hover:not(:disabled) {
  background: #27ae60;
  border-color: #27ae60;
  box-shadow: 0 4px 24px rgba(46, 204, 113, 0.25);
}

.step-actions .btn-step:only-child {
  margin-left: auto;
}

.section-wrapper {
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--checkout-radius-sm);
  padding: 14px 16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all var(--checkout-transition);
}

.section-wrapper:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.06);
}

.section-wrapper-adicionais {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.04);
}

.section-wrapper-adicionais:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.06);
}

.section-wrapper-estacionamento {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.04);
}

.section-wrapper-estacionamento:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.06);
}

.section-wrapper-dados {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.04);
}

.section-wrapper-dados:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.06);
}

.badge-incluso {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(46, 204, 113, 0.12);
  color: var(--checkout-green);
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 20px;
  margin-left: 6px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(46, 204, 113, 0.15);
}

.badge-incluso i {
  font-size: 0.5rem;
}

.adicional-item.incluso {
  opacity: 0.9;
  cursor: default;
  border-color: rgba(46, 204, 113, 0.2) !important;
  background: rgba(46, 204, 113, 0.04) !important;
}

.adicional-item.incluso:hover {
  transform: none !important;
  border-color: rgba(46, 204, 113, 0.2) !important;
  background: rgba(46, 204, 113, 0.04) !important;
  box-shadow: none !important;
}

.adicional-item.incluso.selecionado {
  border-color: rgba(46, 204, 113, 0.3) !important;
  background: rgba(46, 204, 113, 0.06) !important;
}

.adicional-item.incluso.selecionado::after {
  color: var(--checkout-green) !important;
}

.adicional-item.incluso .adicional-preco {
  color: var(--checkout-green) !important;
}

.estacionamento-item.incluso {
  opacity: 0.9;
  cursor: default;
  border-color: rgba(46, 204, 113, 0.2) !important;
  background: rgba(46, 204, 113, 0.04) !important;
}

.estacionamento-item.incluso:hover {
  transform: none !important;
  border-color: rgba(46, 204, 113, 0.2) !important;
  background: rgba(46, 204, 113, 0.04) !important;
  box-shadow: none !important;
}

.estacionamento-item.incluso.selecionado {
  border-color: rgba(46, 204, 113, 0.3) !important;
  background: rgba(46, 204, 113, 0.06) !important;
}

.estacionamento-item.incluso.selecionado::after {
  color: var(--checkout-green) !important;
}

.estacionamento-item.incluso .estacionamento-preco {
  color: var(--checkout-green) !important;
}

.estacionamento-preco.gratuito {
  color: var(--checkout-green) !important;
  font-weight: 700;
  font-size: 0.85rem;
}

.obrigatorio-text {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.55rem;
  color: var(--checkout-gold);
  font-weight: 600;
  letter-spacing: 0.3px;
  background: rgba(243, 156, 18, 0.08);
  padding: 1px 10px;
  border-radius: 12px;
}

.obrigatorio-text i {
  margin-right: 4px;
}

.estacionamento-item.bloqueado {
  opacity: 0.5;
  cursor: not-allowed;
  border-color: rgba(255, 255, 255, 0.03) !important;
  background: rgba(150, 1, 1, 0.199) !important;
}

.badge-bloqueado {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 0, 0, 0.1);
  color: #ff6b6b;
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 6px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 0, 0, 0.1);
}

.badge-bloqueado i {
  font-size: 0.45rem;
}

.bloqueado-text {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.5rem;
  color: #ff6b6b;
  font-weight: 600;
  letter-spacing: 0.3px;
  background: rgba(255, 0, 0, 0.05);
  padding: 1px 10px;
  border-radius: 12px;
}

.bloqueado-text i {
  margin-right: 4px;
}

.adicionais-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 2px 0;
}

.adicional-item {
  background: rgba(255, 255, 255, 0.02);
  border: 2px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--checkout-radius-sm);
  padding: 16px 16px 14px;
  cursor: pointer;
  transition: all var(--checkout-transition);
  display: flex;
  flex-direction: column;
  min-height: 90px;
  position: relative;
}

.adicional-item:hover:not(.incluso) {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

.adicional-item.selecionado:not(.incluso) {
  border-color: var(--checkout-red);
  background: rgba(255, 0, 0, 0.06);
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.04);
}

.adicional-item.selecionado:not(.incluso)::after {
  content: '✓';
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 16px;
  color: var(--checkout-red);
  font-weight: 700;
}

.adicional-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 4px;
}

.adicional-header h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--checkout-text);
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  line-height: 1.3;
  flex: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.adicional-preco {
  font-size: 14px;
  font-weight: 700;
  color: var(--checkout-red);
  font-family: 'Montserrat', sans-serif;
  white-space: nowrap;
  flex-shrink: 0;
}

.adicional-preco .periodo {
  font-size: 9px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.25);
}

.adicional-descricao {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  font-family: 'Montserrat', sans-serif;
  margin: 2px 0 0;
  line-height: 1.4;
}

.estacionamento-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 2px 0;
}

.estacionamento-item {
  background: rgba(255, 255, 255, 0.02);
  border: 2px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--checkout-radius-sm);
  padding: 14px 18px;
  transition: all var(--checkout-transition);
  cursor: pointer;
  position: relative;
}

.estacionamento-item:hover:not(.incluso):not(.bloqueado) {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.estacionamento-item.selecionado:not(.incluso):not(.bloqueado) {
  border-color: var(--checkout-red);
  background: rgba(255, 0, 0, 0.06);
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.04);
}

.estacionamento-item.selecionado:not(.incluso):not(.bloqueado)::after {
  content: '✓';
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  font-size: 17px;
  color: var(--checkout-red);
  font-weight: 700;
}

.estacionamento-item>div {
  flex: 1;
  padding-right: 30px;
}

.estacionamento-header {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.estacionamento-header h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--checkout-text);
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.estacionamento-preco {
  font-size: 14px;
  font-weight: 700;
  color: var(--checkout-red);
  font-family: 'Montserrat', sans-serif;
}

.estacionamento-descricao {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  font-family: 'Montserrat', sans-serif;
  margin: 2px 0 0;
}

.formulario-final {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 2px 0;
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 4px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.form-group input {
  width: 100%;
  padding: 10px 14px 10px 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--checkout-radius-sm);
  color: var(--checkout-text);
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  transition: all var(--checkout-transition);
  outline: none;
  box-sizing: border-box;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.15);
}

.form-group input:focus {
  border-color: var(--checkout-red);
  background: rgba(255, 0, 0, 0.04);
  box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.05);
}

.form-group .input-icon {
  position: absolute;
  left: 13px;
  bottom: 11px;
  color: rgba(255, 255, 255, 0.15);
  font-size: 15px;
  transition: color var(--checkout-transition);
}

.form-group input:focus+.input-icon {
  color: var(--checkout-red);
}

.loading-adicionais {
  text-align: center;
  padding: 20px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
}

.loading-adicionais p {
  margin: 0;
}

.sem-opcoes {
  text-align: center;
  padding: 16px;
  color: rgba(255, 255, 255, 0.2);
  font-size: 13px;
  margin: 0;
}

@media (max-width: 820px) {
  .checkout-progress {
    padding: 12px 16px 10px;
  }

  .progress-step .step-label {
    font-size: 10px;
  }

  .progress-step .step-number {
    width: 24px;
    height: 24px;
    font-size: 10px;
  }

  .progress-line {
    max-width: 30px;
  }

  .step-subtitle {
    font-size: 12px;
    margin-left: 0;
  }

  .step-header-left .step-count {
    font-size: 10px;
    padding: 1px 10px;
  }

  .step-actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .step-actions .btn-step {
    padding: 8px 16px;
    font-size: 11px;
    flex: 1;
    justify-content: center;
    min-width: 100px;
  }

  .step-content {
    padding: 16px 20px 14px;
  }

  .checkout-header {
    padding: 12px 20px 10px;
  }

  .header-total {
    font-size: 20px;
  }

  .adicionais-container {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .adicional-item {
    padding: 14px 14px 12px;
    min-height: 75px;
  }

  .estacionamento-item {
    padding: 12px 16px;
  }

  .step-header-left .step-icon-title {
    font-size: 16px;
    width: 30px;
    height: 30px;
  }

  .step-header-left h2 {
    font-size: 15px;
  }

  .section-wrapper {
    padding: 12px 14px 14px;
  }

  .badge-incluso {
    font-size: 0.5rem;
    padding: 1px 8px;
  }

  .badge-bloqueado {
    font-size: 0.45rem;
    padding: 1px 6px;
  }
}

@media (max-width: 480px) {
  .checkout-overlay {
    padding: 12px 10px;
  }

  .checkout-container {
    max-height: 90vh;
    border-radius: 18px;
    max-width: 100%;
  }

  .checkout-header {
    padding: 10px 14px 8px;
  }

  .header-total {
    font-size: 18px;
  }

  .checkout-close {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .checkout-body {
    min-height: 0;
  }

  .step-content {
    padding: 10px 12px 16px;
    gap: 0;
  }

  .step-header {
    margin-bottom: 8px;
    padding-bottom: 6px;
  }

  .step-header-left .step-icon-title {
    font-size: 14px;
    width: 28px;
    height: 28px;
  }

  .step-header-left h2 {
    font-size: 14px;
  }

  .step-header-left .step-count {
    font-size: 9px;
    padding: 1px 8px;
  }

  .step-subtitle {
    font-size: 11px;
    margin-left: 0;
  }

  .step-actions .btn-step {
    padding: 8px 12px;
    font-size: 10px;
    min-width: 80px;
  }

  .section-wrapper {
    padding: 8px 10px 10px;
    border-radius: var(--checkout-radius-sm);
  }

  .badge-incluso {
    font-size: 0.45rem;
    padding: 1px 6px;
    margin-left: 4px;
  }

  .badge-incluso i {
    font-size: 0.4rem;
  }

  .badge-bloqueado {
    font-size: 0.4rem;
    padding: 1px 4px;
  }

  .badge-bloqueado i {
    font-size: 0.35rem;
  }

  .bloqueado-text {
    font-size: 0.45rem;
    padding: 1px 6px;
  }

  .checkout-progress {
    padding: 10px 12px 8px;
    gap: 0;
  }

  .progress-step .step-label {
    display: none;
  }

  .progress-step .step-number {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .progress-line {
    max-width: 20px;
  }

  .adicionais-container {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .adicional-item {
    padding: 12px 14px 10px;
    min-height: 55px;
    border-radius: var(--checkout-radius-sm);
  }

  .adicional-item.selecionado::after {
    top: 8px;
    right: 10px;
    font-size: 13px;
  }

  .adicional-header {
    margin-bottom: 2px;
  }

  .adicional-header h4 {
    font-size: 12px;
  }

  .adicional-preco {
    font-size: 12px;
  }

  .adicional-preco .periodo {
    font-size: 8px;
  }

  .adicional-descricao {
    font-size: 10px;
  }

  .estacionamento-container {
    gap: 6px;
  }

  .estacionamento-item {
    padding: 10px 14px;
    border-radius: var(--checkout-radius-sm);
  }

  .estacionamento-item.selecionado::after {
    right: 10px;
    font-size: 14px;
  }

  .estacionamento-item>div {
    padding-right: 24px;
  }

  .estacionamento-header {
    gap: 6px;
  }

  .estacionamento-header h4 {
    font-size: 12px;
  }

  .estacionamento-preco {
    font-size: 12px;
  }

  .estacionamento-preco.gratuito {
    font-size: 11px;
  }

  .estacionamento-descricao {
    font-size: 10px;
  }

  .obrigatorio-text {
    font-size: 0.5rem;
    padding: 1px 8px;
  }

  .formulario-final {
    gap: 8px;
  }

  .form-group label {
    font-size: 9px;
    letter-spacing: 0.6px;
  }

  .form-group input {
    padding: 8px 10px 8px 34px;
    font-size: 13px;
    border-radius: var(--checkout-radius-sm);
  }

  .form-group .input-icon {
    left: 10px;
    bottom: 9px;
    font-size: 13px;
  }
}

@media (min-width: 481px) and (max-width: 600px) {
  .checkout-container {
    max-width: 95%;
    max-height: 90vh;
    border-radius: 18px;
  }

  .checkout-overlay {
    padding: 10px;
  }

  .checkout-body {
    min-height: 350px;
  }

  .adicionais-container {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .header-total {
    font-size: 19px;
  }

  .step-header-left .step-icon-title {
    font-size: 15px;
    width: 28px;
    height: 28px;
  }

  .step-header-left h2 {
    font-size: 15px;
  }

  .badge-incluso {
    font-size: 0.5rem;
    padding: 1px 6px;
  }

  .adicional-item {
    min-height: 70px;
    padding: 12px 14px 10px;
  }

  .estacionamento-item {
    padding: 11px 14px;
  }

  .progress-step .step-label {
    font-size: 10px;
  }

  .progress-step .step-number {
    width: 24px;
    height: 24px;
    font-size: 10px;
  }

  .progress-line {
    max-width: 30px;
  }
}

@media (max-width: 360px) {
  .checkout-overlay {
    padding: 8px 6px;
  }

  .checkout-container {
    max-height: 88vh;
    border-radius: 14px;
  }

  .checkout-header {
    padding: 8px 10px 6px;
  }

  .header-total {
    font-size: 16px;
  }

  .checkout-close {
    width: 26px;
    height: 26px;
    font-size: 10px;
  }

  .step-content {
    padding: 8px 8px 12px;
  }

  .step-header-left .step-icon-title {
    font-size: 13px;
    width: 24px;
    height: 24px;
  }

  .step-header-left h2 {
    font-size: 13px;
  }

  .step-header-left .step-count {
    font-size: 8px;
    padding: 1px 6px;
  }

  .step-subtitle {
    font-size: 10px;
  }

  .section-wrapper {
    padding: 6px 8px 8px;
  }

  .adicional-item {
    padding: 10px 10px 8px;
    min-height: 48px;
  }

  .adicional-header h4 {
    font-size: 11px;
  }

  .adicional-preco {
    font-size: 11px;
  }

  .adicional-descricao {
    font-size: 9px;
  }

  .estacionamento-item {
    padding: 8px 10px;
    min-height: 45px;
  }

  .estacionamento-header h4 {
    font-size: 11px;
  }

  .estacionamento-preco {
    font-size: 11px;
  }

  .estacionamento-descricao {
    font-size: 9px;
  }

  .estacionamento-preco.gratuito {
    font-size: 10px;
  }

  .form-group input {
    padding: 6px 8px 6px 30px;
    font-size: 12px;
  }

  .form-group .input-icon {
    left: 8px;
    bottom: 7px;
    font-size: 11px;
  }

  .form-group label {
    font-size: 8px;
  }

  .step-actions .btn-step {
    padding: 6px 10px;
    font-size: 9px;
    min-width: 60px;
  }

  .badge-incluso {
    font-size: 0.4rem;
    padding: 1px 4px;
  }

  .badge-incluso i {
    font-size: 0.35rem;
  }

  .obrigatorio-text {
    font-size: 0.45rem;
    padding: 1px 6px;
  }

  .estacionamento-item>div {
    padding-right: 18px;
  }

  .checkout-progress {
    padding: 8px 8px 6px;
  }

  .progress-step .step-number {
    width: 22px;
    height: 22px;
    font-size: 10px;
  }

  .progress-line {
    max-width: 14px;
    margin: 0 4px;
  }
}

@media (max-height: 600px) and (orientation: landscape) {
  .checkout-container {
    max-height: 96vh;
  }

  .step-content {
    padding: 10px 16px 12px;
  }

  .step-header {
    margin-bottom: 6px;
    padding-bottom: 4px;
  }

  .step-header-left .step-icon-title {
    font-size: 14px;
    width: 26px;
    height: 26px;
  }

  .step-header-left h2 {
    font-size: 14px;
  }

  .step-subtitle {
    font-size: 11px;
    margin-left: 0;
  }

  .section-wrapper {
    padding: 8px 12px 10px;
  }

  .adicionais-container {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
  }

  .adicional-item {
    padding: 10px 12px 8px;
    min-height: 50px;
  }

  .estacionamento-item {
    padding: 8px 14px;
    min-height: 40px;
  }

  .formulario-final {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .formulario-final .btn-step {
    grid-column: 1 / -1;
  }

  .step-actions {
    margin-top: 8px;
    padding-top: 8px;
  }

  .step-actions .btn-step {
    padding: 6px 14px;
    font-size: 10px;
  }

  .checkout-progress {
    padding: 10px 16px 8px;
  }

  .progress-step .step-label {
    font-size: 10px;
  }

  .progress-step .step-number {
    width: 22px;
    height: 22px;
    font-size: 10px;
  }

  .progress-line {
    max-width: 30px;
  }
}