/* =========================================================
   PC LIMPEZA & HIGIENIZAÇÃO
   STYLE.CSS
   ========================================================= */

:root {

    --blue: #004795;
    --blue-dark: #00336F;
    --blue-deep: #002A5D;
    --blue-light: #0064B8;

    --orange: #FFA101;
    --orange-dark: #F28C00;

    --white: #FFFFFF;
    --white-soft: #F5F9FD;

    --text: #EAF4FF;
    --muted: #B9D2E8;

    --dark-text: #123250;
    --dark-muted: #66809A;

    --line: rgba(255, 255, 255, .14);
    --line-dark: #DCE7F0;

    --radius: 28px;

}


/* =========================================================
   RESET
   ========================================================= */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

    scroll-padding-top: 90px;

}


body {

    font-family: "Poppins", sans-serif;

    background: var(--blue);

    color: var(--white);

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;

    text-rendering: optimizeLegibility;

}


body,
button,
input,
textarea,
select {

    font-family: "Poppins", sans-serif;

}


a {

    color: inherit;

    text-decoration: none;

}


button {

    border: 0;

    outline: 0;

}


img {

    display: block;

    width: 100%;

}


::selection {

    background: var(--orange);

    color: var(--blue-dark);

}


.container {

    width:
        min(
            1180px,
            calc(100% - 40px)
        );

    margin: 0 auto;

}


/* =========================================================
   HEADER
   ========================================================= */

.header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    padding: 18px 0;

    transition:
        background .35s ease,
        padding .35s ease,
        border .35s ease,
        box-shadow .35s ease;

}


.header.scrolled {

    padding: 11px 0;

    background:
        rgba(0, 51, 111, .94);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    border-bottom:
        1px solid
        rgba(255, 255, 255, .12);

    box-shadow:
        0 10px 35px
        rgba(0, 0, 0, .10);

}


.nav {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

}


/* =========================================================
   LOGO
   ========================================================= */

.brand {

    display: flex;

    align-items: center;

    gap: 11px;

    flex-shrink: 0;

}


.brand-logo {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: visible;

    background: transparent;

    border-radius: 0;

    transition:
        transform .3s ease;

}


.brand:hover .brand-logo {

    transform:
        translateY(-2px);

}


.brand-logo img {

    width: 58px;

    height: 58px;

    object-fit: contain;

    background: transparent;

    transform:
        scale(1.95);

}


/* =========================================================
   NAV DESKTOP
   ========================================================= */

.nav-links {

    display: flex;

    align-items: center;

    gap: 34px;

    color:
        rgba(255, 255, 255, .82);

    font-size: 12px;

    font-weight: 500;

}


.nav-links a {

    position: relative;

    transition:
        color .25s ease,
        transform .25s ease;

}


.nav-links a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -7px;

    width: 0;

    height: 2px;

    border-radius: 20px;

    background:
        var(--orange);

    transition:
        width .25s ease;

}


.nav-links a:hover {

    color:
        var(--white);

    transform:
        translateY(-1px);

}


.nav-links a:hover::after {

    width: 100%;

}


/* =========================================================
   BOTÃO DESKTOP
   ========================================================= */

.nav-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 43px;

    padding: 0 18px;

    border-radius: 13px;

    background:
        var(--orange);

    color:
        var(--blue-dark);

    font-size: 10px;

    font-weight: 800;

    white-space: nowrap;

    box-shadow:
        0 10px 25px
        rgba(0, 0, 0, .12);

    transition:
        background .25s ease,
        transform .25s ease,
        box-shadow .25s ease;

}


.nav-button:hover {

    background:
        #ffb329;

    transform:
        translateY(-2px);

    box-shadow:
        0 15px 30px
        rgba(0, 0, 0, .18);

}


/* =========================================================
   HAMBURGUER
   ========================================================= */

.menu-toggle {

    display: none;

    width: 48px;

    height: 48px;

    padding: 0;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;

    border:
        1px solid
        rgba(255, 161, 1, .55);

    border-radius: 13px;

    background:
        rgba(255, 161, 1, .08);

    cursor: pointer;

    flex-shrink: 0;

    transition:
        background .25s ease,
        border .25s ease,
        transform .25s ease;

}


.menu-toggle span {

    display: block;

    width: 21px;

    height: 2px;

    border-radius: 10px;

    background:
        var(--orange);

    transition:
        transform .25s ease,
        opacity .25s ease;

}


