body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #ffffff;
}

header {
    background-color: #ffffff;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo img {
    max-width: 200px;
}

nav {
    margin-top: 10px;
}

.menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.menu li {
    display: inline;
}

.menu li a {
    text-decoration: none;
    color: black;
    font-size: 18px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.menu li a:hover {
    background-color: rgba(202, 176, 176, 0.2);
}

.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
}

.slide {
    display: none;
    position: relative;
}

.slide img {
    width: 100%;
    max-height: 700px;
}

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

.text {
    color: #220e18;
    font-size: 2vw;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background-color: rgba(255, 255, 255, 0.7); /* Fundo branco semi-transparente */
    padding: 10px 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 50%;
    overflow: hidden;
    white-space: nowrap;
    animation: typing 5s steps(30, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #ff69b4; }
}

footer {
    background-color: #ffffff;
    color: black;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Responsividade */
@media screen and (max-width: 768px) {
    .text {
        font-size: 4vw; /* Ajusta a fonte para tamanhos menores */
    }

    header {
        padding: 10px;
    }

    footer {
        padding: 10px;
    }
}

@media screen and (max-width: 480px) {
    .text {
        font-size: 5vw; /* Ajusta a fonte para tamanhos menores */
    }

    header {
        padding: 5px;
    }

    footer {
        padding: 5px;
    }

    .menu {
        flex-direction: column;
        gap: 10px;
    }

    .menu li a {
        font-size: 16px;
    }
}
