@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');


:root {
  --Bege: #e2d4c9;
  --Rosa: #f23858;
  --Azul: #74cffc;
}

* {
  font-family: 'Share Tech Mono', monospace;
   box-sizing: border-box;
}

section {
    margin-top: 0;
    display: flex;
    height: calc(100vh - 120px);
    width: 100%;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #f5f5f5, var(--Bege))
}

.checkout {
    height: 600px;
    width: 600px;
    border-radius: 10px;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    box-shadow: 0 2px 2px rgba(0,0,0,0.2);
}

.checkout__titulo {
    text-transform: uppercase;
    font-size: 3rem;
    color: var(--Rosa);
}

.checkout__resumo {
    text-transform: uppercase;
    font-size: 1.7rem;
    color: black;
}

.checkout__conteudo {
    font-size: 2.2rem;
    color: var(--Azul);
    text-align: center;
}

.checkout__preco {
    font-size: 2.2rem;
    color: black;
    text-align: center;
}

.checkout__whatsapp {
    height: 30%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #F5f5f5;
}

.checkout__whatsapp p{
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--Rosa);
}

.checkout__whatsapp img {
    height: 100%;
    width: 100%;
    background-color: #F5f5f5;
    border-radius: 10px;
    transition: 0.1s;
}

.checkout__whatsapp:hover img{
    border: 4px solid var(--Rosa);
}

.checkout__botao {
    height: 135px;
    width: 230px;
    border: none;
    padding: 0;
}