.menu-toggle:hover {

    background:
        rgba(255, 161, 1, .16);

    border-color:
        var(--orange);

}


.menu-toggle:active {

    transform:
        scale(.95);

}


/* =========================================================
   HERO
   ========================================================= */

.hero {

    position: relative;

    min-height: 100vh;

    padding:
        150px 0 90px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #004795 0%,
            #003B80 50%,
            #00336F 100%
        );

}


.hero::before {

    content: "";

    position: absolute;

    width: 650px;

    height: 650px;

    top: -320px;

    left: -260px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, .08),
            transparent 68%
        );

    pointer-events: none;

}


.hero::after {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    right: -250px;

    bottom: -300px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 161, 1, .14),
            transparent 68%
        );

    pointer-events: none;

}


.hero-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 70px;

    align-items: center;

}


.hero-content {

    position: relative;

    z-index: 3;

}


.eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color:
        var(--orange);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.8px;

}


.eyebrow::before {

    content: "";

    width: 28px;

    height: 3px;

    border-radius: 20px;

    background:
        var(--orange);

}


.hero h1 {

    max-width: 650px;

    margin-top: 22px;

    font-size:
        clamp(48px, 6vw, 78px);

    line-height: .98;

    letter-spacing: -4px;

    font-weight: 800;

}


.hero h1 span {

    display: block;

    color:
        var(--orange);

}


.hero-description {

    max-width: 520px;

    margin:
        27px 0 32px;

    color:
        var(--muted);

    font-size: 14px;

    line-height: 1.8;

}


.hero-actions {

    display: flex;

    align-items: center;

    gap: 12px;

    flex-wrap: wrap;

}


/* =========================================================
   BOTÕES
   ========================================================= */

.button {

    min-height: 53px;

    padding: 0 22px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 15px;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .2px;

    transition:
        background .25s ease,
        border .25s ease,
        color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;

}


.button-primary {

    background:
        var(--orange);

    color:
        var(--blue-dark);

    box-shadow:
        0 14px 35px
        rgba(0, 0, 0, .18);

}


.button-primary:hover {

    background:
        #ffb329;

    transform:
        translateY(-3px);

    box-shadow:
        0 18px 40px
        rgba(0, 0, 0, .24);

}


.button-secondary {

    border:
        1px solid
        rgba(255, 255, 255, .38);

    color:
        var(--white);

    background:
        rgba(255, 255, 255, .02);

}


.button-secondary:hover {

    border-color:
        var(--orange);

    color:
        var(--orange);

    background:
        rgba(255, 161, 1, .06);

    transform:
        translateY(-3px);

}


/* =========================================================
   HERO PHOTO
   ========================================================= */

.hero-photo {

    position: relative;

    height: 610px;

    overflow: hidden;

    border-radius: 34px;

    background:
        var(--blue-dark);

    box-shadow:
        0 30px 70px
        rgba(0, 0, 0, .25);

    transform:
        translateZ(0);

}


.hero-photo img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform .8s ease;

}


.hero-photo:hover img {

    transform:
        scale(1.035);

}


.hero-photo-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 40, 80, .02) 25%,
            rgba(0, 30, 70, .90) 100%
        );

}


.hero-photo-content {

    position: absolute;

    left: 28px;

    right: 28px;

    bottom: 27px;

    display: flex;

    flex-direction: column;

    gap: 4px;

}


.hero-photo-content strong {

    font-size: 23px;

    font-weight: 800;

    letter-spacing: -.8px;

}


.hero-photo-content span {

    color:
        rgba(255, 255, 255, .72);

    font-size: 11px;

}


/* =========================================================
   STATS
   ========================================================= */

.stats {

    position: relative;

    z-index: 5;

    background:
        var(--blue-dark);

    border-top:
        1px solid
        rgba(255, 255, 255, .08);

    border-bottom:
        1px solid
        rgba(255, 255, 255, .08);

}


.stats-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

}


.stat {

    min-height: 120px;

    padding: 25px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 5px;

    border-right:
        1px solid
        rgba(255, 255, 255, .10);

}


.stat:last-child {

    border-right: 0;

}


.stat strong {

    color:
        var(--orange);

    font-size: 22px;

    font-weight: 800;

    letter-spacing: -1px;

}


.stat span {

    color:
        rgba(255, 255, 255, .60);

    font-size: 10px;

    font-weight: 500;

}


/* =========================================================
   SECTIONS
   ========================================================= */

.section {

    position: relative;

    padding: 120px 0;

}


