﻿:root {
    --black: #0b0b0b;
    --black-soft: #151515;
    --gray-900: #222222;
    --gray-700: #555555;
    --gray-500: #888888;
    --gray-300: #d8d8d8;
    --gray-200: #e8e8e8;
    --gray-100: #f5f5f5;
    --white: #ffffff;

    --container: 1180px;
    --radius: 18px;
    --shadow: 0 15px 45px rgba(0,0,0,.07);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
}

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

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


/* HEADER */

.header {
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.logo-symbol {
    font-size: 34px;
    line-height: 1;
    transform: rotate(-8deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text strong {
    font-size: 22px;
    letter-spacing: 3px;
}

.logo-text small {
    margin-top: 6px;
    font-size: 8px;
    letter-spacing: 5px;
}

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

.nav a {
    font-size: 14px;
    font-weight: 600;
    position: relative;
}

.nav a::after {
    content: "";
    position: absolute;
    height: 2px;
    background: var(--black);
    left: 0;
    right: 100%;
    bottom: -8px;
    transition: .25s;
}

.nav a:hover::after,
.nav a.active::after {
    right: 0;
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    font-size: 26px;
    cursor: pointer;
}


/* HERO */

.hero {
    background:
        radial-gradient(circle at 80% 20%, #333 0, transparent 35%),
        linear-gradient(135deg, #080808, #181818);
    color: var(--white);
    overflow: hidden;
}

.hero-grid {
    min-height: 610px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 60px;
    padding: 80px 0;
}

.eyebrow,
.section-label,
.section-heading > span,
.cta span {
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 700;
}

.eyebrow {
    color: #bdbdbd;
}

.hero h1 {
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.02;
    letter-spacing: -3px;
    max-width: 750px;
    margin: 20px 0 25px;
}

.hero-content > p {
    max-width: 620px;
    color: #d2d2d2;
    font-size: 18px;
}

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

.btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 26px;
    border-radius: 8px;
    font-weight: 700;
    transition: .25s;
}

.btn-light {
    background: var(--white);
    color: var(--black);
}

.btn-light:hover {
    background: #e5e5e5;
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid #666;
    color: var(--white);
}

.btn-outline:hover {
    border-color: var(--white);
    transform: translateY(-2px);
}

.hero-visual {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
    transform: rotate(-2deg);
}

.visual-card {
    min-height: 180px;
    border: 1px solid #3d3d3d;
    background: linear-gradient(145deg,#262626,#111);
    border-radius: var(--radius);
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 25px 70px rgba(0,0,0,.3);
}

.visual-card:nth-child(2),
.visual-card:nth-child(3) {
    transform: translateY(30px);
}

.visual-card span {
    color: #999;
    font-size: 10px;
    letter-spacing: 2px;
}

.visual-card strong {
    margin-top: 5px;
    font-size: 20px;
}


/* SEÇÕES */

.section {
    padding: 95px 0;
}

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

.section-heading h2,
.about h2,
.products h2,
.cta h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.section-heading p {
    margin-top: 12px;
    color: var(--gray-700);
}


/* CATEGORIAS */

.categories {
    background: var(--gray-100);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.category-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 30px 20px;
    min-height: 210px;
    transition: .25s;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: #bbb;
}

.category-icon {
    font-size: 30px;
    margin-bottom: 25px;
}

.category-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.category-card p {
    color: var(--gray-700);
    font-size: 13px;
}


/* SOBRE */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.section-label {
    display: inline-block;
    color: var(--gray-500);
    margin-bottom: 15px;
}

.about-content h2 {
    max-width: 600px;
    margin-bottom: 25px;
}

.about-content p {
    color: var(--gray-700);
    margin-bottom: 16px;
    max-width: 620px;
}

.text-link {
    display: inline-block;
    font-weight: 700;
    margin-top: 15px;
    border-bottom: 1px solid var(--black);
}

.about-panel {
    background: var(--black);
    color: var(--white);
    border-radius: 28px;
    padding: 35px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    overflow: hidden;
}

.about-stat {
    min-height: 150px;
    padding: 25px;
    border: 1px solid #292929;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.about-stat strong {
    font-size: 22px;
}

.about-stat span {
    color: #aaa;
    font-size: 13px;
}


/* SOLUÇÕES */

.solutions {
    background: var(--black);
    color: var(--white);
}

.section-heading.light > span {
    color: #999;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.solution-card {
    padding: 40px 30px;
    border-right: 1px solid #333;
}

.solution-card:last-child {
    border-right: 0;
}

.solution-card > span {
    color: #777;
    font-size: 12px;
    letter-spacing: 2px;
}

.solution-card h3 {
    font-size: 20px;
    margin: 35px 0 12px;
}

.solution-card p {
    color: #aaa;
    font-size: 14px;
}


/* PRODUTOS */

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 45px;
}

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

.product-card {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 16px;
    transition: .25s;
}

.product-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.product-image {
    height: 210px;
    border-radius: 12px;
    background:
        radial-gradient(circle at 60% 30%, #fff, transparent 35%),
        linear-gradient(145deg, #ededed, #d5d5d5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    letter-spacing: 4px;
    color: #777;
    margin-bottom: 20px;
}

.product-category {
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 10px;
    font-weight: 700;
}

.product-card h3 {
    margin: 8px 0;
}

.product-card p {
    color: var(--gray-700);
    font-size: 13px;
    min-height: 62px;
}

.product-card a {
    display: inline-block;
    margin-top: 15px;
    font-weight: 700;
    font-size: 13px;
}


/* CTA */

.cta {
    width: min(92%, var(--container));
    margin: 0 auto 95px;
    border-radius: 25px;
    background:
        radial-gradient(circle at 80%, #303030, transparent 35%),
        var(--black);
    color: var(--white);
}

.cta-inner {
    width: 100%;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta span {
    color: #999;
}

.cta h2 {
    margin: 8px 0;
}

.cta p {
    color: #bbb;
}


/* FOOTER */

.footer {
    background: #080808;
    color: var(--white);
    padding: 70px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 50px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-brand p,
.footer-grid div > p {
    color: #999;
    font-size: 13px;
    max-width: 280px;
}

.footer-grid h4 {
    margin-bottom: 18px;
}

.footer-grid > div:not(.footer-brand) a {
    display: block;
    color: #aaa;
    font-size: 13px;
    margin: 10px 0;
}

.footer-grid a:hover {
    color: var(--white);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid #252525;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #777;
    font-size: 12px;
}


/* RESPONSIVO */

@media (max-width: 1000px) {

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

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

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

    .solution-card:nth-child(2) {
        border-right: 0;
    }

    .hero-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        max-width: 650px;
    }

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


@media (max-width: 760px) {

    .menu-toggle {
        display: block;
    }

    .nav {
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--gray-200);
        padding: 25px 4%;
        flex-direction: column;
        align-items: flex-start;
        display: none;
    }

    .nav.open {
        display: flex;
    }

    .hero-grid {
        min-height: auto;
        padding: 65px 0;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .hero-visual {
        grid-template-columns: 1fr 1fr;
        transform: none;
    }

    .visual-card:nth-child(2),
    .visual-card:nth-child(3) {
        transform: none;
    }

    .category-grid,
    .product-grid,
    .solution-grid,
    .about-panel {
        grid-template-columns: 1fr;
    }

    .category-card {
        min-height: auto;
    }

    .solution-card {
        border-right: 0;
        border-bottom: 1px solid #333;
    }

    .products-header,
    .cta-inner,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .section {
        padding: 70px 0;
    }

    .cta {
        margin-bottom: 70px;
    }

    .cta-inner {
        padding: 35px 25px;
    }
}

/* LOGO OFICIAL SAWAMA */

.brand-logo {
    display: block;
    width: 215px;
    height: 62px;
    object-fit: cover;
    object-position: 50% 66%;
}

.footer-brand-logo {
    width: 230px;
    height: 74px;
    object-position: 50% 66%;
}

@media (max-width: 760px) {
    .brand-logo {
        width: 175px;
        height: 52px;
    }

    .footer-brand-logo {
        width: 190px;
        height: 62px;
    }
}

/* LOGO HORIZONTAL DEFINITIVA SAWAMA */

.brand-logo {
    display: block;
    width: 285px;
    height: auto;
    object-fit: contain;
}

.footer-brand-logo {
    width: 300px;
    height: auto;
    object-fit: contain;
}

@media (max-width: 760px) {
    .brand-logo {
        width: 215px;
    }

    .footer-brand-logo {
        width: 235px;
    }
}

/* =========================================================
   IDENTIDADE VISUAL SAWAMA - V1
   ========================================================= */

:root {
    --sawama-blue: #0b3f8f;
    --sawama-blue-deep: #071d46;
    --sawama-blue-bright: #1768c7;
}

/* CABEÇALHO */

.nav-container {
    min-height: 82px;
}

.brand-logo {
    width: 315px;
    height: auto;
}

.nav a::after {
    background: linear-gradient(
        90deg,
        var(--sawama-blue),
        var(--sawama-blue-bright)
    );
}

.nav a:hover {
    color: var(--sawama-blue);
}


/* HERO */

.hero {
    position: relative;
    background:
        radial-gradient(
            circle at 82% 35%,
            rgba(11,63,143,.18),
            transparent 28%
        ),
        radial-gradient(
            circle at 15% 90%,
            rgba(23,104,199,.08),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #050505 0%,
            #0b0b0b 45%,
            #171717 100%
        );
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .28;

    background-image:
        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size: 70px 70px;
}

.hero-grid {
    position: relative;
    z-index: 1;
}

.eyebrow {
    color: #8eb9f0;
}

.hero h1 {
    max-width: 680px;
}

.hero-content > p {
    max-width: 650px;
}


/* BOTÕES */

.hero .btn-light {
    position: relative;
    overflow: hidden;
}

.hero .btn-light:hover {
    background: var(--sawama-blue);
    color: white;
}

.hero .btn-outline {
    border-color: rgba(255,255,255,.3);
}

.hero .btn-outline:hover {
    background: rgba(11,63,143,.15);
    border-color: #438bdc;
    color: #ffffff;
}


/* CARDS DO HERO */

.hero-visual {
    gap: 18px;
}

.visual-card {
    position: relative;
    min-height: 205px;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(23,104,199,.13),
            transparent 42%
        ),
        linear-gradient(
            145deg,
            rgba(31,31,31,.96),
            rgba(13,13,13,.98)
        );

    border: 1px solid rgba(255,255,255,.12);

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.visual-card::before {
    content: "";
    position: absolute;
    left: 25px;
    bottom: 20px;

    width: 35px;
    height: 2px;

    background: linear-gradient(
        90deg,
        var(--sawama-blue-bright),
        transparent
    );
}

.visual-card:hover {
    border-color: rgba(23,104,199,.65);

    box-shadow:
        0 25px 70px rgba(0,0,0,.35),
        0 0 35px rgba(11,63,143,.12);
}

.visual-card:nth-child(1):hover,
.visual-card:nth-child(4):hover {
    transform: translateY(-5px) rotate(0deg);
}

.visual-card:nth-child(2):hover,
.visual-card:nth-child(3):hover {
    transform: translateY(25px) rotate(0deg);
}

.visual-icon {
    position: absolute;
    top: 22px;
    right: 24px;

    width: 42px;
    height: 42px;

    border: 1px solid rgba(83,145,219,.35);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #70a9e9;
    font-size: 20px;
}

.visual-card span {
    color: #7798be;
}

.visual-card strong {
    max-width: 210px;
}

.visual-card small {
    display: block;

    max-width: 220px;
    margin-top: 8px;
    margin-bottom: 15px;

    color: #858585;
    font-size: 12px;
    line-height: 1.45;
}


/* DESTAQUES GERAIS */

.section-label,
.section-heading > span {
    color: var(--sawama-blue);
}

.text-link {
    transition: color .2s ease;
}

.text-link:hover {
    color: var(--sawama-blue);
    border-color: var(--sawama-blue);
}

.category-card {
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: var(--sawama-blue);

    transform: scaleX(0);
    transform-origin: left;

    transition: transform .3s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    border-color: rgba(11,63,143,.3);
}

.product-category {
    color: var(--sawama-blue);
}


/* RESPONSIVO */

@media (max-width: 1000px) {

    .brand-logo {
        width: 275px;
    }
}

@media (max-width: 760px) {

    .nav-container {
        min-height: 72px;
    }

    .brand-logo {
        width: 215px;
    }

    .hero h1 {
        font-size: clamp(40px, 12vw, 58px);
    }

    .hero-visual {
        gap: 12px;
    }

    .visual-card {
        min-height: 180px;
    }
}


/* ======================================================
   SAWAMA HERO V2
   ====================================================== */

.hero-v2 {
    position: relative;
    overflow: hidden;
    color: #fff;

    background:
        radial-gradient(
            circle at 77% 34%,
            rgba(12, 61, 130, .20),
            transparent 27%
        ),
        radial-gradient(
            circle at 8% 90%,
            rgba(14, 75, 158, .13),
            transparent 28%
        ),
        linear-gradient(
            118deg,
            #020304 0%,
            #070a0e 46%,
            #0a1018 100%
        );
}

.hero-v2::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .24;
    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(36, 101, 180, .10) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(36, 101, 180, .08) 1px,
            transparent 1px
        );

    background-size: 110px 110px;

    mask-image:
        linear-gradient(
            90deg,
            rgba(0,0,0,.8),
            transparent 50%
        );
}

.hero-grid-v2 {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: .84fr 1.16fr;

    gap: 70px;
    align-items: center;

    min-height: 760px;
    padding: 85px 0;
}


/* TEXTO */

.hero-content-v2 .eyebrow {
    color: #4f98ee;
    letter-spacing: 4px;
}

.hero-content-v2 h1 {
    margin: 28px 0 0;

    max-width: 650px;

    font-size: clamp(54px, 5vw, 78px);
    line-height: .98;
    letter-spacing: -3px;
}

.hero-accent {
    width: 50px;
    height: 3px;

    margin: 46px 0 35px;

    background:
        linear-gradient(
            90deg,
            #1768c7,
            #0c4184
        );
}

.hero-content-v2 > p {
    max-width: 650px;

    color: #d7dbe0;
    font-size: 18px;
    line-height: 1.75;
}

.hero-content-v2 > p strong {
    color: #438fe8;
    font-weight: 700;
}


/* BOTÕES */

.hero-content-v2 .hero-actions {
    margin-top: 38px;
}

.hero-content-v2 .btn {
    min-height: 58px;
    padding: 0 28px;

    border-radius: 8px;

    gap: 11px;
}

.btn-icon {
    color: #2378d8;
    font-size: 19px;
}

.btn-products:hover .btn-icon {
    color: #fff;
}


/* QUATRO CARDS */

.hero-categories {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 18px;
}

.hero-card {
    position: relative;

    min-height: 330px;

    padding: 30px;

    overflow: hidden;

    border-radius: 20px;
    border: 1px solid rgba(149, 174, 201, .26);

    background:
        radial-gradient(
            circle at 100% 100%,
            rgba(16, 80, 157, .24),
            transparent 45%
        ),
        linear-gradient(
            145deg,
            rgba(17, 22, 28, .98),
            rgba(6, 9, 13, .98)
        );

    box-shadow:
        0 22px 50px rgba(0, 0, 0, .26);

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.hero-card:hover {
    transform: translateY(-4px);

    border-color: rgba(50, 125, 213, .65);

    box-shadow:
        0 25px 65px rgba(0,0,0,.38),
        0 0 32px rgba(11,63,143,.13);
}

.hero-card-icon {
    position: absolute;

    top: 22px;
    right: 22px;

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    border: 1px solid rgba(42, 122, 214, .65);

    color: #438fe8;

    font-size: 23px;
}

.hero-card-label {
    display: block;

    margin-top: 8px;

    color: #438fe8;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 3px;
}

.hero-card h3 {
    margin-top: 22px;

    max-width: 240px;

    font-size: 25px;
    line-height: 1.2;

    letter-spacing: -.5px;
}

.hero-card p {
    position: relative;
    z-index: 2;

    max-width: 220px;

    margin-top: 14px;

    color: #b3b9c1;

    font-size: 14px;
    line-height: 1.5;
}

.hero-card-line {
    width: 34px;
    height: 2px;

    margin-top: 22px;

    background:
        linear-gradient(
            90deg,
            #1572d5,
            rgba(21,114,213,0)
        );
}


/* ESPAÇO ONDE ENTRARÃO AS FOTOS DOS PRODUTOS */

.product-stage {
    position: absolute;

    right: 15px;
    bottom: 12px;

    width: 62%;
    height: 105px;

    display: flex;
    align-items: flex-end;
    justify-content: flex-end;

    gap: 8px;

    pointer-events: none;
}

.product-stage span {
    padding: 7px 9px;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 5px;

    background:
        rgba(255,255,255,.025);

    color: rgba(255,255,255,.18);

    font-size: 8px;
    letter-spacing: 1px;
}


/* LEVE DESALINHAMENTO VISUAL */

.card-tech,
.card-moveis {
    transform: translateY(-10px);
}

.card-eletro,
.card-tools {
    transform: translateY(10px);
}

.card-tech:hover,
.card-moveis:hover {
    transform: translateY(-14px);
}

.card-eletro:hover,
.card-tools:hover {
    transform: translateY(6px);
}


/* TABLET */

@media (max-width: 1050px) {

    .hero-grid-v2 {
        grid-template-columns: 1fr;

        min-height: auto;
    }

    .hero-content-v2 {
        max-width: 760px;
    }

    .hero-categories {
        max-width: 850px;
    }
}


/* CELULAR */

@media (max-width: 760px) {

    .hero-grid-v2 {
        gap: 55px;
        padding: 65px 0;
    }

    .hero-content-v2 h1 {
        font-size: clamp(45px, 13vw, 62px);
        letter-spacing: -2px;
    }

    .hero-content-v2 > p {
        font-size: 16px;
    }

    .hero-categories {
        grid-template-columns: 1fr;
    }

    .hero-card,
    .card-tech,
    .card-eletro,
    .card-tools,
    .card-moveis {
        min-height: 290px;
        transform: none;
    }

    .hero-card:hover,
    .card-tech:hover,
    .card-eletro:hover,
    .card-tools:hover,
    .card-moveis:hover {
        transform: translateY(-3px);
    }
}


/* ======================================================
   IMAGENS DOS CARDS - HERO V2
   ====================================================== */

.product-stage {
    position: absolute;
    right: 0;
    bottom: 0;

    width: 100%;
    height: 52%;

    display: block;

    pointer-events: none;
    overflow: hidden;
}

.product-stage img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center bottom;

    opacity: .98;

    filter:
        saturate(.95)
        contrast(1.03);

    transition:
        transform .35s ease,
        filter .35s ease;
}

.hero-card:hover .product-stage img {
    transform: scale(1.025);

    filter:
        saturate(1.05)
        contrast(1.05);
}


/* GARANTE TEXTO SOBRE A IMAGEM */

.hero-card-label,
.hero-card h3,
.hero-card p,
.hero-card-line,
.hero-card-icon {
    position: relative;
    z-index: 3;
}


/* GRADIENTE ENTRE TEXTO E PRODUTO */

.hero-card::after {
    content: "";
    position: absolute;

    left: 0;
    right: 0;
    top: 38%;
    bottom: 0;

    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            rgba(7,10,14,.95) 0%,
            rgba(7,10,14,.60) 28%,
            rgba(7,10,14,.12) 58%,
            rgba(7,10,14,0) 100%
        );
}


/* AJUSTE DE ALTURA */

.hero-card {
    min-height: 360px;
}

.hero-grid-v2 {
    min-height: 720px;
}


/* AJUSTES INDIVIDUAIS */

.stage-tech img {
    object-position: center 58%;
}

.stage-eletro img {
    object-position: center 60%;
}

.stage-tools img {
    object-position: center 62%;
}

.stage-moveis img {
    object-position: center 60%;
}


/* MOBILE */

@media (max-width: 760px) {

    .hero-card {
        min-height: 340px;
    }

    .product-stage {
        height: 50%;
    }

    .hero-grid-v2 {
        min-height: auto;
    }
}


/* =========================================================
   CORREÇÃO HERO V2 — PRESERVAR ARTE / REMOVER DUPLICAÇÃO
   ========================================================= */

/* Todos os cards perfeitamente alinhados */
.card-tech,
.card-eletro,
.card-tools,
.card-moveis,
.card-tech:hover,
.card-eletro:hover,
.card-tools:hover,
.card-moveis:hover {
    transform: none;
}

/* Grid regular */
.hero-categories {
    align-items: stretch;
    gap: 18px;
}

.hero-card {
    min-height: 340px;
    height: 340px;
    padding: 26px 28px;
}

/* Texto HTML fica sempre na frente */
.hero-card-label,
.hero-card h3,
.hero-card p,
.hero-card-line,
.hero-card-icon {
    position: relative;
    z-index: 5;
}

/* Retira o gradiente anterior que estava atravessando os textos */
.hero-card::after {
    display: none;
}

/* Área reservada apenas para o produto */
.product-stage {
    position: absolute;
    z-index: 1;

    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    height: 50%;

    overflow: hidden;
    pointer-events: none;
}

/*
   O PNG original contém texto na parte superior.
   Ampliamos a imagem dentro de uma janela menor para mostrar
   somente a composição dos produtos na metade inferior.
*/
.product-stage img {
    position: absolute;

    width: 100%;
    height: auto;

    left: 0;
    top: -72%;

    object-fit: initial;
    opacity: 1;

    filter: none;

    transform: none !important;
}

/* Ajuste individual sem trocar nenhuma fotografia */
.stage-tech img {
    top: -69%;
}

.stage-eletro img {
    top: -68%;
}

.stage-tools img {
    top: -66%;
}

.stage-moveis img {
    top: -66%;
}

/* Sombra suave só na transição entre texto e produto */
.product-stage::before {
    content: "";
    position: absolute;
    z-index: 2;

    top: 0;
    left: 0;
    right: 0;

    height: 55px;

    background:
        linear-gradient(
            to bottom,
            #0b1118 0%,
            rgba(11,17,24,.75) 35%,
            transparent 100%
        );

    pointer-events: none;
}

/* Hero mais compacto */
.hero-grid-v2 {
    grid-template-columns: 1fr 1.12fr;
    gap: 55px;

    min-height: 700px;
    padding: 65px 0;
}

/* Título com quebra mais elegante */
.hero-content-v2 h1 {
    max-width: 670px;
    font-size: clamp(52px, 4.3vw, 70px);
    line-height: 1.02;
}

/* Hover sem deslocar os cards */
.hero-card:hover {
    transform: none;

    border-color: rgba(50,125,213,.70);

    box-shadow:
        0 22px 55px rgba(0,0,0,.38),
        0 0 28px rgba(11,63,143,.12);
}

/* CELULAR */
@media (max-width: 760px) {

    .hero-card {
        height: 330px;
        min-height: 330px;
    }

    .product-stage {
        height: 48%;
    }

    .hero-grid-v2 {
        grid-template-columns: 1fr;
        padding: 55px 0;
    }
}


/* =========================================================
   HERO OFICIAL APROVADO - NÃO ALTERAR A ARTE
   ========================================================= */

.hero-approved {
    width: 100%;
    background: #02070d;
    overflow: hidden;
}

.hero-approved-frame {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    line-height: 0;
}

.hero-approved-image {
    display: block;
    width: 100%;
    height: auto;
}

/* ÁREAS CLICÁVEIS SOBRE OS BOTÕES DA PRÓPRIA ARTE */

.hero-hotspot {
    position: absolute;
    display: block;
    z-index: 10;
    border-radius: 8px;
}

/* Ver produtos */
.hotspot-produtos {
    left: 4.7%;
    top: 56.5%;
    width: 14%;
    height: 8%;
}

/* Fale com a Sawama */
.hotspot-contato {
    left: 20%;
    top: 56.5%;
    width: 18%;
    height: 8%;
}

/* Só mostra uma indicação discreta no mouse */
.hero-hotspot:hover {
    outline: 1px solid rgba(35,120,216,.45);
    background: rgba(35,120,216,.03);
}

/* RESPONSIVO */

@media (max-width: 900px) {

    .hero-approved-frame {
        width: 145%;
        margin-left: -8%;
    }
}

@media (max-width: 600px) {

    .hero-approved-frame {
        width: 205%;
        margin-left: -12%;
    }
}


/* =========================================================
   AJUSTE DE VIEWPORT DO HERO APROVADO
   ========================================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.hero-approved {
    width: 100%;
    background: #02070d;
    overflow: hidden;
}

/* O bloco ocupa a área visível abaixo do cabeçalho */
.hero-approved-frame {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0 auto;

    height: calc(100vh - 82px);

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    background: #02070d;
}

/* Mostra a arte inteira sem cortar */
.hero-approved-image {
    display: block;

    width: auto;
    height: 100%;

    max-width: 100%;
    max-height: 100%;

    object-fit: contain;
    object-position: center center;
}

/* Corrige os antigos aumentos artificiais */
@media (max-width: 900px) {

    .hero-approved-frame {
        width: 100%;
        margin-left: 0;
        height: auto;
        min-height: 0;
    }

    .hero-approved-image {
        width: 100%;
        height: auto;
        max-width: 100%;
    }
}

@media (max-width: 600px) {

    .hero-approved-frame {
        width: 100%;
        margin-left: 0;
        height: auto;
    }

    .hero-approved-image {
        width: 100%;
        height: auto;
    }
}


/* REMOVE EMENDA ENTRE HEADER E HERO */

.header {
    border-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.hero-approved {
    margin-top: -1px;
}


/* =========================================================
   CORREÇÃO FINAL DA JUNÇÃO HEADER / HERO
   ========================================================= */

.header {
    border: 0 !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
}

.nav-container {
    border: 0 !important;
}

.header + main,
main {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.hero-approved {
    position: relative;
    margin-top: -2px !important;
    border-top: 0 !important;
}


/* =========================================================
   CATEGORIAS V2
   ========================================================= */

.categories-v2 {
    position: relative;

    padding: 100px 0 110px;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(18, 92, 180, .055),
            transparent 25%
        ),
        #f7f8fa;

    color: #0a0d12;
}

.categories-v2-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 50px;

    margin-bottom: 55px;
}

.section-kicker {
    display: block;

    margin-bottom: 13px;

    color: #1768c7;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 3.5px;
}

.categories-v2-heading h2 {
    max-width: 650px;

    font-size: clamp(34px, 3.4vw, 50px);
    line-height: 1.05;

    letter-spacing: -1.8px;
}

.categories-v2-heading p {
    max-width: 550px;

    margin-top: 16px;

    color: #656b74;

    font-size: 16px;
}

.categories-all {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;

    gap: 12px;

    padding-bottom: 7px;

    border-bottom: 1px solid #b7bbc1;

    color: #11151a;

    font-size: 14px;
    font-weight: 700;

    transition:
        color .2s ease,
        border-color .2s ease;
}

.categories-all span {
    color: #1768c7;
    font-size: 19px;
}

.categories-all:hover {
    color: #1768c7;
    border-color: #1768c7;
}


/* GRID */

.categories-v2-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 16px;
}


/* CARD */

.category-v2-card {
    position: relative;

    min-height: 300px;

    padding: 27px;

    overflow: hidden;

    border: 1px solid #e0e3e7;
    border-radius: 18px;

    background: #ffffff;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.category-v2-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            #0b3f8f,
            #1975dc
        );

    transform: scaleX(0);
    transform-origin: left;

    transition: transform .3s ease;
}

.category-v2-card:hover {
    transform: translateY(-5px);

    border-color: rgba(23,104,199,.28);

    box-shadow:
        0 20px 50px rgba(18, 28, 40, .08);
}

.category-v2-card:hover::before {
    transform: scaleX(1);
}


/* TOPO DO CARD */

.category-v2-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-v2-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #d8e4f2;
    border-radius: 50%;

    background: #f7fbff;

    color: #1768c7;

    font-size: 20px;
}

.category-arrow {
    color: #a8adb4;

    font-size: 19px;

    transition:
        color .2s ease,
        transform .2s ease;
}

.category-v2-card:hover .category-arrow {
    color: #1768c7;
    transform: translate(2px, -2px);
}


/* CONTEÚDO */

.category-v2-number {
    margin-top: 35px;

    color: #a9afb6;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}

.category-v2-card h3 {
    margin-top: 7px;

    font-size: 22px;
    line-height: 1.2;
}

.category-v2-card p {
    max-width: 290px;

    margin-top: 10px;

    color: #6c727a;

    font-size: 14px;
    line-height: 1.55;
}

.category-v2-link {
    position: absolute;

    left: 27px;
    bottom: 25px;

    color: #20252b;

    font-size: 12px;
    font-weight: 700;

    transition: color .2s ease;
}

.category-v2-card:hover .category-v2-link {
    color: #1768c7;
}


/* TABLET */

@media (max-width: 1000px) {

    .categories-v2-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


/* CELULAR */

@media (max-width: 700px) {

    .categories-v2 {
        padding: 70px 0;
    }

    .categories-v2-heading {
        flex-direction: column;
        align-items: flex-start;

        margin-bottom: 38px;
    }

    .categories-v2-grid {
        grid-template-columns: 1fr;
    }

    .category-v2-card {
        min-height: 270px;
    }
}


/* =========================================================
   CATEGORIAS V2 — COMPACTAÇÃO PARA UMA VIEWPORT
   ========================================================= */

/* Menos espaço vazio acima e abaixo */
.categories-v2 {
    padding:
        clamp(32px, 4.2vh, 52px)
        0
        clamp(30px, 4vh, 48px);
}

/* Cabeçalho da seção mais compacto */
.categories-v2-heading {
    align-items: center;

    margin-bottom:
        clamp(20px, 3vh, 32px);

    gap: 35px;
}

.section-kicker {
    margin-bottom: 8px;
}

.categories-v2-heading h2 {
    font-size:
        clamp(32px, 2.8vw, 44px);

    line-height: 1.02;
}

.categories-v2-heading p {
    margin-top: 9px;

    max-width: 620px;

    font-size: 14px;
    line-height: 1.45;
}


/* GRID MAIS ENXUTO */

.categories-v2-grid {
    gap: 14px;
}


/* CARDS MAIS BAIXOS, SEM FICAR APERTADOS */

.category-v2-card {
    min-height:
        clamp(190px, 23vh, 220px);

    padding: 20px 22px;
}


/* ÍCONES */

.category-v2-icon {
    width: 42px;
    height: 42px;

    font-size: 17px;
}


/* NÚMERO */

.category-v2-number {
    margin-top: 18px;

    font-size: 9px;
}


/* TÍTULO */

.category-v2-card h3 {
    margin-top: 4px;

    font-size: 20px;
}


/* DESCRIÇÃO */

.category-v2-card p {
    margin-top: 7px;

    max-width: 310px;

    font-size: 13px;
    line-height: 1.4;
}


/* LINK INFERIOR */

.category-v2-link {
    left: 22px;
    bottom: 17px;

    font-size: 11px;
}


/* =========================================================
   DESKTOP MAIS BAIXO — NOTEBOOK / MONITOR COM MENOS ALTURA
   ========================================================= */

@media (min-width: 1001px) and (max-height: 800px) {

    .categories-v2 {
        padding: 28px 0 32px;
    }

    .categories-v2-heading {
        margin-bottom: 20px;
    }

    .categories-v2-heading h2 {
        font-size: 38px;
    }

    .category-v2-card {
        min-height: 185px;
        padding: 17px 20px;
    }

    .category-v2-icon {
        width: 38px;
        height: 38px;
    }

    .category-v2-number {
        margin-top: 12px;
    }

    .category-v2-card h3 {
        font-size: 19px;
    }

    .category-v2-card p {
        font-size: 12px;
    }

    .category-v2-link {
        bottom: 14px;
        left: 20px;
    }
}


/* =========================================================
   REMOVE AQUELA PEQUENA EMENDA VISUAL DO TOPO
   ========================================================= */

.header {
    border-bottom: none !important;
    box-shadow: none !important;
}

.hero-approved,
.categories-v2 {
    border-top: none !important;
}


/* =========================================================
   CATEGORIAS — PROPORÇÃO FINAL APROVADA
   ========================================================= */

.categories-v2 {
    padding: 38px 0 46px;
}

.categories-v2-heading {
    margin-bottom: 28px;
}

.categories-v2-grid {
    gap: 14px 16px;
}

.category-v2-card {
    min-height: 225px;
    padding: 22px 24px;
}

.category-v2-icon {
    width: 46px;
    height: 46px;
    font-size: 19px;
}

.category-v2-number {
    margin-top: 18px;
    font-size: 10px;
}

.category-v2-card h3 {
    margin-top: 5px;
    font-size: 21px;
}

.category-v2-card p {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.45;
}

.category-v2-link {
    left: 24px;
    bottom: 18px;
    font-size: 12px;
}

/* elimina a faixa/emenda escura residual */
.header,
.nav-container {
    margin-bottom: 0 !important;
}

.hero-approved {
    margin-top: 0 !important;
}


/* =========================================================
   CATEGORIAS — AJUSTE FINAL OPÇÃO 1
   ========================================================= */

.categories-v2 {
    padding: 34px 0 38px;
}

.categories-v2-heading {
    margin-bottom: 24px;
}

.categories-v2-grid {
    gap: 12px 14px;
}

.category-v2-card {
    min-height: 205px;
    padding: 19px 22px;
}

.category-v2-icon {
    width: 42px;
    height: 42px;
    font-size: 17px;
}

.category-v2-number {
    margin-top: 14px;
    font-size: 9px;
}

.category-v2-card h3 {
    margin-top: 4px;
    font-size: 20px;
}

.category-v2-card p {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.4;
}

.category-v2-link {
    left: 22px;
    bottom: 15px;
    font-size: 11px;
}


/* =========================================================
   IMAGENS DAS CATEGORIAS
   ========================================================= */

.category-v2-card {
    padding-right: 155px;
}

.category-v2-card h3,
.category-v2-card p,
.category-v2-link,
.category-v2-number,
.category-v2-top {
    position: relative;
    z-index: 3;
}

.category-v2-image {
    position: absolute;

    right: 16px;
    bottom: 34px;

    width: 125px;
    height: 105px;

    object-fit: contain;
    object-position: center;

    border-radius: 11px;

    z-index: 1;

    pointer-events: none;

    transition:
        transform .3s ease,
        filter .3s ease;

    filter:
        saturate(.92)
        contrast(1.02);
}

.category-v2-card:hover .category-v2-image {
    transform: translateY(-3px) scale(1.025);

    filter:
        saturate(1)
        contrast(1.04);
}


/* descrição não invade a imagem */

.category-v2-card p {
    max-width: 205px;
}


/* TABLET */

@media (max-width: 1000px) {

    .category-v2-card {
        padding-right: 145px;
    }

    .category-v2-image {
        width: 115px;
        height: 100px;
    }
}


/* CELULAR */

@media (max-width: 700px) {

    .category-v2-card {
        padding-right: 125px;
    }

    .category-v2-image {
        right: 12px;
        bottom: 32px;

        width: 100px;
        height: 90px;
    }

    .category-v2-card p {
        max-width: 190px;
    }
}


/* =========================================================
   BLOCO 3 — PRODUTOS EM DESTAQUE
   ========================================================= */

.products-v3 {
    padding: 55px 0 65px;

    background:
        radial-gradient(
            circle at 8% 10%,
            rgba(23,104,199,.045),
            transparent 24%
        ),
        #ffffff;

    color: #0a0d12;
}

.products-v3-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 45px;

    margin-bottom: 32px;
}

.products-v3-kicker {
    display: block;

    margin-bottom: 9px;

    color: #1768c7;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
}

.products-v3-heading h2 {
    font-size: clamp(32px, 3vw, 46px);
    line-height: 1.04;

    letter-spacing: -1.5px;
}

.products-v3-heading p {
    max-width: 580px;

    margin-top: 10px;

    color: #656b74;

    font-size: 14px;
    line-height: 1.5;
}

.products-v3-all {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;

    gap: 14px;

    padding-bottom: 7px;

    border-bottom: 1px solid #b7bbc1;

    color: #11151a;

    font-size: 13px;
    font-weight: 700;
}

.products-v3-all span {
    color: #1768c7;
    font-size: 18px;
}


/* GRID */

.products-v3-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 15px;
}


/* CARD */

.product-v3-card {
    min-width: 0;

    overflow: hidden;

    border: 1px solid #e0e4e8;
    border-radius: 16px;

    background: #ffffff;

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.product-v3-card:hover {
    transform: translateY(-4px);

    border-color: rgba(23,104,199,.28);

    box-shadow:
        0 18px 45px rgba(18,28,40,.08);
}


/* FOTO */

.product-v3-image {
    height: 180px;

    padding: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #fafbfc,
            #ffffff
        );
}

.product-v3-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    transition: transform .3s ease;
}

.product-v3-card:hover .product-v3-image img {
    transform: scale(1.025);
}


/* CONTEÚDO */

.product-v3-content {
    min-height: 142px;

    padding: 16px 18px 17px;

    display: flex;
    flex-direction: column;
}

.product-v3-category {
    color: #1768c7;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;
}

.product-v3-content h3 {
    margin-top: 7px;

    font-size: 15px;
    line-height: 1.3;
}

.product-v3-button {
    align-self: flex-start;

    margin-top: auto;

    display: inline-flex;
    align-items: center;

    gap: 18px;

    padding: 8px 12px;

    border: 1px solid #86b7f0;
    border-radius: 7px;

    color: #1768c7;

    font-size: 11px;
    font-weight: 700;

    transition:
        color .2s ease,
        background .2s ease,
        border-color .2s ease;
}

.product-v3-button:hover {
    color: #ffffff;

    background: #1768c7;
    border-color: #1768c7;
}


/* TABLET */

@media (max-width: 1050px) {

    .products-v3-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


/* CELULAR */

@media (max-width: 650px) {

    .products-v3 {
        padding: 45px 0;
    }

    .products-v3-heading {
        flex-direction: column;
        align-items: flex-start;

        margin-bottom: 25px;
    }

    .products-v3-grid {
        grid-template-columns: 1fr;
    }

    .product-v3-image {
        height: 210px;
    }
}


/* =========================================================
   BLOCO 4 — INSTITUCIONAL + SERVIÇOS
   ========================================================= */

.about-services-v4 {
    padding: 70px 0;

    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(20, 88, 170, .14),
            transparent 30%
        ),
        linear-gradient(
            125deg,
            #05080c,
            #0a1119
        );

    color: #ffffff;
}

.about-services-v4-grid {
    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 70px;
    align-items: center;
}


/* LADO ESQUERDO */

.about-services-v4-copy .section-kicker {
    color: #438fe8;
}

.about-services-v4-copy h2 {
    margin-top: 12px;

    max-width: 520px;

    font-size: clamp(36px, 3.5vw, 52px);
    line-height: 1.05;

    letter-spacing: -1.5px;
}

.about-services-v4-copy p {
    max-width: 560px;

    margin-top: 18px;

    color: #bdc5cf;

    font-size: 15px;
    line-height: 1.6;
}

.about-services-v4-link {
    display: inline-block;

    margin-top: 28px;
    padding-bottom: 5px;

    border-bottom: 1px solid rgba(255,255,255,.45);

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;
}


/* PAINEL */

.about-services-v4-panel {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    border:
        1px solid rgba(255,255,255,.14);

    border-radius: 22px;

    overflow: hidden;

    background:
        rgba(255,255,255,.025);
}

.about-service-item {
    min-height: 150px;

    padding: 24px;

    border-right:
        1px solid rgba(255,255,255,.12);

    border-bottom:
        1px solid rgba(255,255,255,.12);
}

.about-service-item:nth-child(even) {
    border-right: 0;
}

.about-service-item span {
    color: #438fe8;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;
}

.about-service-item h3 {
    margin-top: 19px;

    font-size: 20px;
    line-height: 1.2;
}

.about-service-item p {
    margin-top: 7px;

    color: #aeb7c1;

    font-size: 12px;
    line-height: 1.45;
}


/* Último card ocupa largura total */

.about-service-featured {
    grid-column: 1 / -1;

    min-height: 115px;

    border-right: 0;
    border-bottom: 0;

    display: grid;

    grid-template-columns:
        70px 1fr 1.4fr;

    align-items: center;

    gap: 18px;
}

.about-service-featured h3,
.about-service-featured p {
    margin-top: 0;
}


/* RESPONSIVO */

@media (max-width: 950px) {

    .about-services-v4-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {

    .about-services-v4 {
        padding: 50px 0;
    }

    .about-services-v4-panel {
        grid-template-columns: 1fr;
    }

    .about-service-item {
        border-right: 0;
    }

    .about-service-featured {
        grid-column: auto;
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   AJUSTE FINAL BLOCO 4
   ========================================================= */

.about-services-v4 {
    padding: 56px 0;
}

.about-services-v4-grid {
    grid-template-columns: .78fr 1.22fr;
    gap: 52px;
}

.about-services-v4-copy h2 {
    font-size: clamp(34px, 3.1vw, 46px);
}

.about-services-v4-copy p {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.55;
}

.about-services-v4-link {
    margin-top: 22px;
}

/* células mais compactas */
.about-service-item {
    min-height: 122px;
    padding: 20px 24px;
}

.about-service-item h3 {
    margin-top: 14px;
    font-size: 18px;
}

.about-service-item p {
    margin-top: 5px;
}

/* Loja online vira uma faixa final mais leve */
.about-service-featured {
    min-height: 82px;
    grid-template-columns: 60px 190px 1fr;
    gap: 14px;
    padding: 17px 24px;
}

.about-service-featured span::after {
    content: "  EM BREVE";
    color: #438fe8;
    font-size: 8px;
    letter-spacing: 1.5px;
    margin-left: 8px;
}


/* =========================================================
   BLOCO FINAL - CTA
   ========================================================= */

.contact-cta,
.cta,
.final-cta {
    margin-top: 0 !important;
}

.contact-cta {
    padding-top: 48px;
    padding-bottom: 48px;
}

/* Rodapé mais compacto */
.footer {
    padding-top: 46px;
}

@media (max-width: 950px) {

    .about-services-v4-grid {
        gap: 35px;
    }

    .about-service-featured {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   HERO - 4 CARDS CLICÁVEIS
   Mantém a arte original sem alteração
   ========================================================= */

.hero-card-hotspot {
    position: absolute;
    display: block;
    z-index: 20;

    cursor: pointer;

    border-radius: 16px;

    background: transparent;

    transition:
        background .2s ease,
        box-shadow .2s ease;
}

/* Tecnologia - superior esquerdo */
.hotspot-tecnologia {
    left: 45.5%;
    top: 3.5%;
    width: 23%;
    height: 43%;
}

/* Eletrodomésticos - superior direito */
.hotspot-eletrodomesticos {
    left: 69.2%;
    top: 3.5%;
    width: 27%;
    height: 43%;
}

/* Ferramentas - inferior esquerdo */
.hotspot-ferramentas {
    left: 45.5%;
    top: 48%;
    width: 23%;
    height: 44%;
}

/* Móveis - inferior direito */
.hotspot-moveis {
    left: 69.2%;
    top: 48%;
    width: 27%;
    height: 44%;
}


/* Feedback muito discreto no mouse */
.hero-card-hotspot:hover {
    background: rgba(23,104,199,.025);

    box-shadow:
        inset 0 0 0 1px rgba(48,130,225,.18);
}


/* Mantém a mãozinha */
.hero-card-hotspot,
.hero-hotspot {
    cursor: pointer !important;
}


.hero-action-hotspot {
    position: absolute;
    z-index: 25;
    display: block;
    cursor: pointer !important;
    border-radius: 9px;
    background: transparent;
}

.hotspot-ver-produtos {
    left: 4.7%;
    top: 56.3%;
    width: 14.2%;
    height: 8.4%;
}

.hotspot-fale-sawama {
    left: 20.1%;
    top: 56.3%;
    width: 18.4%;
    height: 8.4%;
}

.hero-action-hotspot:hover {
    background: rgba(23,104,199,.025);
    box-shadow: inset 0 0 0 1px rgba(48,130,225,.18);
}


.hero-action-hotspot {
    position: absolute;
    z-index: 25;
    display: block;
    cursor: pointer !important;
    border-radius: 9px;
    background: transparent;
}

.hotspot-ver-produtos {
    left: 4.7%;
    top: 56.3%;
    width: 14.2%;
    height: 8.4%;
}

.hotspot-fale-sawama {
    left: 20.1%;
    top: 56.3%;
    width: 18.4%;
    height: 8.4%;
}

.hero-action-hotspot:hover {
    background: rgba(23,104,199,.025);
    box-shadow: inset 0 0 0 1px rgba(48,130,225,.18);
}


/* =========================================================
   HERO APROVADO - MAPA DE CLIQUES CORRIGIDO
   ========================================================= */

/*
   O frame passa a acompanhar exatamente a proporção da arte.
   Assim os percentuais dos hotspots acompanham a imagem.
*/
.hero-approved {
    display: flex;
    justify-content: center;
    background: #02070d;
}

.hero-approved-frame {
    position: relative !important;

    width: min(
        100vw,
        calc((100vh - 82px) * 1.657)
    ) !important;

    height: auto !important;
    min-height: 0 !important;

    margin: 0 auto !important;

    display: block !important;
    overflow: visible !important;
}

.hero-approved-image {
    display: block !important;

    width: 100% !important;
    height: auto !important;

    max-width: none !important;
    max-height: none !important;

    object-fit: initial !important;
}


/* BOTÕES INVISÍVEIS, MAS CLICÁVEIS */

.hero-action-hotspot {
    position: absolute !important;
    z-index: 999 !important;

    display: block !important;

    cursor: pointer !important;
    pointer-events: auto !important;

    background: transparent !important;
    border-radius: 8px;
}


/* VER PRODUTOS */
.hotspot-ver-produtos {
    left: 4.5% !important;
    top: 56% !important;

    width: 14.7% !important;
    height: 8.8% !important;
}


/* FALE COM A SAWAMA */
.hotspot-fale-sawama {
    left: 19.8% !important;
    top: 56% !important;

    width: 18.8% !important;
    height: 8.8% !important;
}


/* Mostra discretamente a área quando passa o mouse */
.hero-action-hotspot:hover {
    box-shadow:
        inset 0 0 0 1px rgba(70,145,230,.30) !important;
}


/* TABLET E CELULAR:
   mantém o hotspot preso à própria imagem */
@media (max-width: 900px) {

    .hero-approved-frame {
        width: 100% !important;
    }
}


/* =========================================================
   PÁGINAS INSTITUCIONAIS
   ========================================================= */

.institutional-page {
    background: #f7f8fa;
    min-height: 70vh;
}

.institutional-hero {
    padding: 72px 0 65px;

    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(23,104,199,.16),
            transparent 28%
        ),
        linear-gradient(
            125deg,
            #05080c,
            #0b1420
        );

    color: #ffffff;
}

.institutional-kicker {
    color: #438fe8;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
}

.institutional-hero h1 {
    margin-top: 15px;

    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.04;
    letter-spacing: -2px;
}

.institutional-hero p {
    max-width: 650px;

    margin-top: 15px;

    color: #c0c8d2;
    font-size: 16px;
}

.institutional-content {
    padding: 55px 0 75px;
}

.institutional-card {
    padding: 30px;

    border: 1px solid #e0e4e8;
    border-radius: 18px;

    background: #ffffff;
}

.institutional-card h2 {
    font-size: 28px;
}

.institutional-card p {
    max-width: 800px;

    margin-top: 14px;

    color: #626972;
    line-height: 1.65;
}

.institutional-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 15px;

    margin-top: 20px;
}

.institutional-info-card {
    padding: 25px;

    border: 1px solid #e0e4e8;
    border-radius: 16px;

    background: #ffffff;
}

.institutional-info-card > span {
    display: block;

    margin-bottom: 9px;

    color: #1768c7;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.institutional-info-card strong {
    font-size: 17px;
}

.institutional-info-card p {
    margin-top: 8px;

    color: #6b727b;
    font-size: 13px;
}

.institutional-info-card a {
    display: inline-block;

    margin-top: 12px;

    color: #1768c7;
    font-size: 13px;
    font-weight: 700;
}

.institutional-center {
    text-align: center;
}

.institutional-center p {
    margin-left: auto;
    margin-right: auto;
}

.institutional-button {
    display: inline-flex;

    margin-top: 25px;
    padding: 12px 20px;

    border-radius: 8px;

    background: #1768c7;
    color: #ffffff;

    font-weight: 700;
}

.legal-text h3 {
    margin-top: 28px;
    font-size: 18px;
}

@media (max-width: 700px) {

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

    .institutional-hero {
        padding: 55px 0;
    }

    .institutional-content {
        padding: 40px 0 55px;
    }
}


/* =========================================================
   AJUSTES FINAIS APROVADOS — HOME
   ========================================================= */

/* HERO */
@media (min-width: 901px) {
    .hero-approved-frame {
        width: 83vw !important;
        max-width: 83vw !important;
        height: auto !important;
        margin: 0 auto !important;
    }

    .hero-approved-image {
        width: 100% !important;
        height: auto !important;
        max-width: none !important;
        max-height: none !important;
    }
}

/* CATEGORIAS */
@media (min-width: 1001px) {
    .category-v2-card {
        min-height: 225px;
        padding-bottom: 22px;
    }

    .category-v2-link {
        position: relative !important;
        left: auto !important;
        bottom: auto !important;
        display: inline-block;
        margin-top: 10px;
    }
}

/* PRODUTOS EM DESTAQUE */
@media (min-width: 651px) {
    .products-v3 {
        padding-top: 32px;
        padding-bottom: 38px;
    }
}

/* CTA FINAL */
.contact-cta .cta {
    margin-bottom: 0 !important;
}



/* =========================================================
   CATÁLOGO DE PRODUTOS — PÁGINA PRODUTOS
   ========================================================= */

.products-catalog {
    padding: 60px 0 80px;
    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(23, 104, 199, .045),
            transparent 26%
        ),
        #f5f7fa;
}

.products-catalog-intro {
    max-width: 760px;
    margin-bottom: 48px;
}

.products-catalog-intro h2 {
    margin-top: 10px;

    font-size: clamp(34px, 3.2vw, 48px);
    line-height: 1.05;
    letter-spacing: -1.5px;
}

.products-catalog-intro p {
    max-width: 680px;
    margin-top: 14px;

    color: #626a74;

    font-size: 15px;
    line-height: 1.6;
}


/* CATEGORIA */

.catalog-category {
    scroll-margin-top: 120px;
    padding: 42px 0;
    border-top: 1px solid #dfe4ea;
}

.catalog-category:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.catalog-category-heading {
    display: flex;
    align-items: flex-start;
    gap: 18px;

    margin-bottom: 24px;
}

.catalog-category-heading > span {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border: 1px solid #c9d9ec;
    border-radius: 50%;

    color: #1768c7;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.catalog-category-heading h2 {
    font-size: 28px;
    line-height: 1.1;
}

.catalog-category-heading p {
    margin-top: 6px;

    color: #69717c;
    font-size: 14px;
    line-height: 1.5;
}


/* GRID */

.catalog-products-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}


/* CARD */

.catalog-product-card {
    min-width: 0;
    min-height: 245px;

    display: flex;
    flex-direction: column;

    padding: 24px 22px;

    border: 1px solid #dce1e7;
    border-radius: 18px;

    background: #ffffff;

    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

.catalog-product-card:hover {
    transform: translateY(-3px);

    border-color: #b8d0ec;

    box-shadow:
        0 14px 34px rgba(19, 40, 68, .08);
}

.catalog-product-tag {
    display: block;

    margin-bottom: 14px;

    color: #1768c7;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.catalog-product-card h3 {
    font-size: 18px;
    line-height: 1.18;
}

.catalog-product-card p {
    margin-top: 10px;

    color: #666e78;

    font-size: 13px;
    line-height: 1.5;
}

.catalog-product-card a {
    display: inline-flex;
    align-items: center;

    margin-top: auto;
    padding-top: 20px;

    color: #1768c7;

    font-size: 13px;
    font-weight: 800;
}

.catalog-product-card a:hover {
    text-decoration: underline;
}


/* RESPONSIVIDADE */

@media (max-width: 1200px) {
    .catalog-products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 800px) {
    .products-catalog {
        padding: 45px 0 60px;
    }

    .products-catalog-intro {
        margin-bottom: 35px;
    }

    .catalog-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .catalog-category {
        padding: 32px 0;
    }

    .catalog-category-heading h2 {
        font-size: 24px;
    }

    .catalog-products-grid {
        grid-template-columns: 1fr;
    }

    .catalog-product-card {
        min-height: 0;
    }
}


/* =========================================================
   CATÁLOGO — IMAGENS DOS PRODUTOS
   ========================================================= */

.catalog-product-image {
    width: 100%;
    height: 120px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    overflow: hidden;

    border-radius: 12px;

    background: #f7f9fc;
}

.catalog-product-image img {
    display: block;

    max-width: 92%;
    max-height: 105px;

    width: auto;
    height: auto;

    object-fit: contain;
}


/* Cards com imagem ganham um pouco mais de altura */

.catalog-product-card:has(.catalog-product-image) {
    min-height: 385px;
}


@media (max-width: 800px) {

    .catalog-product-image {
        height: 135px;
    }

    .catalog-product-image img {
        max-height: 118px;
    }
}

/* =========================================================
   CATÁLOGO — ESCALAS FINAIS APROVADAS
   30 produtos | 6 categorias
   ========================================================= */

/* TECNOLOGIA */

.catalog-product-image img[src$="computador-desktop.png"] {
    transform: scale(1.42);
}

.catalog-product-image img[src$="monitor-profissional.png"] {
    transform: scale(1.32);
}

.catalog-product-image img[src$="projetor-multimidia.png"] {
    transform: scale(1.42);
}


/* ELETRODOMÉSTICOS */

.catalog-product-image img[src$="lavadora-roupas.png"] {
    transform: scale(2.05);
}

.catalog-product-image img[src$="micro-ondas.png"] {
    transform: scale(2.00);
}

.catalog-product-image img[src$="ar-condicionado-split.png"] {
    transform: scale(1.95);
}

.catalog-product-image img[src$="bebedouro-agua.png"] {
    transform: scale(2.10);
}


/* EQUIPAMENTOS */

.catalog-product-image img[src$="liquidificador-industrial.png"] {
    transform: scale(2.15);
}

.catalog-product-image img[src$="forno-industrial.png"] {
    transform: scale(2.05);
}

.catalog-product-image img[src$="refrigerador-comercial.png"] {
    transform: scale(2.10);
}

.catalog-product-image img[src$="lavadora-alta-pressao.png"] {
    transform: scale(2.05);
}

.catalog-product-image img[src$="compressor-ar.png"] {
    transform: scale(2.10);
}


/* FERRAMENTAS */

.catalog-product-image img[src$="jogo-ferramentas.png"] {
    transform: scale(2.05);
}

.catalog-product-image img[src$="multimetro-digital.png"] {
    transform: scale(2.10);
}

.catalog-product-image img[src$="rocadeira.png"] {
    transform: scale(1.75);
}

.catalog-product-image img[src$="kit-epi.png"] {
    transform: scale(2.05);
}


/* MÓVEIS */

.catalog-product-image img[src$="armario-aco.png"] {
    transform: scale(2.10);
}

.catalog-product-image img[src$="bancada-inox.png"] {
    transform: scale(1.90);
}

.catalog-product-image img[src$="conjunto-escolar.png"] {
    transform: scale(2.10);
}


/* UTILIDADES */

.catalog-product-image img[src$="utensilios-cozinha.png"] {
    transform: scale(2.10);
}

.catalog-product-image img[src$="caixa-organizadora.png"] {
    transform: scale(2.05);
}

.catalog-product-image img[src$="caixa-termica.png"] {
    transform: scale(2.10);
}

.catalog-product-image img[src$="lixeira-coletor.png"] {
    transform: scale(2.10);
}

/* =========================================================
   CONTATO — FORMULÁRIO DE COTAÇÃO
   ========================================================= */

.quote-request {
    margin-top: 46px;
    padding: 34px;

    border: 1px solid #dfe4ea;
    border-radius: 22px;

    background: #ffffff;

    box-shadow:
        0 18px 45px rgba(19, 40, 68, .06);
}

.quote-request-heading {
    max-width: 720px;
    margin-bottom: 28px;
}

.quote-request-heading h2 {
    margin-top: 10px;

    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.06;
    letter-spacing: -1.2px;
}

.quote-request-heading p {
    margin-top: 12px;

    color: #68717c;
    font-size: 14px;
    line-height: 1.6;
}

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

.quote-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quote-field-full {
    grid-column: 1 / -1;
}

.quote-field label {
    color: #20262d;

    font-size: 12px;
    font-weight: 800;
}

.quote-field input,
.quote-field textarea {
    width: 100%;

    padding: 13px 14px;

    border: 1px solid #d5dbe2;
    border-radius: 10px;

    background: #f9fafc;
    color: #11151a;

    font: inherit;

    outline: none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.quote-field input:focus,
.quote-field textarea:focus {
    border-color: #1768c7;
    background: #ffffff;

    box-shadow:
        0 0 0 3px rgba(23,104,199,.09);
}

.quote-field textarea {
    resize: vertical;
    min-height: 125px;
}

.quote-submit {
    margin-top: 22px;
    padding: 13px 20px;

    border: 0;
    border-radius: 9px;

    background: #1768c7;
    color: #ffffff;

    font-size: 13px;
    font-weight: 800;

    cursor: pointer;
}

.quote-submit:hover {
    filter: brightness(.94);
}

@media (max-width: 700px) {
    .quote-request {
        padding: 24px 20px;
    }

    .quote-form-grid {
        grid-template-columns: 1fr;
    }

    .quote-field-full {
        grid-column: auto;
    }
}


@media (max-width: 700px) {
    .category-v2-link {
        position: static;
        display: inline-block;
        margin-top: 12px;
    }
}

@media (max-width: 700px) {
    .about-services-v4-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-services-v4-panel {
        grid-template-columns: 1fr;
    }

    .about-service-featured {
        grid-column: auto;
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1001px) {
    .about-services-v4-grid {
        grid-template-columns: .92fr 1.08fr;
        gap: 64px;
        align-items: center;
    }

    .about-services-v4-copy {
        max-width: 560px;
    }

    .about-services-v4-panel {
        max-width: 720px;
        width: 100%;
        justify-self: end;
    }

    .about-service-featured {
        grid-template-columns: 60px 170px 1fr;
    }
}
