/* ===== RESET CSS ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  transition: all .3s ease;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  font-size: 63.5%;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 1.6rem;
  background-color: #2a5dce;
  color:#fff;
}

main {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: bold;
  margin-top:40px;
  margin-bottom: 20px;
}
h1 {
  font-size: 3rem;
}
h2{
    font-size: 2.5rem;
}

p {
  margin: 0 0 20px 0;
}
.qrCode {
  margin-bottom: 20px
}
.codePix {
  padding:5px;
  overflow-x: auto;
  font-size:1.4rem;
  background-color: #555;
  border-radius:3px;
  font-size:1rem;
}
.pixExpiration {
  display: flex;
  gap:10px;
  margin-top: 20px;
  font-size: 1.2rem;
  margin-bottom:10px;
}
ul, ol {
  list-style: none;
  padding: 0;
}

blockquote, q {
  quotes: none;
}

blockquote:before, 
blockquote:after, 
q:before, 
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
  border: none;
  background: white;
  color:#000;
  outline: none;
  width: 100%;
  padding: 10px;
  border:1px solid #ddd;
  border-radius:4px;
  margin-bottom: 15px;
  outline: none;
  
}
select{
  padding: 7px;
}
input[type="radio"], input[type="checkbox"] {
    width: auto;
    margin-bottom: 0;
}
label {
    display: block;
    margin-bottom: 5px;
    color:#eee;
}

button, input[type="button"], 
input[type="reset"], 
input[type="submit"],
.button {
  cursor: pointer;
  -webkit-appearance: button;
  background-color: rgb(2, 78, 2);
  color:#fff;
  border:none;
  padding: 20px 40px;
  text-transform: uppercase;
}
button[type="submit"]:hover,
.button:hover{
  background-color:#000;
}
button:disabled, 
input:disabled {
  cursor: default;
}

textarea {
  resize: vertical;
  overflow: auto;
}

[hidden] {
  display: none !important;
}

:focus {
  outline: 1px solid currentColor;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.main{
    padding: 50px 0;
}

.container {
    max-width: 600px;
    margin: 0 auto;
}
.paymentType {
    display: flex;
    margin-bottom:10px;
    padding:3px;
    color:#fff;
    border-radius:5px;
    gap:10px;

    
}
.paymentType label {
  display: block;
  margin-bottom: 0;
  border-radius: 10px;
  cursor:pointer;
  color:#fff;
  overflow: hidden;
}
.paymentItem {
    flex:1;
    display: flex;
    align-items: center;
    gap:10px;
    background-color: #393737;
}
.checkbox{
  display: none;
}
.checkbox + .ic {
  padding:10px;
  display: flex;
  gap:5px;
  align-items: center;
}
.checkbox + .ic .img img{
  width: 24px;
  height: 24px;
}
.checkbox:checked + .ic {
  background-color: #024e02;
}
.paymentItem label {
    margin-bottom: 0;
    flex:1;
    color:#fff;
}
.inputsCreditCard {
  display: none;
}
.cardInfo {
    display: flex;
    gap:10px;
}
.expirationCard{
    display: flex;
    gap:10px;
}
.CVCCard{
    flex:1;
}
.inputCol{
    display: flex;
    gap:10px;
}
.inputCol .input {
    flex:1;
}
.alert {
  padding:20px;
  color:white;
  background-color: red;
  margin-bottom:20px;
}
.livro {
  display: flex;

}
.livro .img .img{
  width: 100%;
}
.livro .valor{
  font-size:15rem;
  line-height: 1;
  font-weight: bold;
  display: flex;
  gap:2px;
  align-items: flex-end;
}
.livro .valor .rs {
  font-size: 5rem;
}