@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@300;400;500;600;700&family=Tenor+Sans&display=swap');


/* =========================================================
   VARIÁVEIS DO SITE
   ========================================================= */

:root {
    --slate: #2C3E50;
    --deep: #1B2A36;
    --plaster: #F4F4F4;
    --white: #fff;
    --gold: #D4AF37;
    --ink: #17232d;
    --muted: #667580;
    --line: rgba(44, 62, 80, .14);
    --max: 1240px;
}


/* =========================================================
   RESET DO SITE
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    background: var(--plaster);

    color: var(--ink);

    font-family:
        "Inter Tight",
        Arial,
        sans-serif;

    line-height: 1.45;
}

a {
    text-decoration: none;

    color: inherit;
}

img {
    max-width: 100%;

    display: block;
}


/* =========================================================
   CABEÇALHO DO SITE PÚBLICO
   ========================================================= */

.site-header {
    height: 82px;

    background: #fff;

    display: flex;

    align-items: center;

    padding:
        0
        max(20px, calc((100% - var(--max)) / 2));

    gap: 30px;

    position: sticky;

    top: 0;

    z-index: 20;

    border-bottom: 1px solid var(--line);
}

.brand {
    display: flex;

    align-items: center;

    justify-content: center;

    flex: 0 0 auto;

    width: 105px;

    height: 72px;
}

.brand img {
    width: 100%;

    height: auto;

    max-height: 70px;

    object-fit: contain;
}

.nav {
    display: flex;

    gap: 24px;

    margin-left: auto;
}

.nav a {
    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: .08em;
}

.nav a:hover {
    color: var(--gold);
}


/* =========================================================
   BOTÕES DO SITE PÚBLICO
   ========================================================= */

.btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 46px;

    padding: 12px 20px;

    border-radius: 2px;

    font-weight: 600;

    letter-spacing: .04em;

    text-transform: uppercase;

    font-size: 11px;
}

.btn-gold {
    background: var(--gold);

    color: var(--ink);
}

.btn-outline {
    border: 1px solid rgba(255,255,255,.65);

    color: #fff;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    max-width: var(--max);

    margin: auto;

    min-height: 650px;

    display: grid;

    grid-template-columns: .86fr 1.14fr;

    background: var(--slate);

    color: #fff;
}

.hero-copy {
    padding: 88px 58px;
}

.eyebrow {
    font-size: 10px;

    letter-spacing: .2em;

    font-weight: 600;

    color: var(--gold);

    margin: 0 0 16px;
}

.hero h1 {
    font-family:
        "Tenor Sans",
        serif;

    font-weight: 400;

    font-size: clamp(42px, 5vw, 68px);

    line-height: 1.02;

    margin: 0 0 24px;
}

.hero h1 em {
    font-style: normal;

    color: var(--gold);
}

.hero-text {
    font-size: 17px;

    max-width: 460px;

    color: #e8edf0;
}

.hero-actions {
    display: flex;

    gap: 10px;

    margin: 30px 0;
}

.hero-visual {
    min-height: 650px;

    display: grid;

    place-items: center;

    background:
        linear-gradient(
            135deg,
            #344c60,
            #1e2d39
        );

    padding: 40px;
}

.visual-placeholder {
    width: 82%;

    height: 72%;

    border: 1px solid rgba(255,255,255,.3);

    display: grid;

    place-items: center;

    text-align: center;

    color: #dbe2e7;

    font-family:
        "Tenor Sans";

    font-size: 26px;
}

.visual-placeholder small {
    font:
        12px
        "Inter Tight";

    padding: 0 24px;
}


/* =========================================================
   FAIXA DE VALORES
   ========================================================= */

.value-strip {
    max-width: var(--max);

    margin: -1px auto 0;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    background: #fff;

    box-shadow:
        0 15px 35px rgba(0,0,0,.07);

    position: relative;
}

.value-strip article {
    padding: 24px 25px;

    border-right: 1px solid var(--line);
}

.value-strip strong,
.value-strip span {
    display: block;
}

.value-strip span {
    font-size: 12px;

    color: var(--muted);

    margin-top: 4px;
}


/* =========================================================
   SEÇÕES
   ========================================================= */

.section {
    max-width: var(--max);

    margin: auto;

    padding: 105px 54px;
}

.section-heading {
    max-width: 700px;

    margin-bottom: 45px;
}

