body {
    font-family: Arial, sans-serif;
    background: url('../imagem/fundo.png') no-repeat center center fixed;
    background-size: cover;
    color: #333;
    margin: 0;
    padding: 0;
    animation: backgroundAnimation 10s infinite linear;
}

@keyframes backgroundAnimation {
    from { background-position: 0 0; }
    to { background-position: 100% 100%; }
}

header {
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header .container {
    width: 90%;
    margin: auto;
    overflow: hidden;
}

header h1 {
    float: left;
    margin: 0;
    font-size: 24px;
    color: #333;
}

header nav {
    float: right;
}

header nav .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

header nav .hamburger {
    width: 30px;
    height: 3px;
    background-color: #333;
    margin: 4px 0;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin-left: 20px;
}

header nav ul li a {
    color: #333;
    text-decoration: none;
    font-size: 18px;
}

section {
    padding: 100px 0 40px;
}

#highlight {
    padding-top: 160px; /* Adiciona espaço para deslocar o contêiner abaixo do menu */
}

.container {
    width: 90%;
    margin: auto;
}

.container {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    margin: 0 0 20px;
    font-size: 28px;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul li {
    background: rgba(255, 255, 255, 0.9);
    margin: 10px 0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

ul li ul {
    margin-top: 10px;
}

.profile-img {
    width: 100%;
    max-width: 300px;
    display: block;
    margin: 0 auto 20px;
    border-radius: 50%;
}

#about .container {
    display: flex;
    align-items: center;
}

#about img {
    flex: 1;
    margin-right: 20px;
}

#about p {
    flex: 2;
}

footer {
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

.highlight-container {
    position: relative;
    text-align: center;
    background: url('../imagem/imagem3.png') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 182, 193, 0.5); /* Rosa bebê com 50% de transparência */
    padding: 10px 20px;
    border-radius: 8px;
}

.highlight-text {
    font-size: 24px;
    font-family: 'Brush Script MT', cursive;
    color: #333;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-bottom: 5px;
    font-weight: bold;
}

form input, form textarea {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

form button {
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #555;
}

@media (max-width: 768px) {
    header nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #333;
    }

    header nav ul li {
        display: block;
        margin: 10px 0;
        text-align: center;
    }

    header nav .menu-toggle {
        display: flex;
    }

    section {
        padding-top: 80px;
    }

    #about .container {
        flex-direction: column;
    }

    #about img {
        margin-right: 0;
        margin-bottom: 20px;
    }
}
