:root {
    --petro: #0F2D3D;
    --petro-2: #14374A;
    --terra: #C4704B;
    --terra-dark: #A85A3A;
    --cream: #F5F0EB;
    --cream-2: #EDE4DA;
    --white: #FFFFFF;
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #1a1a1a;
    background: var(--cream);
    overflow-x: hidden;
    line-height: 1.6;
}

/* TIPOGRAFIA */
h1,
h2,
h3,
.serif {
    font-family: 'Fraunces', serif;
    font-weight: 600;
}

.subtitle,
.section-tag,
nav a,
.btn-primary,
.btn-outline,
.btn-whatsapp,
.cliente-tipo,
.logo-sub,
.footer-copy,
.btn-nav {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.highlight,
.hero-sub strong,
.info-item span,
.servico h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.body-text,
p,
.sobre-text,
.servico p,
.hero-sub,
.footer-copy {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.script {
    font-family: 'Great Vibes', cursive
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 22px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background .4s ease, padding .4s ease, box-shadow .4s ease;
}

header.scrolled {
    background: rgba(15, 45, 61, .95);
    backdrop-filter: blur(10px);
    padding: 14px 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cream);
    text-decoration: none;
}

.logo-icon {
    width: 34px;
    height: 34px
}

.logo-text {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--cream);
    letter-spacing: .5px;
    img {
        width: 60px;
        height: auto;
    }
}

.logo-sub {
    font-size: 9px;
    letter-spacing: 3px;
    color: rgba(245, 240, 235, .6);
    display: block;
    margin-top: -15px;
    text-transform: uppercase;
    font-weight: 500;
}

nav {
    display: flex;
    gap: 36px;
    align-items: center
}

nav a {
    color: var(--cream);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    transition: color .3s;
    font-weight: 500;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--terra);
    transition: width .3s ease;
}

nav a:hover {
    color: var(--terra)
}

nav a:hover::after {
    width: 100%
}

.btn-nav {
    border: 1px solid var(--terra);
    padding: 10px 22px;
    border-radius: 2px;
    color: var(--terra) !important;
    transition: all .3s;
}

.btn-nav:hover {
    background: var(--terra);
    color: var(--cream) !important
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 24px;
    cursor: pointer
}

/* HERO */
.hero {
    min-height: 100vh;
    background: var(--petro);
    position: relative;
    display: flex;
    align-items: center;
    padding: 140px 60px 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 40%, rgba(196, 112, 75, .08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-tag {
    color: var(--terra);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.hero-tag::before {
    content: '✦';
    font-size: 10px;
}

.hero h1 {
    color: var(--cream);
    font-size: clamp(48px, 6vw, 88px);
    line-height: 1.05;
    margin-bottom: 30px;
    font-weight: 600;
}

.hero h1 em {
    color: var(--terra);
    font-style: italic;
}

.hero-sub {
    color: rgba(245, 240, 235, .8);
    font-size: 18px;
    max-width: 420px;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-sub strong {
    color: var(--terra);
    font-weight: 600
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--terra);
    color: var(--cream);
    padding: 18px 36px;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all .3s ease;
    border-radius: 2px;
}

.btn-primary:hover {
    background: var(--terra-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(196, 112, 75, .3);
}

.btn-primary .plus {
    font-size: 18px
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.moon {
    width: 100%;
    max-width: 480px;
    filter: drop-shadow(0 0 60px rgba(196, 112, 75, .25));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

.star {
    position: absolute;
    color: var(--terra);
    animation: twinkle 3s ease-in-out infinite;
}

.star-1 {
    top: 15%;
    right: 10%;
    animation-delay: 0s
}

.star-2 {
    top: 40%;
    right: 5%;
    animation-delay: 1.5s
}

.star-3 {
    bottom: 20%;
    right: 20%;
    animation-delay: .7s
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(.8)
    }
}

/* SOBRE */
.sobre {
    background: var(--cream);
    padding: 140px 60px;
    position: relative;
}

.sobre-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.section-tag {
    color: var(--terra);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.sobre h2 {
    font-size: clamp(40px, 5vw, 64px);
    color: var(--petro);
    line-height: 1.1;
    margin-bottom: 40px;
    font-weight: 600;
}

.sobre h2 em {
    color: var(--terra);
    font-style: italic
}

.sobre-text {
    color: #3a3a3a;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 400;
}

.sobre-text:last-of-type {
    margin-bottom: 0
}

.divider {
    width: 50px;
    height: 1px;
    background: var(--terra);
    margin: 30px 0;
}

.sobre-visual {
    display: flex;
    justify-content: center;
}

.sobre-illustration {
    width: 100%;
    max-width: 420px;
}

/* SERVIÇOS */
.servicos {
    background: var(--petro);
    padding: 140px 60px;
    position: relative;
}

.servicos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196, 112, 75, .3), transparent);
}

.servicos-inner {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.servicos .section-tag {
    justify-content: center
}

.servicos h2 {
    color: var(--cream);
    font-size: clamp(40px, 5vw, 64px);
    margin-bottom: 80px;
    font-weight: 600;
}

.servicos h2 em {
    color: var(--terra);
    font-style: italic
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.servico {
    padding: 40px 20px;
    border-left: 1px solid rgba(196, 112, 75, .2);
    transition: all .4s ease;
}

.servico:first-child {
    border-left: none
}

.servico:hover {
    border-left-color: var(--terra);
    transform: translateY(-4px);
}

.servico-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    color: var(--terra);
}

.servico h3 {
    color: var(--cream);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.servico p {
    color: rgba(245, 240, 235, .7);
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--terra);
    color: var(--terra);
    padding: 16px 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s;
    border-radius: 2px;
    background: transparent;
    cursor: pointer;
    font-weight: 500;
}

.btn-outline:hover {
    background: var(--terra);
    color: var(--cream);
}

/* PORTFÓLIO + CONTATO */
.portfolio-contato {
    background: var(--cream);
    padding: 140px 60px 0;
}

.portfolio-inner {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 120px;
}

.portfolio .section-tag {
    justify-content: center
}

.portfolio h2 {
    color: var(--petro);
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 80px;
    font-weight: 600;
}

.portfolio h2 em {
    color: var(--terra);
    font-style: italic
}

.clientes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
}

.cliente {
    padding: 40px;
    border: 1px solid rgba(15, 45, 61, .1);
    transition: all .4s ease;
}

.cliente:hover {
    border-color: var(--terra);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(15, 45, 61, .08);
}

.cliente-nome {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(40px, 5vw, 64px);
    color: var(--petro);
    line-height: 1;
    margin-bottom: 8px;
}

.cliente-tipo {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--terra);
    font-weight: 500;
}

.cliente-tipo::before,
.cliente-tipo::after {
    content: '—';
    margin: 0 10px;
    color: rgba(196, 112, 75, .5);
}

/* CONTATO */
.contato {
    background: var(--petro);
    padding: 100px 60px 60px;
    position: relative;
    overflow: hidden;
}

.contato::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196, 112, 75, .3), transparent);
}

