@import url("https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --lp-purple-800: #290661;
    --lp-purple-700: #3D0A91;
    --lp-purple-500: #6610F2;
    --lp-purple-400: #8540F5;
    --lp-purple-300: #A370F7;
    --lp-purple-200: #C29FFA;
    --lp-purple-100: #E0CFFC;
    --lp-neutral-0: #FFFFFF;
    --lp-gray-600: #6C757D;
    --lp-gray-500: #ADB5BD;
    --lp-gray-400: #CED4DA;
    --lp-gray-300: #DEE2E6;
    --lp-gray-200: #E9ECEF;
    --lp-magenta: #ff5ce8;
    --lp-orange: #ff8654;
    --lp-red-500: #DC3545;
    --lp-bg-gradient: radial-gradient(circle at 10% 20%, rgba(255, 128, 246, 0.25), transparent 55%),
        radial-gradient(circle at 90% 0%, rgba(130, 87, 229, 0.4), transparent 55%),
        linear-gradient(180deg, #0b0121 0%, #12002e 45%, #20024a 100%);
}

body {
    font-family: "Exo", sans-serif;
    color: #f4f3ff;
    margin: 0;
    min-height: 100vh;
}

.main-section {
    background: transparent;
}

.main-content {
    padding: 0;
}

#body-content {
    min-height: 100vh;
}

/* ---- PAGE LOADER ---- */
.page-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #484848cb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading {
    --speed-of-animation: 0.9s;
    --gap: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    gap: 6px;
    height: 65px;
}

.loading span {
    width: 5px;
    height: 40px;
    background: var(--lp-purple-300);
    animation: scale var(--speed-of-animation) ease-in-out infinite;
}

.loading span:nth-child(2) {
    background: var(--lp-purple-300);
    animation-delay: -0.8s;
}

.loading span:nth-child(3) {
    background: var(--lp-purple-300);
    animation-delay: -0.7s;
}

.loading span:nth-child(4) {
    background: var(--lp-purple-300);
    animation-delay: -0.6s;
}

.loading span:nth-child(5) {
    background: var(--lp-purple-300);
    animation-delay: -0.5s;
}

@keyframes scale {

    0%,
    40%,
    100% {
        transform: scaleY(0.05);
    }

    20% {
        transform: scaleY(1);
    }
}