.section-heading {

    display: grid;

    grid-template-columns:
        1fr .75fr;

    align-items: end;

    gap: 60px;

    margin-bottom: 55px;

}


.section-label {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color:
        var(--orange);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.7px;

}


.section-label::before {

    content: "";

    width: 28px;

    height: 3px;

    border-radius: 20px;

    background:
        var(--orange);

}


.section-heading h2 {

    margin-top: 16px;

    font-size:
        clamp(40px, 5vw, 63px);

    line-height: 1;

    letter-spacing: -3px;

    font-weight: 800;

}


.section-heading h2 span {

    display: block;

    color:
        var(--orange);

}


.section-heading > p {

    max-width: 430px;

    color:
        var(--muted);

    font-size: 13px;

    line-height: 1.8;

}


/* =========================================================
   SERVIÇOS
   ========================================================= */

#servicos {

    background:
        var(--blue);

}


.services-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;

}


.service-card {

    position: relative;

    min-height: 315px;

    padding: 29px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    overflow: hidden;

    border:
        1px solid
        rgba(255, 255, 255, .12);

    border-radius: 29px;

    background:
        linear-gradient(
            145deg,
            #0755A3 0%,
            #003875 100%
        );

    transition:
        transform .3s ease,
        border .3s ease,
        box-shadow .3s ease;

}


.service-card::before {

    content: "";

    position: absolute;

    width: 220px;

    height: 220px;

    right: -120px;

    top: -120px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .045);

    transition:
        transform .5s ease;

}


.service-card::after {

    content: "";

    position: absolute;

    width: 130px;

    height: 130px;

    right: -65px;

    bottom: -65px;

    border-radius: 50%;

    background:
        var(--orange);

    opacity: .08;

    transition: .3s ease;

}


.service-card:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(255, 161, 1, .55);

    box-shadow:
        0 25px 50px
        rgba(0, 0, 0, .16);

}


.service-card:hover::before {

    transform:
        scale(1.2);

}


.service-card:hover::after {

    opacity: .16;

}


.service-top {

    position: relative;

    z-index: 2;

    color:
        rgba(255, 255, 255, .45);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

}


.service-card > div:last-child {

    position: relative;

    z-index: 2;

}


.service-card h3 {

    margin-bottom: 11px;

    font-size: 30px;

    line-height: 1;

    letter-spacing: -1.4px;

    font-weight: 800;

}


.service-card p {

    max-width: 400px;

    color:
        rgba(255, 255, 255, .66);

    font-size: 12px;

    line-height: 1.75;

}


.service-line {

    width: 100%;

    height: 1px;

    margin-top: 20px;

    background:
        rgba(255, 255, 255, .10);

}



/* =========================================================
   SILHUETAS DOS SERVIÇOS
   ========================================================= */

.service-silhouette {
    position: absolute;
    right: 48px;
    top: 50%;
    z-index: 1;
    color: rgba(137, 190, 235, .34);
    font-size: 145px;
    line-height: 1;
    pointer-events: none;
    transform: translateY(-50%);
    filter: drop-shadow(0 12px 22px rgba(0, 0, 0, .08));
    transition:
        transform .45s ease,
        color .35s ease,
        opacity .35s ease;
}

.service-bed {
    font-size: 135px;
    right: 42px;
}

/* =========================================================
   SILHUETA EXCLUSIVA DA POLTRONA
   ========================================================= */

.service-armchair {
    position: absolute;
    right: 45px;
    top: 50%;
    z-index: 1;

    width: 145px;
    height: 150px;

    opacity: .34;
    pointer-events: none;

    transform: translateY(-50%);

    transition:
        transform .45s ease,
        opacity .35s ease;
}

/* Encosto da poltrona */
.service-armchair::before {
    content: "";
    position: absolute;

    left: 35px;
    top: 5px;

    width: 78px;
    height: 83px;

    border-radius: 25px 25px 12px 12px;

    background: rgba(137, 190, 235, .75);

    box-shadow:
        inset 0 -10px 0 rgba(0, 55, 110, .10);
}

/* Assento */
.service-armchair::after {
    content: "";
    position: absolute;

    left: 22px;
    top: 76px;

    width: 103px;
    height: 48px;

    border-radius: 18px 18px 12px 12px;

    background: rgba(137, 190, 235, .75);

    box-shadow:
        -18px 8px 0 -3px rgba(137, 190, 235, .72),
         18px 8px 0 -3px rgba(137, 190, 235, .72),
        0 30px 0 -15px rgba(137, 190, 235, .72);
}

