* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

.wrap {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  min-height: 100vh;
}

/* Topbar */
.topbar {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: white;
  border-bottom: 1px solid #e0e0e0;
}

.back {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  margin-right: 1rem;
}

.logo {
  height: 30px;
}

/* Banner */
.banner {
  width: 100%;
  height: auto;
}

/* Content */
.content {
  padding: 1rem;
}

/* Resumo do pedido */
.resumo-pedido {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.resumo-pedido h3 {
  margin-bottom: 0.5rem;
  color: #333;
}

.resumo-item {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  color: #28a745;
}

/* Breadcrumb */
.crumbs {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}

.crumbs a {
  color: #007bff;
  text-decoration: none;
}

.crumbs .sep {
  margin: 0 0.5rem;
}

/* Section title */
.section-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #333;
}

/* Form */
#formCheckout {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.input {
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

.input:focus {
  outline: none;
  border-color: #007bff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Divider */
.divider {
  height: 1px;
  background: #e0e0e0;
  margin: 1rem 0;
}

/* Cookies */
.cookies {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.cookies a {
  color: #007bff;
  text-decoration: none;
}

/* Logos */
.logos {
  text-align: center;
  margin: 1rem 0;
}

.logos img {
  max-width: 150px;
  height: auto;
}

/* Legal */
.legal {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.4;
  margin-bottom: 5rem;
}

/* CTA */
.cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 1rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.btn {
  background: #28a745;
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 8px;
  width: 100%;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
}

.btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}