:root {
    --navy: #06162d;
    --navy-2: #09264a;
    --teal: #0b8f79;
    --teal-dark: #087365;
    --orange: #ff8c42;
    --orange-dark: #d96b28;
    --ice: #edf8f6;
    --line: #d7ebe5;
    --text: #132033;
    --muted: #637284;
    --white: #ffffff;
    --shadow: 0 18px 50px rgba(6, 22, 45, 0.12);
    --transition: all 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(6, 22, 45, 0.96);
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(12px);
}

.navbar {
    padding: 14px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 24px;
    font-weight: 850;
    text-decoration: none;
}

.brand-mark {
    width: 76px;
    height: 76px;
    flex: 0 0 auto;
    padding: 0;
    border-radius: 50%;
    object-fit: cover;
    background: #031125;
    box-shadow:
        0 0 0 4px rgba(3, 17, 37, 0.96),
        0 12px 28px rgba(0, 0, 0, 0.3);
    transform: scale(1.08);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 26px;
    margin: 0;
    list-style: none;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 650;
    text-decoration: none;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a:focus {
    color: var(--white);
}

.nav-menu a.active {
    color: var(--white);
}

.cta-btn {
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--orange);
    color: var(--white) !important;
}

.cta-whatsapp {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(180deg, #12eb5b 0%, #0fcb4c 100%);
    color: #ffffff !important;
    box-shadow: 0 8px 16px rgba(18, 191, 79, 0.3);
}

.cta-whatsapp i {
    font-size: 1.4rem;
    line-height: 1;
}

.cta-whatsapp:hover,
.cta-whatsapp:focus {
    transform: translateY(-1px);
    background: linear-gradient(180deg, #10dd54 0%, #0cb346 100%);
}

.hero {
    padding: 102px 0 84px;
    color: var(--white);
    background:
        linear-gradient(120deg, rgba(6, 22, 45, 0.98), rgba(10, 102, 99, 0.9)),
        radial-gradient(circle at 84% 12%, rgba(255, 140, 66, 0.22), transparent 28%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap: 54px;
    align-items: center;
}

.eyebrow {
    margin-bottom: 14px;
    color: #9af6df;
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow.dark {
    color: var(--teal-dark);
}

.hero h1,
.section-heading h2,
.telemetric h2,
.contato h2 {
    letter-spacing: 0;
}

.hero h1 {
    max-width: 720px;
    margin-bottom: 22px;
    font-size: clamp(2.2rem, 4.2vw, 3.25rem);
    line-height: 1.08;
    font-weight: 850;
    overflow-wrap: anywhere;
}

.hero p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.1rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 24px;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 750;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    white-space: normal;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--orange-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.62);
    background: transparent;
    color: var(--white);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: var(--white);
    color: var(--navy);
}

.btn-block {
    width: 100%;
}

.hero-visual {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.hero-visual img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    opacity: 0.72;
}

.visual-overlay {
    position: absolute;
    inset: auto 22px 22px 22px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.visual-overlay span {
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(6, 22, 45, 0.78);
    color: var(--white);
    font-weight: 800;
}

.focus-strip {
    background: var(--navy);
    color: var(--white);
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.focus-grid > div {
    padding: 26px;
    background: var(--navy);
}

.focus-grid strong,
.focus-grid span {
    display: block;
}

.focus-grid span {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.72);
}

.servicos,
.ofertas,
.processo,
.contato {
    padding: 82px 0;
}

.servicos,
.processo {
    background: var(--ice);
}

.ofertas,
.contato {
    background: var(--white);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.home-page .servicos {
    padding: 68px 0;
}

.home-page .section-heading {
    margin-bottom: 28px;
}

.section-heading h2,
.telemetric h2,
.contato h2 {
    margin-bottom: 14px;
    color: var(--navy);
    font-size: 2.45rem;
    line-height: 1.12;
    font-weight: 850;
}

.section-heading p,
.telemetric p,
.contato p {
    color: var(--muted);
    font-size: 1.04rem;
}

.servicos-grid,
.offer-grid,
.process-grid {
    display: grid;
    gap: 20px;
}

.servicos-grid {
    grid-template-columns: repeat(5, 1fr);
}

.service-card,
.offer-card,
.process-grid div,
.telemetric-card,
.contato-info,
.contato-form {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 12px 34px rgba(6, 22, 45, 0.08);
}

.service-card {
    display: flex;
    min-height: 280px;
    flex-direction: column;
    padding: 24px 18px;
}

.card-icon,
.offer-card i {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--teal), var(--navy-2));
    color: var(--white);
    font-size: 1.32rem;
}

.service-card h3,
.offer-card h3 {
    margin-bottom: 10px;
    color: var(--navy);
    font-size: 1.05rem;
    line-height: 1.25;
    font-weight: 850;
}

.service-card p,
.offer-card p {
    color: var(--muted);
    font-size: 0.95rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: var(--teal-dark);
    font-weight: 850;
    text-decoration: none;
}

.card-link:hover,
.card-link:focus {
    color: var(--orange-dark);
}

.offer-grid {
    grid-template-columns: repeat(3, 1fr);
}

.offer-card {
    padding: 28px;
}

.offer-card span {
    display: block;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    color: var(--teal-dark);
    font-weight: 800;
}

.telemetric {
    padding: 54px 0;
    color: var(--white);
    background: linear-gradient(135deg, var(--navy) 0%, #0a6d60 100%);
}

.telemetric-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
}

.telemetric h2,
.telemetric p {
    color: var(--white);
}

.telemetric p {
    color: rgba(255, 255, 255, 0.78);
}

.telemetric-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 18px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    color: var(--white);
    font-weight: 850;
    text-decoration: none;
    transition: var(--transition);
}

.telemetric-link:hover,
.telemetric-link:focus {
    background: rgba(255, 255, 255, 0.12);
}

.telemetric-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
}

