:root {
    --bg: #05070a;
    --panel: #0b1017;
    --panel-soft: #101822;
    --text: #f7fbff;
    --muted: #aeb8c5;
    --blue: #00b7ff;
    --blue-2: #55d7ff;
    --line: rgba(255, 255, 255, 0.13);
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--bg);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

a {
    color: inherit;
}

.topbar {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 0 max(22px, calc((100vw - var(--max)) / 2));
    background: rgba(0, 0, 0, 0.76);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
}

.brand img {
    width: 156px;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
}

.main-nav a,
.header-cta {
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
}

.main-nav a {
    color: #d7dde5;
}

.main-nav a:hover {
    color: var(--blue-2);
}

.header-cta {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 7px;
    color: #021018;
    background: var(--blue);
}

.hero {
    position: relative;
    min-height: 720px;
    display: grid;
    align-items: center;
    overflow: hidden;
    padding: 120px max(22px, calc((100vw - var(--max)) / 2)) 78px;
    background:
        radial-gradient(circle at 78% 32%, rgba(0, 183, 255, 0.25), transparent 28rem),
        linear-gradient(115deg, #05070a 0%, #071018 50%, #020406 100%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 180px;
    background: linear-gradient(180deg, transparent, #05070a);
}

.hero__image {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 7, 10, 0.98) 0%, rgba(5, 7, 10, 0.78) 39%, rgba(5, 7, 10, 0.2) 100%),
        linear-gradient(180deg, rgba(5, 7, 10, 0.08), rgba(5, 7, 10, 0.8)),
        url("/wp-content/uploads/2025/08/Alcance-O-melhor-de-voce-1920-x-1080-px-3.png") center right / cover no-repeat;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 690px;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 22px;
    font-size: clamp(3.1rem, 7vw, 5.9rem);
    line-height: 0.95;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1 span,
.section-title span,
.mini-title {
    color: var(--blue-2);
}

.hero p {
    max-width: 620px;
    color: #d4dce6;
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    line-height: 1.6;
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero__badges span {
    padding: 11px 14px;
    border: 1px solid rgba(0, 183, 255, 0.35);
    border-radius: 7px;
    background: rgba(0, 183, 255, 0.08);
    color: #eaf7ff;
    font-size: 0.9rem;
    font-weight: 700;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 7px;
    border: 1px solid var(--line);
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
}

.btn--primary {
    color: #031019;
    background: var(--blue);
    border-color: var(--blue);
    box-shadow: 0 18px 45px rgba(0, 183, 255, 0.24);
}

.btn--outline {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    max-width: 650px;
    margin-top: 42px;
}

.stats strong {
    display: block;
    color: var(--blue);
    font-size: 2.3rem;
    line-height: 1;
}

.stats span {
    display: block;
    margin-top: 8px;
    color: #dbe3ec;
    font-size: 0.88rem;
    font-weight: 700;
}

.section {
    max-width: var(--max);
    margin: 0 auto;
    padding: 96px 22px;
}

.section-title {
    max-width: 820px;
    margin: 0 auto 44px;
    text-align: center;
}

.section-title span,
.mini-title {
    display: block;
    margin-bottom: 12px;
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h2 {
    margin-bottom: 14px;
    font-size: clamp(2.2rem, 4.8vw, 4.1rem);
    line-height: 1.02;
    letter-spacing: 0;
}

.section-title p,
.film__content p,
.feature-card p,
.custom-box p,
.location p {
    color: var(--muted);
    line-height: 1.65;
}

.services {
    max-width: 1240px;
}

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

.service-card {
    overflow: hidden;
    border: 1px solid rgba(0, 183, 255, 0.4);
    border-radius: 8px;
    background: #071018;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
}

.service-card img {
    width: 100%;
    height: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.custom-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
    margin: 34px auto 0;
    padding: 28px;
    border: 1px solid rgba(0, 183, 255, 0.34);
    border-radius: 8px;
    background: linear-gradient(120deg, rgba(0, 183, 255, 0.13), rgba(255, 255, 255, 0.04));
}

.custom-box h3 {
    margin-bottom: 6px;
    font-size: 1.45rem;
}

.custom-box p {
    margin-bottom: 0;
}

.film {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 42px;
    align-items: center;
    max-width: 1240px;
}

.film__media img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

.film-types {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.film-types article {
    min-height: 188px;
    padding: 20px;
    border: 1px solid rgba(0, 183, 255, 0.28);
    border-radius: 8px;
    background: var(--panel-soft);
}

.film-types h3 {
    margin-bottom: 10px;
    color: var(--blue-2);
    font-size: 1.05rem;
}

.film-types p {
    margin-bottom: 0;
    color: var(--muted);
    line-height: 1.55;
}

.why {
    max-width: 1240px;
    background:
        linear-gradient(rgba(5, 7, 10, 0.93), rgba(5, 7, 10, 0.96)),
        url("/wp-content/uploads/2025/08/Design-sem-nome-3.png") center / cover;
}

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

.feature-card {
    min-height: 230px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.54);
}

.feature-card span {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 50%;
    color: #031019;
    background: var(--blue);
    font-weight: 900;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.feature-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.proof {
    max-width: 620px;
    margin: 34px auto 0;
    padding: 18px 22px;
    border: 1px solid rgba(0, 183, 255, 0.35);
    border-radius: 8px;
    background: rgba(0, 183, 255, 0.11);
    color: #dff8ff;
    font-weight: 800;
    text-align: center;
}

.gallery-section {
    max-width: 1240px;
}

.gallery-layout {
    display: grid;
    grid-template-columns: 1.45fr 0.8fr;
    gap: 18px;
}

.gallery-main,
.gallery-thumbs img,
.work-grid img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.gallery-main {
    height: 520px;
}

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

.gallery-thumbs img {
    height: 251px;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.work-grid img {
    height: 230px;
}

.location {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 36px;
    align-items: center;
    max-width: 1240px;
}

.location__content p {
    max-width: 470px;
    margin-bottom: 26px;
}

.map-card {
    overflow: hidden;
    min-height: 400px;
    border: 1px solid rgba(0, 183, 255, 0.3);
    border-radius: 8px;
    background: var(--panel-soft);
}

.map-card iframe {
    width: 100%;
    height: 400px;
    display: block;
    border: 0;
    filter: grayscale(0.2) contrast(1.05);
}

.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: var(--max);
    margin: 0 auto;
    padding: 34px 22px 46px;
    color: var(--muted);
    border-top: 1px solid var(--line);
}

.footer img {
    width: 174px;
}

@media (max-width: 980px) {
    .topbar {
        height: auto;
        grid-template-columns: 1fr auto;
        padding: 14px 20px;
    }

    .main-nav {
        grid-column: 1 / -1;
        justify-content: flex-start;
        gap: 18px;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .hero {
        min-height: 660px;
        padding-top: 142px;
    }

    .hero__image {
        background:
            linear-gradient(90deg, rgba(5, 7, 10, 0.96), rgba(5, 7, 10, 0.68)),
            url("/wp-content/uploads/2025/08/Alcance-O-melhor-de-voce-1920-x-1080-px-3.png") center / cover no-repeat;
    }

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

    .film,
    .gallery-layout,
    .location {
        grid-template-columns: 1fr;
    }

    .film-types {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .brand img {
        width: 132px;
    }

    .header-cta {
        min-height: 38px;
        padding: 0 14px;
        font-size: 0.82rem;
    }

    .main-nav a {
        font-size: 0.84rem;
        white-space: nowrap;
    }

    .hero {
        min-height: 700px;
        padding: 152px 18px 60px;
    }

    h1 {
        font-size: clamp(2.55rem, 13vw, 4.3rem);
    }

    h2 {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .hero__badges,
    .hero__actions,
    .custom-box,
    .footer {
        align-items: stretch;
        flex-direction: column;
    }

    .stats,
    .service-grid,
    .feature-grid,
    .work-grid,
    .gallery-thumbs {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 72px 18px;
    }

    .custom-box {
        display: grid;
    }

    .gallery-main,
    .gallery-thumbs img,
    .work-grid img {
        height: 260px;
    }

    .map-card,
    .map-card iframe {
        min-height: 320px;
        height: 320px;
    }
}
