/* ==========================================================
   PALU EVENTOS
   HOME.CSS
   Home Premium — estilos base / desktop

   Responsividade exclusiva da Home:
   /css/home-responsive.css

   Este arquivo não contém media queries globais.
   ========================================================== */

/* ==========================================================

   HERO

   ========================================================== */

.hero {

    position: relative;

    width: 100%;

    min-height: 100svh;

    overflow: hidden;

    background: var(--color-black);

    isolation: isolate;

}

/* ==========================================================

   HERO — IMAGEM

   ========================================================== */

.hero-media {

    position: absolute;

    inset: 0;

    z-index: 0;

    overflow: hidden;

}

.hero-image {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    max-width: none;

    object-fit: cover;

    object-position: center;

    transform: scale(1.015);

    animation:

        heroImageEnter 1.6s

        cubic-bezier(.16, 1, .3, 1)

        both;

}

.hero-media::before {

    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    background:

        linear-gradient(

            90deg,

            rgba(3, 6, 9, 0.98) 0%,

            rgba(3, 6, 9, 0.93) 23%,

            rgba(3, 6, 9, 0.70) 43%,

            rgba(3, 6, 9, 0.26) 67%,

            rgba(3, 6, 9, 0.08) 100%

        );

    pointer-events: none;

}

.hero-media::after {

    content: "";

    position: absolute;

    inset: 0;

    z-index: 2;

    background:

        linear-gradient(

            180deg,

            rgba(3, 6, 9, 0.12) 0%,

            rgba(3, 6, 9, 0.03) 45%,

            rgba(3, 6, 9, 0.90) 100%

        );

    pointer-events: none;

}

.hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 3;

    pointer-events: none;

    background:

        radial-gradient(

            circle at 74% 43%,

            rgba(35, 136, 255, 0.08),

            transparent 31%

        ),

        radial-gradient(

            circle at 87% 67%,

            rgba(237, 28, 46, 0.06),

            transparent 27%

        );

}

/* ==========================================================

   HERO — CONTAINER

   ========================================================== */

.hero-container {

    position: relative;

    z-index: 5;

    width:

        min(

            calc(100% - (var(--page-padding) * 2)),

            var(--container-wide)

        );

    min-height: 100svh;

    margin-inline: auto;

    padding-top:

        calc(var(--header-height) + 78px);

    padding-bottom: 170px;

    display: grid;

    grid-template-columns:

        minmax(0, 760px)

        1fr;

    gap: 70px;

    align-items: center;

}

/* ==========================================================

   HERO — CONTEÚDO

   ========================================================== */

.hero-content {

    width: 100%;

    max-width: 760px;

}

.hero-content .section-eyebrow {

    animation:

        heroTextEnter 900ms

        120ms

        cubic-bezier(.16, 1, .3, 1)

        both;

}

.hero-title {

    margin: 0;

    max-width: 760px;

    font-family: var(--font-display);

    font-size:

        clamp(3.8rem, 5.8vw, 6.5rem);

    font-weight:

        var(--font-extrabold);

    line-height: 0.88;

    letter-spacing: -0.065em;

    text-transform: uppercase;

}

.hero-title strong {

    display: block;

    color:

        var(--color-white);

    font-weight:

        var(--font-extrabold);

    animation:

        heroTextEnter 1s

        200ms

        cubic-bezier(.16, 1, .3, 1)

        both;

}

.hero-title > span {

    display: block;

    max-width: 690px;

    margin-top: 16px;

    color:

        rgba(255, 255, 255, 0.43);

    font-size: 0.76em;

    font-weight:

        var(--font-light);

    line-height: 0.94;

    letter-spacing: -0.055em;

    animation:

        heroTextEnter 1s

        300ms

        cubic-bezier(.16, 1, .3, 1)

        both;

}

.hero-description {

    width: 100%;

    max-width: 520px;

    margin:

        28px 0 0;

    color:

        rgba(255, 255, 255, 0.70);

    font-size: 0.92rem;

    line-height: 1.7;

    animation:

        heroTextEnter 1s

        400ms

        cubic-bezier(.16, 1, .3, 1)

        both;

}

.hero-actions {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 28px;

    animation:

        heroTextEnter 1s

        500ms

        cubic-bezier(.16, 1, .3, 1)

        both;

}

/* ==========================================================

   HERO — TEXTO LATERAL

   ========================================================== */

.hero-side {

    align-self: center;

    justify-self: end;

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    gap: 8px;

    color:

        rgba(255, 255, 255, 0.34);

    font-size: 0.58rem;

    font-weight:

        var(--font-semibold);

    letter-spacing: 0.19em;

    line-height: 1.5;

    text-align: right;

    text-transform: uppercase;

    writing-mode: vertical-rl;

    transform:

        rotate(180deg);

    animation:

        heroTextEnter 1s

        650ms

        cubic-bezier(.16, 1, .3, 1)

        both;

}

/* ==========================================================

   HERO — FEATURES

   ========================================================== */

