/* ==========================================================
   PALU EVENTOS
   TOTEM FOTOGRÁFICO
========================================================== */

.totem-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* ==========================================================
   HERO
========================================================== */

.totem-hero {
    position: relative;
    min-height: 820px;
    padding: 150px 0 80px;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 35%, rgba(15, 159, 255, .10), transparent 30%),
        radial-gradient(circle at 72% 70%, rgba(255, 32, 125, .08), transparent 28%),
        #030609;
}

.totem-hero-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);

    background-size: 70px 70px;

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, .7),
            transparent 85%
        );

    pointer-events: none;
}

.totem-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
}

.totem-glow-blue {
    width: 380px;
    height: 380px;
    right: 6%;
    top: 18%;
    background: rgba(0, 153, 255, .12);
}

.totem-glow-pink {
    width: 320px;
    height: 320px;
    right: 28%;
    bottom: 4%;
    background: rgba(255, 25, 117, .08);
}

.totem-hero-container {
    position: relative;
    z-index: 2;

    min-height: 590px;

    display: grid;
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: 70px;
}


/* ==========================================================
   HERO TEXTO
========================================================== */

.totem-eyebrow,
.totem-section-label {
    display: block;

    color: rgba(255, 255, 255, .56);

    font-family: "Inter", sans-serif;
    font-size: .68rem;
    font-weight: 700;

    letter-spacing: .21em;
    text-transform: uppercase;
}

.totem-eyebrow {
    margin-bottom: 26px;
}

.totem-hero-content h1 {
    max-width: 690px;
    margin: 0;

    color: #ffffff;

    font-family: "Montserrat", sans-serif;
    font-size: clamp(4rem, 6vw, 6.5rem);
    font-weight: 800;

    line-height: .9;
    letter-spacing: -.065em;
}

.totem-hero-content h1 span {
    display: block;

    background:
        linear-gradient(
            105deg,
            #21b9ff 0%,
            #7970ff 48%,
            #ff3b91 100%
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.totem-hero-description {
    max-width: 580px;
    margin: 30px 0 0;

    color: rgba(255, 255, 255, .62);

    font-size: .98rem;
    line-height: 1.8;
}

.totem-hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;

    margin-top: 38px;
}


/* ==========================================================
   BOTÕES
========================================================== */

.totem-primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;

    min-height: 54px;
    padding: 0 28px;

    border-radius: 999px;

    background: #ffffff;
    color: #05070a;

    font-size: .7rem;
    font-weight: 800;

    letter-spacing: .12em;
    text-decoration: none;

    transition:
        transform .25s ease,
        background .25s ease;
}

.totem-primary-button:hover {
    transform: translateY(-2px);
    background: #eaf8ff;
}

.totem-text-link {
    position: relative;

    color: rgba(255, 255, 255, .65);

    font-size: .67rem;
    font-weight: 700;

    letter-spacing: .12em;
    text-decoration: none;
}

.totem-text-link::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 100%;
    height: 1px;

    background: rgba(255, 255, 255, .22);

    transform: scaleX(.35);
    transform-origin: left;

    transition: transform .25s ease;
}

.totem-text-link:hover::after {
    transform: scaleX(1);
}


/* ==========================================================
   HERO VISUAL
========================================================== */

.totem-hero-visual {
    position: relative;

    min-height: 620px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.totem-visual-word {
    position: absolute;
    left: -5%;
    top: 46%;

    transform: translateY(-50%) rotate(-90deg);

    color: rgba(255, 255, 255, .025);

    font-family: "Montserrat", sans-serif;
    font-size: 9rem;
    font-weight: 900;

    letter-spacing: -.07em;

    pointer-events: none;
}

.totem-image-glow {
    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0, 162, 255, .20),
            rgba(112, 70, 255, .07) 42%,
            transparent 70%
        );

    filter: blur(18px);
}

.totem-main-image {
    position: relative;
    z-index: 2;

    display: block;

    width: min(100%, 520px);
    max-height: 620px;

    object-fit: contain;

    filter:
        drop-shadow(0 35px 45px rgba(0, 0, 0, .45));

    animation:
        totemFloat 6s ease-in-out infinite;
}

