/* ==========================================================
   PALU EVENTOS
   ROBÔ DE LED — PÁGINAS SEO
   ========================================================== */


/* ==========================================================
   BASE
   ========================================================== */

.robot-container {
    width: min(1440px, calc(100% - 80px));
    margin: 0 auto;
}

.robot-section-label,
.robot-eyebrow {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 9px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .36);
}

.robot-section-label {
    margin-bottom: 18px;
}


/* ==========================================================
   HERO
   ========================================================== */

.robot-hero {
    position: relative;
    isolation: isolate;
    min-height: 780px;
    overflow: hidden;

    padding-top: 92px;

    background:
        radial-gradient(
            circle at 13% 30%,
            rgba(35, 136, 255, .10),
            transparent 31%
        ),
        radial-gradient(
            circle at 91% 65%,
            rgba(237, 28, 46, .08),
            transparent 29%
        ),
        linear-gradient(
            120deg,
            #020509 0%,
            #04080d 52%,
            #07050a 100%
        );

    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.robot-hero-grid {
    position: absolute;
    inset: 0;
    z-index: -4;
    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, .018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, .018) 1px,
            transparent 1px
        );

    background-size: 120px 120px;
}

.robot-hero-glow {
    position: absolute;
    z-index: -3;

    width: 500px;
    height: 500px;

    border-radius: 50%;
    filter: blur(150px);

    pointer-events: none;
}

.robot-hero-glow-blue {
    top: -240px;
    left: -260px;

    background: rgba(35, 136, 255, .16);
}

.robot-hero-glow-red {
    right: -280px;
    bottom: -250px;

    background: rgba(237, 28, 46, .10);
}


/* ==========================================================
   HERO GRID
   ========================================================== */

.robot-hero-container {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(420px, .82fr);

    gap: clamp(55px, 7vw, 110px);

    align-items: center;

    min-height: 688px;
}


/* ==========================================================
   HERO CONTENT
   ========================================================== */

.robot-hero-content {
    position: relative;
    z-index: 3;

    padding: 80px 0;
}

.robot-eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;

    margin-bottom: 24px;

    color: rgba(255, 255, 255, .56);
}

.robot-eyebrow::before {
    content: "";

    width: 6px;
    height: 6px;

    flex: 0 0 6px;

    border-radius: 50%;

    background: #2388ff;

    box-shadow:
        0 0 15px rgba(35, 136, 255, .85);
}


/* ==========================================================
   HERO TITLE
   ========================================================== */

.robot-hero h1 {
    max-width: 760px;

    margin: 0;

    font-family: "Montserrat", sans-serif;

    font-size:
        clamp(58px, 5.6vw, 92px);

    font-weight: 800;

    line-height: .87;

    letter-spacing: -.065em;

    text-transform: uppercase;

    color: #fff;
}

.robot-hero h1 span {
    display: block;

    margin: 7px 0;

    font-weight: 300;

    color: rgba(255, 255, 255, .29);
}


/* ==========================================================
   HERO DESCRIPTION
   ========================================================== */

.robot-hero-description {
    max-width: 610px;

    margin: 31px 0 0;

    font-family: "Inter", sans-serif;

    font-size: 14px;

    font-weight: 400;

    line-height: 1.8;

    color: rgba(255, 255, 255, .48);
}


/* ==========================================================
   HERO ACTIONS
   ========================================================== */

.robot-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 29px;

    margin-top: 35px;
}

.robot-primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    min-width: 210px;
    min-height: 52px;

    padding: 0 20px;

    border: 1px solid rgba(255, 255, 255, .16);

    background:
        linear-gradient(
            120deg,
            rgba(35, 136, 255, .11),
            rgba(237, 28, 46, .055)
        );

    color: #fff;

    text-decoration: none;

    font-family: "Inter", sans-serif;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .12em;

    transition:
        transform .25s ease,
        border-color .25s ease,
        background .25s ease;
}

