@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;700;800&family=Space+Grotesk:wght@500;700&display=swap");

:root {
    --bg: #06090f;
    --bg-soft: #0e1420;
    --card: rgba(19, 27, 39, 0.85);
    --stroke: rgba(255, 255, 255, 0.12);
    --text: #f4f6fb;
    --text-soft: #b9c3d8;
    --primary: #16d6a1;
    --primary-soft: #7df8d6;
    --danger: #ff7a7a;
    --radius: 18px;
    --shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    background:
        radial-gradient(circle at 15% 15%, rgba(22, 214, 161, 0.16), transparent 40%),
        radial-gradient(circle at 85% 5%, rgba(111, 149, 255, 0.22), transparent 34%),
        var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    animation: page-in 500ms ease;
}

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

img {
    max-width: 100%;
    display: block;
}

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

.site-main {
    padding-top: 108px;
}

.ambient-glow {
    position: fixed;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(74px);
    pointer-events: none;
    z-index: -1;
}

.ambient-glow-a {
    top: -40px;
    left: -110px;
    background: rgba(55, 255, 212, 0.2);
}

.ambient-glow-b {
    right: -70px;
    bottom: 60px;
    background: rgba(118, 158, 255, 0.18);
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    border-bottom: 1px solid transparent;
    transition: 240ms ease;
}

.site-header.is-scrolled {
    backdrop-filter: blur(14px);
    background: rgba(8, 12, 20, 0.84);
    border-color: var(--stroke);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand-mark {
    width: 22px;
    height: 22px;
    border-radius: 7px;
    background: linear-gradient(135deg, var(--primary), #2d8eff);
    box-shadow: 0 0 20px rgba(22, 214, 161, 0.45);
}

.brand-text {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.08rem;
    letter-spacing: 0.02em;
}

.brand-text strong {
    color: var(--primary-soft);
}

.site-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 14px;
}

.site-nav a {
    color: var(--text-soft);
    font-size: 0.94rem;
    font-weight: 600;
    transition: 200ms ease;
    padding: 8px 10px;
    border-radius: 10px;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.07);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(140deg, var(--primary), #0fb8ff);
    border: 0;
    border-radius: 12px;
    color: #041015;
    font-weight: 800;
    padding: 11px 18px;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease;
    box-shadow: 0 12px 22px rgba(10, 180, 140, 0.25);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 26px rgba(14, 193, 151, 0.33);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--stroke);
    box-shadow: none;
}

.btn-sm {
    padding: 10px 14px;
    font-size: 0.88rem;
}

.menu-toggle {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 1px solid var(--stroke);
    border-radius: 10px;
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle-line {
    width: 18px;
    height: 2px;
    border-radius: 4px;
    background: var(--text);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
}

.flash-area {
    margin-top: 14px;
    min-height: 8px;
}

.flash {
    border-radius: 12px;
    border: 1px solid;
    padding: 11px 14px;
    font-weight: 600;
}

.flash-success {
    border-color: rgba(93, 240, 181, 0.5);
    background: rgba(43, 122, 94, 0.28);
}

.flash-error {
    border-color: rgba(255, 122, 122, 0.4);
    background: rgba(132, 45, 45, 0.35);
}

.flash-info {
    border-color: rgba(145, 190, 255, 0.45);
    background: rgba(70, 98, 152, 0.32);
}

.section {
    padding: 70px 0;
}

.section-alt {
    background: linear-gradient(180deg, rgba(17, 25, 38, 0.4), rgba(4, 10, 19, 0.74));
    border-top: 1px solid var(--stroke);
    border-bottom: 1px solid var(--stroke);
}

.kicker {
    color: var(--primary-soft);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.74rem;
    font-weight: 700;
    margin-bottom: 6px;
}

h1,
h2,
h3 {
    font-family: "Space Grotesk", sans-serif;
    margin-top: 0;
    line-height: 1.24;
}

.hero {
    padding: 72px 0 26px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-copy h1 {
    font-size: clamp(2rem, 4vw, 3.1rem);
    margin-bottom: 12px;
}

.hero-copy p {
    color: var(--text-soft);
    margin-top: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 25px 0;
}

.hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.hero-metrics li {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--stroke);
    border-radius: 999px;
    padding: 8px 12px;
    color: var(--text-soft);
    font-size: 0.9rem;
}

.hero-metrics strong {
    color: var(--text);
}

.portrait-card {
    width: min(420px, 100%);
    margin-left: auto;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
    background: linear-gradient(160deg, rgba(40, 59, 78, 0.65), rgba(13, 23, 35, 0.85));
}

.section-head {
    margin-bottom: 24px;
    max-width: 720px;
}

.section-head h1,
.section-head h2 {
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    margin-bottom: 8px;
}

.section-head p {
    color: var(--text-soft);
    margin-top: 0;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.project-card {
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--card);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.25);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 42px rgba(0, 0, 0, 0.35);
}