@keyframes totemFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.totem-visual-info {
    position: absolute;
    z-index: 4;

    right: 0;
    bottom: 40px;

    padding: 16px 18px;

    border-left:
        1px solid rgba(255, 255, 255, .18);
}

.totem-visual-info span {
    display: block;

    margin-bottom: 5px;

    color: rgba(255, 255, 255, .4);

    font-size: .57rem;
    font-weight: 700;

    letter-spacing: .16em;
}

.totem-visual-info strong {
    color: #ffffff;

    font-size: .73rem;
    font-weight: 700;

    letter-spacing: .08em;
}


/* ==========================================================
   EXPERIÊNCIA
========================================================== */

.totem-experience {
    padding: 120px 0;

    background: #05080c;

    border-top:
        1px solid rgba(255, 255, 255, .06);
}

.totem-section-heading {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 90px;

    align-items: end;

    margin-bottom: 70px;
}

.totem-section-heading h2,
.totem-show-content h2,
.totem-location h2,
.totem-cta h2 {
    margin: 20px 0 0;

    color: #ffffff;

    font-family: "Montserrat", sans-serif;
    font-size: clamp(3rem, 5vw, 5.2rem);
    font-weight: 800;

    line-height: .94;
    letter-spacing: -.055em;
}

.totem-section-heading h2 span,
.totem-show-content h2 span,
.totem-location h2 span,
.totem-cta h2 span {
    display: block;

    color: rgba(255, 255, 255, .32);
}

.totem-section-intro p {
    margin: 0;

    color: rgba(255, 255, 255, .55);

    font-size: .92rem;
    line-height: 1.8;
}


/* ==========================================================
   FEATURES
========================================================== */

.totem-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top:
        1px solid rgba(255, 255, 255, .1);

    border-bottom:
        1px solid rgba(255, 255, 255, .1);
}

.totem-feature {
    min-height: 255px;

    padding: 35px 28px;

    border-right:
        1px solid rgba(255, 255, 255, .1);

    transition:
        background .25s ease,
        transform .25s ease;
}

.totem-feature:last-child {
    border-right: 0;
}

.totem-feature:hover {
    background:
        rgba(255, 255, 255, .025);
}

.totem-feature-number {
    display: block;

    margin-bottom: 46px;

    color: rgba(255, 255, 255, .25);

    font-size: .65rem;
    font-weight: 700;
}

.totem-feature h3 {
    margin: 0 0 14px;

    color: #ffffff;

    font-size: .85rem;
    font-weight: 800;

    letter-spacing: .11em;
}

.totem-feature p {
    margin: 0;

    color: rgba(255, 255, 255, .47);

    font-size: .79rem;
    line-height: 1.7;
}


/* ==========================================================
   SHOW / COMO FUNCIONA
========================================================== */

.totem-show {
    padding: 120px 0;

    background: #030609;
}

.totem-show-container {
    display: grid;
    grid-template-columns: .95fr 1.05fr;

    align-items: center;

    gap: 100px;
}

.totem-show-image {
    position: relative;

    min-height: 570px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border:
        1px solid rgba(255, 255, 255, .07);

    background:
        radial-gradient(
            circle at center,
            rgba(0, 164, 255, .12),
            transparent 45%
        ),
        #070b10;
}

.totem-show-background {
    position: absolute;

    color: rgba(255, 255, 255, .025);

    font-family: "Montserrat", sans-serif;
    font-size: 9rem;
    font-weight: 900;

    letter-spacing: -.08em;
}

.totem-show-image img {
    position: relative;
    z-index: 2;

    width: 85%;
    height: 500px;

    object-fit: contain;

    filter:
        drop-shadow(0 30px 40px rgba(0, 0, 0, .45));
}

.totem-show-content p {
    max-width: 540px;
    margin: 28px 0 0;

    color: rgba(255, 255, 255, .54);

    font-size: .9rem;
    line-height: 1.8;
}