.hero-features {

    position: absolute;

    z-index: 6;

    left: 50%;

    bottom: 0;

    width:

        min(

            calc(100% - (var(--page-padding) * 2)),

            var(--container-wide)

        );

    transform:

        translateX(-50%);

    display: grid;

    grid-template-columns:

        repeat(4, 1fr);

    border-top:

        1px solid rgba(255, 255, 255, 0.10);

    background:

        rgba(3, 6, 9, 0.52);

    backdrop-filter:

        blur(16px);

    -webkit-backdrop-filter:

        blur(16px);

}

.hero-feature {

    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    padding:

        18px 22px;

    border-right:

        1px solid rgba(255, 255, 255, 0.08);

    color:

        rgba(255, 255, 255, 0.63);

    font-size: 0.59rem;

    font-weight:

        var(--font-semibold);

    letter-spacing: 0.09em;

    line-height: 1.45;

    text-transform: uppercase;

    transition:

        color var(--transition),

        background var(--transition);

}

.hero-feature:last-child {

    border-right: 0;

}

.hero-feature:hover {

    color:

        var(--color-white);

    background:

        rgba(255, 255, 255, 0.025);

}

.feature-icon {

    width: 34px;

    height: 34px;

    flex: 0 0 auto;

    display: grid;

    place-items: center;

    border:

        1px solid rgba(255, 255, 255, 0.16);

    border-radius: 50%;

    color:

        var(--palu-blue-light);

    font-size: 0.85rem;

}

/* ==========================================================

   HERO — SCROLL

   ========================================================== */

.scroll-indicator {

    position: absolute;

    z-index: 7;

    right:

        var(--page-padding);

    bottom: 108px;

    display: flex;

    align-items: center;

    gap: 10px;

    color:

        rgba(255, 255, 255, 0.35);

    font-size: 0.52rem;

    font-weight:

        var(--font-semibold);

    letter-spacing: 0.18em;

    text-transform: uppercase;

    transform:

        rotate(90deg);

    transform-origin:

        right bottom;

}

.scroll-indicator span:last-child {

    color:

        var(--palu-red);

}

/* ==========================================================

   SOBRE A PALU

   ========================================================== */

.brand-section {

    position: relative;

    width: 100%;

    padding:

        clamp(105px, 9vw, 150px)

        var(--page-padding);

    overflow: hidden;

    background:

        linear-gradient(

            180deg,

            #030609 0%,

            #060b11 52%,

            #030609 100%

        );

}

.brand-section::before {

    content: "P";

    position: absolute;

    top: 50%;

    left: -6%;

    transform:

        translateY(-50%);

    color:

        rgba(255, 255, 255, 0.014);

    font-family:

        var(--font-display);

    font-size: 31vw;

    font-weight:

        var(--font-extrabold);

    line-height: 1;

    pointer-events: none;

}

.brand-section::after {

    content: "";

    position: absolute;

    width: 650px;

    height: 650px;

    right: -360px;

    top: 50%;

    transform:

        translateY(-50%);

    border-radius: 50%;

    background:

        var(--palu-blue);

    filter:

        blur(190px);

    opacity: 0.045;

    pointer-events: none;

}

/* ==========================================================

   SOBRE — CONTAINER

   ========================================================== */

.brand-container {

    position: relative;

    z-index: 2;

    width:

        min(

            100%,

            1320px

        );

    margin-inline: auto;

    display: grid;

    grid-template-columns:

        minmax(0, 0.92fr)

        minmax(480px, 1.08fr);

    gap:

        clamp(70px, 8vw, 125px);

    align-items: center;

}

/* ==========================================================

   SOBRE — CONTEÚDO

   ========================================================== */

.brand-content {

    position: relative;

    max-width: 560px;

}

.brand-content .section-eyebrow {

    margin-bottom: 25px;

}

.brand-content .section-title {

    margin:

        0 0 32px;

    font-size:

        clamp(3.25rem, 4.7vw, 5.1rem);

    line-height: 0.90;

}

.brand-content .section-title strong {

    color:

        var(--color-white);

}

.brand-content .section-title > span {

    margin-top: 10px;

    color:

        rgba(255, 255, 255, 0.38);

}

.brand-copy {

    position: relative;

    max-width: 500px;

    padding-left: 25px;

    border-left:

        1px solid rgba(255, 255, 255, 0.12);

}

.brand-copy::before {

    content: "";

    position: absolute;

    left: -1px;

    top: 0;

    width: 1px;

    height: 48px;

    background:

        linear-gradient(

            180deg,

            var(--palu-blue),

            var(--palu-red)

        );

}

.brand-copy p {

    margin:

        0 0 16px;

    color:

        rgba(255, 255, 255, 0.61);

    font-size: 0.91rem;

    line-height: 1.78;

}

.brand-copy p:last-child {

    margin-bottom: 0;

}

.brand-actions {

    margin-top: 29px;

}

/* ==========================================================

   SOBRE — ASSINATURA

   ========================================================== */

.brand-signature {

    display: grid;

    grid-template-columns:

        35px auto;

    grid-template-areas:

        "line name"

        "line location";

    column-gap: 13px;

    align-items: center;

    margin-top: 43px;

}

.brand-signature-line {

    grid-area: line;

    width: 35px;

    height: 1px;

    background:

        rgba(255, 255, 255, 0.24);

}