.telemetric-card strong {
    display: block;
    margin-bottom: 16px;
    color: var(--white);
    font-size: 1.25rem;
}

.telemetric-card ul {
    margin: 0;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.82);
}

.telemetric-card li {
    margin-bottom: 10px;
}

.process-grid {
    grid-template-columns: repeat(4, 1fr);
}

.process-grid div {
    padding: 24px;
}

.process-grid span {
    display: block;
    margin-bottom: 18px;
    color: rgba(11, 143, 121, 0.26);
    font-size: 2.2rem;
    font-weight: 900;
}

.process-grid strong {
    display: block;
    margin-bottom: 10px;
    color: var(--navy);
    font-size: 1.1rem;
}

.process-grid p {
    color: var(--muted);
}

.contato-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: start;
}

.contato-info,
.contato-form {
    padding: 34px;
}

.info-item {
    display: flex;
    gap: 16px;
    padding-top: 22px;
    margin-top: 22px;
    border-top: 1px solid var(--line);
}

.info-item i {
    width: 28px;
    color: var(--orange);
    font-size: 1.45rem;
}

.info-item h4 {
    margin-bottom: 4px;
    color: var(--navy);
}

.info-item p {
    margin: 0;
    color: var(--text);
    font-weight: 650;
}

.info-item a {
    color: var(--text);
    text-decoration: none;
}

.form-group {
    margin-bottom: 18px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--text);
    font: inherit;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 3px solid rgba(11, 143, 121, 0.18);
    border-color: var(--teal);
}

.form-group textarea {
    min-height: 130px;
}

.footer {
    padding: 58px 0 0;
    background: var(--navy);
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 34px;
}

.footer h4 {
    margin-bottom: 14px;
}

.footer p,
.footer a {
    color: rgba(255, 255, 255, 0.76);
}

.footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

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

.footer a {
    text-decoration: none;
}

.footer-bottom {
    margin-top: 38px;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
}

