:root {
    --primary-color: #078fd1;
    --primary-light: #41c8ff;
    --primary-dark: #056ca3;
    --whatsapp-color: #1fae5b;
    --whatsapp-dark: #168d49;

    --navy-950: #03101d;
    --navy-900: #061729;
    --navy-850: #082039;
    --navy-800: #0a2948;

    --dark-color: #0d1b2a;
    --text-color: #42526a;
    --light-color: #f4f8fc;
    --white-color: #ffffff;
    --border-color: #dbe5ee;

    --container-width: 1180px;
    --header-height: 82px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    min-width: 320px;
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;
    color: var(--text-color);
    background-color: var(--white-color);
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

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

.container {
    width: min(90%, var(--container-width));
    margin-inline: auto;
}

/* CABEÇALHO */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    background-color: rgba(3, 16, 29, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    transition:
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}

.header.scrolled {
    background-color: rgba(3, 16, 29, 0.94);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    position: relative;
    z-index: 1002;
}

.logo img {
    width: 220px;
    height: auto;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navigation a {
    position: relative;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.94rem;
    font-weight: 600;
    transition: color 0.25s ease;
}

.navigation > a:not(.navigation-contact)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    background-color: var(--primary-light);
    border-radius: 50px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.navigation > a:not(.navigation-contact):hover {
    color: var(--white-color);
}

.navigation > a:not(.navigation-contact):hover::after {
    transform: scaleX(1);
}

.navigation-contact {
    padding: 10px 18px;
    color: var(--white-color) !important;
    background-color: rgba(7, 143, 209, 0.16);
    border: 1px solid rgba(65, 200, 255, 0.42);
    border-radius: 8px;
}

.navigation-contact:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.menu-button {
    position: relative;
    z-index: 1002;
    width: 42px;
    height: 42px;
    display: none;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-button span {
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: var(--white-color);
    border-radius: 50px;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.menu-button span:nth-child(1) {
    transform: translateY(-8px);
}

.menu-button span:nth-child(3) {
    transform: translateY(8px);
}

.menu-button.active span:nth-child(1) {
    transform: rotate(45deg);
}

.menu-button.active span:nth-child(2) {
    opacity: 0;
}

.menu-button.active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* HERO */

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + 70px) 0 85px;
    color: var(--white-color);
    background:
        radial-gradient(circle at 78% 48%, rgba(0, 133, 196, 0.15), transparent 34%),
        radial-gradient(circle at 18% 72%, rgba(8, 87, 157, 0.13), transparent 38%),
        linear-gradient(120deg, #03101d 0%, #051a2d 48%, #062943 100%);
    overflow: hidden;
    isolation: isolate;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.65), transparent);
    pointer-events: none;
    z-index: -2;
}

.hero-network {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.92;
    pointer-events: none;
    z-index: -1;
}

.hero-light {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.17;
    pointer-events: none;
    z-index: -1;
}

.hero-light-one {
    top: 12%;
    right: 8%;
    width: 350px;
    height: 350px;
    background-color: #00a4ef;
    animation: floatingLight 8s ease-in-out infinite;
}

.hero-light-two {
    bottom: -130px;
    left: 18%;
    width: 320px;
    height: 320px;
    background-color: #005da8;
    animation: floatingLight 10s ease-in-out infinite reverse;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.hero-text {
    width: min(100%, 790px);
    max-width: 790px;
    animation: heroContentIn 0.9s ease both;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #8fdcff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background-color: var(--primary-light);
    box-shadow: 0 0 12px var(--primary-light);
}

.hero h1 {
    max-width: 820px;
    margin-bottom: 24px;
    font-size: clamp(2.8rem, 5.5vw, 5.2rem);
    font-weight: 750;
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.hero h1 span {
    display: block;
    color: transparent;
    background: linear-gradient(90deg, #ffffff 0%, #a9e5ff 42%, #52bfff 100%);
    background-clip: text;
    -webkit-background-clip: text;
}

.hero-text > p {
    max-width: 680px;
    margin-bottom: 34px;
    color: rgba(229, 242, 255, 0.78);
    font-size: clamp(1rem, 1.35vw, 1.16rem);
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 23px;
    border: 1px solid transparent;
    border-radius: 9px;
    font-weight: 700;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

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

.button-primary {
    color: var(--white-color);
    background: linear-gradient(135deg, #087fc0, #079ee0);
    box-shadow: 0 12px 30px rgba(0, 133, 201, 0.24);
}

.button-outline {
    color: rgba(255, 255, 255, 0.9);
    background-color: rgba(255, 255, 255, 0.035);
    border-color: rgba(255, 255, 255, 0.24);
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 50px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-highlight {
    display: flex;
    flex-direction: column;
}

.hero-highlight strong {
    color: var(--white-color);
    font-size: 0.9rem;
}

.hero-highlight span {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.78rem;
}

.scroll-indicator {
    position: absolute;
    right: 50%;
    bottom: 24px;
    width: 26px;
    height: 42px;
    display: flex;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 20px;
    transform: translateX(50%);
}

.scroll-indicator span {
    width: 4px;
    height: 7px;
    margin-top: 8px;
    background-color: var(--primary-light);
    border-radius: 20px;
    animation: scrollMove 1.8s ease-in-out infinite;
}

/* SOBRE */

.about-section {
    padding: 112px 0;
    background:
        linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.about-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 85px;
    align-items: start;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.about-heading h2,
.contact-intro h2 {
    color: var(--dark-color);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.about-lead {
    margin-top: 25px;
    color: #196e9a;
    font-size: 1.12rem;
    font-weight: 700;
    line-height: 1.65;
}

.about-copy {
    padding-top: 6px;
}

.about-copy p {
    margin-bottom: 19px;
    color: #526176;
    font-size: 1rem;
    line-height: 1.8;
}

.about-copy p:last-child {
    margin-bottom: 0;
}

/* SERVIÇOS */

.services-dashboard {
    position: relative;
    padding: 110px 0;
    color: var(--white-color);
    background:
        radial-gradient(circle at 85% 20%, rgba(0, 137, 205, 0.14), transparent 30%),
        radial-gradient(circle at 8% 75%, rgba(0, 94, 164, 0.13), transparent 34%),
        linear-gradient(145deg, #03101d 0%, #06182a 52%, #07243b 100%);
    overflow: hidden;
    isolation: isolate;
}

.services-dashboard-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(68, 183, 236, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(68, 183, 236, 0.028) 1px, transparent 1px);
    background-size: 54px 54px;
    pointer-events: none;
    z-index: -2;
}

.services-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
    z-index: -1;
}

.services-glow-one {
    top: 2%;
    right: -100px;
    width: 390px;
    height: 390px;
    background-color: rgba(0, 151, 220, 0.14);
}

.services-glow-two {
    bottom: -160px;
    left: -100px;
    width: 420px;
    height: 420px;
    background-color: rgba(0, 92, 165, 0.14);
}

.services-heading {
    max-width: 840px;
    margin: 0 auto 58px;
    text-align: center;
}

.services-eyebrow {
    display: inline-block;
    margin-bottom: 15px;
    color: #67d1ff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.services-heading h2 {
    margin-bottom: 22px;
    color: var(--white-color);
    font-size: clamp(2.2rem, 4.4vw, 4rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.services-heading h2 span {
    color: #54c5ff;
}

.services-heading p {
    max-width: 740px;
    margin-inline: auto;
    color: rgba(226, 239, 250, 0.68);
}

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

.service-dashboard-card {
    position: relative;
    min-height: 225px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 26px;
    background: linear-gradient(145deg, rgba(13, 39, 61, 0.84), rgba(5, 24, 41, 0.92));
    border: 1px solid rgba(72, 175, 224, 0.2);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.17);
    overflow: hidden;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.service-dashboard-card:hover {
    transform: translateY(-5px);
    border-color: rgba(78, 198, 248, 0.48);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.25);
}

.service-card-top {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: start;
    gap: 18px;
}

.service-icon {
    position: relative;
    width: 68px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    color: #49c5ff;
    background: linear-gradient(145deg, rgba(16, 72, 111, 0.6), rgba(3, 30, 52, 0.86));
    border: 1px solid rgba(57, 186, 244, 0.38);
    clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0 50%);
}

.service-icon svg {
    width: 35px;
    height: 35px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-dashboard-card h3 {
    margin: 2px 0 9px;
    color: var(--white-color);
    font-size: 1.08rem;
    line-height: 1.25;
}

.service-dashboard-card p {
    color: rgba(220, 235, 247, 0.66);
    font-size: 0.89rem;
    line-height: 1.65;
}

.service-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 24px;
    padding-top: 17px;
    border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.service-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(224, 239, 249, 0.7);
    font-size: 0.76rem;
}

.service-status i {
    width: 7px;
    height: 7px;
    background-color: #28d899;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(40, 216, 153, 0.6);
}

/* GRÁFICOS VARIADOS */

.chart-line,
.chart-pulse,
.chart-wave {
    width: 86px;
    height: 30px;
    overflow: hidden;
}

.chart-line svg,
.chart-pulse svg,
.chart-wave svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: #4bcaff;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.chart-line path,
.chart-pulse path,
.chart-wave path {
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
    animation: drawChart 2.8s ease-in-out infinite;
}

.chart-line circle {
    fill: #53d1ff;
    filter: drop-shadow(0 0 5px #53d1ff);
    animation: chartPoint 2.8s ease-in-out infinite;
}

.chart-gauge,
.chart-donut {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: conic-gradient(#4bcaff 0 72%, rgba(75, 202, 255, 0.12) 72% 100%);
    animation: rotateGauge 4s linear infinite;
}

.chart-gauge span,
.chart-donut span {
    width: 22px;
    height: 22px;
    background-color: #071c2e;
    border-radius: 50%;
}

.chart-donut {
    background: conic-gradient(#4bcaff 0 42%, #28d899 42% 76%, rgba(75, 202, 255, 0.12) 76% 100%);
    animation-duration: 5.5s;
}

.chart-bars {
    width: 75px;
    height: 28px;
    display: flex;
    align-items: flex-end;
    gap: 5px;
}

.chart-bars b {
    width: 10px;
    display: block;
    background: linear-gradient(to top, rgba(20, 160, 226, 0.15), rgba(75, 203, 255, 0.95));
    border-radius: 8px 8px 2px 2px;
    animation: dashboardBar 2.4s ease-in-out infinite;
}

.chart-bars b:nth-child(1) { height: 28%; }
.chart-bars b:nth-child(2) { height: 64%; animation-delay: .2s; }
.chart-bars b:nth-child(3) { height: 42%; animation-delay: .4s; }
.chart-bars b:nth-child(4) { height: 82%; animation-delay: .6s; }
.chart-bars b:nth-child(5) { height: 55%; animation-delay: .8s; }

.chart-monitor {
    width: 78px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chart-monitor i {
    width: 7px;
    height: 7px;
    background-color: #45c9ff;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(69, 201, 255, .55);
    animation: monitorBlink 1.7s ease-in-out infinite;
}

.chart-monitor i:nth-child(2) { animation-delay: .2s; }
.chart-monitor i:nth-child(3) { animation-delay: .4s; }
.chart-monitor i:nth-child(4) { animation-delay: .6s; }
.chart-monitor i:nth-child(5) { animation-delay: .8s; }
.chart-monitor i:nth-child(6) { animation-delay: 1s; }

.chart-links {
    position: relative;
    width: 76px;
    height: 28px;
}

.chart-links i {
    position: absolute;
    top: 10px;
    width: 12px;
    height: 12px;
    border: 2px solid #4bcaff;
    border-radius: 50%;
}

.chart-links i:first-child { left: 0; }
.chart-links i:nth-child(2) { right: 0; }

.chart-links b {
    position: absolute;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: #4bcaff;
    transform-origin: left;
    animation: linkFlow 2s ease-in-out infinite;
}

.chart-links b:nth-of-type(1) { top: 9px; }
.chart-links b:nth-of-type(2) {
    top: 18px;
    animation-delay: 1s;
}

.chart-radar {
    width: 38px;
    height: 38px;
}

.chart-radar svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: rgba(75, 202, 255, .72);
    stroke-width: 1;
    animation: radarPulse 2.8s ease-in-out infinite;
}

/* CONTATO */

.contact-section {
    padding: 112px 0;
    background:
        radial-gradient(circle at 90% 12%, rgba(7, 143, 209, 0.08), transparent 30%),
        #f6f9fc;
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: start;
}

.contact-intro > p {
    max-width: 510px;
    margin-top: 24px;
    color: #5d6b7e;
    font-size: 1.02rem;
    line-height: 1.75;
}

.contact-note {
    display: flex;
    gap: 13px;
    margin-top: 30px;
    padding: 18px;
    background-color: rgba(7, 143, 209, 0.06);
    border: 1px solid rgba(7, 143, 209, 0.13);
    border-radius: 12px;
}

.contact-note span {
    flex: 0 0 auto;
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    color: var(--white-color);
    background-color: var(--primary-color);
    border-radius: 50%;
    font-size: .82rem;
    font-weight: 800;
}

.contact-note p {
    color: #536176;
    font-size: .9rem;
    line-height: 1.55;
}

.whatsapp-form {
    padding: 34px;
    background-color: var(--white-color);
    border: 1px solid #e1eaf2;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(15, 48, 73, 0.09);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 7px;
    color: var(--dark-color);
    font-size: .9rem;
    font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 15px;
    color: var(--dark-color);
    background-color: #fbfdff;
    border: 1px solid var(--border-color);
    border-radius: 9px;
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.form-group textarea {
    min-height: 145px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    background-color: var(--white-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(7, 143, 209, 0.1);
}

.button-whatsapp {
    width: 100%;
    gap: 10px;
    color: var(--white-color);
    background: linear-gradient(135deg, var(--whatsapp-color), var(--whatsapp-dark));
    box-shadow: 0 12px 28px rgba(31, 174, 91, 0.2);
}

.button-whatsapp:hover {
    box-shadow: 0 16px 34px rgba(31, 174, 91, 0.3);
}

.button-whatsapp svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.form-privacy {
    margin-top: 13px;
    color: #7a8796;
    font-size: .78rem;
    text-align: center;
}

.footer {
    padding: 28px 0;
    color: #cbd5e1;
    text-align: center;
    background-color: var(--navy-950);
}

/* ANIMAÇÕES */

@keyframes heroContentIn {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes floatingLight {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(20px, -18px, 0); }
}

@keyframes scrollMove {
    0% { opacity: 0; transform: translateY(0); }
    35% { opacity: 1; }
    100% { opacity: 0; transform: translateY(17px); }
}

@keyframes dashboardBar {
    0%, 100% { opacity: .62; transform: scaleY(.78); transform-origin: bottom; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: bottom; }
}

@keyframes drawChart {
    0% { stroke-dashoffset: 120; opacity: .45; }
    45%, 75% { stroke-dashoffset: 0; opacity: 1; }
    100% { stroke-dashoffset: -120; opacity: .45; }
}

@keyframes chartPoint {
    0%, 100% { opacity: .35; transform: scale(.7); transform-origin: center; }
    55% { opacity: 1; transform: scale(1.15); }
}

@keyframes rotateGauge {
    to { transform: rotate(360deg); }
}

@keyframes monitorBlink {
    0%, 100% { opacity: .25; transform: scale(.72); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes linkFlow {
    0% { opacity: .2; transform: scaleX(.15); }
    50% { opacity: 1; transform: scaleX(1); }
    100% { opacity: .2; transform: scaleX(.15); transform-origin: right; }
}

@keyframes radarPulse {
    0%, 100% { opacity: .45; transform: scale(.88); transform-origin: center; }
    50% { opacity: 1; transform: scale(1); }
}

/* RESPONSIVIDADE */

@media (max-width: 1050px) {
    .services-honeycomb {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-layout,
    .contact-layout {
        gap: 50px;
    }
}

@media (max-width: 820px) {
    :root {
        --header-height: 74px;
    }

    .logo img {
        width: 185px;
    }

    .menu-button {
        display: flex;
    }

    .navigation {
        position: fixed;
        inset: 0;
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        padding: 100px 25px 40px;
        background-color: rgba(3, 16, 29, 0.98);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);
        transition:
            opacity 0.25s ease,
            visibility 0.25s ease,
            transform 0.25s ease;
    }

    .navigation.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navigation a {
        font-size: 1.2rem;
    }

    .hero {
        min-height: auto;
        padding-top: calc(var(--header-height) + 70px);
    }

    .hero-content {
        justify-content: center;
        text-align: center;
    }

    .hero-eyebrow,
    .hero-buttons,
    .hero-highlights {
        justify-content: center;
    }

    .hero-text > p {
        margin-inline: auto;
    }

    .scroll-indicator {
        display: none;
    }

    .about-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }
}

@media (max-width: 650px) {
    .services-honeycomb {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 560px) {
    .logo img {
        width: 165px;
    }

    .hero h1 {
        font-size: clamp(2.45rem, 13vw, 3.4rem);
    }

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

    .hero-buttons .button {
        width: 100%;
    }

    .hero-highlights {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
        text-align: left;
    }

    .about-section,
    .services-dashboard,
    .contact-section {
        padding: 78px 0;
    }

    .service-dashboard-card {
        min-height: auto;
        padding: 22px;
    }

    .service-card-top {
        grid-template-columns: 60px minmax(0, 1fr);
        gap: 15px;
    }

    .service-icon {
        width: 58px;
    }

    .whatsapp-form {
        padding: 24px 20px;
    }
}

@media (max-width: 400px) {
    .service-card-top {
        grid-template-columns: 1fr;
    }

    .service-card-footer {
        align-items: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* SEGURANÇA E VALIDAÇÃO DO FORMULÁRIO */
.form-trap {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.form-alert {
    margin-bottom: 20px;
    padding: 14px 16px;
    color: #7a271a;
    background: #fff2f0;
    border: 1px solid #ffc9c2;
    border-radius: 9px;
    font-size: .9rem;
    line-height: 1.5;
}

.turnstile-wrapper {
    min-height: 65px;
    display: flex;
    align-items: center;
    margin: 2px 0 18px;
}