.brand-signature > span:not(.brand-signature-line) {

    grid-area: name;

    color:

        rgba(255, 255, 255, 0.70);

    font-size: 0.56rem;

    font-weight:

        var(--font-bold);

    letter-spacing: 0.17em;

    text-transform: uppercase;

}

.brand-signature small {

    grid-area: location;

    margin-top: 4px;

    color:

        rgba(255, 255, 255, 0.30);

    font-size: 0.51rem;

    font-weight:

        var(--font-medium);

    letter-spacing: 0.12em;

    text-transform: uppercase;

}

/* ==========================================================

   SOBRE — SHOWCASE

   ========================================================== */

.brand-showcase {

    position: relative;

    width: 100%;

    max-width: 650px;

    justify-self: end;

}

.brand-visual {

    position: relative;

    width: 100%;

    aspect-ratio:

        1.15 / 1;

    min-height: 0;

    overflow: hidden;

    border:

        1px solid rgba(255, 255, 255, 0.10);

    background:

        #080d13;

    box-shadow:

        0 30px 100px rgba(0, 0, 0, 0.46);

}

.brand-visual::after {

    content: "";

    position: absolute;

    z-index: 5;

    top: 0;

    left: 0;

    width: 115px;

    height: 2px;

    background:

        linear-gradient(

            90deg,

            var(--palu-blue),

            var(--palu-red)

        );

    pointer-events: none;

}

.brand-visual img {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    min-height: 0;

    object-fit: cover;

    object-position:

        center 42%;

    filter:

        saturate(0.88)

        contrast(1.03)

        brightness(0.88);

    transform:

        scale(1.01);

    transition:

        transform 900ms

        cubic-bezier(.16, 1, .3, 1),

        filter 900ms

        cubic-bezier(.16, 1, .3, 1);

}

.brand-visual:hover img {

    transform:

        scale(1.025);

    filter:

        saturate(0.98)

        contrast(1.03)

        brightness(0.92);

}

.brand-visual-shade {

    position: absolute;

    inset: 0;

    z-index: 2;

    pointer-events: none;

    background:

        linear-gradient(

            180deg,

            rgba(3, 6, 9, 0.03) 0%,

            rgba(3, 6, 9, 0.04) 45%,

            rgba(3, 6, 9, 0.77) 100%

        );

}

/* ==========================================================

   SOBRE — PALU EM AÇÃO

   ========================================================== */

.brand-real-badge {

    position: absolute;

    z-index: 4;

    left: 24px;

    bottom: 22px;

    display: flex;

    align-items: center;

    gap: 12px;

}

.brand-real-dot {

    position: relative;

    width: 8px;

    height: 8px;

    flex: 0 0 auto;

    border-radius: 50%;

    background:

        var(--palu-red);

    box-shadow:

        0 0 18px rgba(237, 28, 46, 0.55);

}

.brand-real-dot::after {

    content: "";

    position: absolute;

    inset: -5px;

    border:

        1px solid rgba(237, 28, 46, 0.30);

    border-radius: 50%;

}

.brand-real-badge div {

    display: flex;

    flex-direction: column;

    gap: 3px;

}

.brand-real-badge strong {

    color:

        rgba(255, 255, 255, 0.92);

    font-size: 0.55rem;

    font-weight:

        var(--font-bold);

    letter-spacing: 0.15em;

    text-transform: uppercase;

}

.brand-real-badge small {

    color:

        rgba(255, 255, 255, 0.48);

    font-size: 0.54rem;

    letter-spacing: 0.035em;

}

.brand-showcase-footer {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding:

        18px 2px 0;

    color:

        rgba(255, 255, 255, 0.30);

    font-size: 0.50rem;

    font-weight:

        var(--font-semibold);

    letter-spacing: 0.12em;

    text-transform: uppercase;

}

.brand-showcase-footer span {

    position: relative;

}

.brand-showcase-footer span:not(:last-child)::after {

    content: "";

    position: absolute;

    top: 50%;

    right: -14px;

    width: 3px;

    height: 3px;

    transform:

        translateY(-50%);

    border-radius: 50%;

    background:

        rgba(255, 255, 255, 0.18);

}

/* ==========================================================

   EVENTOS SOCIAIS / CORPORATIVOS

   ========================================================== */

.event-segments {

    position: relative;

    width: 100%;

    min-height: 760px;

    display: grid;

    grid-template-columns:

        repeat(2, minmax(0, 1fr));

    background:

        var(--color-black);

}

.segment-card {

    position: relative;

    min-height: 760px;

    display: flex;

    align-items: flex-end;

    overflow: hidden;

    isolation: isolate;

}

.segment-card:first-child {

    border-right:

        1px solid rgba(255, 255, 255, 0.10);

}

.segment-background {

    position: absolute;

    inset: 0;

    z-index: 0;

    overflow: hidden;

}

.segment-background img {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    max-width: none;

    object-fit: cover;

    transition:

        transform 1.1s

        cubic-bezier(.16, 1, .3, 1),

        filter 1.1s

        cubic-bezier(.16, 1, .3, 1);

}

.segment-card:hover

.segment-background img {

    transform:

        scale(1.035);

}