.home-page .hero-home {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 0;
    padding: 30px 0;
    background:
        linear-gradient(118deg, #06162d 0%, #09264a 58%, #0b6e6f 100%);
}

.home-page .hero-shell {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(430px, 0.96fr);
    gap: 42px;
    align-items: center;
    min-height: 0;
}

.home-page .hero-content {
    max-width: 560px;
}

.home-page .hero-content p {
    max-width: 630px;
}

.home-page .hero-content h1 {
    max-width: 580px;
    text-wrap: balance;
}

.hero-typing-title {
    min-height: 5.25em;
}

.hero-text-marker {
    display: inline;
    padding: 0 0.08em;
    border-radius: 0.08em;
    background: transparent;
    color: #ffffff;
    transition: color 300ms ease;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.hero-text-marker.is-red {
    background: transparent;
    color: #ff0000;
}

.hero-text-marker.is-red.is-marking-again {
    animation: none;
}

.hero-text-marker.is-red.is-blinking {
    background: transparent;
    animation: heroBrandRedWhiteBlink 1s steps(1) infinite;
}

@keyframes heroBrandRedWhiteBlink {
    50% {
        color: #ffffff;
    }
}

.typing-caret {
    display: inline-block;
    width: 0.08em;
    height: 0.82em;
    margin-left: 0.08em;
    background: #ffd65c;
    vertical-align: -0.06em;
    animation: typingCaretBlink 850ms steps(1) infinite;
}

@keyframes typingCaretBlink {
    50% {
        opacity: 0;
    }
}

.home-page .hero-visual-card {
    position: relative;
    justify-self: end;
    width: min(100%, 680px);
    min-height: 0;
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
}

.home-page .hero-mark {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
    max-width: none;
    object-fit: contain;
    object-position: center;
    opacity: 1;
    border: 1px solid rgba(98, 168, 214, 0.22);
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(2, 14, 33, 0.3);
    filter: none;
    transform: translateX(0);
    will-change: transform;
}

.home-page .hero-mark.hero-mark-next {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: translateX(110%);
}

.home-page .hero-mark.hero-slide-out {
    animation: heroBannerOutLeft 950ms cubic-bezier(0.16, 0.84, 0.28, 1) both;
}

.home-page .hero-mark.hero-slide-in {
    animation: heroBannerInRight 950ms cubic-bezier(0.16, 0.84, 0.28, 1) both;
}

@keyframes heroBannerInRight {
    from {
        transform: translateX(110%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes heroBannerOutLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-110%);
    }
}

.home-page .hero-visual-card::before {
    content: none;
}

.home-page .hero-visual-card::after {
    content: none;
}

.home-page .hero-home::after {
    display: none;
}

.about-page {
    background: #f4fbf9;
}

.about-institutional {
    padding: 46px 0 28px;
    background:
        linear-gradient(120deg, rgba(6, 22, 45, 0.98), rgba(10, 102, 99, 0.9)),
        radial-gradient(circle at 84% 12%, rgba(255, 140, 66, 0.22), transparent 28%);
}

.about-institutional-card {
    padding: 34px;
    border: 1px solid rgba(12, 113, 108, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 22px 54px rgba(6, 22, 45, 0.1);
}

.about-title-row {
    display: block;
}

.about-logo-compact {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    background: #031125;
    box-shadow:
        0 0 0 8px rgba(3, 17, 37, 0.92),
        0 18px 34px rgba(6, 22, 45, 0.24);
}

.about-institutional-card h1 {
    max-width: 900px;
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.05;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 330px);
    gap: 28px;
    align-items: start;
    margin-top: 26px;
}

.about-intro-text {
    display: grid;
    gap: 16px;
}

.about-intro-text p {
    margin: 0;
    color: var(--muted);
    font-size: 1.06rem;
    line-height: 1.72;
}

.about-recommendation-card {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(12, 113, 108, 0.18);
    border-radius: 16px;
    background: #06162d;
    box-shadow: 0 18px 38px rgba(6, 22, 45, 0.16);
}

.about-recommendation-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.about-recommendation-card figcaption {
    padding: 13px 15px 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
    font-weight: 750;
    line-height: 1.35;
}

.about-card-actions {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 0 12px 14px;
}

.about-institutional-lines {
    display: grid;
    gap: 0;
    padding: 0;
    margin: 26px 0 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.about-institutional-lines li {
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 12px;
    align-items: start;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    color: var(--text);
    font-weight: 650;
    line-height: 1.48;
}

.about-institutional-lines i {
    display: inline-flex;
    width: 23px;
    height: 23px;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    border-radius: 50%;
    background: #24c686;
    color: var(--white);
    font-size: 0.7rem;
}

.about-address-section {
    padding: 24px 0 58px;
}

.about-address-card {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 24px;
    border: 1px solid rgba(255, 140, 66, 0.3);
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(255, 140, 66, 0.12), rgba(12, 113, 108, 0.08)),
        var(--white);
    box-shadow: 0 18px 42px rgba(6, 22, 45, 0.09);
}

.about-address-card > i {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--orange);
    color: var(--white);
    font-size: 1.4rem;
}

.about-address-card h2 {
    margin-bottom: 4px;
    color: var(--navy);
    font-size: 1.25rem;
}

.about-address-card p {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
    line-height: 1.42;
}

.btn-whatsapp {
    gap: 10px;
}

.btn-whatsapp-icon {
    width: 86px;
    min-height: 54px;
    padding: 0;
    margin-right: 10px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(180deg, #12eb5b 0%, #0fcb4c 100%);
    box-shadow: 0 8px 18px rgba(18, 191, 79, 0.42);
}

.btn-whatsapp-icon i {
    display: block;
    width: 1em;
    color: #ffffff;
    font-size: 1.82rem;
    line-height: 1em;
    text-align: center;
}

.btn-whatsapp-icon:hover,
.btn-whatsapp-icon:focus {
    background: linear-gradient(180deg, #10dd54 0%, #0cb346 100%);
    transform: translateY(-2px);
}

.btn-whatsapp i {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: linear-gradient(180deg, #25e56f 0%, #12bf4f 100%);
    color: #ffffff;
    font-size: 1.08rem;
    box-shadow: 0 6px 14px rgba(18, 191, 79, 0.38);
}

.btn-whatsapp:hover i,
.btn-whatsapp:focus i {
    background: linear-gradient(180deg, #1fdf66 0%, #10ae47 100%);
    color: #ffffff;
}

.about-hero {
    padding: 92px 0 78px;
    color: var(--white);
    background:
        radial-gradient(circle at 82% 10%, rgba(255, 140, 66, 0.16), transparent 30%),
        linear-gradient(118deg, #06162d 0%, #09264a 58%, #0b6e6f 100%);
}

.about-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
    gap: 48px;
    align-items: center;
}

.about-hero-copy h1 {
    max-width: 760px;
    margin-bottom: 22px;
    font-size: clamp(2.35rem, 5vw, 4.4rem);
    line-height: 1.02;
    font-weight: 850;
}

.about-hero-copy p {
    max-width: 720px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.14rem;
}

.about-hero-card {
    display: grid;
    gap: 22px;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    background: rgba(6, 22, 45, 0.48);
    box-shadow: 0 26px 58px rgba(0, 0, 0, 0.24);
}

.about-hero-card img {
    width: 168px;
    height: 168px;
    border-radius: 50%;
    object-fit: cover;
    background: #031125;
    box-shadow:
        0 0 0 8px rgba(3, 17, 37, 0.92),
        0 18px 32px rgba(0, 0, 0, 0.32);
}

.about-hero-card h2 {
    margin-bottom: 10px;
    color: var(--white);
    font-size: 1.8rem;
    line-height: 1.12;
}

.about-hero-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
}

.about-hero-short {
    padding: 72px 0 58px;
}

.about-hero-grid-solo {
    grid-template-columns: minmax(0, 920px);
}

.about-proof {
    padding: 64px 0;
    background: #f4fbf9;
}

.about-proof-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
    gap: 42px;
    align-items: center;
}

.about-proof-visual {
    margin: 0;
    padding: 12px;
    border: 1px solid rgba(12, 113, 108, 0.22);
    border-radius: 20px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(234, 248, 245, 0.92));
    box-shadow: 0 24px 56px rgba(6, 22, 45, 0.14);
}

.about-proof-robot {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 16px;
}

.about-proof-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 999px;
    background: #06162d;
    color: var(--white);
    font-weight: 850;
    line-height: 1.15;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.about-proof-badge img {
    width: 56px;
    height: 56px;
    flex: 0 0 auto;
    border-radius: 50%;
    object-fit: cover;
    background: #031125;
    box-shadow:
        0 0 0 6px rgba(3, 17, 37, 0.9),
        0 12px 22px rgba(0, 0, 0, 0.26);
}

.about-proof-copy h2,
.about-focus h2 {
    max-width: 760px;
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.06;
}

.about-line-list {
    display: grid;
    gap: 0;
    padding: 0;
    margin: 24px 0 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.about-line-list li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    align-items: start;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    color: var(--text);
    font-size: 1.03rem;
    font-weight: 650;
    line-height: 1.45;
}

.about-line-list i {
    display: inline-flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    border-radius: 50%;
    background: #24c686;
    color: var(--white);
    font-size: 0.72rem;
}

.about-focus {
    padding: 60px 0;
    background: var(--white);
}

.about-focus-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
    gap: 42px;
    align-items: start;
}

.about-focus-copy p {
    max-width: 620px;
    margin-top: 16px;
    color: var(--muted);
    font-size: 1.08rem;
}

.about-line-list-compact {
    margin-top: 4px;
}

.about-section,
.about-capabilities,
.about-final-cta {
    padding: 76px 0;
}

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

.about-principles article,
.about-check-list {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.about-principles article {
    padding: 28px;
}

.about-principles i {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 12px;
    background: linear-gradient(145deg, var(--teal), var(--navy));
    color: var(--white);
    font-size: 1.45rem;
}

.about-principles h3 {
    margin-bottom: 10px;
    color: var(--navy);
    font-size: 1.32rem;
    line-height: 1.18;
}

.about-principles p {
    color: var(--muted);
}

.about-capabilities {
    background: var(--white);
}

.about-capabilities-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
    gap: 42px;
    align-items: start;
}

.about-capabilities h2,
.about-final-cta h2 {
    max-width: 720px;
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.06;
}

.about-capabilities p,
.about-final-cta p {
    max-width: 680px;
    margin-top: 16px;
    color: var(--muted);
    font-size: 1.1rem;
}

.about-check-list {
    display: grid;
    gap: 18px;
    padding: 30px;
    margin: 0;
    list-style: none;
}

.about-check-list li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 650;
}