/* Movimento no hover */
.service-card:hover .service-armchair {
    opacity: .50;
    transform: translateY(-50%) scale(1.06);
}

.service-chair {
    font-size: 145px;
    right: 58px;
}

/* Mantém o texto do card acima da silhueta */
.service-card > div:last-child {
    max-width: 58%;
}

/* Efeito suave no hover */
.service-card:hover .service-silhouette {
    color: rgba(164, 207, 242, .52);
    transform: translateY(-50%) scale(1.06);
}

/* Mobile */
@media (max-width: 650px) {
    .service-silhouette {
        right: 25px;
        top: 43%;
        font-size: 105px;
        opacity: .30;
    }

    .service-bed {
        font-size: 100px;
        right: 22px;
    }

    .service-armchair {
        font-size: 110px;
        right: 24px;
    }

    .service-chair {
        font-size: 105px;
        right: 27px;
    }

    .service-card > div:last-child {
        max-width: 68%;
    }
}

@media (max-width: 400px) {
    .service-silhouette {
        right: 18px;
        font-size: 88px;
    }

    .service-bed {
        font-size: 84px;
    }

    .service-armchair {
        font-size: 92px;
    }

    .service-chair {
        font-size: 88px;
    }

    .service-card > div:last-child {
        max-width: 70%;
    }
}


/* =========================================================
   RESULTADO
   ========================================================= */

.result-section {

    background:
        var(--blue-dark);

}


.result-section .section-heading {

    margin-bottom: 45px;

}


.comparison {

    position: relative;

    height: 620px;

    overflow: hidden;

    border-radius: 32px;

    background:
        #022A58;

    user-select: none;

    touch-action: none;

    cursor: ew-resize;

    box-shadow:
        0 30px 70px
        rgba(0, 0, 0, .20);

}


.comparison-before,
.comparison-after {

    position: absolute;

    inset: 0;

    overflow: hidden;

}


.comparison-before img,
.comparison-after img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.comparison-before img {

    filter:
        brightness(.55)
        saturate(.45);

}


.comparison-after {

    width: 50%;

}


.comparison-after img {

    min-width: 100%;

    max-width: none;

    object-fit: cover;

}


.comparison-before span,
.comparison-after span {

    position: absolute;

    top: 24px;

    z-index: 4;

    padding: 9px 13px;

    border-radius: 10px;

    background:
        rgba(0, 45, 95, .85);

    color:
        white;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.2px;

}


.comparison-before span {

    left: 24px;

}


.comparison-after span {

    right: 24px;

    background:
        var(--orange);

    color:
        var(--blue-dark);

}


.comparison-line {

    position: absolute;

    top: 0;

    bottom: 0;

    left: 50%;

    width: 2px;

    z-index: 10;

    background:
        white;

    cursor: ew-resize;

    box-shadow:
        0 0 20px
        rgba(0, 0, 0, .18);

}


.comparison-line button {

    position: absolute;

    top: 50%;

    left: 50%;

    width: 56px;

    height: 56px;

    display: flex;

    align-items: center;

    justify-content: center;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background:
        var(--orange);

    color:
        var(--blue-dark);

    font-size: 17px;

    font-weight: 800;

    cursor: ew-resize;

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, .25);

}


.comparison-line button:hover {

    transform:
        translate(-50%, -50%)
        scale(1.08);

    background:
        #ffb329;

}


/* =========================================================
   PROCESSO
   ========================================================= */

#processo {

    background:
        var(--white-soft);

    color:
        var(--dark-text);

}


#processo .section-heading > p {

    color:
        #66809A;

}


#processo .section-heading h2 span {

    color:
        var(--orange-dark);

}


.process-list {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;

}


.process-item {

    min-height: 250px;

    padding: 30px;

    display: grid;

    grid-template-columns:
        55px 1fr;

    gap: 20px;

    border:
        1px solid
        #DCE7F0;

    border-radius: 27px;

    background:
        white;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border .3s ease;

}


.process-item:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(255, 161, 1, .35);

    box-shadow:
        0 20px 45px
        rgba(0, 55, 110, .10);

}


.process-item > span {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 13px;

    background:
        var(--orange);

    color:
        var(--blue-dark);

    font-size: 10px;

    font-weight: 800;

}


.process-item h3 {

    margin-top: 2px;

    margin-bottom: 10px;

    font-size: 24px;

    letter-spacing: -1px;

    font-weight: 800;

}