.landing-shell {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.landing-shell__content {
    position: relative;
    z-index: 1;
}

.lp-navbar {
    position: sticky;
    top: 0;
    z-index: 30;
    background: var(--lp-purple-800);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(10, 0, 32, 0.35);
}

.lp-navbar .navbar-brand {
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.lp-navbar__logo {
    width: 150px;
    height: auto;
}

.lp-navbar .nav-link {
    color: #f3eaff;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.lp-navbar .nav-link:hover,
.lp-navbar .nav-link:focus {
    color: var(--lp-purple-300);
}

.lp-btn-gradient {
    background-image: linear-gradient(135deg, var(--lp-purple-500), var(--lp-magenta));
    border: none;
    color: #fff;
    box-shadow: 0 18px 30px rgba(127, 63, 255, 0.35);
}

.lp-btn-gradient:hover {
    opacity: 0.95;
    color: #fff;
}

.lp-navbar__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.lp-section {
    padding: 4rem 0;
}

.lp-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--lp-purple-300);
    font-weight: 600;
}

.lp-section-title {
    font-family: "Exo", sans-serif;
    font-weight: 500;
    color: var(--lp-neutral-0);
}

.lp-copy {
    color: var(--lp-gray-400);
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.lp-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 30px 60px rgba(6, 0, 32, 0.45);
    backdrop-filter: blur(12px);
}

/* HERO */
.lp-hero {
    position: relative;
    padding: 5.5rem 0 5.5rem;
    text-align: center;

    .container {
        position: relative;
        z-index: 2;
    }
}

.lp-hero__background {
    background-color: var(--lp-purple-800);
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.lp-hero__background img {
    position: absolute;
    opacity: .75;
    filter: blur(50px);
}

.lp-hero__blur--300 {
    width: 65%;
    top: 0;
    right: 0;
}

.lp-hero__blur--500 {
    width: 55%;
    top: 0;
    left: 0;
}

.lp-hero__blur--700 {
    width: 65%;
    left: 0;
    top: 9%;
}

.lp-hero__logotype {
    width: 80%;
    max-width: 675px;
    margin: 0 auto 1.5rem;
}

.lp-hero__logo--mobile {
    display: none;
}

@media (max-width: 768px) {
    .lp-hero__logo--mobile {
        display: block;
        max-width: 250px;
        width: 50%;
    }

    .lp-hero__chevron {
        display: none;
    }

    .lp-hero__logo--desktop {
        display: none;
    }

    .lp-hero__intro {
        font-size: 24px;
    }

    .lp-hero__description {
        font-size: 16px;
    }

    .lp-hero__blur--500 {
        width: 100%;
        top: 0;
        left: -20%;
    }

    .lp-hero__blur--300 {
        width: 100%;
        top: 2%;
        right: -25%;
    }

    .lp-hero__blur--700 {
        width: 100%;
        left: -20%;
        top: 7%;
    }
}

@media (max-width: 560px) {
    .lp-hero__background img {
        position: absolute;
        opacity: .75;
        filter: blur(75px);
    }
}


.lp-hero__intro {
    font-size: 28px;
    font-weight: 600;
    color: var(--lp-neutral-0);
    margin-bottom: 1rem;
}

.lp-hero__description {
    font-family: 'Montserrat', sans-serif;
    max-width: 650px;
    margin: 0 auto 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--lp-gray-200);
    line-height: 30px;
}

.lp-hero__highlight {
    color: var(--lp-neutral-0);
    font-weight: 700;
    text-decoration: underline;
}

.lp-hero__cta {
    display: inline-flex;
    gap: 1rem;
}

.lp-hero__chevron {
    width: 40px;
    position: absolute;
    right: 20%;
    top: 95%;
    transform: translateX(-50%);
}

@keyframes lp-chevon-bounce {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    50% {
        transform: translateY(10px);
        opacity: 1;
    }
}

/* PROGRAMACAO */
.lp-programacao {
    position: relative;
    overflow: hidden;
}

.lp-programacao__layout {
    align-items: stretch;
}

.lp-programacao__timeline {
    position: relative;
    z-index: 2;
}

.lp-timeline {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.lp-timeline__block {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.lp-timeline__block:last-child {
    border-bottom: 0;
}

.lp-timeline__time {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--lp-neutral-0);
    font-size: 0.9rem;
}

.lp-timeline__time::after {
    content: "";
    display: block;
    flex: 1;
    height: 1px;
    background: var(--lp-neutral-0);
    opacity: 0.7;
}

.lp-timeline__entries {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.lp-timeline__entry {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.35rem 0.75rem 0.35rem 0;
    border-left: 3px solid transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-timeline__entry:last-child {
    border-bottom: 0;
}

.lp-timeline__title {
    font-weight: 400;
    color: var(--lp-purple-200);
    font-size: 14px;

    img {
        width: 20px;
        height: 20px;
        margin-right: 0.25rem;
    }
}

.lp-timeline__duration {
    font-size: 14px;
    color: var(--lp-purple-200);
    font-weight: 400;
    min-width: 68px;
    text-align: right;
}

.lp-programacao_cta_title {
    font-weight: 500;
    font-size: 18px;
    color: var(--lp-neutral-0);
}

.lp-programacao__cta {
    font-weight: 400;
    color: var(--lp-gray-300);
    max-width: 500px;
}

.lp-programacao__stage {
    flex: 1 1 45%;
    position: relative;
    min-height: 520px;
    z-index: 2;
}

.lp-programacao__photo {
    position: absolute;
    border-radius: 999px;
    border: 6px solid rgba(255, 255, 255, 0.35);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
}

.lp-programacao__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-programacao__photo--primary {
    width: 360px;
    height: 360px;
    right: 0;
    top: 0;
}

.lp-programacao__photo--secondary {
    width: 220px;
    height: 220px;
    left: 5%;
    top: 15%;
}

.lp-programacao__photo--tertiary {
    width: 200px;
    height: 200px;
    right: 10%;
    bottom: 0;
}

.lp-programacao__mosaic {
    width: 90%;
    z-index: 2;
}

.lp-programacao__ornament {
    position: absolute;
    opacity: 0.8;
    pointer-events: none;
    z-index: 1;
}

.lp-programacao__ornament--globe {
    right: 6%;
    bottom: 5%;
    width: 20%;
}

.lp-programacao__ornament--diamond {
    right: 25%;
    bottom: 0;
    width: 9%;
}

.lp-programacao__blur--500 {
    width: 45%;
    top: 25%;
    right: 5%;
}

.lp-programacao__stage::after {
    content: "";
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 65%);
    filter: blur(20px);
    z-index: -1;
}

.lp-gallery__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-rows: 220px;
    grid-auto-flow: dense;
    gap: 1.5rem;
}

.lp-gallery__item {
    margin: 0;
    border: 1rem solid var(--lp-purple-400);
    border-radius: .5rem;
    overflow: hidden;
    box-shadow: 0 25px 45px rgba(7, 0, 30, 0.55);
    background: rgba(10, 0, 32, 0.65);
    display: flex;
}

.lp-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

.lp-gallery__item--main {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 460px;
}

.lp-gallery__item--wide {
    grid-column: span 2;
}

.lp-patrocinio {
    position: relative;
}

.lp-patrocinio__intro {
    margin-bottom: 3rem;
}

.lp-patrocinio__blur--300 {
    bottom: 15%;
    left: -30%;
    opacity: 0.5 !important;
}

.lp-section-title-purple {
    color: var(--lp-purple-200);
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Exo', sans-serif;
}

.lp-patrocinio__steps {
    list-style: decimal;
    margin: 2rem 0 0;
    padding-left: 1.25rem;
    color: var(--lp-gray-200);
    font-size: 1rem;
    line-height: 1.7;
}

.lp-patrocinio__step-title {
    font-weight: 500;
    color: var(--lp-neutral-0);
    margin-bottom: 0.35rem;
    font-family: 'Montserrat', sans-serif;
}

.lp-patrocinio__step-description {
    margin-bottom: 1rem;
    color: var(--lp-gray-300);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.lp-patrocinio__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.lp-patrocinio__sucesso-banner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(102, 16, 242, 0.35) 0%, rgba(163, 112, 247, 0.2) 100%);
    border: 2px solid var(--lp-purple-300);
    border-radius: 1.25rem;
    padding: 1.5rem 2rem;
    margin-top: 2rem;
    box-shadow: 0 0 32px rgba(163, 112, 247, 0.45), 0 8px 24px rgba(0, 0, 0, 0.3);
    animation: sucesso-fadein 0.5s ease both;
}

@keyframes sucesso-fadein {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes sucesso-pulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.18); }
}

