:root {
    --black: #000000;
    --brown: #211e18;
    --gold: #A78443;
    --white: #FFFFFF;
    --cream: #fbfaf7;
    --line: rgba(207, 180, 130, .36);
    --team: url("../img/foto_socios.jpg");
}

* {
    box-sizing: border-box;
    font-family: "Open Sans", Sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Open Sans", Sans-serif;
    color: #1b1b1b;
    background: #fff;
    line-height: 1.55
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

.container {
    width: min(1140px, calc(100% - 48px));
    margin: 0 auto
}

svg {
    width: 35px;
    height: 35px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

.btn svg {
    width: 35px;
    height: 35px;
    fill: #fff;
    stroke: none;
}
.process-icon svg.whats {
    fill: var(--gold);
    stroke: none;
}

.btn .fill,
.process-icon .fill {
    fill: currentColor;
    stroke: none
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: var(--gold);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 4px;
    padding: 14px 27px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .18);
    transition: .22s ease
}

.btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.04)
}

.btn.dark {
    background: #211e18;
    color: #fff
}

.header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(0, 0, 0, .94);
    border-bottom: 1px solid rgba(207, 180, 130, .16)
}

.header .container {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px
}

.logo {
    width: 178px;
    align-self: stretch;
    display: flex;
    align-items: center;
    padding-right: 26px;
    border-right: 1px solid rgba(207, 180, 130, .2)
}

.logo img {
    width: 150px
}

.nav {
    display: flex;
    align-items: center;
    gap: 31px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    flex: 1;
    justify-content: center
}

.nav a {
    opacity: .92
}

.nav a:hover {
    color: var(--gold)
}

.header-cta {
    padding: 11px 19px;
    font-size: 14px;
    text-transform: uppercase;
}

.menu {
    display: none;
    color: #fff;
    background: none;
    border: 1px solid var(--line);
    border-radius: 4px;
    width: 42px;
    height: 42px
}

.hero {
    position: relative;
    background: #050505;
    color: #fff;
    overflow: hidden
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .95) 0%, rgba(0, 0, 0, .88) 34%, rgba(0, 0, 0, .58) 52%, rgba(0, 0, 0, .18) 72%, rgba(0, 0, 0, .06) 100%),
        url("../img/banner.jpeg") 78% 10%/cover no-repeat;
    opacity: 1
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 80px;
    background: linear-gradient(0deg, rgba(0, 0, 0, .8), transparent)
}

.hero .container {
    position: relative;
    z-index: 2;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 68px 0
}

.hero-copy {
    max-width: 640px
}

.kicker {
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 10px
}

.hero h1 {
    font-size: 38px;
    line-height: 1.05;
    margin: 0 0 20px;
    font-weight: 800;
    letter-spacing: -1px
}

.hero p {
    color: rgba(255, 255, 255, .84);
    font-size: 15.5px;
    max-width: 525px;
    margin: 0 0 24px
}

.hero-photo-card {
    display: none
}

.hero-photo-card::before {
    display: none
}

.hero-photo-card::after {
    display: none
}

.section {
    padding: 56px 0;
    scroll-margin-top: 77px;
}

main#inicio {
    scroll-margin-top: 77px;
}

.light {
    background: linear-gradient(180deg, #fff, #fbfaf7)
}

.dark {
    background: linear-gradient(135deg, #080808, #211e18);
    color: #fff
}

.problem-grid {
    display: grid;
    grid-template-columns: .73fr 1.27fr;
    gap: 36px;
    align-items: center
}

.left-title h2 {
    font-size: 30px;
    line-height: 1.12;
    margin: 0 0 20px
}

.left-title p {
    font-size: 14px;
    color: #5c5750;
    margin: 0 0 28px
}

.situations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.situation {
    min-height: 77px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 4px;
    padding: 15px 17px;
    display: flex;
    gap: 15px;
    align-items: center;
    box-shadow: 0 8px 18px rgba(33, 30, 24, .04)
}

.situation.wide {
    grid-column: 1/-1
}

.mini-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--gold);
    flex: 0 0 42px
}

.situation p {
    margin: 0;
    font-weight: 700;
    font-size: 13.6px;
    color: #2d2a25;
    line-height: 1.42
}

.meaning {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 40px;
    align-items: center
}