.totem-show-list {
    margin-top: 40px;

    border-top:
        1px solid rgba(255, 255, 255, .09);
}

.totem-show-list > div {
    display: grid;
    grid-template-columns: 48px 1fr;

    align-items: center;

    min-height: 60px;

    border-bottom:
        1px solid rgba(255, 255, 255, .09);
}

.totem-show-list span {
    color: rgba(255, 255, 255, .25);

    font-size: .63rem;
    font-weight: 700;
}

.totem-show-list p {
    margin: 0;

    color: rgba(255, 255, 255, .75);

    font-size: .76rem;
    font-weight: 600;

    letter-spacing: .04em;
}


/* ==========================================================
   TIPOS DE EVENTO
========================================================== */

.totem-events {
    padding: 120px 0;

    background: #07090d;

    border-top:
        1px solid rgba(255, 255, 255, .06);

    border-bottom:
        1px solid rgba(255, 255, 255, .06);
}

.totem-event-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    border-top:
        1px solid rgba(255, 255, 255, .1);
}

.totem-event-card {
    display: grid;
    grid-template-columns: 50px 1fr 40px;

    align-items: center;
    gap: 20px;

    min-height: 180px;

    padding: 30px;

    color: inherit;
    text-decoration: none;

    border-right:
        1px solid rgba(255, 255, 255, .1);

    border-bottom:
        1px solid rgba(255, 255, 255, .1);

    transition:
        background .25s ease;
}

.totem-event-card:nth-child(2n) {
    border-right: 0;
}

.totem-event-card:hover {
    background:
        linear-gradient(
            110deg,
            rgba(0, 159, 255, .05),
            rgba(255, 30, 126, .025)
        );
}

.totem-event-card > span {
    color: rgba(255, 255, 255, .25);

    font-size: .64rem;
    font-weight: 700;
}

.totem-event-card h3 {
    margin: 0 0 10px;

    color: #ffffff;

    font-family: "Montserrat", sans-serif;
    font-size: 1.2rem;

    letter-spacing: -.02em;
}

.totem-event-card p {
    max-width: 400px;
    margin: 0;

    color: rgba(255, 255, 255, .45);

    font-size: .79rem;
    line-height: 1.65;
}

.totem-event-card strong {
    color: rgba(255, 255, 255, .45);

    font-size: 1.2rem;
}


/* ==========================================================
   LOCALIZAÇÃO
========================================================== */

.totem-location {
    position: relative;

    padding: 135px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(15, 155, 255, .07),
            transparent 35%
        ),
        #030609;
}

.totem-location-word {
    position: absolute;

    right: -1%;
    top: 50%;

    transform: translateY(-50%);

    color: rgba(255, 255, 255, .018);

    font-family: "Montserrat", sans-serif;
    font-size: clamp(6rem, 12vw, 12rem);
    font-weight: 900;

    letter-spacing: -.08em;

    white-space: nowrap;
}

.totem-location-container {
    position: relative;
    z-index: 2;
}

.totem-location h2 {
    max-width: 850px;
}

.totem-location p {
    max-width: 620px;
    margin: 28px 0 0;

    color: rgba(255, 255, 255, .52);

    font-size: .9rem;
    line-height: 1.8;
}


/* ==========================================================
   CTA
========================================================== */

.totem-cta {
    padding: 100px 0;

    background:
        linear-gradient(
            110deg,
            rgba(0, 134, 230, .95),
            rgba(99, 65, 215, .96) 52%,
            rgba(210, 28, 112, .94)
        );
}

.totem-cta-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;
}

.totem-cta .totem-section-label {
    color: rgba(255, 255, 255, .67);
}

.totem-cta h2 {
    max-width: 800px;
}

.totem-cta h2 span {
    color: rgba(255, 255, 255, .72);
}

.totem-cta-link {
    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 28px;

    min-height: 56px;

    padding: 0 28px;

    border:
        1px solid rgba(255, 255, 255, .35);

    border-radius: 999px;

    color: #ffffff;

    font-size: .67rem;
    font-weight: 800;

    letter-spacing: .11em;
    text-decoration: none;

    transition:
        background .25s ease,
        color .25s ease;
}