.process-item p {

    color:
        #71879B;

    font-size: 12px;

    line-height: 1.75;

}


/* =========================================================
   PRODUTOS
   ========================================================= */

.products-section {

    background:
        var(--blue);

}


.products-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;

}


.product-card {

    overflow: hidden;

    border:
        1px solid
        rgba(255, 255, 255, .12);

    border-radius: 29px;

    background:
        linear-gradient(
            145deg,
            #0755A3 0%,
            #003875 100%
        );

    transition:
        transform .3s ease,
        border .3s ease,
        box-shadow .3s ease;

}


.product-card:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(255, 161, 1, .55);

    box-shadow:
        0 25px 50px
        rgba(0, 0, 0, .16);

}


.product-image {

    height: 260px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.08),
            rgba(0,0,0,.08)
        ),
        var(--blue-dark);

    color:
        rgba(255, 255, 255, .48);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.4px;

}


.product-info {

    padding: 25px;

}


.product-category {

    color:
        var(--orange);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.product-info h3 {

    margin:
        10px 0 8px;

    font-size: 25px;

    line-height: 1.05;

    font-weight: 800;

}


.product-info p {

    min-height: 42px;

    color:
        rgba(255, 255, 255, .65);

    font-size: 11px;

    line-height: 1.7;

}


.product-button {

    min-height: 45px;

    margin-top: 20px;

    padding: 0 17px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background:
        var(--orange);

    color:
        var(--blue-dark);

    font-size: 9px;

    font-weight: 800;

    transition:
        transform .25s ease,
        background .25s ease;

}


.product-button:hover {

    background:
        #ffb329;

    transform:
        translateY(-2px);

}


/* =========================================================
   CTA
   ========================================================= */

.cta-section {

    position: relative;

    overflow: hidden;

    background:
        var(--blue-dark);

}


.cta {

    position: relative;

    z-index: 2;

    min-height: 330px;

    padding:
        55px 60px;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 45px;

    overflow: hidden;

    border-radius: 34px;

    background:
        var(--blue);

    box-shadow:
        0 25px 70px
        rgba(0, 0, 0, .20);

}


.cta::before {

    content: "";

    position: absolute;

    width: 480px;

    height: 480px;

    right: -230px;

    top: -250px;

    border-radius: 50%;

    background:
        var(--orange);

    opacity: .95;

}


.cta::after {

    content: "";

    position: absolute;

    width: 190px;

    height: 190px;

    right: 150px;

    bottom: -130px;

    border-radius: 50%;

    background:
        var(--orange);

    opacity: .18;

}


.cta > div {

    position: relative;

    z-index: 2;

}


.cta h2 {

    max-width: 700px;

    margin-top: 17px;

    font-size:
        clamp(38px, 5vw, 60px);

    line-height: 1;

    letter-spacing: -3px;

    font-weight: 800;

}


.cta p {

    margin-top: 17px;

    color:
        rgba(255, 255, 255, .68);

    font-size: 13px;

}


.cta-button {

    position: relative;

    z-index: 3;

    flex-shrink: 0;

    min-height: 55px;

    padding: 0 24px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 15px;

    background:
        var(--orange);

    color:
        var(--blue-dark);

    font-size: 10px;

    font-weight: 800;

}


.cta-button:hover {

    background:
        #ffb329;

    transform:
        translateY(-3px);

}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {

    position: relative;

    background:
        #002A5D;

    color:
        #FFFFFF;

    overflow: hidden;

}


.footer-main {

    width:
        min(
            1180px,
            calc(100% - 40px)
        );

    margin: 0 auto;

    padding:
        75px 0 65px;

    display: grid;

    grid-template-columns:
        1.25fr .7fr 1fr;

    gap: 80px;

}


.footer-brand {

    max-width: 390px;

}


.footer-logo-link {

    display: inline-flex;

    align-items: center;

    margin-bottom: 22px;

}


.footer-logo {

    width: 175px;

    height: auto;

    object-fit: contain;

}


.footer-brand p {

    max-width: 370px;

    margin: 0;

    color:
        rgba(255, 255, 255, .58);

    font-size: 12px;

    line-height: 1.85;

}


.footer-column h3 {

    position: relative;

    margin: 5px 0 25px;

    color:
        #FFFFFF;

    font-size: 13px;

    font-weight: 800;

}


.footer-column h3::after {

    content: "";

    display: block;

    width: 28px;

    height: 3px;

    margin-top: 10px;

    border-radius: 20px;

    background:
        var(--orange);

}


.footer-links {

    display: flex;

    flex-direction: column;

    gap: 13px;

}


.footer-links a {

    width: fit-content;

    color:
        rgba(255, 255, 255, .58);

    font-size: 11px;

    font-weight: 500;

    transition:
        color .25s ease,
        transform .25s ease;

}


.footer-links a:hover {

    color:
        var(--orange);

    transform:
        translateX(4px);

}


.footer-contact-item {

    display: grid;

    grid-template-columns:
        39px 1fr;

    align-items: start;

    gap: 13px;

    margin-bottom: 21px;

}


.footer-contact-item:last-child {

    margin-bottom: 0;

}


.footer-icon {

    width: 39px;

    height: 39px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 11px;

    background:
        rgba(255, 161, 1, .12);

    color:
        var(--orange);

    font-size: 14px;

    transition:
        background .25s ease,
        transform .25s ease;

}


.footer-contact-item:hover .footer-icon {

    background:
        var(--orange);

    color:
        var(--blue-dark);

    transform:
        translateY(-2px);

}


.footer-contact-item small {

    display: block;

    margin-bottom: 4px;

    color:
        rgba(255, 255, 255, .38);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.2px;

}


.footer-contact-item p,
.footer-contact-item a {

    margin: 0;

    color:
        rgba(255, 255, 255, .70);

    font-size: 11px;

    line-height: 1.55;

}


.footer-contact-item a {

    display: inline-block;

    transition:
        color .25s ease;

}


.footer-contact-item a:hover {

    color:
        var(--orange);

}


.footer-contact-item:nth-child(3) a {

    color:
        var(--orange);

    font-weight: 600;

}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.footer-bottom {

    width:
        min(
            1180px,
            calc(100% - 40px)
        );

    margin: 0 auto;

    min-height: 75px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    border-top:
        1px solid
        rgba(255, 255, 255, .10);

}


.footer-bottom p {

    margin: 0;

    color:
        rgba(255, 255, 255, .35);

    font-size: 9px;

    line-height: 1.6;

}


.footer-bottom .developer {

    color:
        rgba(255, 255, 255, .42);

}


.developer-link {

    color: inherit;

    text-decoration: none;

}


.developer-link strong {

    color:
        var(--orange);

    font-weight: 700;

    transition:
        color .25s ease,
        opacity .25s ease;

}


.developer-link:hover strong {

    color:
        #FFFFFF;

    opacity: .9;

}


/* =========================================================
   FOOTER DECORATIVO
   ========================================================= */

.site-footer::before {

    content: "";

    position: absolute;

    width: 420px;

    height: 420px;

    right: -230px;

    bottom: -270px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 161, 1, .12),
            transparent 68%
        );

    pointer-events: none;

}


