body {
    background-image: url("imgs/backgroud1.png");
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: rgb(4, 4, 4);
}

header {
    font-family: 'Poppins', sans-serif;
    display: flex;
    height: 100px;
    font-size: 21px;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    background-color: transparent;
    color: #fff;
    padding: 0 60px 0 60px;
}
header img {
    width: 100px;
    object-fit: cover;
    margin: 0 auto;
}

header p a{
    text-decoration: none;
    color: #fff;
    margin: 0 30px 0 30px;
}

.logo img {
    max-height: 50px;
}

.titulo{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.titulo h1{
    font-family: 'Lato', sans-serif;
    font-family: 'Young Serif', serif;
    text-align: center;
    width: 75%;
    color: #fff;
    font-size: 60px;
    font-weight: 600;

}

h1 {
    font-size: 24px;
    margin: 0;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

nav li {
    display: inline;
    margin-left: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.white-header {
    background-color: #ffffffc5;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 80px; /* Ajuste a altura conforme necessário */
    width: 260px;
}

.title h1 {
    margin: 0;
    font-size: 24px;
    text-align: center;
    
}

.menu-icons ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
}

.menu-icons li {
    font-size: 30px;
    padding: 0px;
}

.menu-icons a {
    text-decoration: none;
    color: rgba(51, 51, 51, 0.66);
}

.menu-icons a:hover {
    color: #007bff;
}

 [data-component="slideshow"] .slide {
    display: none;
  }

  [data-component="slideshow"] .slide.active {
    display: block;
  }

.slider-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Isso faz com que o slider ocupe a altura total da tela */
    

}

.slide img{
    opacity: 50%;
    width: 100%;
}

.swiper-container {
    width: 80%; /* Ajuste conforme necessário */
    max-width: 800px; /* Máxima largura do slider */
    height: 80%; /* Ajuste conforme necessário */
}

footer{
    background-color: #333333;
    padding: 50px 0;
}
.container-footer{
    max-width: 1400px;
    padding: 0 4%;
    margin: auto;
}
.row-footer{
    display: flex;
    flex-wrap: wrap;
}

.footer-col{
    width: 25%;
    padding: 0 15px;
}
.footer-col h4{
    font-size: 22px;
    color: white;
    margin-bottom: 20px;
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
}
.footer-col ul{
    list-style: none;
}
.footer-col ul li{
    margin: 10px 0;
}
.footer-col ul li a{
    font-size: 16px;
    text-transform: capitalize;
    color: white;
    text-decoration: none;
    font-weight: 300;
    display: block;
    transition: all 0.3s ease;
}
.footer-col ul li a:hover{
    color: #cecdcd;
    padding-left: 10px;
}
.footer-col .medias-socias{
    margin-top: 30px;
}
.footer-col .medias-socias a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    margin: 0 10px 10px 0;
    text-decoration: none;
    border-radius: 50%;
    color: white;
    border: 1px solid white;
    transition: all 0.5s ease;
}
.footer-col .medias-socias a i{
    font-size: 20px;
}

.footer-col .medias-socias a:hover{
    color: #415aca;
    background-color: white;
}
.footer-col .form-sub input{
    width: 100%;
    padding: 10px;
    font-size: 15px;
    outline: none;
    border: 1px solid white;
    color: white;
    background-color: #191616;
}
.footer-col .form-sub input::placeholder{
    color: white;
}
.footer-col .form-sub button{
    width: 100%;
    margin-top: 10px;
    padding: 10px; 
    font-size: 17px;
    outline: none;
    border: none;
    cursor: pointer;
    color: #0a0a0c;
    border-radius: 3px;
    font-weight: bold;
    background-color: white;        
}
/* Responsivo */
@media (max-width: 800px) {
    .footer-col{
        width: 50%;
        margin-bottom: 30px;
    }
}
@media (max-width:600px) {
    .footer-col{
        width: 100%;
    }
}



.section-div{
    animation: inicializar  .7s forwards;
    background-color: #000000;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-around;
    align-items: center;
    gap: 40px;
    padding: 60px;
}

.section-div div{
    margin-top: 20px;
    align-self: start;
    display: grid;
}

.section-div div h2{
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    color: rgb(255, 255, 255);
}

.section-div p{
    font-family: 'JetBrains Mono', monospace;
    font-weight: 200;
    color: rgb(255, 255, 255);
}

.section-div div a{
    justify-self: start;
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 5px;
    border: 2px solid rgb(255, 255, 255);
}

@keyframes inicializar{
    from {
        opacity: 0;
        transform: translate3d(0, -60px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}


.conteiner1{
max-width: 100%;
background-color: #000000;
display: flex;justify-content: space-around;
flex-direction: column;
}

.conteiner2{
max-width: 100%;
background-color: #000000;
display: flex;justify-content: space-around;
}

/* Estilos para cada livro */
.book {
    width: 250px;
    margin: 20px;
    padding: 20px;
    border: 1px solid #ccc;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out;
}

/* Estilos para as imagens dos livros */
.book img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
}

/* Estilos para os títulos dos livros */
.book h2 {
    margin: 10px 0;
    font-size: 24px;
    color: #333;
}

/* Estilos para as descrições dos livros */
.book p {
    font-size: 16px;
    color: #666;
}

/* Estilos de hover para realçar os livros quando o mouse passa por cima */
.book:hover {
    background-color: #f9f9f9;
    transform: translateY(-5px);
}

.tit{
    display: flex;
    width: 100%;
    color: #fff;
    text-align: center;
    font-size: 30px;
    justify-content: center;
}

.tit h4{
    color: #fff;
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-family: 'Young Serif', serif;
    font-size: 50px;
}