/* =========================================================
   CASA DO PERFIL
   STYLE.CSS
========================================================= */


/* =========================================================
   VARIÁVEIS
========================================================= */

:root {

    --orange: #ff6a00;
    --orange-light: #ff963d;
    --orange-bright: #ffb15c;

    --green: #8bcf3f;
    --green-light: #a8e65c;
    --green-dark: #4f8125;

    --black: #070a08;
    --black-2: #0b100d;
    --black-3: #101713;
    --black-4: #151d18;

    --white: #f6f8f5;
    --white-soft: #dfe6e0;

    --gray: #aab4ad;
    --gray-dark: #737e77;

    --orange-glow: rgba(255, 106, 0, 0.30);
    --green-glow: rgba(139, 207, 63, 0.23);

    --radius: 20px;

    --container: 1180px;
}


/* =========================================================
   RESET
========================================================= */

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


html {
    scroll-behavior: smooth;
}


body {

    min-height: 100vh;

    overflow-x: hidden;

    font-family:
        Inter,
        "Segoe UI",
        Arial,
        sans-serif;

    color: var(--white);

    background:

        radial-gradient(
            circle at 8% 12%,
            rgba(255, 106, 0, 0.14),
            transparent 28%
        ),

        radial-gradient(
            circle at 92% 25%,
            rgba(139, 207, 63, 0.12),
            transparent 30%
        ),

        radial-gradient(
            circle at 50% 100%,
            rgba(255, 106, 0, 0.09),
            transparent 35%
        ),

        linear-gradient(
            135deg,
            #060806 0%,
            #0d120f 45%,
            #090d0b 100%
        );
}


body::before {

    content: "";

    position: fixed;

    inset: -20%;

    z-index: -1;

    pointer-events: none;

    background:

        radial-gradient(
            circle at 20% 30%,
            rgba(255, 106, 0, 0.08),
            transparent 20%
        ),

        radial-gradient(
            circle at 80% 70%,
            rgba(139, 207, 63, 0.07),
            transparent 22%
        );

    filter: blur(65px);

    animation:
        ambientGlow 10s ease-in-out infinite alternate;
}


@keyframes ambientGlow {

    from {
        transform: scale(1);
        opacity: 0.7;
    }

    to {
        transform: scale(1.12);
        opacity: 1;
    }
}


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


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


/* =========================================================
   CONTAINER
========================================================= */

.container {

    width:
        min(
            calc(100% - 40px),
            var(--container)
        );

    margin: 0 auto;
}


/* =========================================================
   LOADER
========================================================= */

.loader {

    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;

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

    background:

        radial-gradient(
            circle at center,
            rgba(255, 106, 0, 0.13),
            transparent 28%
        ),

        radial-gradient(
            circle at 65% 70%,
            rgba(139, 207, 63, 0.09),
            transparent 30%
        ),

        #050705;

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
}


.loader.loaded {

    opacity: 0;

    visibility: hidden;

    pointer-events: none;
}


.loader-glow {

    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background:

        radial-gradient(
            circle,
            rgba(255, 106, 0, 0.25),
            rgba(139, 207, 63, 0.08),
            transparent 70%
        );

    filter: blur(30px);

    animation:
        loaderGlow 2s ease-in-out infinite alternate;
}


@keyframes loaderGlow {

    from {
        transform: scale(0.85);
        opacity: 0.6;
    }

    to {
        transform: scale(1.15);
        opacity: 1;
    }
}


.loader-content {

    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;
}


.loader-logo-wrap {

    width: 145px;
    height: 145px;

    display: flex;

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

    perspective: 800px;
}


.loader-logo {

    width: 125px;

    filter:

        drop-shadow(
            0 0 12px
            rgba(255, 106, 0, 0.45)
        )

        drop-shadow(
            0 0 25px
            rgba(139, 207, 63, 0.22)
        );

    animation:
        loader3D 2.4s ease-in-out infinite,
        loaderFloat 2s ease-in-out infinite;
}