.segment-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:

        linear-gradient(

            180deg,

            rgba(3, 6, 9, 0.08) 0%,

            rgba(3, 6, 9, 0.16) 30%,

            rgba(3, 6, 9, 0.83) 73%,

            rgba(3, 6, 9, 0.98) 100%

        );

    transition:

        background var(--transition-slow);

}

.segment-card:hover

.segment-overlay {

    background:

        linear-gradient(

            180deg,

            rgba(3, 6, 9, 0.04) 0%,

            rgba(3, 6, 9, 0.11) 30%,

            rgba(3, 6, 9, 0.76) 73%,

            rgba(3, 6, 9, 0.97) 100%

        );

}

.segment-content {

    position: relative;

    z-index: 3;

    width: 100%;

    padding:

        70px

        clamp(45px, 6vw, 100px);

}

.segment-number {

    display: inline-block;

    margin-bottom: 20px;

    color:

        rgba(255, 255, 255, 0.40);

    font-size: 0.58rem;

    font-weight:

        var(--font-semibold);

    letter-spacing: 0.16em;

}

.segment-content h2 {

    margin: 0;

    font-family:

        var(--font-display);

    font-size:

        clamp(3.1rem, 5vw, 5.7rem);

    font-weight:

        var(--font-extrabold);

    line-height: 0.88;

    letter-spacing: -0.065em;

    text-transform: uppercase;

    color:

        var(--color-white);

}

.segment-content p {

    max-width: 470px;

    margin:

        27px 0 0;

    color:

        rgba(255, 255, 255, 0.68);

    font-size: 0.92rem;

    line-height: 1.75;

}

.segment-content a {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 30px;

    color:

        rgba(255, 255, 255, 0.82);

    font-size: 0.64rem;

    font-weight:

        var(--font-bold);

    letter-spacing: 0.12em;

    text-transform: uppercase;

    transition:

        color var(--transition),

        transform var(--transition);

}

.segment-content a:hover {

    color:

        var(--color-white);

    transform:

        translateX(5px);

}

/* ==========================================================

   MANIFESTO

   ========================================================== */

.manifesto-line {

    position: relative;

    width: 100%;

    min-height: 105px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 24px;

    padding:

        28px

        var(--page-padding);

    border-top:

        1px solid rgba(255, 255, 255, 0.08);

    border-bottom:

        1px solid rgba(255, 255, 255, 0.08);

    background:

        #030609;

    color:

        rgba(255, 255, 255, 0.42);

    font-size: 0.62rem;

    font-weight:

        var(--font-semibold);

    letter-spacing: 0.12em;

    text-align: center;

    text-transform: uppercase;

}

.manifesto-line strong {

    color:

        rgba(255, 255, 255, 0.88);

    font-weight:

        var(--font-bold);

}

.manifesto-separator {

    display: block;

    width: 45px;

    height: 1px;

    flex: 0 0 auto;

    background:

        linear-gradient(

            90deg,

            var(--palu-blue),

            var(--palu-red)

        );

}


/* ==========================================================

   MONTE SUA EXPERIÊNCIA PALU

   ========================================================== */

.palu-builder {
    position: relative;
    width: 100%;
    padding: clamp(95px, 8vw, 135px) var(--page-padding);
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(180deg, #030609 0%, #060a10 52%, #030609 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.palu-builder::before {
    content: "PALU";
    position: absolute;
    z-index: 0;
    right: -0.04em;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.014);
    font-family: var(--font-display);
    font-size: clamp(11rem, 25vw, 28rem);
    font-weight: var(--font-extrabold);
    line-height: 0.8;
    letter-spacing: -0.08em;
    pointer-events: none;
}

.palu-builder-glow {
    position: absolute;
    z-index: 0;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    filter: blur(180px);
    pointer-events: none;
}

.palu-builder-glow-blue {
    left: -360px;
    top: -240px;
    background: rgba(35, 136, 255, 0.13);
}

.palu-builder-glow-red {
    right: -360px;
    bottom: -280px;
    background: rgba(239, 36, 104, 0.11);
}

.palu-builder-container {
    position: relative;
    z-index: 2;
    width: min(100%, var(--container-width));
    margin-inline: auto;
}

.palu-builder-header {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: clamp(55px, 8vw, 120px);
    align-items: end;
    margin-bottom: 52px;
}

.palu-builder-heading h2 {
    margin: 18px 0 0;
    max-width: 780px;
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: clamp(3.1rem, 4.8vw, 5.3rem);
    font-weight: var(--font-extrabold);
    line-height: 0.89;
    letter-spacing: -0.065em;
    text-transform: uppercase;
}

.palu-builder-heading h2 span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.38);
    font-weight: var(--font-light);
}

.palu-builder-intro {
    max-width: 390px;
    padding-left: 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.11);
}

