:root {
    --blue: #0d6efd;
    --blue-dark: #0a58ca;
    --navy: #13243a;
    --text: #425466;
    --muted: #64748b;
    --soft: #f4f8fc;
}

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

html {
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
}

[x-cloak] {
    display: none !important;
}

/*
|--------------------------------------------------------------------------
| Header público compartilhado
|--------------------------------------------------------------------------
*/

.public-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    border-bottom: 1px solid #e6edf5;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 7px 25px rgba(19, 36, 58, 0.045);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.public-site-header__inner {
    width: min(100% - 40px, 1240px);
    min-height: 82px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.public-site-header__logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    text-decoration: none;
}

.public-site-header__logo img {
    display: block;
    width: auto;
    height: auto;
    max-width: none;
    max-height: 58px;
}

.public-site-header__nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 25px;
}

.public-site-header__nav > a:not(.public-site-header__restricted) {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.55rem 0.7rem;
    overflow: hidden;
    border-radius: 0.75rem;
    color: #24364b;
    font-size: 0.97rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.public-site-header__nav
> a:not(.public-site-header__restricted)::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.11);
    transform: translate(-50%, -50%);
    transition:
        width 0.3s ease,
        height 0.3s ease;
}

.public-site-header__nav
> a:not(.public-site-header__restricted):hover {
    color: var(--blue);
    transform: translateY(-1px);
}

.public-site-header__nav
> a:not(.public-site-header__restricted):hover::after {
    width: 145%;
    height: 220%;
}

.public-site-header__restricted {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 46px;
    padding: 0.7rem 1.1rem;
    border: 1px solid var(--blue);
    border-radius: 0.8rem;
    background: var(--blue);
    color: #fff !important;
    font-size: 0.97rem;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.23);
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.public-site-header__restricted:hover {
    border-color: var(--blue-dark);
    background: var(--blue-dark);
    color: #fff !important;
    box-shadow: 0 11px 25px rgba(13, 110, 253, 0.3);
    transform: translateY(-1px);
}

.public-site-header__toggle {
    display: none;
    width: 46px;
    height: 46px;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 1px solid #dbe4ef;
    border-radius: 13px;
    background: #fff;
    color: #24364b;
    font-size: 1.65rem;
    line-height: 1;
    box-shadow: 0 5px 15px rgba(19, 36, 58, 0.07);
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.public-site-header__toggle:hover {
    border-color: #b8d1f2;
    background: #f5f9ff;
    color: var(--blue);
}

.public-site-header__mobile {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 12px 18px 18px;
    border-top: 1px solid #e6edf5;
    background: #fff;
    box-shadow: 0 16px 30px rgba(19, 36, 58, 0.09);
}

.public-site-header__mobile.is-open {
    display: flex;
}

.public-site-header__mobile > a:not(.public-site-header__restricted) {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0.65rem 0.8rem;
    border-radius: 10px;
    color: #24364b;
    font-weight: 700;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.public-site-header__mobile > a:not(.public-site-header__restricted):hover {
    background: #f1f6fc;
    color: var(--blue);
}

.public-site-header__mobile .public-site-header__restricted {
    width: 100%;
    margin-top: 7px;
}

/*
|--------------------------------------------------------------------------
| Footer público compartilhado
|--------------------------------------------------------------------------
*/

.public-site-footer {
    padding: 40px 0;
    background: #101820;
    color: rgba(255, 255, 255, 0.78);
}

.public-site-footer__title {
    position: relative;
    margin-bottom: 24px;
    color: #fff;
    font-size: 1.35rem;
    font-weight: 800;
}

.public-site-footer__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 48px;
    height: 3px;
    border-radius: 999px;
    background: #01afef;
}

.public-site-footer p {
    margin: 5px 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.93rem;
    line-height: 1.72;
}

.public-site-footer a {
    color: #8fc0ff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.public-site-footer a:hover {
    color: #fff;
    text-decoration: underline;
}

.public-site-footer__map {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border: 0;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.22);
}

