* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f4f4f4;
    color: #333;
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #222;
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 15px 40px;
    align-items: center;
    z-index: 1000;
}

header .logo {
    font-size: 22px;
    font-weight: bold;
}

header nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
}

header nav a:hover {
    text-decoration: underline;
}

/* BANNER */
.banner {
    background: url('https://images.unsplash.com/photo-1581091870621-3b5e269ae7d9?auto=format&fit=crop&w=1450&q=60') center/cover no-repeat;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 60px;
}

.banner-content h1 {
    font-size: 48px;
}

.banner .btn {
    margin-top: 25px;
    padding: 12px 30px;
    background: #ff8800;
    color: #fff;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
}

.banner .btn:hover {
    background: #cc6f00;
}

/* SESSÕES GERAIS */
section {
    padding: 70px 40px;
}

h2 {
    margin-bottom: 20px;
    color: #222;
}

/* SOBRE */
.sobre p {
    margin-bottom: 20px;
}

.dados-empresa ul {
    margin-top: 10px;
    line-height: 28px;
}

/* PRODUTOS */
.produtos .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 10px #ccc;
}

/* LOCALIZAÇÃO */
.localizacao iframe {
    margin-top: 20px;
    border-radius: 10px;
}

/* CONTATO */
.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.formulario input,
.formulario textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.formulario button {
    width: 100%;
    padding: 12px;
    background: #ff8800;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: bold;
}

footer {
    background: #222;
    color: #eee;
    text-align: center;
    padding: 20px;
}
