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

:root {
    --bg: #061C24;
    --bg-deep: #020A0D;
    --panel: #0B3A44;
    --text: #F4F7F8;
    --muted: #8FAAB0;
    --accent: #00D4E6;
    --line: #0097A7;
    --white-soft: rgba(244, 247, 248, 0.08);
    --shadow: 0 24px 80px rgba(2, 10, 13, 0.42);
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    font-family: "DM Sans", Arial, sans-serif;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(2, 10, 13, 0.9), rgba(6, 28, 36, 0.78)),
        url("fundo.jpg") top right / cover no-repeat;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: url("fundo-itens.png");
    background-position: bottom center;
    background-size: cover;
    opacity: 0.06;
    pointer-events: none;
}

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

a {
    color: inherit;
}

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 14px clamp(20px, 5vw, 72px);
    background: rgba(2, 10, 13, 0.78);
    border-bottom: 1px solid rgba(0, 151, 167, 0.22);
    backdrop-filter: blur(16px);
}

.nav-logo img {
    width: auto;
    height: 52px;
}

.site-nav ul {
    display: flex;
    align-items: center;
    gap: clamp(16px, 3vw, 34px);
    list-style: none;
}

.site-nav a {
    text-decoration: none;
}

.site-nav li a {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 180ms ease, border-color 180ms ease;
}

.site-nav li a:hover {
    color: var(--text);
}

.nav-cta {
    color: var(--bg-deep) !important;
    padding: 10px 18px;
    background: var(--accent);
    border-radius: 4px;
}

.hero {
    position: relative;
    min-height: 92vh;
    padding: 132px clamp(20px, 5vw, 72px) 72px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 28, 36, 0.2), var(--bg)),
        url("img-back-1.png") bottom center / 100% auto no-repeat;
    opacity: 0.42;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
}

.hero-copy {
    max-width: 820px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 32px;
    height: 1px;
    background: var(--line);
}

h1, h2, h3 {
    font-family: "Bebas Neue", Impact, sans-serif;
    font-weight: 400;
    letter-spacing: 0;
}

h1 {
    max-width: 760px;
    font-size: clamp(4rem, 9vw, 8.8rem);
    line-height: 0.86;
}

h2 {
    font-size: clamp(2.8rem, 5.8vw, 5.8rem);
    line-height: 0.92;
}

h3 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1;
}

p {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.8;
}

.hero-copy p {
    max-width: 620px;
    margin-top: 26px;
    font-size: 1.13rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--bg-deep);
    background: var(--accent);
    border: 1px solid var(--accent);
}

.btn-secondary {
    color: var(--text);
    border: 1px solid rgba(0, 212, 230, 0.34);
    background: rgba(244, 247, 248, 0.03);
}

.intro-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(0, 151, 167, 0.24);
    border-bottom: 1px solid rgba(0, 151, 167, 0.24);
    background: rgba(2, 10, 13, 0.5);
}

.strip-item {
    min-height: 142px;
    padding: 34px clamp(20px, 4vw, 58px);
    border-right: 1px solid rgba(0, 151, 167, 0.22);
}

.strip-item:last-child {
    border-right: 0;
}

.strip-item strong {
    display: block;
    margin-bottom: 10px;
    color: var(--text);
    font-size: 1.1rem;
}

.strip-item span {
    color: var(--muted);
    line-height: 1.65;
}

.section {
    padding: clamp(80px, 10vw, 132px) clamp(20px, 5vw, 72px);
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
    gap: clamp(32px, 6vw, 88px);
    align-items: start;
    max-width: 1240px;
    margin: 0 auto;
}

.section-copy p {
    margin-top: 22px;
    max-width: 660px;
}

.inline-link {
    display: inline-flex;
    margin-top: 28px;
    color: var(--accent);
    font-weight: 800;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
}

.section-cta {
    margin-top: 30px;
}