.public-site-footer__contact-line {
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.public-site-footer__contact-line i {
    margin-top: 3px;
    color: #8fc0ff;
}

/*
|--------------------------------------------------------------------------
| Página inicial
|--------------------------------------------------------------------------
*/

.home-page .slide {
    position: relative;
    width: 100%;
    height: 500px;
    min-height: 500px;
    overflow: hidden;
    background: #071426;
}

.home-page .slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(5, 16, 32, 0.72) 0%,
            rgba(5, 16, 32, 0.42) 42%,
            rgba(5, 16, 32, 0.08) 75%
        );
}

.home-page .slide > img {
    position: absolute;
    inset: 0;
    display: none;
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.home-page .slide > img.active {
    display: block;
}

.home-page .slide-text {
    display: none;
}

.home-page .hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: min(100% - 40px, 1240px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.home-page .hero-card {
    width: min(600px, 100%);
    color: #fff;
    pointer-events: auto;
}

.home-page .hero-eyebrow {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.home-page .hero-title {
    margin: 0;
    color: #fff;
    font-size: clamp(2.1rem, 5vw, 4.25rem);
    font-weight: 800;
    line-height: 1.03;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
}

.home-page .hero-description {
    max-width: 550px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.65;
}

.home-page .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.home-page .hero-primary,
.home-page .hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 50px;
    padding: 0.8rem 1.25rem;
    border-radius: 0.85rem;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.home-page .hero-primary {
    border: 1px solid #fff;
    background: #fff;
    color: #14213d;
}

.home-page .hero-primary:hover {
    color: #14213d;
    transform: translateY(-2px);
}

.home-page .hero-secondary {
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    backdrop-filter: blur(6px);
}

.home-page .hero-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    transform: translateY(-2px);
}

.home-page #solucoes {
    background: #f4f4f4;
}

.home-page .services-intro {
    max-width: 760px;
    margin: 0 auto 42px;
    color: #64748b;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.75;
}

.home-page .services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.home-page .service-card {
    position: relative;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e4eaf1;
    border-radius: 24px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 12px 34px rgba(15, 35, 60, 0.07);
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.home-page .service-card:hover {
    border-color: rgba(13, 110, 253, 0.38);
    color: inherit;
    box-shadow: 0 22px 48px rgba(13, 110, 253, 0.14);
    transform: translateY(-7px);
}

.home-page .service-card-visual {
    position: relative;
    min-height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(255, 255, 255, 0.55),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #edf5ff 0%,
            #dcecff 100%
        );
}

.home-page .service-card:nth-child(2n) .service-card-visual {
    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(255, 255, 255, 0.56),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #eef9ff 0%,
            #dff2ff 100%
        );
}

.home-page .service-card:nth-child(3n) .service-card-visual {
    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(255, 255, 255, 0.58),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #eef4ff 0%,
            #e6e9ff 100%
        );
}

.home-page .service-card-visual::before,
.home-page .service-card-visual::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(13, 110, 253, 0.12);
    border-radius: 50%;
}

.home-page .service-card-visual::before {
    right: -52px;
    bottom: -72px;
    width: 180px;
    height: 180px;
}

.home-page .service-card-visual::after {
    left: -32px;
    top: -42px;
    width: 110px;
    height: 110px;
}

.home-page .service-card-visual img {
    position: relative;
    z-index: 1;
    width: 92px;
    height: 92px;
    object-fit: contain;
    filter: drop-shadow(0 16px 20px rgba(27, 70, 120, 0.15));
    transition: transform 0.25s ease;
}

.home-page .service-card:hover .service-card-visual img {
    transform: scale(1.08) translateY(-3px);
}

.home-page .service-card-number {
    position: absolute;
    top: 17px;
    right: 18px;
    z-index: 1;
    color: rgba(13, 110, 253, 0.2);
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
}

.home-page .service-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 26px 25px 24px;
}