.palu-builder-step-indicator {
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.58rem;
    font-weight: var(--font-bold);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.palu-builder-intro p {
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.82rem;
    line-height: 1.72;
}

.palu-builder-panel {
    position: relative;
    padding: clamp(34px, 4vw, 52px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.018);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.palu-builder-panel::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 130px;
    height: 2px;
    background: var(--gradient-palu);
}

.palu-builder-step-head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.palu-builder-step-number {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    color: var(--palu-blue-light);
    font-size: 0.58rem;
    font-weight: var(--font-bold);
    letter-spacing: 0.08em;
}

.palu-builder-step-label {
    display: block;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.31);
    font-size: 0.50rem;
    font-weight: var(--font-bold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.palu-builder-step-head h3 {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.1vw, 2rem);
    font-weight: var(--font-semibold);
    letter-spacing: -0.035em;
}

.palu-builder-options {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.palu-builder-option {
    position: relative;
    min-width: 0;
    min-height: 116px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 18px 16px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.015);
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.palu-builder-option:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.20);
    background: rgba(255, 255, 255, 0.035);
}

.palu-builder-option.is-selected {
    border-color: rgba(35, 136, 255, 0.52);
    background: linear-gradient(135deg, rgba(35, 136, 255, 0.10), rgba(239, 36, 104, 0.045));
    box-shadow: inset 0 0 0 1px rgba(35, 136, 255, 0.08), 0 14px 40px rgba(0, 0, 0, 0.16);
}

.palu-builder-option-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.78rem;
    transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.palu-builder-option.is-selected .palu-builder-option-icon {
    color: var(--color-white);
    border-color: rgba(35, 136, 255, 0.48);
    background: rgba(35, 136, 255, 0.10);
}

.palu-builder-option-text {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.palu-builder-option-text strong {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.72rem;
    font-weight: var(--font-bold);
    line-height: 1.25;
}

.palu-builder-option-text small {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.58rem;
    line-height: 1.4;
}

.palu-builder-option-check {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--palu-blue);
    color: #fff;
    font-size: 0.55rem;
    opacity: 0;
    transform: scale(0.7);
    transition: opacity var(--transition), transform var(--transition);
}

.palu-builder-option.is-selected .palu-builder-option-check {
    opacity: 1;
    transform: scale(1);
}

.palu-builder-divider {
    width: 100%;
    height: 1px;
    margin: 38px 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.09));
}

.palu-builder-result {
    margin-top: 18px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: #04080d;
}

.palu-builder-result-empty {
    min-height: 126px;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 30px 34px;
}

.palu-builder-result-mark {
    flex: 0 0 auto;
    color: rgba(255, 255, 255, 0.10);
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.6rem);
    font-weight: var(--font-extrabold);
    letter-spacing: -0.06em;
}

.palu-builder-result-empty strong {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
}

.palu-builder-result-empty p {
    max-width: 520px;
    margin: 0;
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.72rem;
    line-height: 1.6;
}

.palu-builder-result-ready {
    padding: clamp(30px, 4vw, 46px);
}

.palu-builder-result-ready[hidden] {
    display: none;
}

.palu-builder-result-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
}

.palu-builder-result-eyebrow {
    display: block;
    margin-bottom: 9px;
    color: var(--palu-blue-light);
    font-size: 0.53rem;
    font-weight: var(--font-bold);
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.palu-builder-result-top h3 {
    margin: 0;
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 2.6vw, 2.6rem);
    font-weight: var(--font-semibold);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.palu-builder-reset {
    flex: 0 0 auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.42);
    font: inherit;
    font-size: 0.57rem;
    font-weight: var(--font-semibold);
    letter-spacing: 0.10em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color var(--transition);
}

.palu-builder-reset:hover {
    color: var(--color-white);
}

.palu-builder-recommendations {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
}

.palu-builder-recommendation {
    position: relative;
    min-height: 126px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 22px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.018);
}

.palu-builder-recommendation span {
    color: rgba(255, 255, 255, 0.26);
    font-size: 0.52rem;
    font-weight: var(--font-bold);
    letter-spacing: 0.12em;
}

.palu-builder-recommendation strong {
    color: rgba(255, 255, 255, 0.84);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: var(--font-semibold);
    line-height: 1.25;
}

.palu-builder-result-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-top: 28px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.palu-builder-result-footer p {
    max-width: 520px;
    margin: 0;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.72rem;
    line-height: 1.65;
}

.palu-builder-whatsapp {
    flex: 0 0 auto;
}

.palu-builder-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 720px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.30);
}

.palu-builder-note > span {
    color: var(--palu-red);
    font-size: 0.9rem;
    line-height: 1.3;
}

.palu-builder-note p {
    margin: 0;
    font-size: 0.60rem;
    line-height: 1.55;
}

/* ==========================================================

   ROBÔ DE LED — DESTAQUE

   NOVA IMAGEM HORIZONTAL

   ========================================================== */

.featured-experience {

    position: relative;

    width: 100%;

    height: 680px;

    min-height: 680px;

    overflow: hidden;

    isolation: isolate;

    background:

        #020509;

}

/* ==========================================================

   ROBÔ — FOTO DE FUNDO

   ========================================================== */

.featured-media {

    position: absolute;

    inset: 0;

    z-index: 0;

    width: 100%;

    height: 100%;

    overflow: hidden;

    pointer-events: none;

    background:

        #020509;

}

/*

   A nova arte já possui iluminação própria.

   Não precisamos mais da luz usada na foto vertical.

*/

.featured-media::before {

    content: none;

}

/* ==========================================================

   ROBÔ — IMAGEM HORIZONTAL

   ========================================================== */