@keyframes loader3D {

    0% {
        transform:
            rotateY(-25deg)
            rotateX(8deg)
            scale(0.92);
    }

    50% {
        transform:
            rotateY(25deg)
            rotateX(-5deg)
            scale(1);
    }

    100% {
        transform:
            rotateY(-25deg)
            rotateX(8deg)
            scale(0.92);
    }
}


@keyframes loaderFloat {

    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -9px;
    }
}


.loader-line {

    width: 110px;
    height: 2px;

    margin-top: 10px;

    background:

        linear-gradient(
            90deg,
            transparent,
            var(--orange),
            var(--green),
            transparent
        );

    box-shadow:

        0 0 10px
        var(--orange-glow),

        0 0 18px
        var(--green-glow);

    animation:
        loaderLine 1.8s ease-in-out infinite;
}


@keyframes loaderLine {

    0%,
    100% {
        opacity: 0.35;
        transform: scaleX(0.6);
    }

    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}


.loader-content p {

    margin-top: 16px;

    color: var(--gray);

    font-size: 0.72rem;

    letter-spacing: 0.28em;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: absolute;

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

    z-index: 50;

    background:

        linear-gradient(
            180deg,
            rgba(5, 8, 6, 0.82),
            rgba(5, 8, 6, 0)
        );
}


.header-inner {

    width:
        min(
            calc(100% - 40px),
            var(--container)
        );

    min-height: 82px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 24px;
}


.brand {

    display: flex;

    align-items: center;

    gap: 11px;
}


.brand-logo {

    width: 46px;
    height: 46px;

    object-fit: contain;

    filter:

        drop-shadow(
            0 0 8px
            rgba(255, 106, 0, 0.30)
        )

        drop-shadow(
            0 0 14px
            rgba(139, 207, 63, 0.15)
        );

    transition:
        transform 0.3s ease,
        filter 0.3s ease;
}


.brand:hover .brand-logo {

    transform: scale(1.06);

    filter:

        drop-shadow(
            0 0 12px
            rgba(255, 106, 0, 0.45)
        )

        drop-shadow(
            0 0 20px
            rgba(139, 207, 63, 0.22)
        );
}


.brand-text {

    display: flex;

    flex-direction: column;
}


.brand-text strong {

    font-size: 0.82rem;

    letter-spacing: 0.08em;
}


.brand-text small {

    margin-top: 3px;

    color: var(--gray);

    font-size: 0.52rem;

    letter-spacing: 0.09em;
}


.navigation {

    display: flex;

    align-items: center;

    gap: 25px;
}


.navigation a {

    position: relative;

    color:
        rgba(255, 255, 255, 0.78);

    font-size: 0.8rem;

    font-weight: 600;

    transition:
        color 0.25s ease,
        text-shadow 0.25s ease;
}


.navigation a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 2px;

    border-radius: 10px;

    background:

        linear-gradient(
            90deg,
            var(--orange),
            var(--green)
        );

    box-shadow:
        0 0 8px
        var(--orange-glow);

    transition:
        width 0.25s ease;
}


.navigation a:hover {

    color: white;

    text-shadow:
        0 0 12px
        rgba(255, 106, 0, 0.3);
}


.navigation a:hover::after {
    width: 100%;
}


/* =========================================================
   REDES SOCIAIS
========================================================= */

.social-links {

    display: flex;

    align-items: center;

    gap: 7px;
}


.social-links a {

    min-width: 82px;

    height: 34px;

    padding:
        0 12px;

    display: flex;

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

    border:
        1px solid
        rgba(255, 255, 255, 0.12);

    border-radius: 10px;

    color:
        rgba(255, 255, 255, 0.78);

    background:

        linear-gradient(
            135deg,
            rgba(255, 106, 0, 0.09),
            rgba(139, 207, 63, 0.07)
        );

    font-size: 0.7rem;

    font-weight: 800;

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


.social-links a:hover {

    color: white;

    border-color:
        rgba(255, 106, 0, 0.5);

    transform:
        translateY(-2px);

    box-shadow:

        0 0 16px
        rgba(255, 106, 0, 0.18);
}


/* =========================================================
   HERO
========================================================= */

.hero {

    position: relative;

    min-height: 780px;

    display: flex;

    align-items: center;

    overflow: hidden;
}


.hero-background {

    position: absolute;

    inset: -7%;

    background:
        url("fachada.png")
        center center /
        cover
        no-repeat;

    filter:
        blur(3px)
        saturate(0.9);

    transform:
        scale(1.08);

    transition:
        transform 0.15s linear;
}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(4, 7, 5, 0.88) 0%,
            rgba(5, 8, 6, 0.64) 42%,
            rgba(5, 8, 6, 0.30) 100%
        ),

        linear-gradient(
            180deg,
            rgba(5, 7, 5, 0.58),
            rgba(5, 7, 5, 0.10) 50%,
            rgba(5, 7, 5, 0.82)
        );
}


.hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background:

        radial-gradient(
            circle at 25% 45%,
            rgba(255, 106, 0, 0.18),
            transparent 31%
        ),

        radial-gradient(
            circle at 78% 30%,
            rgba(139, 207, 63, 0.14),
            transparent 28%
        );

    pointer-events: none;
}


.hero-light {

    position: absolute;

    border-radius: 50%;

    filter: blur(70px);

    pointer-events: none;
}


.hero-light-orange {

    width: 330px;
    height: 330px;

    left: -100px;
    top: 230px;

    background:
        rgba(255, 106, 0, 0.14);
}


.hero-light-green {

    width: 280px;
    height: 280px;

    right: -80px;
    bottom: 90px;

    background:
        rgba(139, 207, 63, 0.10);
}


.hero-content {

    position: relative;

    z-index: 5;

    width:
        min(
            calc(100% - 40px),
            var(--container)
        );

    margin:
        120px auto 80px;
}


.hero-logo-container {

    position: relative;

    width: 155px;
    height: 155px;

    display: flex;

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

    perspective: 900px;

    margin-bottom: 22px;
}


.hero-logo {

    position: relative;

    z-index: 2;

    width: 145px;

    filter:

        drop-shadow(
            0 8px 4px
            rgba(0, 0, 0, 0.45)
        )

        drop-shadow(
            0 0 12px
            rgba(255, 106, 0, 0.32)
        )

        drop-shadow(
            0 0 24px
            rgba(139, 207, 63, 0.18)
        );

    transition:
        transform 0.25s ease,
        filter 0.25s ease;
}


.hero-logo:hover {

    filter:

        drop-shadow(
            0 10px 5px
            rgba(0, 0, 0, 0.5)
        )

        drop-shadow(
            0 0 18px
            rgba(255, 106, 0, 0.48)
        )

        drop-shadow(
            0 0 30px
            rgba(139, 207, 63, 0.28)
        );
}


.logo-shadow {

    position: absolute;

    width: 115px;
    height: 35px;

    left: 20px;
    bottom: 0;

    border-radius: 50%;

    background:

        radial-gradient(
            ellipse,
            rgba(255, 106, 0, 0.28),
            rgba(139, 207, 63, 0.08),
            transparent 70%
        );

    filter: blur(14px);

    transform:
        translateY(12px);

    pointer-events: none;
}


.eyebrow,
.section-label {

    display: inline-block;

    color: var(--orange-light);

    font-size: 0.7rem;

    font-weight: 800;

    letter-spacing: 0.2em;

    text-shadow:
        0 0 12px
        rgba(255, 106, 0, 0.22);
}


.hero h1 {

    max-width: 850px;

    margin-top: 14px;

    font-size:
        clamp(
            2.9rem,
            7vw,
            6.3rem
        );

    line-height: 0.96;

    letter-spacing: -0.055em;

    font-weight: 900;
}


.hero h1 span {

    display: block;

    background:

        linear-gradient(
            100deg,
            var(--orange-light),
            #ffffff 35%,
            var(--green-light) 75%,
            var(--orange)
        );

    background-size: 220% auto;

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;

    animation:
        titleGradient 7s ease infinite;
}


@keyframes titleGradient {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}


.hero-description {

    max-width: 620px;

    margin-top: 25px;

    color:
        rgba(238, 243, 239, 0.82);

    font-size: 1rem;

    line-height: 1.8;
}