.home-page .service-card-category {
    margin-bottom: 9px;
    color: var(--blue);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-page .service-card-title {
    margin: 0;
    color: #172b45;
    font-size: 1.18rem;
    font-weight: 850;
    line-height: 1.35;
}

.home-page .service-card-description {
    margin: 13px 0 24px;
    color: #64748b;
    font-size: 0.94rem;
    line-height: 1.65;
}

.home-page .service-card-button {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: auto;
    color: var(--blue);
    font-size: 0.9rem;
    font-weight: 850;
}

.home-page .service-card-button i {
    transition: transform 0.2s ease;
}

.home-page .service-card:hover .service-card-button i {
    transform: translateX(5px);
}

.home-page #quem-somos {
    padding: 40px 20px;
    background: #333;
    color: #fff;
    text-align: center;
}

.home-page #quem-somos h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.home-page .quem-somos-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.home-page .quem-somos-grid .column {
    flex: 1;
    text-align: center;
}

.home-page .quem-somos-grid .column h2 {
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.home-page .quem-somos-grid .column h3 {
    margin-bottom: 15px;
    color: #fff;
    font-size: 1.8rem;
}

.home-page .quem-somos-grid .column p {
    margin: 0;
    text-align: justify;
    font-size: 1rem;
    line-height: 1.5;
}

.home-page .desktop-only {
    display: block;
}

.home-page .mobile-only {
    display: none;
}

/*
|--------------------------------------------------------------------------
| Página individual do serviço
|--------------------------------------------------------------------------
*/

.service-page .hero {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    background: #0c1c31;
    color: #fff;
}

.service-page .hero-background {
    position: absolute;
    inset: 0;
}

.service-page .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.38;
    transform: scale(1.025);
}

.service-page .hero-background::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(5, 17, 34, 0.96) 0%,
            rgba(5, 17, 34, 0.83) 48%,
            rgba(5, 17, 34, 0.25) 100%
        ),
        linear-gradient(
            0deg,
            rgba(5, 17, 34, 0.22),
            transparent
        );
}

.service-page .hero-inner {
    position: relative;
    z-index: 2;
    width: min(100% - 40px, 1240px);
    min-height: 610px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    align-items: center;
    gap: 72px;
    padding: 74px 0;
}

.service-page .breadcrumb-site {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.88rem;
    font-weight: 700;
}

.service-page .breadcrumb-site a {
    color: #fff;
    text-decoration: none;
}

.service-page .eyebrow {
    margin-bottom: 14px;
    color: #8fc0ff;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.service-page .hero-title {
    max-width: 850px;
    margin: 0;
    color: #fff;
    font-size: clamp(2.7rem, 6vw, 5.4rem);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.service-page .hero-summary {
    max-width: 730px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    line-height: 1.72;
}

.service-page .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.service-page .button-primary,
.service-page .button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 51px;
    padding: 0.82rem 1.25rem;
    border-radius: 0.85rem;
    font-weight: 850;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.service-page .button-primary {
    background: #fff;
    color: var(--navy);
}

.service-page .button-primary:hover {
    color: var(--navy);
    transform: translateY(-2px);
}

.service-page .button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    backdrop-filter: blur(7px);
}

.service-page .button-secondary:hover {
    color: #fff;
    transform: translateY(-2px);
}

.service-page .hero-art {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
}

.service-page .hero-art::before,
.service-page .hero-art::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
}

.service-page .hero-art::before {
    right: -70px;
    bottom: -90px;
    width: 260px;
    height: 260px;
}

.service-page .hero-art::after {
    left: -60px;
    top: -70px;
    width: 190px;
    height: 190px;
}

.service-page .hero-art img {
    position: relative;
    z-index: 1;
    width: min(190px, 58%);
    height: auto;
    filter: drop-shadow(0 22px 36px rgba(0, 0, 0, 0.25));
}

.service-page .section {
    padding: 92px 0;
}

.service-page .soft {
    background: var(--soft);
}

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

.service-page .intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    align-items: start;
    gap: 72px;
}

