/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* FUNDO DA PÁGINA */
body {
  font-family: Arial, sans-serif;
  min-height: 100vh;
  background: rgba(255, 165, 0, 0.12); /* laranja suave */
  display: flex;
  flex-direction: column;
  align-items: center;
}



/* CONTAINER PRINCIPAL */
.checkout-container {
  width: 95%;
  max-width: 1000px;
  background: rgba(255, 255, 255, 0.9); /* branco com 90% */
  border-radius: 20px;
  display: flex;
  overflow: hidden;

  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.15),
    0 10px 20px rgba(0, 0, 0, 0.1);

  margin-bottom: 40px;
}

/* COLUNAS */
.checkout-form,
.checkout-resumo {
  width: 50%;
  padding: 40px;
}

/* COLUNA RESUMO */
.checkout-resumo {
  background: rgba(255, 165, 0, 0.08);
  border-left: 1px solid rgba(0, 0, 0, 0.05);
}

/* TÍTULOS */
.checkout-form h2,
.checkout-resumo h3 {
  margin-bottom: 15px;
  color: #222;
}

/* INPUTS */
.checkout-form input {
  width: 100%;
  padding: 14px;
  margin-bottom: 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  transition: all 0.2s ease;
}

.checkout-form input::placeholder {
  color: #999;
}

.checkout-form input:focus {
  outline: none;
  border-color: rgba(255, 165, 0, 0.7);
  box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.25);
}

/* BOTÃO */
.checkout-form button {
  width: 100%;
  padding: 16px;
  margin-top: 10px;
  background: linear-gradient(
    135deg,
    rgba(255, 165, 0, 0.95),
    rgba(255, 140, 0, 0.95)
  );
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 12px;
  cursor: pointer;

  box-shadow: 0 12px 24px rgba(255, 165, 0, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.checkout-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(255, 165, 0, 0.55);
}

/* RESUMO DO PEDIDO */
#produto {
  margin-bottom: 20px;
}

#produto img {
  max-width: 80px;
  border-radius: 10px;
  margin-bottom: 10px;
}

/* TOTAL */
.total {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .checkout-container {
    flex-direction: column;
  }

  .checkout-resumo,
  .checkout-form {
    width: 100%;
    padding: 30px;
  }

.checkout-logo-interno{
  width: 100%;
  display: block;
  margin-bottom: 15px;
}

.logo-img{
  width: 110px;
  max-width: 110px;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: contain;
}