.primary-button {

    display: inline-flex;

    align-items: center;

    gap: 13px;

    margin-top: 32px;

    padding:
        14px 20px;

    border-radius: 14px;

    color: #080a08;

    background:

        linear-gradient(
            100deg,
            var(--orange-light),
            var(--orange),
            var(--green)
        );

    background-size: 180% auto;

    font-weight: 900;

    font-size: 0.78rem;

    box-shadow:

        0 0 0 1px
        rgba(255, 255, 255, 0.08),

        0 0 24px
        rgba(255, 106, 0, 0.22),

        0 0 34px
        rgba(139, 207, 63, 0.10);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-position 0.4s ease;
}


.primary-button:hover {

    transform:
        translateY(-3px);

    background-position:
        100% center;

    box-shadow:

        0 0 0 1px
        rgba(255, 255, 255, 0.13),

        0 0 28px
        rgba(255, 106, 0, 0.34),

        0 0 42px
        rgba(139, 207, 63, 0.18);
}


.primary-button span {
    font-size: 1rem;
}


.hero-bottom-glow {

    position: absolute;

    left: 0;
    right: 0;
    bottom: -40px;

    height: 150px;

    background:

        radial-gradient(
            ellipse at center,
            rgba(255, 106, 0, 0.15),
            rgba(139, 207, 63, 0.05),
            transparent 70%
        );

    filter: blur(20px);

    pointer-events: none;
}


/* =========================================================
   SEÇÕES
========================================================= */

.section {

    position: relative;

    padding: 130px 0;

    overflow: hidden;
}


.company-section {

    background:

        radial-gradient(
            circle at 15% 40%,
            rgba(255, 106, 0, 0.12),
            transparent 30%
        ),

        radial-gradient(
            circle at 88% 75%,
            rgba(139, 207, 63, 0.11),
            transparent 28%
        ),

        linear-gradient(
            135deg,
            #090d0b,
            #111914,
            #080c0a
        );
}


.section-glow {

    position: absolute;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    filter: blur(80px);

    pointer-events: none;
}


.section-glow-orange {

    left: -120px;
    top: 120px;

    background:
        rgba(255, 106, 0, 0.11);
}


.section-glow-green {

    right: -120px;
    bottom: 80px;

    background:
        rgba(139, 207, 63, 0.09);
}


.company-grid {

    display: grid;

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

    gap: 80px;

    align-items: center;
}


.company-text h2,
.section-heading h2,
.highlight-content h2 {

    margin-top: 14px;

    font-size:
        clamp(
            2.2rem,
            5vw,
            4.5rem
        );

    line-height: 1;

    letter-spacing: -0.045em;

    font-weight: 900;
}


.company-text h2 span,
.section-heading h2 span,
.highlight-content h2 span {

    display: block;

    color: var(--green-light);

    text-shadow:
        0 0 25px
        rgba(139, 207, 63, 0.15);
}


.company-text p {

    max-width: 600px;

    margin-top: 22px;

    color: var(--gray);

    line-height: 1.8;

    font-size: 0.98rem;
}


/* =========================================================
   IMAGEM
========================================================= */

.company-image {
    position: relative;
}


.image-glow {

    position: absolute;

    inset: 8%;

    border-radius: 35px;

    background:

        linear-gradient(
            135deg,
            rgba(255, 106, 0, 0.28),
            rgba(139, 207, 63, 0.18)
        );

    filter: blur(35px);

    opacity: 0.7;
}


.image-frame {

    position: relative;

    overflow: hidden;

    border-radius: 28px;

    border:
        1px solid
        rgba(255, 255, 255, 0.12);

    box-shadow:

        0 25px 70px
        rgba(0, 0, 0, 0.38),

        0 0 30px
        rgba(255, 106, 0, 0.08);
}


.image-frame::before {

    content: "";

    position: absolute;

    inset: 0;

    z-index: 2;

    border-radius: inherit;

    background:

        linear-gradient(
            135deg,
            rgba(255, 106, 0, 0.16),
            transparent 32%,
            transparent 65%,
            rgba(139, 207, 63, 0.14)
        );

    pointer-events: none;
}


.image-frame img {

    width: 100%;

    min-height: 470px;

    object-fit: cover;

    transition:
        transform 0.7s ease,
        filter 0.7s ease;
}