.service-page .section-kicker {
    color: var(--blue);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.service-page .section-title {
    margin: 13px 0 0;
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 3.45rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.service-page .copy p {
    margin: 0 0 21px;
    color: #506176;
    font-size: 1.08rem;
    line-height: 1.83;
}

.service-page .benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 42px;
}

.service-page .benefit-card {
    min-height: 195px;
    padding: 27px;
    border: 1px solid #e3ebf4;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(19, 49, 82, 0.055);
}

.service-page .benefit-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #eaf3ff;
    color: var(--blue);
    font-size: 1.3rem;
}

.service-page .benefit-card h3 {
    margin: 22px 0 0;
    color: var(--navy);
    font-size: 1.05rem;
    font-weight: 850;
    line-height: 1.45;
}

.service-page .deliveries-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    margin-top: 38px;
}

.service-page .delivery {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 20px;
    border: 1px solid #e3ebf4;
    border-radius: 17px;
    background: #fff;
}

.service-page .delivery i {
    margin-top: 2px;
    color: var(--blue);
}

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

.service-page .process-card {
    position: relative;
    padding: 28px 25px;
    overflow: hidden;
    border: 1px solid #dfe8f2;
    border-radius: 22px;
    background: #fff;
}

.service-page .process-number {
    color: rgba(13, 110, 253, 0.16);
    font-size: 3rem;
    font-weight: 950;
    line-height: 1;
}

.service-page .process-card h3 {
    margin: 18px 0 9px;
    color: var(--navy);
    font-size: 1.06rem;
    font-weight: 850;
}

.service-page .process-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.65;
}

.service-page .visual-section {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    overflow: hidden;
    border-radius: 30px;
    background: var(--navy);
    color: #fff;
    box-shadow: 0 25px 70px rgba(19, 36, 58, 0.16);
}

.service-page .visual-image {
    min-height: 470px;
}

.service-page .visual-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-page .visual-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 55px;
}

.service-page .visual-copy .section-kicker {
    color: #88bcff;
}

.service-page .visual-copy h2 {
    margin: 13px 0 0;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 900;
    line-height: 1.08;
}

.service-page .visual-copy p {
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.03rem;
    line-height: 1.75;
}

.service-page .faq-list {
    max-width: 900px;
    margin: 40px auto 0;
}

.service-page .faq-item {
    margin-bottom: 13px;
    overflow: hidden;
    border: 1px solid #e1e9f2;
    border-radius: 17px;
    background: #fff;
}

.service-page .faq-item summary {
    position: relative;
    padding: 21px 58px 21px 23px;
    color: var(--navy);
    cursor: pointer;
    font-weight: 850;
    list-style: none;
}

.service-page .faq-item summary::-webkit-details-marker {
    display: none;
}

.service-page .faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 23px;
    color: var(--blue);
    font-size: 1.45rem;
    transform: translateY(-50%);
}

.service-page .faq-item[open] summary::after {
    content: "−";
}

.service-page .faq-answer {
    padding: 0 23px 22px;
    color: var(--muted);
    line-height: 1.72;
}

.service-page .cta {
    overflow: hidden;
    padding: 55px;
    border-radius: 30px;
    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(255, 255, 255, 0.16),
            transparent 31%
        ),
        linear-gradient(135deg, #112640, #0d6efd);
    color: #fff;
}

.service-page .cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.service-page .cta h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.15rem);
    font-weight: 900;
    line-height: 1.08;
}

.service-page .cta p {
    max-width: 660px;
    margin: 15px 0 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.service-page .related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 38px;
}

.service-page .related-card {
    display: block;
    padding: 27px;
    border: 1px solid #e3ebf4;
    border-radius: 22px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.service-page .related-card:hover {
    border-color: #bcd5fa;
    color: inherit;
    box-shadow: 0 20px 48px rgba(13, 110, 253, 0.1);
    transform: translateY(-5px);
}

.service-page .related-card img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.service-page .related-card h3 {
    margin: 20px 0 9px;
    color: var(--navy);
    font-size: 1.1rem;
    font-weight: 850;
}

.service-page .related-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.65;
}

