/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* Corpo do site */
body {
    background-color: #f4f6f8;
    color: #333;
    line-height: 1.6;
}

/* Cabeçalho */
header {
    background-color: #0b1c2d;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

header h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Seções */
section {
    background-color: #fff;
    max-width: 900px;
    margin: 30px auto;
    padding: 30px;
    border-radius: 8px;
}

section h2 {
    color: #0b1c2d;
    margin-bottom: 15px;
}

/* Lista de serviços */
ul {
    list-style: none;
}

ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

/* Contato */
section p strong {
    font-size: 1.2rem;
    color: #0b1c2d;
}

/* Rodapé */
footer {
    text-align: center;
    padding: 20px;
    background-color: #0b1c2d;
    color: #fff;
    margin-top: 40px;
}

.btn-whatsapp {
    display: inline-block;
    margin-top: 15px;
    background-color: #25d366;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    background-color: #1ebe5d;
}

/* Destaque inicial */
.destaque {
    background-color: #e9eef3;
    text-align: center;
    border-left: 6px solid #0b1c2d;
}

@media (max-width: 600px) {
    header h1 {
        font-size: 1.6rem;
    }

    section {
        margin: 15px;
        padding: 20px;
    }

    .btn-whatsapp {
        width: 100%;
        text-align: center;
    }
}

/* Header com logo */
.topo {
    background-color: #0b1c2d;
    color: #fff;
    padding: 30px 20px;
    text-align: center;
}

.logo {
    max-width: 180px;
    margin-bottom: 15px;
}

.logo {
    max-width: 150px;
}

/* Galeria de fotos */
.galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.galeria img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
}

.galeria img:hover {
    transform: scale(1.03);
}

/* WhatsApp flutuante */
.whatsapp-fixo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 999;
}

ul li {
    padding: 10px;
    transition: 0.3s;
    cursor: default;
}

ul li:hover {
    background-color: #f0f3f6;
    padding-left: 15px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    inset: 0;
    background: rgba(0,0,0,0.8);
}

.modal img {
    display: block;
    max-width: 90%;
    margin: 5% auto;
}

.fechar {
    color: white;
    font-size: 30px;
    position: absolute;
    top: 20px;
    right: 30px;
    cursor: pointer;
}

/* Menu de navegação */
.topo {
    background-color: #0b1c2d;
}

.topo-container {
    max-width: 1100px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu {
    list-style: none;
    display: flex;
    gap: 25px;
}

.menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.menu a:hover {
    color: #25d366;
}

/* Botão contato */
.btn-menu {
    background-color: #25d366;
    padding: 8px 15px;
    border-radius: 4px;
    color: #fff !important;
}

@media (max-width: 768px) {
    .topo-container {
        flex-direction: column;
        gap: 15px;
    }

    .menu {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* Página Trabalhe Conosco */

.intro {
    margin-bottom: 30px;
}

.vagas h2 {
    margin-bottom: 15px;
}

.form-trabalhe {
    background: #fff;
    padding: 25px;
    max-width: 600px;
    border-radius: 6px;
}

.form-trabalhe label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

.form-trabalhe input,
.form-trabalhe select,
.form-trabalhe textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-trabalhe button {
    margin-top: 20px;
    background-color: #111;
    color: #fff;
    padding: 12px;
    border: none;
    width: 100%;
    font-size: 16px;
    cursor: pointer;
}

.form-trabalhe button:hover {
    background-color: #333;
}

footer {
    text-align: center;
    padding: 20px;
    background: #111;
    color: #fff;
    margin-top: 40px;
}