.lp-patrocinio__sucesso-icon {
    font-size: 3rem;
    color: var(--lp-purple-200);
    line-height: 1;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(163, 112, 247, 0.8));
    animation: sucesso-pulse 1.6s ease-in-out infinite;
}

.lp-patrocinio__sucesso-title {
    font-family: 'Exo', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--lp-neutral-0);
    margin-bottom: 0.3rem;
    text-shadow: 0 0 12px rgba(163, 112, 247, 0.6);
}

.lp-patrocinio__sucesso-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--lp-gray-300);
    margin-bottom: 0;
}

.lp-patrocinio-card {
    background: #fff;
    color: var(--lp-purple-500);
    border-radius: 2rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.lp-patrocinio-card__header {
    text-align: center;
    padding: 1.5rem;
}

.lp-patrocinio-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-patrocinio-card__icon img {
    width: 40px;
    height: 40px;
    margin-right: 0.75rem;
    object-fit: contain;
}

.lp-patrocinio-card__title {
    font-size: 2rem;
    font-weight: 600;
    font-family: 'Exo', sans-serif;
    text-transform: uppercase;
    color: var(--lp-purple-500);
    margin-bottom: 0;
}

hr.purple-gradient {
    height: 4px;
    width: 100%;
    border: none;
    margin: 0;
    opacity: 1;
    background: linear-gradient(90deg, rgba(183.64, 156.19, 255, 0.20) 0%, rgba(81, 21, 237, 0.70) 49%, rgba(183.64, 156.19, 255, 0.20) 100%);
}


.lp-patrocinio-card__pricing {
    text-align: left;
    padding: 1.5rem;
}

.lp-patrocinio-card__slots {
    font-size: 1.25rem;
    color: var(--lp-purple-500);
    margin-bottom: 0;
}

.lp-patrocinio-slots__esgotados {
    text-decoration: line-through;
}

.lp-patrocinio-card__price-block {
    margin-top: 1rem;
}

.lp-patrocinio-card__price-block.is-past {
    opacity: .25;

    .lp-patrocinio-card__label, .lp-patrocinio-card__value, .lp-patrocinio-card__deadline, .lp-patrocinio-card__integral-value {
        text-decoration: line-through;
    }

}

.lp-patrocinio-card__price-block.is-future-first {
    opacity: .5;
}

.lp-patrocinio-card__price-block.is-future-second {
    opacity: .25;
}

.lp-patrocinio-card__label {
    font-size: 18px;
    font-weight: 500;
    color: var(--lp-purple-500);
    margin-right: .5rem;
}

.lp-patrocinio-card__value {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--lp-purple-500);
    margin-bottom: 0;
}

