/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #415dac;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: auto;
    width: 200px;
    margin-bottom: -90px;
    margin-top: -100px;
}

/* Estilos para o menu hambúrguer */
.menu {
    position: relative;
}

.menu-toggle {
    background: none;
    position: relative;
    left: 100px;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: none;
}

.menu-items {
    list-style: none;
    display: flex;
    gap: 20px;
}

.menu-items li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .menu-items {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: #415dac;
        flex-direction: column;
        width: 200px;
        padding: 10px 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .menu-items li {
        padding: 10px 20px;
    }

    .menu-items li a:hover {
        background-color: #00bcd4;
        color: #fff;
    }

    .menu-items.active {
        display: flex;
    }
}

.section {
    padding: 50px 20px;
    text-align: center;
}

.inicio {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    
}

.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -9000;
}

.overlay {
    position: relative;
    z-index: 2;
    color: #ffffff;
    text-align: center;
}

.projetos .content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    background-color: #fff;
    width: 100%;
}
.projetos{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    background-color: #fff;
    width: 100%;
}

.card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card img {
    width: 100%;
    border-radius: 10px;
}

.card h3 {
    margin: 10px 0;
}

.transparencia {
    background-color: #f4f4f4;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
    
}
.section-contato{
    text-align: center;
    background-color: #415eac8e;
    width: 100%;
    align-items: center;
    padding-top: 20px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    padding: 10px;
    background-color: #00bcd4;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #0097a7;
}

.footer {
    text-align: center;
    padding: 20px;
    background-color: #415dac;
    color: #fff;
}

/* Responsivo para Mobile */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        text-align: center;
    }

    .menu ul {
        flex-direction: column;
        gap: 10px;
    }

    .menu ul li {
        margin-bottom: 10px;
    }

    .inicio {
        height: 600px;
    }

    .logo img {
        width: 150px;
    }

    .projetos .content {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%;
    }

    .contact-form {
        max-width: 100%;
        padding: 10px;
    }

    .section {
        padding: 30px 10px;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
    
}
.section-contato{
    text-align: center;
    background-color: #415eac8e;
    width: 100%;
    align-items: center;
    padding-top: 20px;
    margin: 0 auto;
}
.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -9000;
}