.site-footer::after {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    left: -180px;

    top: -180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0, 100, 184, .18),
            transparent 70%
        );

    pointer-events: none;

}


/* =========================================================
   WHATSAPP FLUTUANTE
   ========================================================= */

.whatsapp-float {

    position: fixed;

    right: 28px;

    bottom: 28px;

    width: 62px;

    height: 62px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        var(--orange);

    color:
        #052D63;

    border-radius: 50%;

    text-decoration: none;

    font-size: 32px;

    line-height: 1;

    box-shadow:
        0 12px 30px
        rgba(0, 0, 0, .28);

    z-index: 9999;

    transition:
        transform .25s ease,
        box-shadow .25s ease;

}


.whatsapp-float:hover {

    transform:
        translateY(-5px)
        scale(1.05);

    box-shadow:
        0 16px 35px
        rgba(0, 0, 0, .35);

}


/* =========================================================
   REVEAL
   ========================================================= */

.reveal {

    opacity: 0;

    transform:
        translateY(25px);

    transition:
        opacity .7s ease,
        transform .7s ease;

}


.reveal.visible {

    opacity: 1;

    transform:
        translateY(0);

}


/* =========================================================
   FOCUS
   ========================================================= */

a:focus-visible,
button:focus-visible {

    outline:
        3px solid
        rgba(255, 161, 1, .65);

    outline-offset: 4px;

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 950px) {


    /* HEADER */

    .header .nav {

        position: relative;

        gap: 15px;

    }


    /*
       LOGO MAIS PARA A DIREITA
    */

    .header .brand {

        margin-left: 28px;

    }


    /*
       ESCONDE NAVEGAÇÃO NORMAL
    */

    .header .nav-links {

        position: absolute;

        top:
            calc(100% + 12px);

        right: 0;

        width: 235px;

        padding: 18px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        border:
            1px solid
            rgba(255, 255, 255, .12);

        border-radius: 19px;

        background:
            rgba(0, 42, 93, .98);

        backdrop-filter:
            blur(18px);

        -webkit-backdrop-filter:
            blur(18px);

        box-shadow:
            0 20px 50px
            rgba(0, 0, 0, .30);

        opacity: 0;

        visibility: hidden;

        transform:
            translateY(-10px);

        pointer-events: none;

        transition:
            opacity .25s ease,
            visibility .25s ease,
            transform .25s ease;

    }


    .header .nav-links.active {

        opacity: 1;

        visibility: visible;

        transform:
            translateY(0);

        pointer-events: auto;

    }


    .header .nav-links a {

        width: 100%;

        padding: 14px 6px;

        color:
            rgba(255, 255, 255, .84);

        font-size: 11px;

        font-weight: 600;

    }


    .header .nav-links a::after {

        display: none;

    }


    .header .nav-links a:hover {

        color:
            var(--orange);

        transform:
            translateX(5px);

    }


    /*
       HAMBURGUER
    */

    .menu-toggle {

        display: flex;

        margin-left: auto;

    }


    /*
       BOTÃO DESKTOP SOME
    */

    .header .nav-button {

        display: none !important;

    }


    /*
       ORÇAMENTO DENTRO DO MENU
    */

    .header .nav-links .mobile-orcamento {

        display: flex;

        align-items: center;

        justify-content: center;

        width: 100%;

        min-height: 45px;

        margin-top: 10px;

        padding: 0 12px;

        border-radius: 11px;

        background:
            var(--orange);

        color:
            var(--blue-dark) !important;

        font-size: 9px;

        font-weight: 800;

        text-align: center;

    }


    /* HERO */

    .hero-grid {

        grid-template-columns:
            1fr;

        gap: 50px;

    }


    .hero-content {

        max-width: 750px;

    }


    .hero-photo {

        height: 560px;

    }


    /* SECTIONS */

    .section-heading {

        grid-template-columns:
            1fr;

        gap: 22px;

    }


    /* STATS */

    .stats-grid {

        grid-template-columns:
            1fr;

    }


    .stat {

        min-height: 90px;

        border-right: 0;

        border-bottom:
            1px solid
            rgba(255, 255, 255, .10);

    }


    .stat:last-child {

        border-bottom: 0;

    }


    /* CTA */

    .cta {

        flex-direction: column;

        align-items: flex-start;

    }


    /* PRODUTOS */

    .products-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    /* FOOTER */

    .footer-main {

        grid-template-columns:
            1fr 1fr;

        gap: 55px;

    }


    .footer-brand {

        max-width: 100%;

        grid-column:
            span 2;

    }


    .footer-brand p {

        max-width: 560px;

    }

}