.robot-primary-button:hover {
    transform: translateY(-2px);

    border-color: rgba(35, 136, 255, .46);

    background:
        linear-gradient(
            120deg,
            rgba(35, 136, 255, .17),
            rgba(237, 28, 46, .08)
        );
}

.robot-primary-button span {
    font-size: 17px;

    transition: transform .25s ease;
}

.robot-primary-button:hover span {
    transform: translateX(4px);
}

.robot-text-link {
    position: relative;

    padding-bottom: 7px;

    color: rgba(255, 255, 255, .48);

    text-decoration: none;

    font-family: "Inter", sans-serif;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: .15em;

    transition: color .25s ease;
}

.robot-text-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 38px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            #2388ff,
            #ed1c2e
        );

    transition: width .25s ease;
}

.robot-text-link:hover {
    color: #fff;
}

.robot-text-link:hover::after {
    width: 100%;
}


/* ==========================================================
   HERO VISUAL
   ========================================================== */

.robot-hero-visual {
    position: relative;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    min-height: 650px;

    align-self: end;
}

.robot-visual-word {
    position: absolute;

    z-index: -1;

    top: 46%;
    left: 50%;

    transform: translate(-50%, -50%);

    font-family: "Montserrat", sans-serif;

    font-size: clamp(180px, 18vw, 300px);

    font-weight: 900;

    line-height: 1;

    letter-spacing: -.09em;

    color: rgba(255, 255, 255, .018);

    pointer-events: none;
}

.robot-image-glow {
    position: absolute;

    z-index: -1;

    left: 50%;
    bottom: 10%;

    width: 400px;
    height: 400px;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(35, 136, 255, .17),
            rgba(237, 28, 46, .08) 42%,
            transparent 70%
        );

    filter: blur(25px);
}

.robot-main-image {
    position: relative;

    z-index: 2;

    display: block;

    width: min(100%, 550px);
    max-height: 625px;

    object-fit: contain;
    object-position: center bottom;

    filter:
        drop-shadow(
            0 32px 48px
            rgba(0, 0, 0, .52)
        );
}


/* ==========================================================
   HERO VISUAL INFO
   ========================================================== */

.robot-visual-info {
    position: absolute;

    z-index: 4;

    right: 0;
    bottom: 44px;

    min-width: 170px;

    padding: 15px 18px;

    border-left:
        1px solid rgba(255, 255, 255, .11);

    background:
        rgba(3, 6, 9, .45);

    backdrop-filter: blur(10px);
}

.robot-visual-info::before {
    content: "";

    position: absolute;

    left: -1px;
    top: 0;

    width: 1px;
    height: 32px;

    background:
        linear-gradient(
            #2388ff,
            #ed1c2e
        );
}

.robot-visual-info span {
    display: block;

    margin-bottom: 6px;

    font-family: "Inter", sans-serif;

    font-size: 7px;
    font-weight: 800;

    letter-spacing: .18em;

    color: rgba(255, 255, 255, .30);
}

.robot-visual-info strong {
    display: block;

    font-family: "Montserrat", sans-serif;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .05em;

    color: rgba(255, 255, 255, .82);
}


/* ==========================================================
   EXPERIÊNCIA
   ========================================================== */

.robot-experience {
    position: relative;

    padding: 100px 0;

    overflow: hidden;

    background: #030609;
}

.robot-experience-heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(300px, .58fr);

    gap: clamp(60px, 9vw, 140px);

    align-items: end;

    padding-bottom: 52px;

    border-bottom:
        1px solid rgba(255, 255, 255, .08);
}

.robot-experience h2,
.robot-show-content h2,
.robot-location h2,
.robot-cta h2 {
    max-width: 720px;

    margin: 0;

    font-family: "Montserrat", sans-serif;

    font-size:
        clamp(43px, 4vw, 65px);

    font-weight: 800;

    line-height: .92;

    letter-spacing: -.06em;

    text-transform: uppercase;

    color: #fff;
}

