/* ==================================================
   HERO — BASE (DESKTOP LARGO) - v0.5
================================================== */

/* Wrapper */
.first-fold-bg {
    width: 100%;
    position: relative;
}

/* Section */
.hero-section {
    position: relative;
    min-height: 820px;
    padding-top: 120px;
    overflow: visible;
}

.hero-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    position: relative;
    z-index: 2;
}

/* Conteúdo */
.hero-content {
    width: 56%;
    max-width: 720px;
}

.hero-title {
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 800;
    line-height: 1.05;
}

.hero-title .inteligente {
    display: inline-block;
    font-family: "Meow Script", cursive;
    font-size: clamp(40px, 9vw, 120px);
    color: #ffc300;
    font-weight: 200;
    letter-spacing: -0.03em;
}

.hero-sub {
    margin-top: 22px;
    font-size: 22px;
    font-weight: 700;
}

.hero-text {
    margin-top: 18px;
    font-size: 20px;
    line-height: 1.55;
    color: #dbe6f4;
    max-width: 560px;
}

/* CTA */
.hero-button {
    display: inline-block;
    margin-top: 28px;
    padding: 16px 38px;
    border-radius: 40px;
    font-size: 20px;
    font-weight: 700;
    background: #ffc300;
    color: #0a1124;
}

.hero-button:hover {
    filter: brightness(1.1);
}

/* Robô */
.hero-robot-wrap {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 20;
    pointer-events: none;
}

.hero-robot {
    position: absolute;
    bottom: -162px;
    right: 0;
    height: 860px;
    z-index: 20;
    pointer-events: none;
}

/* ==================================================
   DESKTOP MÉDIO — ≤1300px
================================================== */
@media (max-width: 1300px) {

    .hero-robot {
        bottom: -180px;
        right: -10px;
        height: 830px;
        z-index: 0;
    }
}

/* ==================================================
   LAPTOP / DESKTOP COMPACTO — ≤1100px
================================================== */
@media (max-width: 1100px) {

    .hero-robot {
        bottom: -200px;
        right: -30px;
        height: 750px;
        z-index: 0;
    }
}

/* ==================================================
   SMALL TABLET — ≤950px
================================================== */
@media (max-width: 950px) {

    .hero-section {
        padding-top: 70px;
        overflow: hidden;
    }

    /* robô vira atmosférico */
    .hero-robot {
        height: 480px;
        bottom: -60px;
        right: -65%;
        z-index: 0;
    }

    .hero-inner {
        flex-direction: column;
        gap: 18px;
    }

    .hero-content {
        width: 100%;
    }

    .hero-title {
        font-size: 35px;
    }

    .hero-title .inteligente {
        font-size: 68px;
        margin-left: 6px;
    }

    .hero-sub {
        font-size: 16px;
    }

    .hero-text {
        font-size: 15px;
    }

    .hero-button {
        font-size: 15px;
        padding: 10px 20px;
    }
}

/* ==================================================
   MOBILE — ≤750px
================================================== */
@media (max-width: 750px) {

    .hero-robot-wrap {
        display: none;
    }
}

/* ==================================================
   MOBILE MINI — ≤430px
================================================== */
@media (max-width: 430px) {

    .hero-title {
        font-size: 30px;
    }

    .hero-title .inteligente {
        font-size: 56px;
    }

    .hero-sub {
        font-size: 14px;
    }

    .hero-text {
        font-size: 13px;
    }
}