/* =========================================================
   TABLET / CELULAR
   ========================================================= */

@media (max-width: 650px) {


    .container {

        width:
            calc(100% - 28px);

    }


    .header {

        padding: 12px 0;

    }


    /*
       LOGO MAIS PARA A DIREITA
    */

    .header .brand {

        margin-left: 38px;

    }


    .brand-logo {

        width: 48px;

        height: 48px;

    }


    .brand-logo img {

        width: 48px;

        height: 48px;

    }


    /*
       HAMBURGUER LARANJA
    */

    .menu-toggle {

        width: 47px;

        height: 47px;

    }


    .menu-toggle span {

        width: 21px;

        background:
            var(--orange);

    }


    /* HERO */

    .hero {

        padding:
            125px 0 65px;

    }


    .hero h1 {

        font-size: 48px;

        letter-spacing: -2.8px;

    }


    .hero-description {

        font-size: 12px;

        line-height: 1.8;

    }


    .hero-actions {

        align-items: stretch;

        flex-direction: column;

    }


    .button {

        width: 100%;

    }


    .hero-photo {

        height: 440px;

        border-radius: 25px;

    }


    .hero-photo-content {

        left: 20px;

        right: 20px;

        bottom: 20px;

    }


    .hero-photo-content strong {

        font-size: 19px;

    }


    /* STATS */

    .stats-grid {

        display: grid;

        grid-template-columns:
            1fr 1fr;

    }


    .stat {

        min-height: 100px;

        padding: 18px;

    }


    .stat:last-child {

        grid-column:
            span 2;

    }


    /* SECTION */

    .section {

        padding:
            80px 0;

    }


    .section-heading {

        margin-bottom:
            38px;

    }


    .section-heading h2 {

        font-size: 42px;

        letter-spacing: -2px;

    }


    /* SERVICES */

    .services-grid {

        grid-template-columns:
            1fr;

    }


    .service-card {

        min-height: 280px;

        padding: 25px;

    }


    .service-card h3 {

        font-size: 28px;

    }


    /* PROCESS */

    .process-list {

        grid-template-columns:
            1fr;

    }


    .process-item {

        min-height: 220px;

        padding: 25px;

    }


    /* COMPARISON */

    .comparison {

        height: 430px;

        border-radius: 23px;

    }


    .comparison-line button {

        width: 48px;

        height: 48px;

    }


    .comparison-before span,
    .comparison-after span {

        top: 15px;

    }


    .comparison-before span {

        left: 15px;

    }


    .comparison-after span {

        right: 15px;

    }


    /* CTA */

    .cta-section {

        padding:
            70px 0;

    }


    .cta {

        padding:
            38px 27px;

        border-radius: 25px;

    }


    .cta h2 {

        font-size: 40px;

        letter-spacing: -2px;

    }


    .cta-button {

        width: 100%;

    }


    /* PRODUCTS */

    .products-grid {

        grid-template-columns:
            1fr;

    }


    .product-image {

        height: 220px;

    }


    .product-info {

        padding: 22px;

    }


    .product-button {

        width: 100%;

    }


    /* WHATSAPP */

    .whatsapp-float {

        right: 18px;

        bottom: 18px;

        width: 56px;

        height: 56px;

        font-size: 28px;

    }


    /* FOOTER */

    .footer-main {

        width:
            calc(100% - 28px);

        padding:
            55px 0 45px;

        grid-template-columns:
            1fr;

        gap: 42px;

    }


    .footer-brand {

        grid-column:
            auto;

    }


    .footer-logo {

        width: 155px;

    }


    .footer-brand p {

        max-width: 100%;

        font-size: 11px;

        line-height: 1.8;

    }


    .footer-column h3 {

        margin-bottom: 20px;

    }


    .footer-bottom {

        width:
            calc(100% - 28px);

        padding:
            20px 0;

        min-height: auto;

        flex-direction: column;

        align-items: flex-start;

        gap: 7px;

    }

}