.robot-experience h2 span,
.robot-show-content h2 span,
.robot-location h2 span,
.robot-cta h2 span {
    display: block;

    margin-top: 5px;

    font-weight: 300;

    color: rgba(255, 255, 255, .28);
}

.robot-experience-intro {
    position: relative;

    max-width: 450px;

    padding-left: 27px;

    border-left:
        1px solid rgba(255, 255, 255, .10);
}

.robot-experience-intro::before {
    content: "";

    position: absolute;

    left: -1px;
    top: 0;

    width: 1px;
    height: 60px;

    background:
        linear-gradient(
            #2388ff,
            #ed1c2e
        );
}

.robot-experience-intro p {
    margin: 0;

    font-family: "Inter", sans-serif;

    font-size: 13px;

    line-height: 1.8;

    color: rgba(255, 255, 255, .45);
}


/* ==========================================================
   FEATURES
   ========================================================== */

.robot-features {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    margin-top: 0;

    border-bottom:
        1px solid rgba(255, 255, 255, .08);
}

.robot-feature {
    min-height: 220px;

    padding:
        34px 28px;

    border-right:
        1px solid rgba(255, 255, 255, .08);
}

.robot-feature:first-child {
    border-left:
        1px solid rgba(255, 255, 255, .08);
}

.robot-feature-number {
    display: block;

    margin-bottom: 40px;

    font-family: "Inter", sans-serif;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .14em;

    color: rgba(255, 255, 255, .20);
}

.robot-feature h3 {
    margin:
        0 0
        11px;

    font-family: "Montserrat", sans-serif;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: .05em;

    color: rgba(255, 255, 255, .86);
}

.robot-feature p {
    max-width: 240px;

    margin: 0;

    font-family: "Inter", sans-serif;

    font-size: 11px;

    line-height: 1.65;

    color: rgba(255, 255, 255, .32);
}


/* ==========================================================
   SHOW
   ========================================================== */

.robot-show {
    position: relative;

    padding: 105px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(35, 136, 255, .08),
            transparent 30%
        ),
        linear-gradient(
            120deg,
            #04070b,
            #07060a
        );

    border-block:
        1px solid rgba(255, 255, 255, .06);
}

.robot-show-container {
    display: grid;

    grid-template-columns:
        minmax(360px, .88fr)
        minmax(0, 1.12fr);

    gap: clamp(70px, 10vw, 150px);

    align-items: center;
}


/* ==========================================================
   SHOW IMAGE
   ========================================================== */

.robot-show-image {
    position: relative;

    display: flex;
    justify-content: center;
    align-items: flex-end;

    min-height: 530px;

    overflow: hidden;

    border:
        1px solid rgba(255, 255, 255, .07);

    background:
        radial-gradient(
            circle at 50% 48%,
            rgba(35, 136, 255, .12),
            transparent 40%
        ),
        rgba(255, 255, 255, .015);
}

.robot-show-background {
    position: absolute;

    top: 50%;
    left: 50%;

    transform:
        translate(-50%, -50%);

    font-family: "Montserrat", sans-serif;

    font-size: clamp(100px, 12vw, 190px);

    font-weight: 900;

    letter-spacing: -.08em;

    color: rgba(255, 255, 255, .025);
}

.robot-show-image img {
    position: relative;

    z-index: 2;

    display: block;

    width: 88%;
    height: 500px;

    object-fit: contain;
    object-position: center bottom;

    filter:
        drop-shadow(
            0 28px 40px
            rgba(0, 0, 0, .48)
        );
}


/* ==========================================================
   SHOW CONTENT
   ========================================================== */

.robot-show-content {
    max-width: 650px;
}