.about-check-list i {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #65d37b;
    color: var(--white);
    font-size: 0.8rem;
}

.about-partner {
    padding: 54px 0;
    background: var(--navy);
    color: var(--white);
}

.about-partner-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 30px;
    align-items: center;
}

.about-partner-card h2 {
    max-width: 780px;
    margin-bottom: 12px;
    font-size: clamp(1.9rem, 3.2vw, 2.8rem);
    line-height: 1.08;
}

.about-partner-card p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.76);
}

.about-final-cta {
    text-align: center;
}

.about-final-cta h2,
.about-final-cta p {
    margin-left: auto;
    margin-right: auto;
}

.about-final-cta .btn {
    margin-top: 28px;
}

.seo-service-page {
    background: #f4fbf9;
}

.seo-hero {
    padding: 90px 0 76px;
    color: var(--white);
    background:
        radial-gradient(circle at 86% 16%, rgba(255, 140, 66, 0.18), transparent 30%),
        linear-gradient(118deg, #06162d 0%, #09264a 58%, #0b6e6f 100%);
}

.seo-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.68fr);
    gap: 44px;
    align-items: center;
}

.seo-hero h1 {
    max-width: 820px;
    margin-bottom: 22px;
    font-size: clamp(2.25rem, 4.8vw, 4.15rem);
    line-height: 1.03;
    font-weight: 850;
}

.seo-hero p {
    max-width: 720px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.14rem;
}

.seo-hero-card {
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    background: rgba(6, 22, 45, 0.52);
    box-shadow: 0 26px 58px rgba(0, 0, 0, 0.24);
}

.seo-hero-card h2 {
    margin-bottom: 18px;
    color: var(--white);
    font-size: 1.7rem;
}

.seo-hero-card ul,
.seo-check-list {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.seo-hero-card li,
.seo-check-list li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    align-items: start;
}

.seo-hero-card i,
.seo-check-list i {
    display: inline-flex;
    width: 26px;
    height: 26px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #65d37b;
    color: var(--white);
    font-size: 0.76rem;
}

.seo-hero-card li {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 650;
}

.seo-section,
.seo-faq,
.seo-cta {
    padding: 74px 0;
}

.seo-section {
    background: var(--white);
}

.seo-section.alt {
    background: #f4fbf9;
}

.seo-two-col {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
    gap: 44px;
    align-items: start;
}

.seo-copy h2,
.seo-faq h2,
.seo-cta h2 {
    max-width: 760px;
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.06;
}

.seo-copy p,
.seo-faq p,
.seo-cta p {
    max-width: 740px;
    margin-top: 16px;
    color: var(--muted);
    font-size: 1.08rem;
}

.seo-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 34px;
}