.totem-cta-link:hover {
    background: #ffffff;
    color: #08090d;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1024px) {

    .totem-hero {
        padding-top: 125px;
    }

    .totem-hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .totem-hero-content {
        max-width: 760px;
        margin: 0 auto;

        text-align: center;
    }

    .totem-hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .totem-hero-actions {
        justify-content: center;
    }

    .totem-hero-visual {
        min-height: 520px;
    }

    .totem-main-image {
        max-height: 510px;
    }

    .totem-section-heading {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .totem-section-intro {
        max-width: 620px;
    }

    .totem-features {
        grid-template-columns: 1fr 1fr;
    }

    .totem-feature:nth-child(2) {
        border-right: 0;
    }

    .totem-feature:nth-child(-n + 2) {
        border-bottom:
            1px solid rgba(255, 255, 255, .1);
    }

    .totem-show-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .totem-show-image {
        min-height: 500px;
    }

    .totem-cta-container {
        display: block;
    }

    .totem-cta-link {
        margin-top: 40px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 768px) {

    .totem-container {
        width: min(100% - 30px, 1180px);
    }

    .totem-hero {
        min-height: auto;

        padding:
            110px 0
            60px;
    }

    .totem-hero-container {
        min-height: auto;
    }

    .totem-eyebrow {
        margin-bottom: 20px;

        font-size: .58rem;
    }

    .totem-hero-content h1 {
        font-size: clamp(2.8rem, 13vw, 4rem);
        line-height: .92;
    }

    .totem-hero-description {
        margin-top: 24px;

        font-size: .88rem;
    }

    .totem-hero-actions {
        display: grid;
        gap: 22px;

        width: 100%;

        margin-top: 30px;
    }

    .totem-primary-button {
        width: 100%;
    }

    .totem-text-link {
        display: inline-block;
        justify-self: center;
    }

    .totem-hero-visual {
        min-height: 400px;
    }

    .totem-main-image {
        width: min(100%, 330px);
        max-height: 390px;
    }

    .totem-visual-word {
        display: none;
    }

    .totem-visual-info {
        right: 5px;
        bottom: 10px;
    }

    .totem-experience,
    .totem-show,
    .totem-events {
        padding: 80px 0;
    }

    .totem-section-heading {
        margin-bottom: 45px;
    }

    .totem-section-heading h2,
    .totem-show-content h2,
    .totem-location h2,
    .totem-cta h2 {
        font-size: clamp(2.5rem, 11vw, 3.6rem);
    }

    .totem-features {
        grid-template-columns: 1fr;
    }

    .totem-feature,
    .totem-feature:nth-child(2) {
        min-height: 0;

        padding: 28px 5px;

        border-right: 0;

        border-bottom:
            1px solid rgba(255, 255, 255, .1);
    }

    .totem-feature:last-child {
        border-bottom: 0;
    }

    .totem-feature-number {
        margin-bottom: 25px;
    }

    .totem-show-container {
        gap: 45px;
    }

    .totem-show-image {
        min-height: 370px;
    }

    .totem-show-image img {
        width: 90%;
        height: 330px;
    }

    .totem-show-background {
        font-size: 5rem;
    }

    .totem-event-grid {
        grid-template-columns: 1fr;
    }

    .totem-event-card,
    .totem-event-card:nth-child(2n) {
        min-height: 155px;

        padding: 25px 5px;

        border-right: 0;
    }

    .totem-location {
        padding: 90px 0;
    }

    .totem-location-word {
        font-size: 5rem;
    }

    .totem-cta {
        padding: 75px 0;
    }

    .totem-cta-link {
        width: 100%;

        margin-top: 35px;
    }

}


/* ==========================================================
   MOBILE PEQUENO
========================================================== */

@media (max-width: 480px) {

    .totem-event-card {
        grid-template-columns: 35px 1fr 25px;
        gap: 12px;
    }

    .totem-event-card h3 {
        font-size: 1rem;
    }

    .totem-image-glow {
        width: 280px;
        height: 280px;
    }

}