body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #e9ecef;
}

header {
    background-color: #d0d3d4;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo img {
    height: 50px;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    border-radius: 5px;
    padding: 8px 12px;
    transition: background-color 0.3s ease;
}

.nav-links li a:hover {
    background-color: #007bff;
    color: white;
    cursor: pointer;
}

.language-switcher {
    display: flex;
    align-items: center;
}

.language-switcher button {
    margin-left: 10px;
    padding: 0;
    cursor: pointer;
    border: none;
    background-color: transparent;
    width: 30px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.language-switcher button:hover {
    background-color: #007bff;
}

.language-switcher button img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    cursor: pointer;
}

.toggle-button {
    background: none;
    border: none;
    color: #333;
    font-size: 24px;
    cursor: pointer;
    display: none;
}

.nav-container {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #d0d3d4;
        position: absolute;
        top: 60px;
        left: 0;
        text-align: center;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .nav-links li a {
        border-radius: 5px;
        padding: 10px 20px;
        margin: 5px 0;
        display: block;
    }

    .toggle-button {
        display: block;
    }

    .navbar {
        flex-wrap: wrap;
        align-items: center;
    }

    .nav-container {
        width: 100%;
        justify-content: space-between;
    }

    .language-switcher {
        order: 1;
        justify-content: center;
        margin-top: 10px;
        width: 100%;
    }

    .language-switcher button {
        margin: 0 10px;
        border-radius: 5px;
    }
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    padding-top: 60px;
    background-color: #e9ecef;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 3em;
    font-weight: bold;
    box-sizing: border-box;
    line-height: 1.2;
    white-space: pre-line;
}

.works-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #e9ecef;
    margin-bottom: 40px;
}

.works-section h2 {
    margin-bottom: 40px;
    color: #333;
}

.work-item {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 40px;
    padding: 20px;
    background-color: white;
    box-shadow: 5px 5px 10px #535455;
    border-radius: 8px;
    flex-wrap: wrap;
}

.work-item.item-1,
.work-item.item-2,
.work-item.item-3,
.work-item.item-4,
.work-item.item-5,
.work-item.item-6 {

}

.work-item .text-content,
.work-item .image-content {
    flex: 1;
    padding: 20px;
    min-width: 300px;
}

.work-item .image-content img {
    width: 100%;
    border-radius: 8px;
    max-width: 400px;
    height: auto;
    object-fit: cover;
}

.work-item.item-2 .image-content,
.work-item.item-4 .image-content,
.work-item.item-6 .image-content {
    order: -1;
}

.about-us-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #e9ecef;
}

.about-us-section h2 {
    margin-bottom: 40px;
    color: #333;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    flex-wrap: wrap;
}

.about-content .text-content,
.about-content .image-content {
    flex: 1;
    padding: 20px;
    min-width: 300px;
    text-align: left;
}

.about-content .image-content img {
    width: 100%;
    border-radius: 8px;
    max-width: 400px;
    height: auto;
    object-fit: cover;
}


.contact-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #e9ecef;
}

.contact-section h2 {
    margin-bottom: 40px;
    color: #333;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-item img {
    height: 30px;
    margin-right: 15px;
    cursor: pointer;
}

.contact-item p {
    margin: 0;
    font-size: 1.1em;
    display: flex; /* Para alinhar ícone e texto do link na mesma linha */
    align-items: center;
}

.contact-item p a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    cursor: pointer;
    margin-left: 5px; /* Espaçamento entre ícone e texto do link */
}

.social-group {
    display: flex;
    align-items: center;
}

.social-icons {
    margin: 0 10px;
}

.social-icons img {
    height: 40px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.1);
}

.contact-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    border: none;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.contact-button a {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.contact-button:hover {
    background-color: #0056b3;
}

footer {
    background-color: #d0d3d4;
    color: #333;
    padding: 30px 0;
    text-align: center;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 15px;
    cursor: pointer;
}

.copyright {
    font-size: 0.9em;
    margin-top: 10px;
}

.copyright a {
    color: #555;
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .works-section, .about-us-section, .contact-section {
        padding: 60px 15px;
    }

    .works-section h2, .about-us-section h2, .contact-section h2 {
        margin-bottom: 30px;
        font-size: 1.8em;
    }

    .work-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        box-shadow: 5px 5px 10px #535455;
    }

    .work-item .text-content,
    .work-item .image-content {
        width: 100%;
        padding: 15px 0;
        min-width: auto;
    }

    .work-item.item-2 .image-content,
    .work-item.item-4 .image-content,
    .work-item.item-6 .image-content {
        order: 0;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .about-content .text-content,
    .about-content .image-content {
        width: 100%;
        padding: 15px 0;
        min-width: auto;
    }

    .slide-text {
        font-size: 1.5em;
        width: 90%;
    }

    .contact-info {
        align-items: center;
    }

    .contact-group {
        align-items: center;
        margin-bottom: 20px;
    }

    .contact-item {
        flex-direction: column; /* Alinha os itens (ícone e texto) em coluna */
        text-align: center; /* Centraliza o texto abaixo do ícone */
        margin-bottom: 15px; /* Aumenta o espaçamento entre os itens de contato */
    }

    .contact-item img {
        margin-right: 0; /* Remove a margem à direita do ícone */
        margin-bottom: 5px; /* Adiciona um pouco de margem abaixo do ícone */
    }

    .social-group {
        flex-direction: row;
        justify-content: center;
    }

    .social-icons {
        margin: 0 10px;
    }
}