.seo-card {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.seo-card i {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 12px;
    background: linear-gradient(145deg, var(--teal), var(--navy));
    color: var(--white);
    font-size: 1.35rem;
}

.seo-card h3 {
    margin-bottom: 10px;
    color: var(--navy);
    font-size: 1.24rem;
    line-height: 1.18;
}

.seo-card p {
    color: var(--muted);
}

.seo-check-panel {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.seo-faq-list {
    display: grid;
    gap: 16px;
    margin-top: 34px;
}

.seo-faq-list details {
    padding: 22px 24px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 12px 32px rgba(6, 22, 45, 0.08);
}

.seo-faq-list summary {
    cursor: pointer;
    color: var(--navy);
    font-size: 1.1rem;
    font-weight: 820;
}

.seo-faq-list p {
    margin-top: 12px;
    font-size: 1rem;
}

.seo-cta {
    text-align: center;
    background: var(--navy);
    color: var(--white);
}

.seo-cta h2 {
    margin-right: auto;
    margin-left: auto;
    color: var(--white);
}

.seo-cta p {
    margin-right: auto;
    margin-left: auto;
    color: rgba(255, 255, 255, 0.78);
}

.seo-cta .btn {
    margin-top: 28px;
}

.proof-strip {
    color: var(--white);
    background: #06162d;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.14);
}

.proof-grid > div {
    min-height: 138px;
    padding: 30px 24px;
    background: #06162d;
}

.proof-grid strong,
.proof-grid span {
    display: block;
}

.proof-grid strong {
    margin-bottom: 8px;
    color: #fff0bb;
    font-size: 1.18rem;
}

.proof-grid span {
    color: rgba(255, 255, 255, 0.72);
}

.section-anchor {
    position: relative;
    top: -110px;
    display: block;
    width: 1px;
    height: 1px;
}

.section-heading-left {
    margin-left: 0;
    text-align: left;
}

.home-page .servicos-grid {
    grid-template-columns: repeat(3, 1fr);
}

.home-page .service-card {
    min-height: 218px;
    padding: 22px;
}

.servicos-list {
    display: grid;
    max-width: 920px;
    gap: 0;
}

.servicos-showcase {
    display: grid;
    grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.servicos-recommendation-card {
    position: sticky;
    top: 112px;
}

.home-page .servicos-list .service-card {
    display: grid;
    min-height: 0;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 16px;
    align-items: flex-start;
    padding: 16px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.home-page .servicos-list .service-card + .service-card {
    border-top: 1px solid rgba(11, 143, 121, 0.2);
}

.service-check {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    border-radius: 50%;
    background: #24c76a;
    color: var(--white);
    font-size: 0.82rem;
    box-shadow: 0 8px 20px rgba(36, 199, 106, 0.22);
}

.servicos-list h3 {
    margin-bottom: 4px;
    color: var(--navy);
    font-size: 1.12rem;
    font-weight: 850;
}

.servicos-list p {
    max-width: 640px;
    color: var(--muted);
    font-size: 1rem;
}

.service-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding: 14px 22px;
    border-radius: 999px;
    background: var(--teal-dark);
    color: var(--white);
    font-weight: 850;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(8, 115, 101, 0.2);
    transition: var(--transition);
}

.service-contact-link:hover,
.service-contact-link:focus {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
}

.portfolio {
    padding: 68px 0;
    background: var(--white);
}

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

.portfolio-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.portfolio-media {
    display: grid;
    overflow: hidden;
    height: 172px;
    place-items: center;
    padding: 14px;
    background: #071a34;
}

.portfolio-media img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
}

.portfolio-media-taro {
    background: #150f2d;
}

.portfolio-media-print {
    background: #f3ebe2;
}

.portfolio-media-print img {
    object-position: center;
}

.portfolio-copy {
    padding: 18px;
}

.portfolio-kicker {
    margin-bottom: 10px;
    color: var(--teal-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.portfolio-copy h3 {
    margin-bottom: 10px;
    color: var(--navy);
    font-size: 1.18rem;
    line-height: 1.18;
}

.portfolio-copy p:last-child {
    color: var(--muted);
}

.portfolio-media-web {
    height: 172px;
    padding: 18px;
    background:
        linear-gradient(145deg, #091d38, #0b8f79);
}

.portfolio-media-web img {
    width: auto;
    max-height: 100%;
    min-height: 0;
    height: auto;
    border: 5px solid rgba(255, 255, 255, 0.88);
    border-radius: 18px;
    object-fit: contain;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

.portfolio-media-community {
    height: 172px;
    padding: 18px;
    background:
        linear-gradient(135deg, #09172e, #123b55 54%, #ff8c42);
}

.community-art {
    display: grid;
    width: 100%;
    height: 100%;
    place-content: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    color: var(--white);
    text-align: center;
}

.community-art i {
    color: #ffd479;
    font-size: 3.2rem;
}

.community-art span {
    color: var(--white);
    font-size: 1.38rem;
    font-weight: 900;
}

.portfolio-card .card-link {
    gap: 6px;
    margin-top: 12px;
    font-size: 0.92rem;
}

.totens {
    padding: 68px 0;
    background: #edf4fb;
}

.totens-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr);
    gap: 42px;
    align-items: center;
}

.totens h2,
.apps-band h2 {
    margin-bottom: 14px;
    color: var(--navy);
    font-size: 2.45rem;
    line-height: 1.12;
    font-weight: 850;
}

.totens-copy > p {
    color: var(--muted);
    font-size: 1.04rem;
}

.totem-scenarios {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.totem-scenarios article {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
    padding: 16px;
    border: 1px solid #cadeeb;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 28px rgba(6, 22, 45, 0.07);
}

.totem-scenarios i {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #082955;
    color: #ffd479;
    font-size: 1.35rem;
}

.totem-scenarios h3 {
    margin-bottom: 4px;
    color: var(--navy);
    font-size: 1.08rem;
    line-height: 1.25;
}

.totem-scenarios p {
    color: var(--muted);
}

.totens-actions {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    margin-top: 20px;
}

.totem-gallery {
    display: grid;
    grid-template-columns: minmax(190px, 0.72fr) minmax(280px, 1fr);
    gap: 18px;
    align-items: end;
}

.totem-photo {
    position: relative;
    overflow: hidden;
    min-height: 380px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 24px 58px rgba(6, 22, 45, 0.19);
}

.totem-photo img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
}

.totem-photo-main,
.totem-photo-main img {
    min-height: 540px;
}

.totem-photo figcaption {
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 9px 12px;
    border-radius: 8px;
    background: rgba(6, 22, 45, 0.78);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.82rem;
    font-weight: 760;
}

.totem-sticker {
    position: absolute;
    z-index: 2;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: rgba(3, 17, 37, 0.94);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.totem-sticker img {
    width: 34px;
    height: 34px;
    min-height: 0;
    border-radius: 50%;
    object-fit: cover;
}

.totem-sticker-institutional {
    top: 56%;
    left: 29%;
}

.totem-sticker-sales {
    top: 61%;
    left: 45%;
}

.totem-note {
    grid-column: 1 / -1;
    margin-top: -4px;
    color: var(--muted);
    font-size: 0.9rem;
}

.apps-band {
    padding: 70px 0;
    color: var(--white);
    background: linear-gradient(135deg, #06162d, #133862 58%, #8a421f);
}

.apps-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr);
    gap: 40px;
    align-items: center;
}

.apps-band h2,
.apps-band p {
    color: var(--white);
}

.apps-band > .container > div:first-child > p:last-child {
    color: rgba(255, 255, 255, 0.78);
}

.platform-panel {
    display: grid;
    gap: 14px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
}

.platform-summary {
    margin: 0;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    background: rgba(6, 22, 45, 0.52);
    color: rgba(255, 255, 255, 0.82) !important;
    font-weight: 760;
    text-align: center;
}

.platform-seals {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 172px));
    justify-content: center;
    gap: 20px;
    margin: -74px 0 8px;
}

.platform-seal {
    position: relative;
    isolation: isolate;
    display: grid;
    width: 172px;
    aspect-ratio: 1;
    align-content: center;
    justify-items: center;
    padding: 28px 18px;
    color: #402100;
    text-align: center;
    text-transform: uppercase;
    filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.26));
}

.platform-seal::before,
.platform-seal::after {
    position: absolute;
    inset: 0;
    z-index: -2;
    content: "";
}

.platform-seal::before {
    clip-path: polygon(50% 0%, 56% 8%, 65% 2%, 69% 12%, 79% 8%, 80% 18%, 91% 18%, 88% 28%, 98% 32%, 93% 40%, 100% 50%, 93% 60%, 98% 68%, 88% 72%, 91% 82%, 80% 82%, 79% 92%, 69% 88%, 65% 98%, 56% 92%, 50% 100%, 44% 92%, 35% 98%, 31% 88%, 21% 92%, 20% 82%, 9% 82%, 12% 72%, 2% 68%, 7% 60%, 0% 50%, 7% 40%, 2% 32%, 12% 28%, 9% 18%, 20% 18%, 21% 8%, 31% 12%, 35% 2%, 44% 8%);
    background:
        radial-gradient(circle at 34% 24%, rgba(255, 249, 201, 0.98), transparent 29%),
        linear-gradient(145deg, #fff0a2 0%, #c27a13 34%, #ffdf72 58%, #85500a 100%);
}

.platform-seal::after {
    z-index: -1;
    inset: 14px;
    border: 2px solid rgba(99, 51, 0, 0.54);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 244, 178, 0.94), rgba(226, 160, 42, 0.98));
    box-shadow:
        inset 0 0 0 5px rgba(255, 227, 129, 0.78),
        inset 0 0 0 7px rgba(116, 60, 0, 0.34);
}

