
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(45deg, #1e3c72, #2a5298);
    color: white;
    padding-top: 80px;
    line-height: 1.6;
}

nav {
    background: linear-gradient(45deg, #007bff, #00c6ff);
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-header img {
    height: 40px;
    width: auto;
}

.menu-header span {
    font-size: 22px;
    font-weight: bold;
    color: white;
}

.menu-toggle {
    font-size: 24px;
    cursor: pointer;
    color: white;
    display: none;
    padding: 10px;
}

ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

li {
    display: flex;
    align-items: center;
    gap: 5px;
}

a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
}

a:hover {
    color: #ffcc00;
    transform: scale(1.1);
}

/* Slider */
.slider-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    z-index: 1;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.slide-content {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 15px;
    border-radius: 8px;
    width: 80%;
    text-align: center;
}

.slide-content h2 {
    margin-bottom: 5px;
    font-size: 22px;
}

.slide-content p {
    font-size: 16px;
}

.slide-btn {
    display: inline-block;
    background: #ffcc00;
    color: black;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 16px;
    margin-top: 10px;
    text-decoration: none;
    transition: 0.3s ease;
}

.slide-btn:hover {
    background-color: #ff9900;
    color: white;
}

.prev, .next {
    position: absolute;
    bottom: 10px;
    right: 60px;
    background: rgba(255, 255, 255, 0.2);
    color: black;
    border: none;
    font-size: 14px;
    padding: 6px 10px;
    cursor: pointer;
    border-radius: 4px;
    z-index: 5;
}

.next {
    right: 10px;
}

/* Seções */
.container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto 40px;
}

.tradutor-box {
    background-color: #2a64c8;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
}

.colaborador-box {
    background-color: #fba54c;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
}

input, button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    margin-top: 10px;
    border: none;
}

button {
    background: #ffcc00;
    color: black;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s;
}

button:hover {
    background: #ff9900;
    transform: scale(1.05);
}

iframe {
    width: 100%;
    border: none;
    border-radius: 10px;
    background: white;
}

/* Responsivo */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    ul {
        display: none;
        flex-direction: column;
        background: #007bff;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 10px;
    }

    ul.show {
        display: flex;
    }
}