.robot-show-content > p {
    max-width: 570px;

    margin:
        28px 0
        38px;

    font-family: "Inter", sans-serif;

    font-size: 13px;

    line-height: 1.8;

    color: rgba(255, 255, 255, .43);
}

.robot-show-list {
    border-top:
        1px solid rgba(255, 255, 255, .08);
}

.robot-show-list > div {
    display: grid;

    grid-template-columns:
        40px 1fr;

    align-items: center;

    min-height: 58px;

    border-bottom:
        1px solid rgba(255, 255, 255, .08);
}

.robot-show-list span {
    font-family: "Inter", sans-serif;

    font-size: 8px;
    font-weight: 700;

    color: rgba(255, 255, 255, .20);
}

.robot-show-list p {
    margin: 0;

    font-family: "Montserrat", sans-serif;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: .02em;

    color: rgba(255, 255, 255, .68);
}


/* ==========================================================
   LOCALIZAÇÃO
   ========================================================== */

.robot-location {
    position: relative;

    padding: 95px 0;

    overflow: hidden;

    background: #030609;
}

.robot-location-word {
    position: absolute;

    top: 50%;
    right: -30px;

    transform:
        translateY(-50%);

    font-family: "Montserrat", sans-serif;

    font-size:
        clamp(90px, 12vw, 190px);

    font-weight: 900;

    line-height: 1;

    letter-spacing: -.07em;

    color: rgba(255, 255, 255, .018);

    pointer-events: none;
}

.robot-location-container {
    position: relative;
    z-index: 2;
}

.robot-location h2 {
    max-width: 850px;
}

.robot-location p {
    max-width: 650px;

    margin:
        27px 0 0;

    font-family: "Inter", sans-serif;

    font-size: 13px;

    line-height: 1.8;

    color: rgba(255, 255, 255, .42);
}


/* ==========================================================
   CTA
   ========================================================== */

.robot-cta {
    position: relative;

    padding: 72px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 88% 25%,
            rgba(237, 28, 46, .08),
            transparent 30%
        ),
        radial-gradient(
            circle at 12% 70%,
            rgba(35, 136, 255, .09),
            transparent 32%
        ),
        #05080c;

    border-top:
        1px solid rgba(255, 255, 255, .07);
}

.robot-cta::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: min(1000px, 65%);
    height: 1px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            #2388ff,
            #ed1c2e,
            transparent
        );
}

.robot-cta-container {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 60px;
}

.robot-cta h2 {
    font-size:
        clamp(40px, 4vw, 62px);
}

.robot-cta-link {
    display: inline-flex;

    align-items: center;
    justify-content: space-between;

    gap: 45px;

    min-width: 225px;
    min-height: 55px;

    padding: 0 20px;

    border:
        1px solid rgba(255, 255, 255, .14);

    color: rgba(255, 255, 255, .82);

    text-decoration: none;

    font-family: "Inter", sans-serif;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .13em;

    transition:
        transform .25s ease,
        border-color .25s ease,
        background .25s ease;
}

.robot-cta-link:hover {
    transform: translateY(-2px);

    border-color:
        rgba(35, 136, 255, .42);

    background:
        rgba(35, 136, 255, .05);
}

.robot-cta-link span {
    font-size: 18px;

    transition: transform .25s ease;
}

.robot-cta-link:hover span {
    transform: translateX(4px);
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1100px) {

    .robot-container {
        width:
            min(100% - 60px, 1200px);
    }

    .robot-hero-container {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(340px, .75fr);

        gap: 35px;
    }

    .robot-main-image {
        max-height: 560px;
    }

    .robot-show-container {
        gap: 55px;
    }

}


/* ==========================================================
   TABLET VERTICAL
   ========================================================== */