.section h2,
.cta-section h2 {
    font-family:
        "Tenor Sans",
        serif;

    font-weight: 400;

    font-size:
        clamp(
            36px,
            4.5vw,
            58px
        );

    line-height: 1.06;

    margin: 0 0 16px;
}

.section-heading > p:not(.eyebrow) {
    color: #60707c;

    font-size: 16px;
}


/* =========================================================
   SERVIÇOS DO SITE
   ========================================================= */

.service-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 1px;

    background: var(--line);

    border: 1px solid var(--line);
}

.service-grid article {
    background: #fff;

    padding: 32px;

    min-height: 205px;
}

.service-grid span {
    color: var(--gold);

    font-size: 12px;
}

.service-grid h3 {
    font-family:
        "Tenor Sans";

    font-size: 25px;

    font-weight: 400;

    margin: 20px 0 8px;
}

.service-grid p {
    color: #66737c;

    margin: 0;

    font-size: 14px;
}


/* =========================================================
   SEÇÃO ESCURA
   ========================================================= */

.section-dark {
    max-width: none;

    background: var(--slate);

    color: #fff;

    padding-left:
        max(
            54px,
            calc(
                (100% - var(--max)) / 2 + 54px
            )
        );

    padding-right:
        max(
            54px,
            calc(
                (100% - var(--max)) / 2 + 54px
            )
        );
}

.section-dark
.section-heading > p:not(.eyebrow) {
    color: #d2dce2;
}


/* =========================================================
   FILTROS
   ========================================================= */

.filters {
    display: flex;

    gap: 8px;

    flex-wrap: wrap;
}

.filter {
    border:
        1px solid
        rgba(255,255,255,.3);

    background: transparent;

    color: #fff;

    padding: 9px 14px;

    cursor: pointer;

    font:
        12px
        "Inter Tight";

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease;
}

.filter.active,
.filter:hover {
    background: var(--gold);

    color: var(--ink);

    border-color: var(--gold);
}


/* =========================================================
   PORTFÓLIO
   ========================================================= */

.project-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 28px;

    align-items: start;
}


/* =========================================================
   CARD DO PROJETO
   ========================================================= */

.project-card {
    background: #fff;

    color: var(--ink);

    padding-bottom: 28px;

    overflow: hidden;

    min-width: 0;

    box-shadow:
        0 8px 24px rgba(0,0,0,.08);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.project-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 14px 32px rgba(0,0,0,.13);
}


/* =========================================================
   IMAGEM DO PROJETO
   ========================================================= */

.project-image {
    width: 100%;

    height: 270px;

    object-fit: cover;

    background:
        linear-gradient(
            135deg,
            #52697a,
            #d6d8d5
        );

    display: grid;

    place-items: center;

    color: #fff;

    font-family:
        "Tenor Sans";

    font-size: 20px;
}


/* =========================================================
   CONTEÚDO DO CARD
   ========================================================= */

.project-card h3 {
    font-family:
        "Tenor Sans",
        serif;

    font-weight: 400;

    font-size: 25px;

    line-height: 1.2;

    margin:
        18px 24px 8px;
}

.project-card p {
    font-size: 14px;

    line-height: 1.6;

    color: #66737c;

    margin:
        0 24px;

    max-width: none;
}


/* =========================================================
   CATEGORIA DO PROJETO
   ========================================================= */

.project-card > span {
    display: block;

    margin:
        16px 24px 0;

    color: var(--gold);

    font-size: 11px;

    line-height: 1.4;

    font-weight: 500;

    letter-spacing: .08em;

    text-transform: uppercase;
}


/* =========================================================
   CONTADOR DE FOTOS
   ========================================================= */

.project-card > small {
    display: block;

    margin:
        14px 24px 0;

    color: #87939b;

    font-size: 12px;

    line-height: 1.4;
}


/* =========================================================
   ELEMENTOS DE META DO PORTFÓLIO
   ========================================================= */

.project-card .category,
.project-card .project-category,
.project-card .project-meta {
    display: block;

    margin:
        16px 24px 0;

    font-size: 11px;

    line-height: 1.4;

    letter-spacing: .08em;

    text-transform: uppercase;

    color: var(--gold);
}

.project-card .photo-count,
.project-card .photos-count {
    display: block;

    margin:
        14px 24px 0;

    color: #87939b;

    font-size: 12px;

    line-height: 1.4;
}


