body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #010245; /* Fundo azul escuro */
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    text-align: center;
    margin-bottom: 0px;
}

.header img {
    width: 100%;
    max-width: 800px;
}

.header h1 {
    color: #ffffff; /* Cor do texto branco */
}

.book-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.book-wrapper {
    position: relative;
    width: calc(33.33% - 20px);
    margin-bottom: 20px;
}

.book-wrapper iframe {
    width: 100%;
}


p {
    color: white;
font-size: 18px;
}

li {
    color: white;
    font-size: 14px; /* Defina o tamanho da fonte desejado */
}

b {
    color: #a63ee6; /* Define a cor do texto dentro de elementos <b> como azul */
}

.price-tag {
    position: absolute;
    bottom: -34px;
    left: -1px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 5px 10px;
    border-radius: 5px;
    width: calc(100% - 20px);
}
/* Estilos para telas maiores que 600px */
.book-wrapper {
    position: relative;
    width: calc(33.33% - 20px);
    margin-bottom: 60px; /* Aumenta a margem inferior */
}

/* Estilos para telas menores ou iguais a 600px (celulares) */
@media (max-width: 600px) {
    .book-wrapper {
        width: calc(100% - 20px); /* Altera a largura para 100% */
    }

p {
    color: white;
}

li {
    color: white;
    font-size: 11px; /* Defina o tamanho da fonte desejado */
}

b {
    color: #a63ee6; /* Define a cor do texto dentro de elementos <b> como azul */
}


}