.legal-img {
    height: 100%;
    min-height: 242px;
    border-radius: 4px;
    border: 1px solid rgba(207, 180, 130, .3);
    background: url("../img/usucapiao.jpeg") center 42%/cover no-repeat;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .28);
    position: relative;
    overflow: hidden
}
/*
.legal-img::after {
    content: "ORN";
    position: absolute;
    right: 30px;
    bottom: 18px;
    font-size: 54px;
    font-weight: 800;
    color: rgba(207, 180, 130, .22);
    letter-spacing: 3px
}
*/
.meaning h2,
.benefits h2 {
    color: var(--gold);
    font-size: 28px;
    margin: 0 0 18px
}

.meaning p {
    color: rgba(255, 255, 255, .8);
    font-size: 14px;
    margin: 0 0 21px
}

.center-title {
    text-align: center;
    margin: 0 auto 36px;
    max-width: 800px
}

.center-title h2 {
    font-size: 28px;
    margin: 0 0 8px;
    color: #111
}

.center-title .line,
.faq .line {
    display: block;
    width: 46px;
    height: 2px;
    background: var(--gold);
    margin: 13px auto 0
}

.steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px
}

.step {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 3px;
    text-align: center;
    min-height: 184px;
    padding: 0 18px 20px;
    box-shadow: 0 10px 22px rgba(33, 30, 24, .04)
}

.num {
    width: 31px;
    height: 31px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--gold);
    color: #fff;
    font-weight: 700;
    margin: -15px auto 16px
}

.step .mini-icon {
    margin: 0 auto 9px
}

.step p {
    font-size: 14px;
    font-weight: 700;
    color: #2a2825;
    margin: 0;
    line-height: 1.38
}

.steps-cta {
    text-align: center;
    margin-top: 28px
}

.benefits {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 36px;
    align-items: center
}

.benefits p {
    color: rgba(255, 255, 255, .72);
    font-size: 14px
}

.check-panel {
    border: 1px solid rgba(207, 180, 130, .32);
    border-radius: 4px;
    padding: 24px 32px;
    background: rgba(0, 0, 0, .15)
}

.check {
    display: flex;
    gap: 14px;
    color: rgba(255, 255, 255, .88);
    font-size: 14px;
    margin: 12px 0
}

.check b {
    color: var(--gold);
    font-size: 20px;
    line-height: 1
}

.authority {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 48px;
    align-items: center
}

.authority h2 {
    font-size: 29px;
    line-height: 1.15;
    margin: 0 0 18px;
    color: #111
}

.authority p {
    font-size: 14px;
    color: #5a554f;
    margin-bottom: 27px
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px
}

.mini-card {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 3px;
    min-height: 88px;
    padding: 13px;
    display: flex;
    gap: 10px;
    align-items: center
}

.tiny-icon {
    width: 30px;
    height: 30px;
    color: var(--gold);
    display: grid;
    place-items: center;
    flex: 0 0 30px
}

.tiny-icon svg {
    width: 35px;
    height: 35px
}

.mini-card b {
    font-size: 14px;
    line-height: 1.25;
    color: #322d27
}

.authority-img {
    height: 100%;
    min-height: 350px;
    border-radius: 4px;
    background: linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .12)), var(--team) center/cover no-repeat;
    border: 1px solid rgba(207, 180, 130, .3);
    box-shadow: 0 18px 46px rgba(33, 30, 24, .18)
}

.process-title {
    text-align: center;
    margin-bottom: 36px
}

.process-title h2 {
    font-size: 30px;
    margin: 0;
    color: #fff
}

.process-title .line {
    display: block;
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: 13px auto 0
}

.process {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 6px
}

.process::before {
    content: "";
    position: absolute;
    left: 9%;
    right: 9%;
    top: 60px;
    border-top: 1px dashed rgba(207, 180, 130, .36)
}

.process-card {
    position: relative;
    z-index: 1;
    text-align: center
}

.process-n {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 12px;
    margin: 0 auto 12px
}

.process-icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--gold);
    border: 1px solid rgba(207, 180, 130, .27);
    background: #12100d;
    margin: 0 auto 15px
}

.process-icon svg {
    width: 32px;
    height: 32px
}

.process-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
    margin: 0;
    line-height: 1.35
}

.process-note {
    border: 1px solid rgba(207, 180, 130, .28);
    border-radius: 3px;
    margin: 34px auto 0;
    max-width: 800px;
    text-align: center;
    color: rgba(255, 255, 255, 1);
    padding: 13px
}

.faq {
    background: #fbfaf7
}