.featured-media img {

    position: absolute;

    inset: 0;

    z-index: 1;

    display: block;

    width: 100%;

    height: 100%;

    max-width: none;

    max-height: none;

    object-fit: cover;

    /*

       A composição da nova arte já deixa o robô à direita.

    */

    object-position:

        center center;

    transform:

        scale(1.002);

    transform-origin:

        center center;

    filter:

        saturate(1.04)

        contrast(1.03)

        brightness(0.94);

    /*

       IMPORTANTE:

       não existe mais mask-image.

       não existe contain.

       não existe largura máxima de 52%.

    */

    -webkit-mask-image: none;

    mask-image: none;

    transition:

        transform 1.2s

        cubic-bezier(.16, 1, .3, 1),

        filter 1.2s

        cubic-bezier(.16, 1, .3, 1);

}

/* ==========================================================

   ROBÔ — GRADIENTE PARA O TEXTO

   ========================================================== */

.featured-media::after {

    content: "";

    position: absolute;

    inset: 0;

    z-index: 2;

    pointer-events: none;

    background:

        linear-gradient(

            90deg,

            rgba(2, 5, 9, 0.98) 0%,

            rgba(2, 5, 9, 0.94) 16%,

            rgba(2, 5, 9, 0.80) 29%,

            rgba(2, 5, 9, 0.52) 39%,

            rgba(2, 5, 9, 0.22) 48%,

            rgba(2, 5, 9, 0.05) 58%,

            transparent 70%

        ),

        linear-gradient(

            180deg,

            rgba(2, 5, 9, 0.18) 0%,

            rgba(2, 5, 9, 0.00) 22%,

            rgba(2, 5, 9, 0.00) 72%,

            rgba(2, 5, 9, 0.42) 100%

        );

}

/* ==========================================================

   ROBÔ — HOVER

   ========================================================== */

.featured-experience:hover

.featured-media img {

    transform:

        scale(1.014);

    filter:

        saturate(1.08)

        contrast(1.04)

        brightness(0.97);

}

/* ==========================================================

   ROBÔ — ATMOSFERA

   ========================================================== */

.featured-overlay {

    position: absolute;

    inset: 0;

    z-index: 3;

    pointer-events: none;

    background:

        radial-gradient(

            ellipse at 72% 42%,

            rgba(239, 36, 104, 0.06) 0%,

            transparent 30%

        ),

        radial-gradient(

            ellipse at 64% 73%,

            rgba(35, 136, 255, 0.045) 0%,

            transparent 34%

        );

}

/* ==========================================================

   ROBÔ — CONTEÚDO

   ========================================================== */

.featured-inner {

    position: relative;

    z-index: 5;

    width:

        min(

            calc(100% - (var(--page-padding) * 2)),

            var(--container-width)

        );

    height: 100%;

    margin-inline: auto;

    display: flex;

    align-items: center;

}

.featured-content {

    position: relative;

    width: 100%;

    max-width: 470px;

    padding: 0;

    background:

        transparent;

}

.featured-content .section-eyebrow {

    margin-bottom: 20px;

}

.featured-content h2 {

    margin: 0;

    font-family:

        var(--font-display);

    font-size:

        clamp(3rem, 4.4vw, 4.8rem);

    font-weight:

        var(--font-extrabold);

    line-height: 0.88;

    letter-spacing: -0.065em;

    text-transform: uppercase;

    color:

        var(--color-white);

}

.featured-content h2 > span {

    display: block;

    margin-top: 7px;

    color:

        rgba(255, 255, 255, 0.50);

    font-weight:

        var(--font-light);

}

.featured-content > p {

    width: 100%;

    max-width: 420px;

    margin:

        25px 0 0;

    color:

        rgba(255, 255, 255, 0.68);

    font-size: 0.9rem;

    line-height: 1.7;

}

.featured-content > .btn {

    margin-top: 25px;

    min-height: 50px;

    padding:

        0 22px;

    font-size: 0.66rem;

}

/* ==========================================================

   ROBÔ — LINHA INFERIOR

   ========================================================== */

.featured-experience::after {

    content: "";

    position: absolute;

    z-index: 6;

    left: 0;

    right: 0;

    bottom: 0;

    height: 1px;

    background:

        linear-gradient(

            90deg,

            transparent,

            rgba(35, 136, 255, 0.65),

            rgba(237, 28, 46, 0.65),

            transparent

        );

    pointer-events: none;

}

/* ==========================================================

   OUTRAS EXPERIÊNCIAS

   ========================================================== */

.other-experiences {

    position: relative;

    width: 100%;

    padding:

        clamp(95px, 8vw, 130px)

        var(--page-padding);

    overflow: hidden;

    background:

        linear-gradient(

            180deg,

            #030609 0%,

            #05090e 50%,

            #030609 100%

        );

}

.other-experiences::before {

    content: "";

    position: absolute;

    width: 520px;

    height: 520px;

    right: -320px;

    top: -260px;

    border-radius: 50%;

    background:

        var(--palu-blue);

    filter:

        blur(180px);

    opacity: 0.045;

    pointer-events: none;

}

.other-experiences-container {

    position: relative;

    z-index: 2;

    width:

        min(

            100%,

            var(--container-width)

        );

    margin-inline: auto;

}

