:root {
    --bg: #f4f7fb;
    --primary: #1e3a8a;
    --secondary: #0ea5e9;
    --text: #1f2937;
    --muted: #6b7280;
    --radius: 14px;
    --container: 1100px;
    font-family: Inter, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body {
    background: var(--bg);
    color: var(--text)
}

header {
    background: white;
    padding: 20px 32px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10
}

header h1 {
    font-size: 22px;
    color: var(--primary)
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: var(--text);
    font-weight: 500
}

.hero {
    padding: 80px 32px;
    text-align: center;
    background: linear-gradient(135deg, #1e3a8a, #0ea5e9);
    color: white
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 14px;
    font-weight: 700
}

.hero p {
    font-size: 18px;
    max-width: 650px;
    margin: auto;
    margin-bottom: 24px
}

.btn-primary {
    background: white;
    color: var(--primary);
    padding: 12px 22px;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-block
}

.container {
    max-width: var(--container);
    margin: auto;
    padding: 40px 20px
}

.section h3 {
    font-size: 26px;
    margin-bottom: 10px;
    color: var(--primary)
}

.section p {
    color: var(--muted);
    max-width: 700px;
    margin-bottom: 30px
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px
}

.card {
    background: white;
    padding: 22px;
    border-radius: var(--radius);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05)
}

.card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary)
}

.card p {
    color: var(--muted);
    font-size: 14px
}

.contact {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05)
}

.contact label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    margin-bottom: 18px
}

.btn-send {
    background: var(--primary);
    color: white;
    padding: 14px 20px;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer
}

footer {
    margin-top: 40px;
    padding: 20px;
    text-align: center;
    color: var(--muted)
}


/*AVISO ENTRE EM CONTATO*/

h6 {
    text-align: center;
    font-size: 14px;
}

i {
    font-size: 13px;
}