.contato-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contato h2 {
    color: var(--cream);
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.15;
    font-weight: 600;
    margin-bottom: 40px;
}

.contato h2 em {
    color: var(--terra);
    font-style: italic
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--terra);
    color: var(--cream);
    padding: 16px 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s;
    border-radius: 2px;
    font-weight: 500;
}

.btn-whatsapp:hover {
    background: var(--terra);
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--cream);
    text-decoration: none;
    transition: color .3s;
}

.info-item:hover {
    color: var(--terra)
}

.info-icon {
    width: 20px;
    height: 20px;
    color: var(--terra);
    flex-shrink: 0;
}

.info-item span {
    font-size: 14px;
    letter-spacing: .5px;
    font-weight: 600
}

.contato-lua {
    position: absolute;
    right: -60px;
    bottom: -40px;
    width: 320px;
    opacity: .15;
    pointer-events: none;
}

/* FOOTER */
footer {
    background: var(--petro);
    border-top: 1px solid rgba(196, 112, 75, .15);
    padding: 30px 60px;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copy {
    color: rgba(245, 240, 235, .5);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.footer-star {
    color: var(--terra);
    font-size: 20px
}

/* RESPONSIVO */
@media(max-width:960px) {
    header {
        padding: 18px 24px
    }

    header.scrolled {
        padding: 14px 24px
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--petro);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: right .4s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, .3);
    }

    nav.open {
        right: 0
    }

    .menu-toggle {
        display: block;
        z-index: 101
    }

    .hero,
    .sobre,
    .servicos,
    .portfolio-contato,
    .contato {
        padding-left: 24px;
        padding-right: 24px
    }

    .hero {
        padding-top: 120px
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .hero-visual {
        height: 320px
    }

    .sobre-inner {
        grid-template-columns: 1fr;
        gap: 60px
    }

    .sobre {
        padding: 80px 24px
    }

    .servicos-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px
    }

    .servico {
        border-left: none;
        border-top: 1px solid rgba(196, 112, 75, .2);
        padding-top: 30px
    }

    .servico:first-child {
        border-top: none
    }

    .clientes {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .contato-inner {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .contato-lua {
        display: none
    }

    footer {
        padding: 30px 24px
    }
}

@media(max-width:560px) {
    .servicos-grid {
        grid-template-columns: 1fr
    }

    .hero h1 {
        font-size: 42px
    }
}