@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css");
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(10, 61, 98, 0.9);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    margin-right: 40px;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #f39c12;
}

.banner {
    background: url('/images/fundo.png') no-repeat center center/cover;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    font-size: 2.2em;
    font-weight: bold;
    margin-top: 80px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    flex-direction: column;
}

section {
    padding: 60px 20px;
    text-align: center;
}

.solucoes-container {
    font-family: 'Arial';
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.solucao {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.solucao i {
    font-size: 2em;
    color: #0a3d62;
    margin-bottom: 10px;
}

.clientes-lista {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.clientes-lista li {
    background: white;
    padding: 15px;
    border-radius: 5px;
    list-style: none;
    font-weight: bold;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

footer {
    background: #0a3d62;
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
}
