* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f2ed;
    color: #1f2328;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1120px, 90%);
    margin: 0 auto;
}

.topo {
    width: 100%;
    background: #111820;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
}

.topo-conteudo {
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.logo {
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.3px;
}

.logo span {
    color: #d8a45f;
}

.menu {
    display: flex;
    align-items: center;
    gap: 26px;
}

.menu a {
    color: #dfe3e8;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: 0.3s;
}

.menu a:hover {
    color: #d8a45f;
}

.btn-topo {
    background: #d8a45f;
    color: #111820;
    padding: 10px 17px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-topo:hover {
    background: #f0bd73;
}

.hero {
    min-height: 88vh;
    padding: 130px 0 80px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(17,24,32,0.96), rgba(17,24,32,0.78)),
        linear-gradient(135deg, #111820, #302213);
    color: #fff;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
}

.tag,
.subtitulo,
.titulo-secao span {
    display: inline-block;
    color: #d8a45f;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: clamp(40px, 5vw, 70px);
    line-height: 1.05;
    letter-spacing: -1.4px;
    max-width: 720px;
    margin-bottom: 24px;
}

.hero p {
    color: #dce1e7;
    font-size: 18px;
    max-width: 620px;
    margin-bottom: 32px;
}

.hero-botoes {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 23px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    transition: 0.3s;
}

.btn-principal {
    background: #d8a45f;
    color: #111820;
    border: 1px solid #d8a45f;
}

.btn-principal:hover {
    background: #f0bd73;
    border-color: #f0bd73;
    transform: translateY(-2px);
}

.btn-secundario {
    border: 1px solid rgba(255,255,255,0.45);
    color: #fff;
}

.btn-secundario:hover {
    background: #fff;
    color: #111820;
}

.hero-box {
    min-height: 440px;
    background:
        linear-gradient(rgba(0,0,0,0.10), rgba(0,0,0,0.48)),
        linear-gradient(135deg, #d8a45f, #1b1410);
    border: 1px solid rgba(216,164,95,0.35);
    padding: 24px;
    display: flex;
    align-items: flex-end;
}

.box-conteudo {
    width: 100%;
    background: rgba(17,24,32,0.92);
    border: 1px solid rgba(216,164,95,0.30);
    padding: 28px;
}

.box-conteudo span {
    color: #d8a45f;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.box-conteudo h3 {
    font-size: 30px;
    color: #fff;
    margin: 8px 0;
}

.box-conteudo p {
    margin: 0;
    color: #dce1e7;
}

.sobre {
    background: #f5f2ed;
    padding: 90px 0;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}

.sobre-texto h2,
.titulo-secao h2,
.contato-texto h2 {
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.12;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.sobre-texto p {
    color: #5d6670;
    font-size: 17px;
    margin-bottom: 16px;
}

.sobre-card {
    background: #fff;
    border: 1px solid #e2ded7;
    padding: 34px;
    box-shadow: 0 20px 50px rgba(17,24,32,0.08);
}

.sobre-card h3 {
    font-size: 26px;
    margin-bottom: 22px;
}

.sobre-card ul {
    list-style: none;
    display: grid;
    gap: 14px;
}

.sobre-card li {
    color: #4f5963;
    font-weight: 700;
    padding-left: 28px;
    position: relative;
}

.sobre-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #d8a45f;
    font-weight: 900;
}

.servicos {
    background: #111820;
    color: #fff;
    padding: 90px 0;
}

.titulo-secao {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.titulo-secao p {
    color: #c9d0d8;
    font-size: 17px;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.servico-card {
    background: #18222d;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 32px 28px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
}

.servico-card:hover {
    transform: translateY(-6px);
    border-color: rgba(216,164,95,0.45);
}

.servico-card span {
    width: 44px;
    height: 44px;
    background: rgba(216,164,95,0.14);
    color: #d8a45f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    margin-bottom: 24px;
}

.servico-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.servico-card p {
    color: #c9d0d8;
    margin-bottom: 24px;
    flex: 1;
}

.servico-card strong {
    color: #d8a45f;
    font-size: 19px;
}

.info-rapida {
    background: #d8a45f;
    color: #111820;
    padding: 38px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.info-grid div {
    background: rgba(255,255,255,0.22);
    padding: 24px;
    border: 1px solid rgba(17,24,32,0.10);
}

.info-grid span {
    display: block;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 8px;
}

.info-grid strong {
    display: block;
    font-size: 21px;
    margin-bottom: 4px;
}

.info-grid p {
    color: rgba(17,24,32,0.78);
}

.contato {
    background: #f5f2ed;
    padding: 90px 0;
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.contato-texto p {
    color: #5d6670;
    font-size: 17px;
    margin-bottom: 28px;
}

.contato-box {
    background: #111820;
    color: #fff;
    padding: 34px;
    display: grid;
    gap: 22px;
}

.contato-box div {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.10);
}

.contato-box div:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contato-box span {
    display: block;
    color: #d8a45f;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 7px;
}

.contato-box strong {
    color: #fff;
    font-size: 18px;
}

.barra-final {
    background: #0b1016;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 22px 0;
}

.barra-final-conteudo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: #c9d0d8;
    font-size: 14px;
}

.link-voltar {
    color: #d8a45f;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.link-voltar:hover {
    color: #fff;
}

.rodape {
    background: #05080b;
    color: #8d949c;
    text-align: center;
    padding: 26px;
    font-size: 14px;
}

@media (max-width: 980px) {
    .topo {
        position: static;
    }

    .topo-conteudo {
        height: auto;
        padding: 22px 0;
        flex-direction: column;
    }

    .menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .hero {
        min-height: auto;
        padding: 80px 0;
    }

    .hero-grid,
    .sobre-grid,
    .contato-grid {
        grid-template-columns: 1fr;
    }

    .hero-box {
        min-height: 360px;
    }

    .servicos-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .barra-final-conteudo {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(92%, 1120px);
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p,
    .sobre-texto p,
    .titulo-secao p,
    .contato-texto p {
        font-size: 16px;
    }

    .btn,
    .btn-topo {
        width: 100%;
        text-align: center;
    }

    .hero-botoes {
        width: 100%;
    }

    .sobre,
    .servicos,
    .contato {
        padding: 72px 0;
    }

    .sobre-card,
    .contato-box {
        padding: 28px;
    }
}