.image-frame:hover img {

    transform: scale(1.045);

    filter: saturate(1.08);
}


.image-overlay {

    position: absolute;

    inset: 0;

    z-index: 3;

    background:

        linear-gradient(
            180deg,
            transparent 45%,
            rgba(3, 6, 4, 0.8)
        );
}


.image-caption {

    position: absolute;

    left: 26px;
    bottom: 25px;

    z-index: 4;

    display: flex;

    flex-direction: column;

    gap: 4px;
}


.image-caption strong {
    font-size: 1.15rem;
}


.image-caption span {

    color: var(--gray);

    font-size: 0.75rem;
}


/* =========================================================
   MATERIAIS
========================================================= */

.products-section {

    background:

        radial-gradient(
            circle at 8% 15%,
            rgba(255, 106, 0, 0.15),
            transparent 28%
        ),

        radial-gradient(
            circle at 92% 80%,
            rgba(139, 207, 63, 0.13),
            transparent 29%
        ),

        linear-gradient(
            135deg,
            #0a0f0c,
            #121a15,
            #080d0a
        );
}


.products-light {

    position: absolute;

    border-radius: 50%;

    filter: blur(80px);

    pointer-events: none;
}


.products-light-one {

    width: 350px;
    height: 350px;

    left: -160px;
    top: 300px;

    background:
        rgba(255, 106, 0, 0.11);
}


.products-light-two {

    width: 300px;
    height: 300px;

    right: -120px;
    bottom: 100px;

    background:
        rgba(139, 207, 63, 0.09);
}


.section-heading {

    max-width: 750px;

    margin-bottom: 55px;
}


.section-heading p {

    max-width: 600px;

    margin-top: 20px;

    color: var(--gray);

    line-height: 1.7;
}


/* =========================================================
   CARDS
========================================================= */

.categories-grid {

    display: grid;

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

    gap: 18px;
}


.category-card {

    position: relative;

    min-height: 255px;

    padding: 30px;

    overflow: hidden;

    border:
        1px solid
        rgba(255, 255, 255, 0.09);

    border-radius: var(--radius);

    background:

        radial-gradient(
            circle at 100% 0%,
            rgba(255, 255, 255, 0.045),
            transparent 35%
        ),

        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.012)
        );

    box-shadow:
        0 18px 50px
        rgba(0, 0, 0, 0.22);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}


.category-card::before {

    content: "";

    position: absolute;

    left: -30%;
    right: -30%;
    top: -80px;

    height: 120px;

    background:

        linear-gradient(
            90deg,
            transparent,
            rgba(255, 106, 0, 0.28),
            rgba(139, 207, 63, 0.20),
            transparent
        );

    filter: blur(25px);

    opacity: 0.35;

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}


.category-card:hover {

    transform:
        translateY(-7px);

    border-color:
        rgba(255, 255, 255, 0.16);

    background:

        radial-gradient(
            circle at 100% 0%,
            rgba(255, 106, 0, 0.13),
            transparent 38%
        ),

        radial-gradient(
            circle at 0% 100%,
            rgba(139, 207, 63, 0.08),
            transparent 35%
        ),

        rgba(255, 255, 255, 0.035);

    box-shadow:

        0 25px 65px
        rgba(0, 0, 0, 0.35),

        0 0 30px
        rgba(255, 106, 0, 0.08);
}


.category-card:hover::before {

    opacity: 0.8;

    transform:
        translateY(60px);
}


.category-green:hover {

    box-shadow:

        0 25px 65px
        rgba(0, 0, 0, 0.35),

        0 0 30px
        rgba(139, 207, 63, 0.10);
}


.card-number {

    color: var(--gray-dark);

    font-size: 0.7rem;

    font-weight: 800;

    letter-spacing: 0.12em;
}


.card-line {

    width: 55px;
    height: 3px;

    margin-top: 16px;

    border-radius: 20px;

    background:

        linear-gradient(
            90deg,
            var(--orange),
            var(--green)
        );

    box-shadow:

        0 0 12px
        rgba(255, 106, 0, 0.25);
}


.category-card h3 {

    margin-top: 35px;

    font-size: 1.7rem;

    letter-spacing: -0.025em;
}