.platform-seal span,
.platform-seal strong,
.platform-seal em {
    position: relative;
    z-index: 1;
    letter-spacing: 0;
}

.platform-seal span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    color: #633500;
    font-size: 0.65rem;
    font-style: normal;
    font-weight: 950;
}

.platform-seal span i {
    font-size: 0.92rem;
}

.platform-seal strong {
    color: #3f2100;
    font-size: 1.15rem;
    line-height: 1;
    font-weight: 950;
}

.platform-seal em {
    margin-top: 6px;
    color: #673700;
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 950;
}

.platform-badge,
.platform-note {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    background: rgba(6, 22, 45, 0.52);
}

.platform-badge i,
.platform-note i {
    display: inline-flex;
    width: 62px;
    height: 62px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--white);
    color: var(--navy);
    font-size: 2rem;
}

.platform-badge strong,
.platform-badge span {
    display: block;
}

.platform-badge strong {
    font-size: 1.18rem;
}

.platform-badge span,
.platform-note p {
    color: rgba(255, 255, 255, 0.76);
}

.platform-note p {
    margin: 0;
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.footer-brand img {
    width: 90px;
    height: 90px;
    flex: 0 0 auto;
    padding: 4px;
    border-radius: 50%;
    object-fit: cover;
    background: #031125;
    box-shadow:
        0 0 0 5px rgba(3, 17, 37, 0.95),
        0 14px 28px rgba(0, 0, 0, 0.24);
}

.contact-printer {
    position: relative;
    --printer-mouth-inset: 36px;
    --printer-width: min(calc(100% + 56px), 560px);
    --ticket-width: min(calc(100% - 16px), 488px);
    padding-top: 56px;
}

.printer-head {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 50%;
    width: var(--printer-width);
    height: 86px;
    transform: translateX(-50%);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 18px 18px 12px 12px;
    background:
        linear-gradient(180deg, #17314f, #07172f);
    box-shadow: 0 18px 34px rgba(6, 22, 45, 0.2);
}

.printer-head::before {
    position: absolute;
    top: 13px;
    left: 26px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #76f2a8;
    box-shadow: 0 0 14px rgba(118, 242, 168, 0.58);
    content: "";
}

.printer-head span {
    position: absolute;
    z-index: 4;
    right: var(--printer-mouth-inset);
    bottom: -11px;
    left: var(--printer-mouth-inset);
    height: 24px;
    border: 1px solid rgba(70, 99, 131, 0.7);
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(40, 64, 94, 0.38), transparent 28%),
        #020a18;
    box-shadow:
        inset 0 3px 7px rgba(0, 0, 0, 0.94),
        0 7px 14px rgba(6, 22, 45, 0.28);
}

.printer-head span::after {
    position: absolute;
    right: 15px;
    bottom: -7px;
    left: 15px;
    height: 8px;
    border-radius: 0 0 999px 999px;
    background: rgba(3, 17, 37, 0.72);
    content: "";
}

.contact-ticket {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: var(--ticket-width);
    margin-inline: auto;
    padding-top: 78px;
    transform-origin: top center;
    clip-path: polygon(0 0, 100% 0, 100% 97%, 97% 100%, 94% 97%, 91% 100%, 88% 97%, 85% 100%, 82% 97%, 79% 100%, 76% 97%, 73% 100%, 70% 97%, 67% 100%, 64% 97%, 61% 100%, 58% 97%, 55% 100%, 52% 97%, 49% 100%, 46% 97%, 43% 100%, 40% 97%, 37% 100%, 34% 97%, 31% 100%, 28% 97%, 25% 100%, 22% 97%, 19% 100%, 16% 97%, 13% 100%, 10% 97%, 7% 100%, 4% 97%, 0 100%);
    background:
        linear-gradient(90deg, rgba(6, 22, 45, 0.035), transparent 10%, transparent 90%, rgba(6, 22, 45, 0.035)),
        var(--white);
    filter:
        drop-shadow(0 22px 22px rgba(6, 22, 45, 0.16))
        drop-shadow(0 1px 0 rgba(135, 146, 160, 0.48))
        drop-shadow(0 7px 8px rgba(6, 22, 45, 0.11));
}

.contact-ticket::before {
    position: absolute;
    top: 14px;
    right: -11%;
    left: -11%;
    height: 72px;
    border-top: 2px solid rgba(11, 143, 121, 0.13);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    box-shadow:
        0 -18px 30px rgba(6, 22, 45, 0.1),
        inset 0 16px 28px rgba(6, 22, 45, 0.04);
    content: "";
    pointer-events: none;
}

.contact-ticket::after {
    position: absolute;
    right: 0;
    bottom: 3px;
    left: 0;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='20' viewBox='0 0 40 20'%3E%3Cpath d='M0 2 10 18 20 2 30 18 40 2' fill='none' stroke='%23aeb8c4' stroke-width='1.35' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 40px 20px;
    content: "";
    opacity: 0.88;
    pointer-events: none;
}

.contact-printer.is-ready:not(.is-printing) .contact-ticket {
    opacity: 0;
    transform: translateY(-70px) scaleY(0.24);
}

.contact-printer.is-printing .contact-ticket {
    animation: printTicket 3.6s cubic-bezier(0.12, 0.76, 0.22, 1) both;
}

.contact-printer.is-printing .printer-head span {
    animation: thermalPulse 3.6s ease both;
}

@keyframes printTicket {
    from {
        opacity: 0;
        transform: translateY(-70px) scaleY(0.24);
    }

    to {
        opacity: 1;
        transform: translateY(0) scaleY(1);
    }
}

@keyframes thermalPulse {
    0%,
    100% {
        box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.08);
    }

    48% {
        box-shadow:
            inset 0 2px 5px rgba(255, 255, 255, 0.08),
            0 0 18px rgba(255, 212, 121, 0.35);
    }
}

