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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        "Segoe UI",
        Roboto,
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;

    background: #080a0e;
    color: #fff;

    line-height: 1.6;

    overflow-x: hidden;
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}


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

:root {

    --orange: #ff6600;
    --orange-light: #ff8533;
    --orange-dark: #d94f00;

    --orange-glow:
        rgba(255, 102, 0, 0.35);

    --green:
        #25d366;

    --background:
        #080a0e;

    --background-2:
        #0d1016;

    --background-3:
        #121720;

    --card:
        rgba(255, 255, 255, 0.045);

    --card-hover:
        rgba(255, 255, 255, 0.075);

    --border:
        rgba(255, 255, 255, 0.09);

    --text:
        #ffffff;

    --text-muted:
        #9ca3af;

    --max-width:
        1200px;
}


/* =========================================================
   BODY BACKGROUND
========================================================= */

body::before {

    content: "";

    position: fixed;

    inset: 0;

    pointer-events: none;


    z-index: -2;
}


/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #080a0e;
}

::-webkit-scrollbar-thumb {
    background: #343943;
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--orange);
}


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

.header {

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

    height: 78px;

    position: sticky;

    top: 18px;

    z-index: 1000;

    margin: 18px auto 0;

    padding: 0 18px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    background:
        rgba(10, 12, 17, 0.78);

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

    border-radius: 20px;

    backdrop-filter: blur(18px);

    box-shadow:
        0 15px 50px
        rgba(0, 0, 0, 0.35);

    animation:
        headerAppear 0.8s ease forwards;

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


/* HEADER SCROLL */

.header-scrolled {

    background:
        rgba(8, 10, 14, 0.95);

    border-color:
        rgba(255, 102, 0, 0.15);

    box-shadow:
        0 15px 50px
        rgba(0, 0, 0, 0.5);
}


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

.logo {

    width: 52px;
    height: 52px;

    flex-shrink: 0;

    border-radius: 50%;

    padding: 5px;

    display: flex;

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

    overflow: hidden;

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

.logo:hover {

    transform:
        scale(1.08)
        rotate(3deg);

    box-shadow:
        0 0 30px
        rgba(255, 102, 0, 0.45);
}

.logo img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;
}


/* =========================================================
   NAV
========================================================= */

.nav {

    display: flex;

    align-items: center;

    gap: 8px;
}

.nav a {

    position: relative;

    padding:
        10px 15px;

    color:
        #b7bdc9;

    font-size:
        0.9rem;

    font-weight:
        600;

    border-radius:
        10px;

    transition:
        color 0.3s ease,
        background 0.3s ease;
}

.nav a::after {

    content: "";

    position: absolute;

    left: 50%;
    bottom: 4px;

    width: 0;

    height: 2px;

    background:
        var(--orange);

    transform:
        translateX(-50%);

    transition:
        width 0.3s ease;
}

.nav a:hover {

    color: white;

    background:
        rgba(255, 255, 255, 0.05);
}

.nav a:hover::after {

    width: 20px;
}

.nav a.active {

    color: white;

    background:
        rgba(255, 102, 0, 0.08);
}

.nav a.active::after {

    width: 20px;
}


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

.header-button {

    padding:
        11px 18px;

    border-radius:
        12px;

    background:
        var(--orange);

    font-size:
        0.85rem;

    font-weight:
        700;

    box-shadow:
        0 7px 25px
        rgba(255, 102, 0, 0.25);

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

.header-button:hover {

    transform:
        translateY(-3px);

    background:
        var(--orange-light);

    box-shadow:
        0 12px 30px
        rgba(255, 102, 0, 0.45);
}


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

.hero {

    position: relative;

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

    min-height:
        720px;

    margin:
        0 auto;

    display:
        grid;

    grid-template-columns:
        1.05fr 0.95fr;

    align-items:
        center;

    gap:
        50px;

    padding:
        80px 20px;

    overflow:
        hidden;
}


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

.hero-background {

    position: absolute;

    width: 600px;
    height: 600px;

    right: -200px;
    top: 50%;

    transform:
        translateY(-50%);

    border-radius:
        50%;

    filter:
        blur(15px);

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


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

.hero-content {

    position: relative;

    z-index: 2;

    animation:
        heroText 0.9s ease forwards;
}


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

.hero-badge {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        9px;

    padding:
        8px 13px;

    margin-bottom:
        24px;

    border:
        1px solid
        rgba(255, 102, 0, 0.25);

    border-radius:
        100px;

    background:
        rgba(255, 102, 0, 0.07);

    color:
        #ff9b5c;

    font-size:
        0.78rem;

    font-weight:
        700;

    letter-spacing:
        0.3px;
}

.status-dot {

    width:
        7px;

    height:
        7px;

    border-radius:
        50%;

    background:
        var(--orange);

    box-shadow:
        0 0 12px
        var(--orange);

    animation:
        blink 1.8s infinite;
}


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

.hero h1 {

    max-width:
        700px;

    font-size:
        clamp(
            3rem,
            6vw,
            5.2rem
        );

    line-height:
        0.98;

    letter-spacing:
        -3px;

    font-weight:
        850;

    margin-bottom:
        28px;
}

.hero h1 span {

    display:
        block;

    background:
        linear-gradient(
            90deg,
            #ff6600,
            #ff9a5c
        );

    -webkit-background-clip:
        text;

    background-clip:
        text;

    color:
        transparent;
}


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

.hero-description {

    max-width:
        590px;

    color:
        var(--text-muted);

    font-size:
        1.05rem;

    line-height:
        1.8;

    margin-bottom:
        32px;
}


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

.hero-buttons {

    display:
        flex;

    align-items:
        center;

    gap:
        14px;

    margin-bottom:
        45px;
}

.primary-button,
.secondary-button {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        12px;

    min-height:
        52px;

    padding:
        0 22px;

    border-radius:
        14px;

    font-weight:
        700;

    font-size:
        0.9rem;

    transition:
        all 0.35s ease;
}

.primary-button {

    background:
        var(--orange);

    box-shadow:
        0 10px 30px
        rgba(255, 102, 0, 0.25);
}

.primary-button:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 15px 40px
        rgba(255, 102, 0, 0.45);

    background:
        var(--orange-light);
}

.primary-button span {

    font-size:
        1.2rem;

    transition:
        transform 0.3s ease;
}

.primary-button:hover span {

    transform:
        translateX(5px);
}

.secondary-button {

    border:
        1px solid
        var(--border);

    background:
        rgba(255,255,255,0.035);

    color:
        #d8dce4;
}

.secondary-button:hover {

    transform:
        translateY(-4px);

    border-color:
        rgba(255,102,0,0.35);

    background:
        rgba(255,102,0,0.07);
}


/* =========================================================
   STATS
========================================================= */

.hero-stats {

    display:
        flex;

    align-items:
        center;

    gap:
        35px;
}

.stat {

    display:
        flex;

    flex-direction:
        column;
}

.stat strong {

    font-size:
        1.3rem;

    color:
        white;
}

.stat span {

    color:
        #707784;

    font-size:
        0.72rem;

    text-transform:
        uppercase;

    letter-spacing:
        1px;
}


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

.hero-visual {

    position:
        relative;

    min-height:
        500px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    animation:
        heroVisual 1s ease forwards;
}


/* =========================================================
   VISUAL GLOW
========================================================= */

.visual-glow {

    position:
        absolute;

    width:
        400px;

    height:
        400px;

    border-radius:
        50%;

    background:
        rgba(255,102,0,0.12);

    filter:
        blur(80px);

    pointer-events:
        none;
}


/* =========================================================
   LOGO CARD
========================================================= */

.logo-card {

    position:
        relative;

    width:
        420px;

    height:
        420px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

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

    border-radius:
        35px;

    backdrop-filter:
        blur(20px);

    animation:
        floating 5s ease-in-out infinite;
}

.logo-card::before {

    content: "";

    position: absolute;

    inset: 15px;

    border:
        1px solid
        rgba(255,102,0,0.15);

    border-radius:
        25px;

    pointer-events:
        none;
}


/* =========================================================
   LOGO CENTRAL
========================================================= */

.logo-circle {

    width:
        235px;

    height:
        235px;

    border-radius:
        50%;

    padding:
        16px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    background:
        #050608;

    box-shadow:
        0 0 70px
        rgba(255,102,0,0.25),

        inset 0 0 30px
        rgba(255,102,0,0.1);

    transition:
        transform 0.5s ease;
}

.logo-card:hover .logo-circle {

    transform:
        scale(1.07)
        rotate(2deg);

    box-shadow:
        0 0 90px
        rgba(255,102,0,0.4);
}

.logo-circle img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    border-radius:
        50%;
}


/* =========================================================
   ENERGY LINES
========================================================= */

.energy-line {

    position:
        absolute;

    border:
        1px solid
        rgba(255,102,0,0.18);

    border-radius:
        50%;

    pointer-events:
        none;
}

.line-one {

    width:
        320px;

    height:
        320px;

    animation:
        rotate 15s linear infinite;
}

.line-two {

    width:
        370px;

    height:
        250px;

    transform:
        rotate(45deg);

    animation:
        rotateReverse 18s linear infinite;
}


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

.floating-card {

    position:
        absolute;

    display:
        flex;

    align-items:
        center;

    gap:
        10px;

    padding:
        12px 16px;

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

    border-radius:
        15px;

    background:
        rgba(12,14,19,0.85);

    backdrop-filter:
        blur(15px);

    box-shadow:
        0 15px 35px
        rgba(0,0,0,0.35);

    animation:
        cardFloat 4s ease-in-out infinite;
}

.floating-card span {

    width:
        34px;

    height:
        34px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        10px;

    background:
        rgba(255,102,0,0.12);

    color:
        var(--orange);
}

.floating-card div {

    display:
        flex;

    flex-direction:
        column;
}

.floating-card strong {

    font-size:
        0.75rem;
}

.floating-card small {

    color:
        #737985;

    font-size:
        0.65rem;
}

.card-top {

    top:
        55px;

    right:
        -25px;
}

.card-bottom {

    bottom:
        55px;

    left:
        -25px;

    animation-delay:
        -2s;
}


/* =========================================================
   SECTIONS
========================================================= */

.section {

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

    margin:
        0 auto;

    padding:
        120px 20px;
}


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

.section-header {

    max-width:
        700px;

    margin:
        0 auto 60px;

    text-align:
        center;
}

.section-label {

    display:
        inline-block;

    margin-bottom:
        15px;

    color:
        var(--orange);

    font-size:
        0.75rem;

    font-weight:
        800;

    letter-spacing:
        2px;

    text-transform:
        uppercase;
}

.section-header h2,
.about-content h2,
.contact h2 {

    font-size:
        clamp(
            2rem,
            4vw,
            3.5rem
        );

    line-height:
        1.05;

    letter-spacing:
        -1.5px;

    margin-bottom:
        20px;
}

.section-header h2 span,
.about-content h2 span,
.contact h2 span {

    color:
        var(--orange);
}

.section-header p {

    color:
        var(--text-muted);

    max-width:
        600px;

    margin:
        0 auto;

    line-height:
        1.8;
}


/* =========================================================
   SERVICE GRID
========================================================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 320px));
    justify-content: center;
    gap: 24px;
}

/* =========================================================
   SERVICE CARD
========================================================= */

.service-card {

    position:
        relative;

    min-height:
        350px;

    padding:
        30px;

    display:
        flex;

    flex-direction:
        column;

    overflow:
        hidden;

    border:
        1px solid
        var(--border);

    border-radius:
        24px;

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

.service-card::before {

    content: "";

    position:
        absolute;

    width:
        150px;

    height:
        150px;

    right:
        -70px;

    top:
        -70px;

    border-radius:
        50%;

    background:
        rgba(255,102,0,0.12);

    filter:
        blur(20px);

    transition:
        transform 0.5s ease;
}

.service-card:hover {

    transform:
        translateY(-10px);

    border-color:
        rgba(255,102,0,0.35);

    box-shadow:
        0 25px 60px
        rgba(0,0,0,0.35),

        0 0 35px
        rgba(255,102,0,0.08);
}

.service-card:hover::before {

    transform:
        scale(2);
}


/* =========================================================
   SERVICE NUMBER
========================================================= */

.service-number {

    position:
        absolute;

    right:
        25px;

    top:
        25px;

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

    font-size:
        2.5rem;

    font-weight:
        900;
}


/* =========================================================
   SERVICE ICON
========================================================= */

.service-icon {
    /* seus estilos atuais */
}

.service-icon svg {
    width: 32px;
    height: 32px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}



/* =========================================================
   SERVICE TEXT
========================================================= */

.service-card h3 {

    font-size:
        1.15rem;

    margin-bottom:
        14px;
}

.service-card p {

    color:
        var(--text-muted);

    font-size:
        0.88rem;

    line-height:
        1.7;

    margin-bottom:
        auto;
}

.service-link {

    margin-top:
        25px;

    color:
        var(--orange);

    font-size:
        0.8rem;

    font-weight:
        700;

    transition:
        transform 0.3s ease;
}

.service-link:hover {

    transform:
        translateX(5px);
}


/* =========================================================
   ABOUT
========================================================= */

.about {

    display:
        grid;

    grid-template-columns:
        0.9fr 1.1fr;

    align-items:
        center;

    gap:
        90px;
}


/* =========================================================
   ABOUT VISUAL
========================================================= */

.about-image {

    position:
        relative;

    min-height:
        430px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;
}

.about-image-glow {

    position:
        absolute;

    width:
        300px;

    height:
        300px;

    border-radius:
        50%;

    background:
        rgba(255,102,0,0.15);

    filter:
        blur(80px);
}

.about-card {

    position:
        relative;

    width:
        330px;

    height:
        330px;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;

    border:
        1px solid
        rgba(255,102,0,0.25);

    border-radius:
        35px;


    box-shadow:
        0 30px 70px
        rgba(0,0,0,0.4);

    animation:
        floating 6s ease-in-out infinite;
}

.about-card::before {

    content: "";

    position:
        absolute;

    inset:
        15px;

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

    border-radius:
        25px;
}

.about-icon {

    width:
        90px;

    height:
        90px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    margin-bottom:
        20px;

    border-radius:
        50%;

    background:
        rgba(255,102,0,0.1);

    color:
        var(--orange);

    font-size:
        2rem;

    box-shadow:
        0 0 40px
        rgba(255,102,0,0.15);
}

.about-card strong {

    font-size:
        2rem;

    margin-bottom:
        5px;
}

.about-card small {

    color:
        #777e8b;

    font-size:
        0.7rem;
}


/* =========================================================
   ABOUT CONTENT
========================================================= */

.about-content > p {

    color:
        var(--text-muted);

    max-width:
        600px;

    margin-bottom:
        18px;

    line-height:
        1.8;
}


/* =========================================================
   BENEFITS
========================================================= */

.benefits {

    display:
        grid;

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

    gap:
        14px;

    margin-top:
        35px;
}

.benefit {

    display:
        flex;

    gap:
        12px;

    padding:
        16px;

    border:
        1px solid
        var(--border);

    border-radius:
        14px;

    background:
        rgba(255,255,255,0.025);

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

.benefit:hover {

    transform:
        translateY(-4px);

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

.benefit > span {

    width:
        27px;

    height:
        27px;

    flex-shrink:
        0;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        50%;

    background:
        rgba(255,102,0,0.12);

    color:
        var(--orange);

    font-size:
        0.7rem;

    font-weight:
        900;
}

.benefit div {

    display:
        flex;

    flex-direction:
        column;
}

.benefit strong {

    font-size:
        0.82rem;

    margin-bottom:
        3px;
}

.benefit small {

    color:
        #707784;

    font-size:
        0.68rem;

    line-height:
        1.5;
}


/* =========================================================
   PROCESS
========================================================= */

.process {

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

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

.process-grid {

    display:
        grid;

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

    gap:
        20px;
}

.process-item {

    position:
        relative;

    padding:
        35px;

    border:
        1px solid
        var(--border);

    border-radius:
        22px;

    background:
        rgba(255,255,255,0.025);

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

.process-item:hover {

    transform:
        translateY(-7px);

    border-color:
        rgba(255,102,0,0.3);
}

.process-item > span {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    width:
        48px;

    height:
        48px;

    margin-bottom:
        25px;

    border-radius:
        14px;

    background:
        var(--orange);

    font-weight:
        900;

    box-shadow:
        0 10px 25px
        rgba(255,102,0,0.25);
}

.process-item h3 {

    margin-bottom:
        10px;

    font-size:
        1.1rem;
}

.process-item p {

    color:
        var(--text-muted);

    font-size:
        0.85rem;
}


/* =========================================================
   CONTACT
========================================================= */

.contact {

    position:
        relative;

    min-height:
        550px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    text-align:
        center;

    overflow:
        hidden;

    border-radius:
        35px;

    margin-bottom:
        80px;
}

.contact-glow {

    position:
        absolute;

    width:
        500px;

    height:
        500px;

    border-radius:
        50%;

    filter:
        blur(100px);
}

.contact-content {

    position:
        relative;

    z-index:
        2;

    max-width:
        650px;
}

.contact p {

    color:
        var(--text-muted);

    margin:
        0 auto 35px;

    max-width:
        500px;
}


/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp-button {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        12px;

    min-height:
        58px;

    padding:
        0 25px;

    border-radius:
        15px;

    background:
        var(--green);

    color:
        white;

    font-weight:
        800;

    box-shadow:
        0 15px 40px
        rgba(37,211,102,0.2);

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

.whatsapp-button:hover {

    transform:
        translateY(-5px);

    box-shadow:
        0 20px 50px
        rgba(37,211,102,0.35);
}

.whatsapp-icon {

    width:
        30px;

    height:
        30px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        50%;

    background:
        rgba(255,255,255,0.15);
}


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

footer {

    background:
        #050608;

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

    padding:
        55px 20px 25px;
}

.footer-content {

    width:
        min(
            100%,
            var(--max-width)
        );

    margin:
        0 auto 40px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        30px;
}

.footer-brand {

    display:
        flex;

    align-items:
        center;

    gap:
        15px;
}

.footer-logo {

    width:
        50px;

    height:
        50px;

    padding:
        5px;

    border-radius:
        50%;

    border:
        1px solid
        rgba(255,102,0,0.25);
}

.footer-logo img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    border-radius:
        50%;
}

.footer-brand p {

    max-width:
        280px;

    color:
        #686f7b;

    font-size:
        0.75rem;
}

.footer-links {

    display:
        flex;

    gap:
        25px;
}

.footer-links a {

    color:
        #858c98;

    font-size:
        0.8rem;

    transition:
        color 0.3s ease;
}

.footer-links a:hover {

    color:
        var(--orange);
}

.footer-bottom {

    width:
        min(
            100%,
            var(--max-width)
        );

    margin:
        0 auto;

    padding-top:
        20px;

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

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;
}

.footer-bottom p {

    color:
        #505661;

    font-size:
        0.7rem;
}

.footer-bottom strong {

    color:
        var(--orange);
}


/* =========================================================
   ANIMAÇÕES
========================================================= */

@keyframes headerAppear {

    from {
        opacity: 0;
        transform:
            translateY(-20px);
    }

    to {
        opacity: 1;
        transform:
            translateY(0);
    }
}


@keyframes heroText {

    from {
        opacity: 0;
        transform:
            translateX(-30px);
    }

    to {
        opacity: 1;
        transform:
            translateX(0);
    }
}


@keyframes heroVisual {

    from {
        opacity: 0;
        transform:
            translateX(30px)
            scale(0.95);
    }

    to {
        opacity: 1;
        transform:
            translateX(0)
            scale(1);
    }
}


@keyframes floating {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-12px);
    }
}


@keyframes cardFloat {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-8px);
    }
}


@keyframes ambientGlow {

    from {
        opacity: 0.5;
        transform:
            translateY(-50%)
            scale(0.9);
    }

    to {
        opacity: 1;
        transform:
            translateY(-50%)
            scale(1.1);
    }
}


@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}


@keyframes rotate {

    from {
        transform:
            rotate(0deg);
    }

    to {
        transform:
            rotate(360deg);
    }
}


@keyframes rotateReverse {

    from {
        transform:
            rotate(360deg);
    }

    to {
        transform:
            rotate(0deg);
    }
}


/* =========================================================
   ANIMAÇÕES CONTROLADAS PELO JAVASCRIPT
========================================================= */

.js-hidden {

    opacity: 0;

    transform:
        translateY(30px);

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

.js-show {

    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   RESPONSIVIDADE — TABLET
========================================================= */

@media (max-width: 1000px) {

    .header {
        width:
            calc(100% - 30px);
    }

    .header-button {
        display:
            none;
    }

    .hero {

        grid-template-columns:
            1fr;

        text-align:
            center;

        padding-top:
            70px;
    }

    .hero-content {

        display:
            flex;

        flex-direction:
            column;

        align-items:
            center;
    }

    .hero-description {
        margin-left:
            auto;

        margin-right:
            auto;
    }

    .hero-stats {
        justify-content:
            center;
    }

    .hero-visual {
        min-height:
            450px;
    }

    .services-grid {

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

    .about {

        grid-template-columns:
            1fr;

        text-align:
            center;
    }

    .about-content {

        display:
            flex;

        flex-direction:
            column;

        align-items:
            center;
    }

    .about-content > p {
        max-width:
            700px;
    }
}


/* =========================================================
   RESPONSIVIDADE — MOBILE
========================================================= */

@media (max-width: 700px) {

    .header {

        height:
            auto;

        min-height:
            70px;

        padding:
            9px 12px;

        border-radius:
            17px;
    }

    .nav {

        gap:
            2px;
    }

    .nav a {

        padding:
            8px 7px;

        font-size:
            0.72rem;
    }

    .nav a:first-child {
        display:
            none;
    }

    .logo {

        width:
            45px;

        height:
            45px;
    }

    .hero {

        width:
            calc(100% - 20px);

        padding:
            70px 10px;

        min-height:
            auto;
    }

    .hero h1 {

        font-size:
            3rem;

        letter-spacing:
            -2px;
    }

    .hero-description {

        font-size:
            0.9rem;
    }

    .hero-buttons {

        width:
            100%;

        flex-direction:
            column;
    }

    .primary-button,
    .secondary-button {

        width:
            100%;
    }

    .hero-stats {

        gap:
            20px;
    }

    .stat strong {
        font-size:
            1rem;
    }

    .stat span {
        font-size:
            0.58rem;
    }

    .hero-visual {

        min-height:
            360px;
    }

    .logo-card {

        width:
            300px;

        height:
            300px;

        border-radius:
            25px;
    }

    .logo-circle {

        width:
            165px;

        height:
            165px;
    }

    .line-one {

        width:
            230px;

        height:
            230px;
    }

    .line-two {

        width:
            260px;

        height:
            180px;
    }

    .floating-card {

        padding:
            8px 10px;
    }

    .card-top {

        right:
            -5px;

        top:
            25px;
    }

    .card-bottom {

        left:
            -5px;

        bottom:
            25px;
    }

    .section {

        width:
            calc(100% - 20px);

        padding:
            80px 10px;
    }

    .section-header h2,
    .about-content h2,
    .contact h2 {

        font-size:
            2.3rem;
    }

    .services-grid {

        grid-template-columns:
            1fr;
    }

    .service-card {

        min-height:
            320px;
    }

    .about-image {

        min-height:
            350px;
    }

    .about-card {

        width:
            280px;

        height:
            280px;
    }

    .benefits {

        grid-template-columns:
            1fr;

        width:
            100%;
    }

    .process-grid {

        grid-template-columns:
            1fr;
    }

    .contact {

        border-radius:
            25px;

        margin-bottom:
            40px;

        min-height:
            480px;
    }

    .footer-content {

        flex-direction:
            column;

        align-items:
            flex-start;
    }

    .footer-links {

        flex-wrap:
            wrap;

        gap:
            15px;
    }

    .footer-bottom {

        flex-direction:
            column;

        align-items:
            flex-start;
    }
}


/* =========================================================
   REDUÇÃO DE MOVIMENTO
========================================================= */

@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;
    }
}