/* ==========================================================

   OUTRAS EXPERIÊNCIAS — CABEÇALHO

   ========================================================== */

.other-experiences-header {

    display: grid;

    grid-template-columns:

        minmax(180px, 0.42fr)

        minmax(0, 1.58fr);

    gap: 65px;

    align-items: start;

    margin-bottom: 52px;

}

.other-experiences-header .section-eyebrow {

    margin-top: 8px;

}

.other-experiences-header h2 {

    margin: 0;

    max-width: 760px;

    font-family:

        var(--font-display);

    font-size:

        clamp(2.9rem, 4.2vw, 4.7rem);

    font-weight:

        var(--font-extrabold);

    line-height: 0.92;

    letter-spacing: -0.06em;

    text-transform: uppercase;

    color:

        var(--color-white);

}

.other-experiences-header h2 span {

    display: block;

    margin-top: 7px;

    color:

        rgba(255, 255, 255, 0.36);

    font-weight:

        var(--font-light);

}

/* ==========================================================

   OUTRAS EXPERIÊNCIAS — LISTA

   ========================================================== */

.experience-links {

    width: 100%;

    border-top:

        1px solid rgba(255, 255, 255, 0.10);

}

.experience-link {

    position: relative;

    display: grid;

    grid-template-columns:

        60px

        minmax(0, 1fr)

        48px;

    gap: 18px;

    align-items: center;

    min-height: 88px;

    border-bottom:

        1px solid rgba(255, 255, 255, 0.09);

    transition:

        padding-left var(--transition),

        background var(--transition);

}

.experience-link::before {

    content: "";

    position: absolute;

    left: 0;

    top: 50%;

    width: 2px;

    height: 0;

    transform:

        translateY(-50%);

    background:

        var(--gradient-palu);

    transition:

        height var(--transition);

}

.experience-link:hover {

    padding-left: 14px;

    background:

        linear-gradient(

            90deg,

            rgba(35, 136, 255, 0.04),

            transparent 52%

        );

}

.experience-link:hover::before {

    height: 42%;

}

.experience-number {

    color:

        rgba(255, 255, 255, 0.26);

    font-size: 0.54rem;

    font-weight:

        var(--font-semibold);

    letter-spacing: 0.14em;

}

.experience-name {

    color:

        rgba(255, 255, 255, 0.74);

    font-family:

        var(--font-display);

    font-size:

        clamp(1.45rem, 2vw, 2.25rem);

    font-weight:

        var(--font-medium);

    letter-spacing: -0.035em;

    transition:

        color var(--transition),

        transform var(--transition);

}

.experience-link:hover

.experience-name {

    color:

        var(--color-white);

    transform:

        translateX(3px);

}

.experience-arrow {

    width: 38px;

    height: 38px;

    display: grid;

    place-items: center;

    justify-self: end;

    border:

        1px solid rgba(255, 255, 255, 0.13);

    border-radius: 50%;

    color:

        rgba(255, 255, 255, 0.48);

    font-size: 0.8rem;

    transition:

        color var(--transition),

        border-color var(--transition),

        background var(--transition),

        transform var(--transition);

}

.experience-link:hover

.experience-arrow {

    color:

        var(--color-white);

    border-color:

        rgba(255, 255, 255, 0.30);

    background:

        rgba(255, 255, 255, 0.04);

    transform:

        translateX(3px);

}

/* ==========================================================

   OUTRAS EXPERIÊNCIAS — RODAPÉ

   ========================================================== */

.other-experiences-footer {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    margin-top: 38px;

}

.other-experiences-footer p {

    max-width: 470px;

    margin: 0;

    color:

        rgba(255, 255, 255, 0.38);

    font-size: 0.78rem;

    line-height: 1.65;

}

.other-experiences-footer .btn {

    min-height: 48px;

    padding:

        0 20px;

    font-size: 0.62rem;

}

/* ==========================================================

   CTA FINAL

   ========================================================== */

.final-cta {

    position: relative;

    width: 100%;

    min-height: 560px;

    display: flex;

    align-items: center;

    padding:

        clamp(95px, 8vw, 135px)

        var(--page-padding);

    overflow: hidden;

    isolation: isolate;

    background:

        linear-gradient(

            115deg,

            #020509 0%,

            #04080d 42%,

            #07050a 72%,

            #030609 100%

        );

    border-top:

        1px solid rgba(255, 255, 255, 0.08);

}

/* ==========================================================

   CTA FINAL — DETALHE SUPERIOR

   ========================================================== */

.final-cta::before {

    content: "";

    position: absolute;

    z-index: 1;

    top: 0;

    left: 50%;

    width: min(72%, 980px);

    height: 1px;

    transform: translateX(-50%);

    background:

        linear-gradient(

            90deg,

            transparent 0%,

            rgba(35, 136, 255, 0.60) 35%,

            rgba(239, 36, 104, 0.60) 65%,

            transparent 100%

        );

    opacity: 0.70;

}

/* ==========================================================

   CTA FINAL — TEXTURA / PROFUNDIDADE

   ========================================================== */