.faq h2 {
    text-align: center;
    font-size: 30px;
    margin: 0;
    color: #111
}

.faq-list {
    max-width: 950px;
    margin: 32px auto 0;
    display: grid;
    gap: 10px
}

.faq-item {
    border: 1px solid rgba(207, 180, 130, .33);
    background: #fff;
    border-radius: 4px;
    overflow: hidden
}

.faq-q {
    width: 100%;
    border: 0;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 17px 23px;
    font-weight: 700;
    font-size: 14px;
    color: #211e18;
    cursor: pointer
}

.faq-q span:last-child {
    font-size: 24px;
    color: #211e18;
    font-weight: 400
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: .25s ease
}

.faq-a p {
    margin: 0;
    padding: 0 23px 18px;
    color: #000;
    font-size: 14px
}

.faq-item.open .faq-a {
    max-height: 160px
}

.faq-item.open .faq-q span:last-child {
    transform: rotate(45deg)
}

.final {
    padding: 42px 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .93), rgba(33, 30, 24, .92)), var(--team) center/cover;
    color: #000
}

.final-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center
}

.final h2 {
    font-size: 31px;
    line-height: 1.12;
    margin: 0 0 12px
}

.final p {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin: 0;
    max-width: 690px
}

.footer {
    background: #100f0d;
    color: rgba(255, 255, 255, 1);
    border-top: 1px solid rgba(207, 180, 130, .17)
}

.footer .container {
    display: grid;
    grid-template-columns: .9fr 1fr 1.45fr;
    gap: 34px;
    padding: 28px 0
}

.footer-logo img {
    width: 170px
}

.footer h3 {
    font-size: 13px;
    color: var(--gold);
    text-transform: uppercase;
    margin: 0 0 12px
}

.footer p,
.footer li {
    font-size: 12.7px;
    margin: 0 0 6px;
    line-height: 1.45
}

.footer ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.privacy {
    text-align: center;
    color: var(--gold);
    font-size: 12px;
    border-top: 1px solid rgba(207, 180, 130, .13);
    padding: 11px 0
}

section.avaliacao,
section.final {
    position: relative;
}

section.avaliacao::before,
section.final::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(rgba(255,255,255,0.93), rgba(255,255,255,0.93)),
        url("https://www.ornadvocacia.com.br/wp-content/uploads/2024/05/bg-servicos-home-requena-advocacia.jpg");

    background-repeat: repeat;
    background-size: 297px auto;
}

section.avaliacao .container,
section.final .container {
    position: relative;
}

section.avaliacao .center-title p {
    font-size: 14px;
    font-weight: 700;
}

footer .left p {
    margin-bottom: 1rem;
}

footer p.legais {
    margin-top: 1.1rem;
}

@media(max-width:980px) {
    .header .container {
        height: auto;
        padding: 12px 0;
        flex-wrap: wrap
    }

    .nav {
        order: 3;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 0
    }

    .nav.show {
        display: flex;
        position: absolute;
        left: 0;
        top: 91px;
        background: rgba(0, 0, 0, .94);
        padding: 2rem 1.5rem;
        gap: 1rem;
    }

    .menu {
        display: grid;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .menu svg {
        fill: #fff;
    }

    .header-cta {
        display: none
    }

    .problem-grid,
    .meaning,
    .benefits,
    .authority,
    .final-grid {
        grid-template-columns: 1fr
    }

    .hero .container {
        padding: 40px 0
    }

    .hero h1 {
        font-size: 34px
    }

    .hero-photo-card {
        display: none
    }

    .steps {
        grid-template-columns: 1fr 1fr
    }

    .process {
        grid-template-columns: 1fr 1fr
    }

    .process::before {
        display: none
    }

    .footer .container {
        grid-template-columns: 1fr
    }
}

@media(max-width:640px) {
    .container {
        width: min(100% - 28px, 1140px)
    }

    .section {
        padding: 44px 0
    }

    .logo {
        border: 0;
        width: 145px;
        padding: 0
    }

    .logo img {
        width: 130px
    }

    .hero h1 {
        font-size: 29px
    }

    .hero-photo-card {
        display: none
    }

    .situations,
    .steps,
    .mini-grid,
    .process {
        grid-template-columns: 1fr
    }

    .btn {
        width: 100%
    }

    .final h2,
    .left-title h2,
    .center-title h2,
    .faq h2 {
        font-size: 25px
    }
}