html {
    font-family: 'red hat display';
    font-size: 16px;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    background-color: hsl(225, 100%, 94%);
}

.imagens {
    position: fixed;
    top: -280px;
    width: 100%;
    height: auto;
    z-index: -1;
    overflow: hidden;
}

.imagens img {
    width: 100%;
    min-height: 100vh;
    object-fit: cover;
}

.container {
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
}

.container img {
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.container .informacoes {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.container .informacoes .titulo {
    font-weight: 900;
    margin-bottom: 15px;
    color: hsl(223, 47%, 23%);
}

.container .informacoes .texto {
    color: hsl(224, 23%, 55%);
    width: 300px;
    text-align: center;
    margin-bottom: 20px;
}

.container .informacoes .preco {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: hsl(223, 37%, 96%);
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 25px;
}

.container .informacoes .preco img {
    width: 15%;
}

.container .informacoes .preco .plano {
    display: flex;
    flex-direction: column;
}

.container .informacoes .preco .plano strong {
    font-size: 14px;
    font-weight: 800;
    color: hsl(223, 47%, 23%);
}

.container .informacoes .preco .plano span {
    color: hsl(224, 23%, 55%);
    font-size: 14px;
    font-weight: 600;
    margin-right: 85px;
}

.container .informacoes .preco a {
    color: hsl(245, 75%, 52%);
    font-size: 14px;
    font-weight: 800;
}

.container .informacoes .preco a:hover {
    text-decoration: none;
    color: hsl(224, 23%, 55%);
}

.container .informacoes .btn {
    background-color: hsl(245, 75%, 52%);
    border: 0;
    padding: 12px;
    width: 325px;
    border-radius: 5px;
    color: hsl(225, 100%, 98%);
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 20px;
}

.container .informacoes .btn:hover {
    opacity: 0.8;
}

.container .informacoes .link-cancelamento {
    text-decoration: none;
    color: hsl(224, 23%, 55%);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 25px;
}

.container .informacoes .link-cancelamento:hover {
    color: hsl(223, 47%, 23%);
}