/* =========================================================
   ÁREA DE CONTEÚDO CASO O CARD USE WRAPPER
   ========================================================= */

.project-card-content {
    padding:
        0 24px 2px;
}

.project-card-content h3 {
    margin-left: 0;

    margin-right: 0;
}

.project-card-content p {
    margin-left: 0;

    margin-right: 0;
}


/* =========================================================
   CTA
   ========================================================= */

.cta-section {
    background: #fff;

    text-align: center;

    padding: 100px 24px;
}


/* =========================================================
   RODAPÉ
   ========================================================= */

.footer {
    background: var(--deep);

    color: #e6ecef;

    padding:
        64px
        max(
            24px,
            calc(
                (100% - var(--max)) / 2
            )
        );

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr;

    gap: 38px;
}

.footer-logo {
    width: 120px;

    height: auto;

    max-height: 160px;

    object-fit: contain;
}

.footer p,
.footer a {
    color: #bac6ce;

    font-size: 13px;
}

.footer h4 {
    color: var(--gold);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: .14em;
}

.copyright {
    grid-column: 1 / -1;

    border-top:
        1px solid
        rgba(255,255,255,.15);

    padding-top: 20px;

    font-size: 11px;

    color: #91a0aa;
}


/* =========================================================
   PROTEÇÃO EXPLÍCITA DO ADMIN
   ========================================================= */

.admin-body {
    margin: 0;

    padding: 0;

    min-height: 100vh;

    background: #f5f6f7;

    color: #18232d;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    line-height: 1.45;
}

.admin-body img {
    max-width: none;
}

.admin-body a {
    text-decoration: none;
}

.admin-body .site-header {
    position: static;
}

.admin-body .brand {
    position: static;
}

.admin-body .nav {
    position: static;
}

.admin-body .hero {
    position: static;
}

.admin-body .btn {
    text-transform: uppercase;
}


/* =========================================================
   RESPONSIVIDADE — TABLET / NOTEBOOK
   ========================================================= */

@media (max-width: 1100px) {

    .project-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 22px;
    }

    .project-image {
        height: 245px;
    }

}


/* =========================================================
   RESPONSIVIDADE — TABLET
   ========================================================= */

@media (max-width: 900px) {

    .site-header {
        height: 76px;

        padding: 0 18px;
    }

    .brand {
        width: 92px;

        height: 64px;
    }

    .brand img {
        max-height: 60px;
    }

    .nav {
        display: none;
    }

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

    .hero-copy {
        padding: 68px 28px;
    }

    .hero-visual {
        min-height: 390px;
    }

    .value-strip {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .service-grid {
        grid-template-columns:
            1fr 1fr;
    }

    .project-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 22px;
    }

    .project-image {
        height: 250px;
    }

    .project-card h3 {
        font-size: 23px;
    }

    .footer {
        grid-template-columns:
            1fr 1fr;
    }

}


/* =========================================================
   RESPONSIVIDADE — CELULAR
   ========================================================= */

@media (max-width: 600px) {

    .site-header {
        height: 68px;

        padding: 0 16px;
    }

    .brand {
        width: 82px;

        height: 58px;
    }

    .brand img {
        max-height: 54px;
    }

    .hero-copy,
    .section {
        padding:
            48px
            20px
            42px;
    }

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

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-visual {
        min-height: 300px;

        padding: 22px;
    }

    .visual-placeholder {
        height: 250px;

        font-size: 18px;
    }

    .value-strip {
        grid-template-columns:
            1fr 1fr;
    }

    .value-strip article {
        padding: 16px 13px;
    }

    .service-grid,
    .project-grid {
        grid-template-columns: 1fr;
    }

    .service-grid article {
        min-height: 0;

        padding: 22px 16px;
    }

    .project-grid {
        gap: 24px;
    }

    .project-image {
        height: 250px;
    }

    .project-card {
        padding-bottom: 28px;
    }

    .project-card h3 {
        font-size: 25px;

        line-height: 1.2;

        margin:
            18px 24px 9px;
    }

    .project-card p {
        font-size: 14px;

        line-height: 1.6;

        margin:
            0 24px;
    }

    .project-card > span {
        margin:
            16px 24px 0;
    }

    .project-card > small {
        margin:
            14px 24px 0;
    }

    .footer {
        grid-template-columns: 1fr;

        padding: 44px 20px;
    }

    .copyright {
        grid-column: auto;
    }

}