.final-cta::after {

    content: "";

    position: absolute;

    z-index: 0;

    inset: 0;

    pointer-events: none;

    background:

        radial-gradient(

            ellipse at 18% 42%,

            rgba(35, 136, 255, 0.055) 0%,

            transparent 34%

        ),

        radial-gradient(

            ellipse at 84% 65%,

            rgba(239, 36, 104, 0.050) 0%,

            transparent 34%

        ),

        linear-gradient(

            90deg,

            rgba(255, 255, 255, 0.012) 1px,

            transparent 1px

        );

    background-size:

        auto,

        auto,

        120px 100%;

    opacity: 0.80;

}

/* ==========================================================

   CTA FINAL — LUZES

   ========================================================== */

.final-cta-glow {

    position: absolute;

    z-index: 0;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(170px);

}

.final-cta .glow-blue {

    width: 620px;

    height: 620px;

    left: -360px;

    top: -310px;

    background:

        rgba(35, 136, 255, 0.20);

}

.final-cta .glow-red {

    width: 620px;

    height: 620px;

    right: -360px;

    bottom: -340px;

    background:

        rgba(239, 36, 104, 0.17);

}

/* ==========================================================

   CTA FINAL — CONTAINER

   ========================================================== */

.final-cta-container {

    position: relative;

    z-index: 3;

    width:

        min(

            100%,

            var(--container-width)

        );

    margin-inline: auto;

    display: grid;

    grid-template-columns:

        minmax(0, 1.35fr)

        minmax(290px, 0.65fr);

    grid-template-areas:

        "title description"

        "actions description";

    column-gap:

        clamp(65px, 8vw, 130px);

    row-gap: 42px;

    align-items: end;

}

/* ==========================================================

   CTA FINAL — TÍTULO

   ========================================================== */

.final-cta-title {

    grid-area: title;

    position: relative;

    max-width: 850px;

}

.final-cta-title::before {

    content: "PALU";

    display: block;

    margin-bottom: 20px;

    color:

        rgba(255, 255, 255, 0.30);

    font-size: 0.56rem;

    font-weight:

        var(--font-bold);

    letter-spacing: 0.22em;

    text-transform: uppercase;

}

.final-cta-title h2 {

    margin: 0;

    font-family:

        var(--font-display);

    font-size:

        clamp(3.5rem, 5.3vw, 5.8rem);

    font-weight:

        var(--font-extrabold);

    line-height: 0.88;

    letter-spacing: -0.067em;

    text-transform: uppercase;

    color:

        var(--color-white);

}

.final-cta-title p {

    max-width: 760px;

    margin:

        17px 0 0;

    font-family:

        var(--font-display);

    font-size:

        clamp(2rem, 3.4vw, 3.8rem);

    font-weight:

        var(--font-light);

    line-height: 0.98;

    letter-spacing: -0.055em;

    color:

        rgba(255, 255, 255, 0.36);

}

/* ==========================================================

   CTA FINAL — DESCRIÇÃO

   ========================================================== */

.final-cta-description {

    grid-area: description;

    position: relative;

    align-self: center;

    max-width: 330px;

    padding:

        28px 0 28px 28px;

    border-left:

        1px solid rgba(255, 255, 255, 0.11);

    color:

        rgba(255, 255, 255, 0.57);

    font-size: 0.88rem;

    line-height: 1.75;

}

.final-cta-description::before {

    content: "";

    position: absolute;

    left: -1px;

    top: 28px;

    width: 1px;

    height: 48px;

    background:

        linear-gradient(

            180deg,

            var(--palu-blue),

            var(--palu-red)

        );

}

/* ==========================================================

   CTA FINAL — BOTÕES

   ========================================================== */

.final-cta-actions {

    grid-area: actions;

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

}

.final-cta-actions .btn {

    min-height: 52px;

    padding:

        0 23px;

    font-size: 0.64rem;

}

/* ==========================================================

   CTA FINAL — WHATSAPP

   ========================================================== */

.final-cta-actions .btn-whatsapp {

    position: relative;

    border:

        1px solid rgba(255, 255, 255, 0.17);

    background:

        rgba(255, 255, 255, 0.018);

    color:

        rgba(255, 255, 255, 0.82);

    transition:

        color var(--transition),

        border-color var(--transition),

        background var(--transition),

        transform var(--transition);

}

.final-cta-actions .btn-whatsapp::before {

    content: "";

    width: 6px;

    height: 6px;

    flex: 0 0 auto;

    margin-right: 4px;

    border-radius: 50%;

    background:

        #25d366;

    box-shadow:

        0 0 13px rgba(37, 211, 102, 0.45);

}

.final-cta-actions .btn-whatsapp:hover {

    color:

        var(--color-white);

    border-color:

        rgba(255, 255, 255, 0.32);

    background:

        rgba(255, 255, 255, 0.05);

    transform:

        translateY(-2px);

}

/* ==========================================================

   ANIMAÇÕES HERO

   ========================================================== */

@keyframes heroImageEnter {

    from {

        opacity: 0;

        transform:

            scale(1.08);

    }

    to {

        opacity: 1;

        transform:

            scale(1.015);

    }

}

@keyframes heroTextEnter {

    from {

        opacity: 0;

        transform:

            translateY(26px);

    }

    to {

        opacity: 1;

        transform:

            translateY(0);

    }

}