body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: #464646;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), 
                url('../img/fundo.jpg');
    background-size: cover;
    background-position: center;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6); 
    border-radius: 8px;
}

.logo {
    width: 100%;
    max-width: 450px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.slider-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
    max-width:1200px;
    overflow: hidden;
}

.slider {
    width: 100%;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 33.33%; 
    box-sizing: border-box;
    padding: 5px;
}

.redirect-message {
    font-size: 28px;
    margin-top: 20px;
    color: aliceblue;
}

.whatsapp-btn {
    position: fixed;
    bottom: 60px;
    right: 50px;
    background-color: #25D366;
    color: white;
    padding: 15px;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    text-decoration: none;
}