.category-card p {

    max-width: 420px;

    margin-top: 12px;

    color: var(--gray);

    font-size: 0.87rem;

    line-height: 1.7;
}


.category-wide {

    grid-column: span 2;

    min-height: 220px;

    background:

        radial-gradient(
            circle at 80% 20%,
            rgba(139, 207, 63, 0.09),
            transparent 35%
        ),

        radial-gradient(
            circle at 20% 80%,
            rgba(255, 106, 0, 0.08),
            transparent 35%
        ),

        rgba(255, 255, 255, 0.025);
}


/* =========================================================
   DESTAQUE
========================================================= */

.highlight-section {

    position: relative;

    min-height: 540px;

    display: flex;

    align-items: center;

    overflow: hidden;
}


.highlight-background {

    position: absolute;

    inset: 0;

    background:
        url("fachada.png")
        center /
        cover
        no-repeat;

    filter:
        saturate(0.75)
        brightness(0.7);
}


.highlight-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(4, 7, 5, 0.93),
            rgba(5, 8, 6, 0.58),
            rgba(5, 8, 6, 0.78)
        );
}


.highlight-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(80px);

    pointer-events: none;
}


.highlight-glow-orange {

    width: 350px;
    height: 350px;

    left: -120px;
    top: 100px;

    background:
        rgba(255, 106, 0, 0.14);
}


.highlight-glow-green {

    width: 300px;
    height: 300px;

    right: -100px;
    bottom: 50px;

    background:
        rgba(139, 207, 63, 0.11);
}


.highlight-content {

    position: relative;

    z-index: 3;
}


.highlight-content h2 {

    max-width: 850px;
}


.highlight-content p {

    max-width: 550px;

    margin-top: 22px;

    color: var(--gray);

    line-height: 1.7;
}


/* =========================================================
   CONTATO
========================================================= */

.contact-section {

    background:

        radial-gradient(
            circle at 12% 50%,
            rgba(255, 106, 0, 0.12),
            transparent 28%
        ),

        radial-gradient(
            circle at 88% 35%,
            rgba(139, 207, 63, 0.11),
            transparent 28%
        ),

        linear-gradient(
            135deg,
            #0a0f0c,
            #111813,
            #080c0a
        );
}


.contact-background-glow {

    position: absolute;

    width: 500px;
    height: 500px;

    left: 50%;
    top: 55%;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background:

        radial-gradient(
            circle,
            rgba(255, 106, 0, 0.08),
            rgba(139, 207, 63, 0.05),
            transparent 70%
        );

    filter: blur(40px);

    pointer-events: none;
}


.contact-grid {

    display: grid;

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

    gap: 20px;
}


.contact-box {

    position: relative;

    min-height: 270px;

    padding: 34px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    overflow: hidden;

    border-radius: 24px;

    border:
        1px solid
        rgba(255, 255, 255, 0.10);

    background:

        radial-gradient(
            circle at 90% 10%,
            rgba(255, 106, 0, 0.12),
            transparent 35%
        ),

        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.012)
        );

    box-shadow:

        0 25px 60px
        rgba(0, 0, 0, 0.25);

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


.contact-box::after {

    content: "";

    position: absolute;

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

    height: 2px;

    background:

        linear-gradient(
            90deg,
            transparent,
            var(--orange),
            var(--green),
            transparent
        );

    box-shadow:
        0 0 15px
        rgba(255, 106, 0, 0.25);
}


.contact-box:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(255, 106, 0, 0.25);

    box-shadow:

        0 30px 70px
        rgba(0, 0, 0, 0.3),

        0 0 30px
        rgba(255, 106, 0, 0.08);
}


.contact-label {

    color: var(--orange-light);

    font-size: 0.68rem;

    font-weight: 900;

    letter-spacing: 0.18em;
}


.contact-box strong {

    margin-top: 14px;

    font-size:
        clamp(
            1.7rem,
            3vw,
            2.5rem
        );

    letter-spacing: -0.03em;
}


.location-box {

    background:

        radial-gradient(
            circle at 90% 10%,
            rgba(139, 207, 63, 0.13),
            transparent 35%
        ),

        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.012)
        );
}