.service-page .ideal-box {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: flex-start;
    gap: 22px;
    padding: 38px;
    border: 1px solid #dce8f5;
    border-radius: 26px;
    background:
        linear-gradient(
            135deg,
            #f7fbff 0%,
            #edf5ff 100%
        );
}

.service-page .ideal-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: var(--blue);
    color: #fff;
    font-size: 1.55rem;
    box-shadow: 0 12px 28px rgba(13, 110, 253, 0.2);
}

.service-page .ideal-content h2 {
    margin: 8px 0 0;
    color: var(--navy);
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    font-weight: 900;
    line-height: 1.15;
}

.service-page .ideal-content p {
    margin: 15px 0 0;
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.78;
}

/*
|--------------------------------------------------------------------------
| Responsividade compartilhada
|--------------------------------------------------------------------------
*/

@media (max-width: 1100px) {
    .public-site-header__nav {
        gap: 17px;
    }

    .public-site-header__nav > a:not(.public-site-header__restricted),
    .public-site-header__restricted {
        font-size: 0.92rem;
    }

    .public-site-header__restricted {
        padding-inline: 0.9rem;
    }

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

@media (max-width: 1000px) {
    .service-page .benefits-grid,
    .service-page .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-page .hero-inner,
    .service-page .intro-grid,
    .service-page .visual-section {
        grid-template-columns: 1fr;
    }

    .service-page .hero-art {
        min-height: 270px;
    }

    .service-page .visual-image {
        min-height: 340px;
    }
}

@media (max-width: 900px) {
    .public-site-header__inner {
        width: min(100% - 28px, 1240px);
        min-height: 74px;
    }

    .public-site-header__logo img {
        max-height: 50px;
    }

    .public-site-header__nav {
        display: none;
    }

    .public-site-header__toggle {
        display: inline-flex;
    }

    .home-page .hero-content {
        width: min(100% - 30px, 1240px);
    }
}

@media (max-width: 820px) {
    .service-page .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .home-page .quem-somos-grid {
        flex-direction: column;
        gap: 10px;
    }

    .home-page .quem-somos-grid .column {
        flex: 1 1 100%;
        max-width: 100%;
        text-align: center;
    }

    .home-page .quem-somos-grid .column p {
        text-align: center;
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .home-page .desktop-only {
        display: none;
    }

    .home-page .mobile-only {
        display: block;
    }

    .public-site-footer__contact-line {
        justify-content: center;
        text-align: left;
    }
}

@media (max-width: 640px) {
    .home-page .slide,
    .home-page .slide > img {
        height: 570px;
        min-height: 570px;
    }

    .home-page .slide::after {
        background:
            linear-gradient(
                180deg,
                rgba(5, 16, 32, 0.48) 0%,
                rgba(5, 16, 32, 0.78) 100%
            );
    }

    .home-page .hero-content {
        align-items: flex-end;
        padding-bottom: 44px;
    }

    .home-page .hero-actions {
        flex-direction: column;
    }

    .home-page .hero-primary,
    .home-page .hero-secondary {
        width: 100%;
    }

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

    .home-page .service-card {
        min-height: 0;
    }

    .home-page .service-card-visual {
        min-height: 165px;
    }

    .service-page .hero-inner,
    .service-page .container-site {
        width: min(100% - 28px, 1160px);
    }

    .service-page .hero {
        min-height: 0;
    }

    .service-page .hero-inner {
        min-height: 0;
        padding: 58px 0;
    }

    .service-page .benefits-grid,
    .service-page .deliveries-grid,
    .service-page .process-grid {
        grid-template-columns: 1fr;
    }

    .service-page .section {
        padding: 68px 0;
    }

    .service-page .visual-copy,
    .service-page .cta {
        padding: 35px 27px;
    }

    .service-page .cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .service-page .ideal-box {
        grid-template-columns: 1fr;
        padding: 29px 25px;
    }

    .service-page .hero-actions {
        flex-direction: column;
    }

    .service-page .button-primary,
    .service-page .button-secondary {
        width: 100%;
    }
}