/* =========================================================
   CELULARES PEQUENOS
   ========================================================= */

@media (max-width: 400px) {


    .header .brand {

        margin-left: 42px;

    }


    .brand-logo {

        width: 46px;

        height: 46px;

    }


    .brand-logo img {

        width: 46px;

        height: 46px;

    }


    .menu-toggle {

        width: 44px;

        height: 44px;

    }


    .menu-toggle span {

        width: 19px;

    }


    .hero h1 {

        font-size: 43px;

    }


    .section-heading h2 {

        font-size: 38px;

    }


    .cta h2 {

        font-size: 35px;

    }


    .service-card {

        min-height: 265px;

    }


    .process-item {

        grid-template-columns:
            45px 1fr;

        gap: 14px;

    }


    .product-image {

        height: 200px;

    }


    .footer-main {

        padding:
            48px 0 40px;

    }


    .footer-logo {

        width: 140px;

    }


    .footer-brand p {

        font-size: 10px;

    }


    .footer-contact-item {

        grid-template-columns:
            36px 1fr;

        gap: 11px;

    }


    .footer-icon {

        width: 36px;

        height: 36px;

        border-radius: 10px;

        font-size: 13px;

    }


    .footer-contact-item p,
    .footer-contact-item a {

        font-size: 10px;

    }


    .footer-bottom p {

        font-size: 8px;

    }

}


/* =========================================================
   HAMBURGUER → X
   ========================================================= */

.menu-toggle.active span:nth-child(1) {

    transform:
        translateY(7px)
        rotate(45deg);

}


.menu-toggle.active span:nth-child(2) {

    opacity: 0;

}


.menu-toggle.active span:nth-child(3) {

    transform:
        translateY(-7px)
        rotate(-45deg);

}


/* =========================================================
   REDUZIR MOVIMENTO
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {

        scroll-behavior:
            auto;

    }


    *,
    *::before,
    *::after {

        animation-duration:
            .01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            .01ms !important;

    }

}  