.audit-panel {
    padding: clamp(28px, 4vw, 46px);
    background: linear-gradient(145deg, rgba(11, 58, 68, 0.96), rgba(2, 10, 13, 0.86));
    border: 1px solid rgba(0, 212, 230, 0.28);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.audit-panel h3 {
    margin-bottom: 24px;
}

.check-list {
    display: grid;
    gap: 14px;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    color: var(--muted);
    line-height: 1.5;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 12px;
    height: 12px;
    border: 2px solid var(--accent);
    border-radius: 50%;
}

.audience {
    background: rgba(2, 10, 13, 0.5);
    border-top: 1px solid rgba(0, 151, 167, 0.18);
    border-bottom: 1px solid rgba(0, 151, 167, 0.18);
}

.section-header {
    max-width: 980px;
    margin-bottom: clamp(34px, 5vw, 56px);
}

.section-header p {
    max-width: 720px;
    margin-top: 22px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    max-width: 1180px;
}

.audience-grid span,
.plan-list span,
.values-list span {
    padding: 13px 14px;
    color: var(--text);
    background: rgba(244, 247, 248, 0.045);
    border: 1px solid rgba(0, 151, 167, 0.22);
    border-radius: 6px;
}

.solutions {
    max-width: 1320px;
    margin: 0 auto;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.solution-card {
    min-height: 280px;
    padding: 34px;
    background: rgba(11, 58, 68, 0.54);
    border: 1px solid rgba(0, 151, 167, 0.22);
    border-radius: 8px;
}

.solution-card span {
    color: var(--accent);
    font-family: "Bebas Neue", Impact, sans-serif;
    font-size: 3rem;
    line-height: 1;
}

.solution-card h3 {
    margin: 24px 0 16px;
}

.plan-band {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
    gap: clamp(30px, 5vw, 70px);
    align-items: center;
    padding: clamp(70px, 8vw, 104px) clamp(20px, 5vw, 72px);
    background: rgba(2, 10, 13, 0.5);
    border-top: 1px solid rgba(0, 212, 230, 0.22);
    border-bottom: 1px solid rgba(0, 212, 230, 0.22);
}

.plan-content,
.plan-list {
    max-width: 1180px;
}

.plan-content p {
    margin-top: 18px;
}

.plan-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.services {
    max-width: 1240px;
    margin: 0 auto;
}

.services-table {
    border: 1px solid rgba(0, 151, 167, 0.24);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(2, 10, 13, 0.42);
}

.service-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(210px, 0.35fr);
    gap: 20px;
    align-items: center;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(0, 151, 167, 0.18);
}

.service-row:last-child {
    border-bottom: 0;
}

.service-row span {
    color: var(--text);
}

.service-row strong {
    color: var(--accent);
    text-align: right;
}

.note {
    max-width: 900px;
    margin-top: 20px;
    font-size: 0.92rem;
}

.values {
    display: grid;
    grid-template-columns: minmax(240px, 0.38fr) minmax(0, 0.95fr);
    gap: clamp(28px, 6vw, 82px);
    align-items: start;
    background: rgba(2, 10, 13, 0.5);
    border-top: 1px solid rgba(0, 151, 167, 0.18);
}

.values-media {
    display: flex;
    justify-content: center;
}

.values-media img {
    width: min(100%, 300px);
    opacity: 0.92;
    filter: drop-shadow(0 24px 52px rgba(0, 212, 230, 0.16));
}

.values-copy > p,
.about-text p,
.mission-card p {
    max-width: 760px;
    margin-top: 22px;
}

.about-text {
    margin-top: 8px;
}

.about-text p + p {
    margin-top: 16px;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}

.mission-card {
    padding: 28px;
    background: rgba(11, 58, 68, 0.54);
    border: 1px solid rgba(0, 151, 167, 0.22);
    border-radius: 8px;
}

.mission-card h3 {
    margin-bottom: 14px;
    color: var(--accent);
}

.mission-card p {
    margin-top: 0;
}

.mission-card-wide {
    grid-column: 1 / -1;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.contact {
    padding: clamp(86px, 12vw, 150px) clamp(20px, 5vw, 72px);
    text-align: center;
}

.contact-inner {
    max-width: 900px;
    margin: 0 auto;
}

.contact .eyebrow {
    justify-content: center;
}

.contact p {
    max-width: 620px;
    margin: 24px auto 34px;
}

footer {
    padding: 40px 48px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-logo img {
    height: 44px;
    width: auto;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.footer-logo img:hover {
    opacity: 0.8;
}

.footer-copy {
    font-size: 12px;
    color: rgba(244,244,244,0.2);
    letter-spacing: 1px;
}

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

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

.delay-1 {
    transition-delay: 80ms;
}

.delay-2 {
    transition-delay: 120ms;
}

.delay-3 {
    transition-delay: 160ms;
}

@media (max-width: 980px) {
    .site-nav ul {
        display: none;
    }

    .hero {
        min-height: auto;
    }

    .two-column,
    .plan-band,
    .values {
        grid-template-columns: 1fr;
    }

    .intro-strip,
    .solution-grid {
        grid-template-columns: 1fr;
    }

    .strip-item {
        border-right: 0;
        border-bottom: 1px solid rgba(0, 151, 167, 0.22);
    }

    .strip-item:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 640px) {
    .site-nav {
        padding: 12px 20px;
    }

    .nav-logo img {
        height: 46px;
    }

    .hero {
        padding-top: 110px;
    }

    h1 {
        font-size: clamp(3.55rem, 20vw, 5.2rem);
    }

    .hero-copy p {
        font-size: 1rem;
    }

    .btn {
        width: 100%;
        min-height: 50px;
        padding-inline: 16px;
    }

    .plan-list,
    .values-list,
    .mission-grid {
        grid-template-columns: 1fr;
    }

    .service-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .service-row strong {
        text-align: left;
    }

    footer {
        padding: 32px 24px;
    }
}