@media (max-width: 1080px) {
    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-page .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 860px) {
    .nav-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .nav-menu {
        width: 100%;
        flex-wrap: wrap;
        gap: 14px;
    }

    .hero-grid,
    .focus-grid,
    .offer-grid,
    .telemetric-grid,
    .contato-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .proof-grid,
    .totens-grid,
    .apps-grid,
    .about-title-row,
    .about-intro-grid,
    .about-address-card,
    .about-hero-grid,
    .about-proof-grid,
    .about-focus-grid,
    .about-capabilities-grid,
    .about-partner-card,
    .seo-hero-grid,
    .seo-two-col {
        grid-template-columns: 1fr;
    }

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

    .servicos-recommendation-card {
        position: static;
        max-width: 420px;
    }

    .about-principles,
    .seo-card-grid {
        grid-template-columns: 1fr;
    }

    .about-partner-card {
        align-items: start;
    }

    .about-address-card .btn {
        justify-self: start;
    }

    .about-recommendation-card {
        max-width: 360px;
    }

    .about-card-actions {
        grid-template-columns: max-content minmax(0, 1fr);
        gap: 16px;
        padding: 0 10px 12px;
    }

    .hero {
        padding-top: 76px;
    }

    .hero h1 {
        font-size: 2.35rem;
    }

    .hero-content,
    .hero-visual {
        min-width: 0;
    }

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

    .hero-visual,
    .hero-visual img {
        min-height: 320px;
    }

    .home-page .hero-home {
        min-height: auto;
        padding: 36px 0 42px;
    }

    .home-page .hero-shell {
        grid-template-columns: 1fr;
        gap: 30px;
        min-height: auto;
    }

    .home-page .hero-visual-card {
        justify-self: stretch;
        width: min(100%, 620px);
        min-height: auto;
    }

    .home-page .hero-mark {
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: auto;
        opacity: 1;
        object-fit: contain;
        object-position: center;
    }

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

    .totens-grid,
    .apps-grid {
        gap: 32px;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 28px, 1160px);
    }

    .home-page .portfolio,
    .home-page .telemetric,
    .home-page .processo {
        display: none;
    }

    .nav-menu {
        display: none;
    }

    .hero {
        padding: 62px 0;
    }

    .hero h1 {
        font-size: 1.95rem;
    }

    .brand {
        gap: 10px;
        font-size: 1.22rem;
    }

    .brand-mark {
        width: 69px;
        height: 69px;
    }

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

    .visual-overlay {
        grid-template-columns: 1fr;
    }

    .servicos,
    .ofertas,
    .processo,
    .contato,
    .telemetric,
    .about-institutional,
    .about-address-section,
    .about-proof,
    .about-focus,
    .about-section,
    .about-capabilities,
    .about-final-cta {
        padding: 58px 0;
    }

    .seo-section,
    .seo-faq,
    .seo-cta {
        padding: 58px 0;
    }

    .about-hero {
        padding: 62px 0 58px;
    }

    .seo-hero {
        padding: 62px 0 58px;
    }

    .about-hero-copy h1,
    .about-proof-copy h2,
    .about-focus h2,
    .about-capabilities h2,
    .about-final-cta h2,
    .seo-hero h1,
    .seo-copy h2,
    .seo-faq h2,
    .seo-cta h2 {
        font-size: 2rem;
    }

    .about-hero-card,
    .about-principles article,
    .about-check-list,
    .seo-hero-card,
    .seo-card,
    .seo-check-panel {
        padding: 22px;
    }

    .about-hero-card img {
        width: 136px;
        height: 136px;
    }

    .about-institutional {
        padding-top: 28px;
    }

    .about-institutional-card {
        padding: 22px;
        border-radius: 14px;
    }

    .about-title-row {
        grid-template-columns: 68px 1fr;
        gap: 14px;
    }

    .about-logo-compact {
        width: 68px;
        height: 68px;
        box-shadow:
            0 0 0 6px rgba(3, 17, 37, 0.92),
            0 14px 24px rgba(6, 22, 45, 0.22);
    }

    .about-institutional-card h1 {
        font-size: 1.78rem;
    }

    .about-intro-grid {
        gap: 18px;
        margin-top: 18px;
    }

    .about-intro-text {
        gap: 12px;
    }

    .about-intro-text p {
        font-size: 0.98rem;
        line-height: 1.58;
    }

    .about-recommendation-card {
        max-width: none;
    }

    .servicos-recommendation-card {
        max-width: none;
    }

    .about-recommendation-card img {
        max-height: 190px;
        object-position: center 22%;
    }

    .about-recommendation-card figcaption {
        padding: 11px 13px;
        font-size: 0.88rem;
    }

    .about-card-actions {
        grid-template-columns: max-content minmax(0, 1fr);
        gap: 16px;
    }

    .about-card-actions .btn {
        min-height: 48px;
    }

    .btn-whatsapp-icon i {
        font-size: 1.78rem;
    }

    .about-institutional-lines {
        margin-top: 18px;
    }

    .about-institutional-lines li {
        grid-template-columns: 24px 1fr;
        gap: 10px;
        padding: 10px 0;
        font-size: 0.94rem;
        line-height: 1.42;
    }

    .about-address-section {
        padding-top: 18px;
    }

    .about-address-card {
        gap: 14px;
        padding: 20px;
    }

    .about-address-card > i {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .about-proof-visual {
        padding: 8px;
        border-radius: 16px;
    }

    .about-proof-robot {
        max-height: 320px;
        border-radius: 12px;
    }

    .about-proof-badge {
        gap: 12px;
        padding: 10px 12px;
        border-radius: 16px;
        font-size: 0.94rem;
    }

    .about-proof-badge img {
        width: 48px;
        height: 48px;
    }

    .about-line-list li {
        padding: 12px 0;
        font-size: 0.98rem;
    }

    .about-partner {
        padding: 48px 0;
    }

    .section-heading h2,
    .telemetric h2,
    .contato h2,
    .totens h2,
    .apps-band h2 {
        font-size: 1.9rem;
    }

    .servicos-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .home-page .servicos-grid {
        grid-template-columns: 1fr;
    }

    .contato-info,
    .contato-form,
    .offer-card,
    .process-grid div,
    .portfolio-copy {
        padding: 22px;
    }

    .contact-ticket {
        padding-top: 64px;
    }

    .home-page .hero-home {
        padding: 28px 0 36px;
    }

    .home-page .hero-shell {
        gap: 28px;
        min-height: auto;
    }

    .home-page .hero-mark {
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: auto;
        margin: 0;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 14px;
        opacity: 1;
        object-fit: contain;
        object-position: center;
        box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
    }

    .home-page .hero-home::after {
        display: none;
    }

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

    .proof-grid > div {
        min-height: 0;
        padding: 22px;
    }

    .portfolio,
    .totens,
    .apps-band {
        padding: 58px 0;
    }

    .portfolio-media {
        height: 198px;
    }

    .portfolio-media-web {
        height: 198px;
        padding: 24px;
    }

    .portfolio-media-web img {
        width: auto;
        max-height: 100%;
    }

    .totem-scenarios article,
    .platform-badge,
    .platform-note {
        grid-template-columns: 1fr;
    }

    .totens-actions {
        grid-template-columns: max-content minmax(0, 1fr);
        gap: 16px;
    }

    .totem-gallery {
        grid-template-columns: 1fr;
    }

    .totem-photo,
    .totem-photo img,
    .totem-photo-main,
    .totem-photo-main img {
        min-height: 320px;
    }

    .platform-panel {
        padding: 16px;
    }

    .platform-seals {
        grid-template-columns: repeat(2, minmax(0, 132px));
        gap: 10px;
        margin: -54px 0 4px;
    }

    .platform-seal {
        width: 132px;
        padding: 22px 12px;
    }

    .platform-seal strong {
        font-size: 0.96rem;
    }

    .platform-seal span {
        margin-bottom: 5px;
        font-size: 0.54rem;
    }

    .platform-seal em {
        margin-top: 4px;
        font-size: 0.65rem;
    }

    .footer-brand {
        flex-direction: column;
    }

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

    .totem-sticker {
        width: 36px;
        height: 36px;
    }

    .totem-sticker img {
        width: 29px;
        height: 29px;
    }

    .totem-sticker-institutional {
        top: 57%;
        left: 28%;
    }

    .totem-sticker-sales {
        top: 61%;
        left: 44%;
    }

    .contact-printer {
        --printer-mouth-inset: 18px;
        --printer-width: calc(100% + 18px);
        --ticket-width: calc(100% - 18px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .typing-caret {
        animation: none;
    }

    .home-page .hero-mark.hero-slide-in,
    .home-page .hero-mark.hero-slide-out,
    .contact-printer.is-printing .contact-ticket,
    .contact-printer.is-printing .printer-head span {
        animation: none;
    }
}
