:root {
    --cor-principal: #101d3a;
    --cor-destaque: #22c55e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif, sans-serif;
    font-weight: bold;
}

body {
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

header {
    background: var(--cor-principal);
    color: white;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

.hero {
    background: var(--cor-principal);
    padding: 20px;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    background: var(--cor-destaque);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 15px;
    cursor: pointer;
}

.content {
    padding: 60px 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.service {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
}

.service img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    margin-bottom: 15px;
}

.contact {
    padding: 60px 20px;
    background: var(--cor-principal);
    color: white;
    text-align: center;
}

footer {
    background: #020617;
    color: #aaa;
    text-align: center;
    padding: 15px;
}

.texto-apos-img {
    display: flex;
    position: center;
    justify-content: center;
    align-items: center;
}

.texto-apos-img p{
    text-align: center;
    }

.content-final {
    margin: 20px;
}