.location-box strong {

    color: var(--green-light);

    text-shadow:
        0 0 20px
        rgba(139, 207, 63, 0.13);
}


.contact-box p {

    margin-top: 9px;

    color: var(--gray);

    font-size: 0.86rem;
}


.contact-button {

    width: fit-content;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 25px;

    padding:
        12px 17px;

    border-radius: 12px;

    color: #080a08;

    background:

        linear-gradient(
            100deg,
            var(--orange-light),
            var(--orange)
        );

    font-size: 0.76rem;

    font-weight: 900;

    box-shadow:
        0 0 20px
        rgba(255, 106, 0, 0.17);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.contact-button:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 0 25px
        rgba(255, 106, 0, 0.32);
}


.location-button {

    background:

        linear-gradient(
            100deg,
            var(--green-light),
            var(--green)
        );

    box-shadow:
        0 0 20px
        rgba(139, 207, 63, 0.16);
}


.location-button:hover {

    box-shadow:
        0 0 25px
        rgba(139, 207, 63, 0.30);
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    position: relative;

    padding: 35px 0;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.07);

    background:

        radial-gradient(
            circle at 20% 0%,
            rgba(255, 106, 0, 0.06),
            transparent 30%
        ),

        #070a08;
}


.footer-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;
}


.footer-inner > div {

    display: flex;

    flex-direction: column;

    gap: 5px;
}


.footer-inner strong {

    font-size: 0.75rem;

    letter-spacing: 0.08em;
}


.footer-inner span {

    color: var(--gray-dark);

    font-size: 0.58rem;

    letter-spacing: 0.08em;
}


.footer-inner p {

    color: var(--gray-dark);

    font-size: 0.68rem;
}


/* =========================================================
   ANIMAÇÃO REVEAL
========================================================= */

.reveal {

    opacity: 0;

    transform:
        translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}


.reveal.visible {

    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 900px) {

    .navigation {
        display: none;
    }


    .header-inner {
        min-height: 72px;
    }


    .hero {
        min-height: 700px;
    }


    .company-grid {

        grid-template-columns: 1fr;

        gap: 55px;
    }


    .company-image {
        max-width: 700px;
    }


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


    .category-wide {
        grid-column: span 1;
    }


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

}


@media (max-width: 600px) {

    .container {

        width:
            min(
                calc(100% - 28px),
                var(--container)
            );
    }


    .header-inner {

        width:
            min(
                calc(100% - 28px),
                var(--container)
            );
    }


    .brand-logo {

        width: 40px;
        height: 40px;
    }


    .brand-text small {
        display: none;
    }


    .social-links {
        gap: 5px;
    }


    .social-links a {

        min-width: auto;

        height: 30px;

        padding:
            0 8px;

        font-size: 0.62rem;
    }


    .hero {
        min-height: 690px;
    }


    .hero-content {

        width:
            min(
                calc(100% - 28px),
                var(--container)
            );

        margin-top: 105px;
    }


    .hero-logo-container {

        width: 125px;
        height: 125px;
    }


    .hero-logo {
        width: 115px;
    }


    .hero h1 {

        font-size:
            clamp(
                2.6rem,
                14vw,
                4.2rem
            );
    }


    .hero-description {

        font-size: 0.9rem;

        line-height: 1.7;
    }


    .section {
        padding: 90px 0;
    }


    .company-text h2,
    .section-heading h2,
    .highlight-content h2 {

        font-size: 2.5rem;
    }


    .image-frame img {
        min-height: 350px;
    }


    .category-card {

        min-height: 225px;

        padding: 25px;
    }


    .category-card h3 {

        margin-top: 28px;

        font-size: 1.5rem;
    }


    .contact-box {

        min-height: 245px;

        padding: 27px;
    }


    .contact-box strong {
        font-size: 1.65rem;
    }


    .footer-inner {

        flex-direction: column;

        align-items: flex-start;
    }

}


/* =========================================================
   REDUZIR ANIMAÇÕES SE O DISPOSITIVO PEDIR
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        scroll-behavior:
            auto !important;

        transition-duration:
            0.01ms !important;
    }

}