.lp-patrocinio-card__deadline {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: var(--lp-purple-500);
}

.lp-patrocinio-card__integral-value {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: var(--lp-purple-500);
}

.lp-patrocinio-card__cta {
    padding: 1.5rem;
}

.lp-patrocinio-card__btn {
    width: 100%;
    border-radius: 999px;
    border: none;
    background: linear-gradient(315deg, #A370F7 0%, #520DC2 100%);
    color: var(--lp-purple-100);
    font-size: 20px;
    font-weight: 500;
    padding: 8px 24px;
    text-transform: uppercase;
    text-align: center;
    display: inline-block;
    text-decoration: none;
}

.lp-patrocinio-card__btn[disabled] {
    background: var(--lp-gray-500);
    color: var(--lp-gray-200);
}

.lp-patrocinio-card__benefits-title {
    font-weight: 600;
    color: #5c4aa0;
    margin-bottom: 0.75rem;
}

.lp-patrocinio-card__benefits {
    list-style: none;
    padding-left: 1rem;
    color: #524971;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.95rem;
}

.lp-patrocinio-card__benefits li::before {
    content: "✔";
    color: #7d1fe9;
    margin-right: 0.4rem;
}
.lp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.lp-pricing-card {
    border-radius: 1.5rem;
    padding: 2rem;
    background: rgba(19, 0, 59, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.lp-pricing-card--featured {
    background: linear-gradient(180deg, #4110a2, #7b18e6);
    border-color: rgba(255, 255, 255, 0.4);
}

.lp-pricing-value {
    font-size: 2rem;
    font-weight: 700;
}

.lp-pricing-details {
    list-style: none;
    padding-left: 1rem;
    color: #dcd6ff;
}

.lp-footer {
    background: #220552;
    color: #fff;
    padding: 1rem 0;
}

.lp-footer__text {
    font-size: 11px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
    color: var(--lp-neutral-0);
}

@media (max-width: 1200px) {
    .lp-gallery__grid {
        grid-template-columns: 1.2fr 1fr;
    }
}

@media (max-width: 992px) {
    .lp-card,
    .lp-pricing-card {
        padding: 1.5rem;
    }

    .lp-section {
        padding: 3rem 0;
    }

    .lp-programacao__layout {
        flex-direction: column;
    }

    .lp-programacao__stage {
        min-height: 420px;
        order: -1;
    }

    .lp-programacao__mosaic {
        position: static;
        width: 100%;
        max-width: none;
        margin-bottom: 2rem;
    }

    .lp-programacao__ornament--globe {
        right: auto;
        left: 5%;
        bottom: -20px;
    }

    .lp-programacao__ornament--diamond {
        right: 10%;
    }
}

/* css do footer identificador de ambiente de homologação */

.footer-debug {
    position: sticky;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: var(--lp-red-500);
    z-index: 40;
    color: #fff;
    padding: 0.85rem 0;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.25);
}

.footer-debug__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.footer-debug__env {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.12em;
    font-size: 0.85rem;
}

.footer-debug__env svg {
    flex-shrink: 0;
}

.footer-debug__project {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
}

.footer-debug__project-text {
    margin: 0;
    white-space: nowrap;
}

.footer-debug__logo {
    height: 28px;
    width: auto;
}

@media (max-width: 992px) {
    .footer-debug__container {
        flex-direction: column;
        text-align: center;
    }

    .footer-debug__project {
        flex-direction: column;
    }

    .footer-debug__project-text {
        white-space: normal;
    }
}

/* ----- Solicitação de Cota ----- */

.lp-main-content {
    background: var(--lp-purple-800);
}

.container-solicitacao {
    position: relative;
    z-index: 1;

    .lp-solicitacao-title {
        color: var(--lp-neutral-0);
        font-size: 1.15rem;
        font-weight: 500;
        margin-bottom: 2rem;
    }

    .lp-solicitacao-subtitle {
        color: var(--lp-purple-200);
        font-size: 1.75rem;
        font-weight: 600;
        padding: 0 1.5rem;
        margin-bottom: 2rem;
    }

    .lp-form_section::before {
        content: "";
        display: block;
        flex: 1;
        height: 1px;
        background: var(--lp-purple-400);
        opacity: 0.7;
    }

    .lp-form_section {
        color: var(--lp-purple-100);
        font-size: 14px;
        font-weight: 800;
        font-family: 'Open Sans', sans-serif;
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.25rem;
        text-transform: uppercase;
    }

    .lp-form_section::after {
        content: "";
        display: block;
        flex: 55;
        height: 1px;
        background: var(--lp-purple-400);
        opacity: 0.7;
    }

    .form-label {
        font-family: 'Open Sans', sans-serif;
        font-size: 16px;
        font-weight: 400;
        color: var(--lp-neutral-0);
    }

    .form-control {
        color: var(--lp-gray-600);
        font-family: 'Open Sans', sans-serif;
        font-size: 16px;
        font-weight: 400;
    }

    .requiredField {
        color: var(--lp-red-500);
    }

    .field-caption {
        font-size: 14px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 400;
        margin-top: .25rem;
        color: var(--lp-purple-200);
    }

    .lp-input-currency {
        position: relative;
    }

    .lp-input-currency::before {
        content: "R$";
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        font-family: 'Open Sans', sans-serif;
        font-size: 16px;
        font-weight: 500;
        color: var(--lp-gray-600);
        pointer-events: none;
    }

    .lp-input-currency input.form-control {
        padding-left: 36px;
    }

    .btn-enviar-solicitacao {
        background: linear-gradient(315deg, #A370F7 0%, #520DC2 100%);
        color: var(--lp-purple-100);
        border: none;
        padding: .5rem 1.5rem;
        border-radius: 30px;
        font-family: 'Exo', sans-serif;
        font-size: 18px;
        font-weight: 500;
        cursor: pointer;
        transition: background-color 0.2s ease;

        &:hover {
            background: linear-gradient(315deg, #8A5CE6 0%, #450BA8 100%);
            color: var(--lp-neutral-0);
        }
    }
}

.grecaptcha-badge {
    bottom: 60px !important;
}