* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

/*Sobre Nós*/
body {
    color: #333;
    background: #fff;
    line-height: 1.6;
}

/*Menu superior*/
header {
    background: #0b132b;
    color: #fff;
    padding: 15px 0;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

header h1 {
    float: left;
}

nav ul {
    float: right;
    list-style: none;
}

nav ul li {
    display: inline-block;
    margin-left: 20px;
}

/*texto menu*/
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/*Logo*/
.hero {
    background: #1c2541;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

/*botão fale pelo whats*/
.hero .btn {
    background: #3a506b;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

.section {
    padding: 60px 20px;
}

/*Nossos Serviços*/
.bg-light {
    background: #f4f4f4;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

/*Card Nossos serviços*/
.card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
    text-align: center;
}

/*Card tecnologia */
.tecnologia-logos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.tecnologia-logos-grid .tech-logo {
    height: 60px;
    width: auto;
    transition: transform 0.3s;
}

.tecnologia-logos-grid .tech-logo:hover {
    transform: scale(1.2);
}


form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

form input, form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background: #1c2541;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background: #3a506b;
}

/* Rodapé */
footer {
    text-align: center;
    background: #0b132b;
    color: #fff;
    padding: 15px;
    margin-top: 40px;
}

/* Responsivo */
@media (max-width: 768px) {
    header h1, nav ul {
        float: none;
        text-align: center;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }
}