@media (max-width: 900px) {

    .robot-hero {
        min-height: auto;
    }

    .robot-hero-container {
        grid-template-columns: 1fr;

        padding-top: 35px;
    }

    .robot-hero-content {
        padding:
            60px 0
            10px;
    }

    .robot-hero-visual {
        min-height: 500px;
    }

    .robot-main-image {
        max-height: 500px;
    }

    .robot-visual-info {
        right: 8%;
    }


    .robot-experience-heading {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .robot-experience-intro {
        max-width: 620px;
    }


    .robot-features {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .robot-feature:nth-child(2) {
        border-right: 0;
    }

    .robot-feature:nth-child(-n+2) {
        border-bottom:
            1px solid rgba(255, 255, 255, .08);
    }


    .robot-show-container {
        grid-template-columns: 1fr;
    }

    .robot-show-image {
        min-height: 480px;
    }

    .robot-show-image img {
        height: 450px;
    }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 680px) {

    .robot-container {
        width:
            calc(100% - 36px);
    }


    /* HERO */

    .robot-hero {
        padding-top: 70px;
    }

    .robot-hero-container {
        min-height: 0;

        padding-top: 28px;
    }

    .robot-hero-content {
        padding:
            55px 0
            15px;
    }

    .robot-eyebrow {
        margin-bottom: 18px;

        font-size: 8px;
    }

    .robot-hero h1 {
        font-size:
            clamp(
                48px,
                14vw,
                67px
            );

        line-height: .89;
    }

    .robot-hero-description {
        margin-top: 25px;

        font-size: 13px;
    }

    .robot-hero-actions {
        align-items: stretch;
        flex-direction: column;

        gap: 21px;
    }

    .robot-primary-button {
        width: 100%;
    }

    .robot-text-link {
        width: fit-content;
    }


    /* IMAGEM */

    .robot-hero-visual {
        min-height: 410px;
    }

    .robot-main-image {
        width: 100%;
        max-height: 405px;
    }

    .robot-visual-word {
        font-size: 145px;
    }

    .robot-visual-info {
        right: 0;
        bottom: 20px;

        min-width: 145px;
    }


    /* EXPERIÊNCIA */

    .robot-experience {
        padding: 72px 0;
    }

    .robot-experience-heading {
        padding-bottom: 37px;
    }

    .robot-experience h2,
    .robot-show-content h2,
    .robot-location h2,
    .robot-cta h2 {
        font-size:
            clamp(
                36px,
                10.5vw,
                49px
            );
    }

    .robot-experience-intro {
        padding-left: 20px;
    }

    .robot-features {
        grid-template-columns: 1fr;
    }

    .robot-feature,
    .robot-feature:first-child {
        min-height: 0;

        padding:
            27px 5px;

        border-left: 0;
        border-right: 0;
        border-bottom:
            1px solid rgba(255, 255, 255, .08);
    }

    .robot-feature-number {
        margin-bottom: 18px;
    }


    /* SHOW */

    .robot-show {
        padding: 72px 0;
    }

    .robot-show-image {
        min-height: 390px;
    }

    .robot-show-image img {
        width: 100%;
        height: 370px;
    }

    .robot-show-content > p {
        margin-top: 23px;
    }


    /* LOCAL */

    .robot-location {
        padding: 72px 0;
    }

    .robot-location-word {
        right: -20px;

        font-size: 70px;
    }


    /* CTA */

    .robot-cta {
        padding: 60px 0;
    }

    .robot-cta-container {
        align-items: stretch;
        flex-direction: column;

        gap: 35px;
    }

    .robot-cta-link {
        width: 100%;
    }

}


/* ==========================================================
   MOBILE PEQUENO
   ========================================================== */

@media (max-width: 420px) {

    .robot-container {
        width:
            calc(100% - 30px);
    }

    .robot-hero h1 {
        font-size:
            clamp(
                43px,
                13.8vw,
                58px
            );
    }

    .robot-hero-visual {
        min-height: 360px;
    }

    .robot-main-image {
        max-height: 360px;
    }

    .robot-show-image {
        min-height: 350px;
    }

    .robot-show-image img {
        height: 335px;
    }

}