/* Reset e estilo geral */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f0f4f8;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    background-color: #006699;
    color: #fff;
    padding: 20px 0;
}

header h1 {
    text-align: center;
    font-size: 2.5rem;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-top: 10px;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Seções */
section {
    margin: 40px 0;
}

section h2 {
    color: #006699;
    margin-bottom: 15px;
}

/* Imagem responsiva */
.img-responsive {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    margin: 20px 0;
    border-radius: 8px;
}

/* Vídeo responsivo */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Lista de serviços */
.servicos-lista {
    list-style: none;
    padding-left: 20px;
}

.servicos-lista li {
    background: #e6f2f7;
    margin-bottom: 10px;
    padding: 10px 15px;
    border-left: 5px solid #0099cc;
    border-radius: 4px;
}

/* Footer */
footer {
    background-color: #004466;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-size: 0.9rem;
}

/* Responsivo */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 10px 0;
    }
}