.project-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.project-content {
    padding: 16px;
}

.project-content h2,
.project-content h3 {
    margin-bottom: 8px;
}

.project-content p {
    color: var(--text-soft);
}

.project-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.text-link {
    color: var(--primary-soft);
    font-weight: 700;
}

.text-link:hover {
    text-decoration: underline;
}

.process-list {
    margin: 0;
    padding-left: 1.1rem;
    display: grid;
    gap: 10px;
    color: var(--text-soft);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    padding: 22px;
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    background: var(--card);
}

.service-card ul {
    padding-left: 1rem;
    color: var(--text-soft);
}

.price {
    font-weight: 800;
    color: var(--primary-soft);
}

.about-page p {
    color: var(--text-soft);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
}

.about-card {
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    background: var(--card);
    padding: 20px;
}

.about-card ul {
    margin: 0;
    padding-left: 1rem;
    color: var(--text-soft);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 22px;
}

.contact-form,
.contact-card {
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    background: var(--card);
    padding: 22px;
}

.contact-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-bottom: 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font: inherit;
    padding: 11px 13px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid rgba(23, 214, 162, 0.5);
    border-color: transparent;
}

.honey-trap {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    pointer-events: none;
}

.contact-card ul {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--text-soft);
}

.contact-card--direct {
    background:
        linear-gradient(165deg, rgba(6, 11, 19, 0.3), rgba(6, 11, 19, 0.36)),
        url("/imagens/img-fundo03.png") center/cover no-repeat;
}

.project-detail-header h1 {
    margin-bottom: 8px;
}

.project-detail-image {
    border-radius: 16px;
    margin: 18px 0 26px;
    border: 1px solid var(--stroke);
    width: 100%;
    max-height: 480px;
    object-fit: cover;
}

.project-detail-grid {
    display: grid;
    grid-template-columns: 1fr 0.36fr;
    gap: 24px;
}

.project-detail-grid p {
    color: var(--text-soft);
}

.project-detail-meta {
    border: 1px solid var(--stroke);
    background: var(--card);
    border-radius: var(--radius);
    padding: 16px;
    display: grid;
    gap: 12px;
    align-content: start;
}

.not-found {
    text-align: center;
    padding-top: 110px;
}

.empty-state {
    color: var(--text-soft);
    border: 1px dashed var(--stroke);
    border-radius: var(--radius);
    padding: 16px;
}

.site-footer {
    margin-top: 40px;
    border-top: 1px solid var(--stroke);
    background: rgba(8, 12, 18, 0.8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    padding: 36px 0 22px;
}

.footer-brand {
    margin-bottom: 8px;
}

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.footer-links a {
    color: var(--text-soft);
}

.footer-links a:hover {
    color: var(--text);
}

.footer-bottom {
    border-top: 1px solid var(--stroke);
    padding: 14px 0 22px;
    color: var(--text-soft);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes page-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 960px) {
    .hero-grid,
    .about-grid,
    .contact-grid,
    .project-detail-grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .hide-mobile {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 12px);
        right: 4%;
        width: min(300px, 92%);
        display: none;
        flex-direction: column;
        gap: 4px;
        align-items: stretch;
        border-radius: 14px;
        border: 1px solid var(--stroke);
        padding: 10px;
        background: rgba(9, 14, 24, 0.96);
        box-shadow: var(--shadow);
    }

    .site-header.menu-open .site-nav {
        display: flex;
    }

    .site-nav a {
        display: block;
        width: 100%;
    }

    .hero {
        padding-top: 42px;
    }

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

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