/* ================================================================
   FLACC 2026 · DESTAQUE PRINCIPAL DA HOME
   Flyer editorial, responsivo e com animações acessíveis
================================================================ */

.flacc-home {
    --flacc-ink: #061827;
    --flacc-navy: #082b42;
    --flacc-deep: #073343;
    --flacc-teal: #0b6f72;
    --flacc-mint: #5fe2d2;
    --flacc-gold: #f2b84b;
    --flacc-gold-soft: #ffd982;
    --flacc-white: #ffffff;

    position: relative;
    z-index: 2;

    padding:
        clamp(18px, 3vw, 38px)
        0
        clamp(20px, 3vw, 42px);

    background:
        radial-gradient(
            circle at 12% 10%,
            rgba(41, 181, 169, 0.09),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #f6fafc 0%,
            #ffffff 100%
        );
}

.flacc-home,
.flacc-home * {
    box-sizing: border-box;
}

.flacc-home-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    border:
        1px solid
        rgba(255, 255, 255, 0.18);

    border-radius:
        clamp(24px, 3vw, 38px);

    background:
        radial-gradient(
            circle at 77% 42%,
            rgba(21, 139, 134, 0.28),
            transparent 30%
        ),
        radial-gradient(
            circle at 12% 88%,
            rgba(8, 100, 112, 0.32),
            transparent 32%
        ),
        linear-gradient(
            128deg,
            #061827 0%,
            #082c43 49%,
            #07535a 100%
        );

    box-shadow:
        0 34px 80px rgba(5, 28, 45, 0.22),
        0 8px 24px rgba(5, 28, 45, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.flacc-home-card::before {
    position: absolute;
    z-index: 8;
    inset: 0;

    border:
        1px solid
        rgba(255, 255, 255, 0.13);

    border-radius: inherit;

    pointer-events: none;
    content: "";
}

.flacc-home-card::after {
    position: absolute;
    z-index: -1;

    right: -14%;
    bottom: -35%;

    width: 62%;
    aspect-ratio: 1;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(41, 201, 188, 0.20),
            transparent 67%
        );

    filter: blur(8px);
    content: "";
}


/* ================================================================
   ATMOSFERA E FUNDO
================================================================ */

.flacc-home-atmosphere,
.flacc-home-atmosphere > span {
    position: absolute;
    pointer-events: none;
}

.flacc-home-atmosphere {
    z-index: -1;
    inset: 0;

    overflow: hidden;
}

.flacc-home-aurora {
    border-radius: 999px;

    filter: blur(2px);
    opacity: 0.72;
}

.flacc-home-aurora-one {
    top: -42%;
    left: -10%;

    width: 58%;
    aspect-ratio: 1.25;

    background:
        radial-gradient(
            circle,
            rgba(57, 213, 197, 0.17),
            transparent 68%
        );

    animation:
        flaccAurora
        12s
        ease-in-out
        infinite
        alternate;
}

.flacc-home-aurora-two {
    right: -9%;
    bottom: -50%;

    width: 61%;
    aspect-ratio: 1;

    background:
        radial-gradient(
            circle,
            rgba(242, 184, 75, 0.12),
            transparent 68%
        );

    animation:
        flaccAurora
        14s
        ease-in-out
        -4s
        infinite
        alternate-reverse;
}

.flacc-home-grid {
    inset: 0;

    opacity: 0.15;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.055) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.055) 1px,
            transparent 1px
        );

    background-size: 48px 48px;

    -webkit-mask-image:
        linear-gradient(
            90deg,
            transparent 5%,
            #000 48%,
            transparent 100%
        );

    mask-image:
        linear-gradient(
            90deg,
            transparent 5%,
            #000 48%,
            transparent 100%
        );
}

.flacc-home-ray {
    top: -80%;
    left: 48%;

    width: 17%;
    height: 250%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.07),
            transparent
        );

    filter: blur(8px);

    transform: rotate(24deg);

    animation:
        flaccRay
        11s
        ease-in-out
        infinite;
}

.flacc-home-particle {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--flacc-gold-soft);

    box-shadow:
        0 0 18px
        rgba(255, 217, 130, 0.80);

    animation:
        flaccParticle
        5s
        ease-in-out
        infinite;
}

.flacc-home-particle-one {
    top: 24%;
    left: 5%;

    animation-delay: -1s;
}

.flacc-home-particle-two {
    top: 74%;
    left: 46%;

    width: 3px;
    height: 3px;

    animation-delay: -3s;
}

.flacc-home-particle-three {
    top: 13%;
    left: 68%;

    width: 4px;
    height: 4px;

    animation-delay: -2s;
}

.flacc-home-particle-four {
    top: 80%;
    right: 4%;

    width: 3px;
    height: 3px;

    animation-delay: -4s;
}

.flacc-home-particle-five {
    top: 48%;
    left: 52%;

    width: 2px;
    height: 2px;

    animation-delay: -2.5s;
}


/* ================================================================
   BARRA SUPERIOR
================================================================ */

.flacc-home-bar {
    position: relative;
    z-index: 3;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 18px;

    min-height: 62px;

    padding:
        14px
        clamp(24px, 4.4vw, 58px);

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.10);

    background:
        rgba(3, 20, 34, 0.28);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.flacc-home-live,
.flacc-home-notice {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    color:
        rgba(255, 255, 255, 0.72);

    font-size: 0.76rem;
    font-weight: 650;

    letter-spacing: 0.025em;
}

.flacc-home-live strong {
    color: #ffffff;

    font-size: 0.75rem;
    font-weight: 850;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.flacc-home-live-dot {
    position: relative;

    width: 8px;
    height: 8px;

    flex: 0 0 8px;

    border-radius: 50%;

    background: #52e294;

    box-shadow:
        0 0 14px
        rgba(82, 226, 148, 0.90);
}

.flacc-home-live-dot::after {
    position: absolute;
    inset: -5px;

    border:
        1px solid
        rgba(82, 226, 148, 0.55);

    border-radius: inherit;

    content: "";

    animation:
        flaccLive
        2s
        ease-out
        infinite;
}

.flacc-home-live-divider {
    width: 1px;
    height: 16px;

    background:
        rgba(255, 255, 255, 0.20);
}

.flacc-home-notice i {
    color: var(--flacc-gold-soft);
}


/* ================================================================
   CONTEÚDO PRINCIPAL
================================================================ */

.flacc-home-content {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(330px, 0.75fr);

    align-items: center;

    gap:
        clamp(36px, 5vw, 76px);

    min-height: 570px;

    padding:
        clamp(42px, 5vw, 72px)
        clamp(24px, 4.4vw, 58px)
        clamp(46px, 5vw, 70px);
}

.flacc-home-copy {
    min-width: 0;
}

.flacc-home-kicker {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 22px;

    padding:
        7px
        13px
        7px
        7px;

    border:
        1px solid
        rgba(255, 255, 255, 0.15);

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.065);

    box-shadow:
        inset 0 1px 0
        rgba(255, 255, 255, 0.10);

    color: var(--flacc-gold-soft);

    font-size: 0.72rem;
    font-weight: 850;

    letter-spacing: 0.105em;
    line-height: 1;
    text-transform: uppercase;

    backdrop-filter: blur(10px);
}

.flacc-home-kicker-icon {
    display: grid;
    place-items: center;

    width: 30px;
    height: 30px;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            var(--flacc-gold-soft),
            var(--flacc-gold)
        );

    box-shadow:
        0 6px 18px
        rgba(242, 184, 75, 0.20);

    color: var(--flacc-ink);

    font-size: 0.78rem;
}

.flacc-home-kicker-divider {
    width: 3px;
    height: 3px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.42);
}

.flacc-home-overline {
    margin: 0 0 10px;

    color: var(--flacc-mint);

    font-size:
        clamp(0.72rem, 1vw, 0.82rem);

    font-weight: 800;

    letter-spacing: 0.115em;
    line-height: 1.45;
    text-transform: uppercase;
}

.flacc-home-title {
    max-width: 760px;

    margin: 0;

    color: #ffffff;

    font-size:
        clamp(3rem, 5.2vw, 5.3rem);

    font-weight: 900;

    letter-spacing: -0.065em;
    line-height: 0.91;

    text-wrap: balance;
}

.flacc-home-title span {
    display: block;

    width: max-content;
    max-width: 100%;

    padding:
        0
        0.05em
        0.08em
        0;

    background:
        linear-gradient(
            105deg,
            #fff3bd 0%,
            #f4bd50 42%,
            #fff0b4 76%,
            #e8a83b 100%
        );

    background-size: 220% auto;

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;

    animation:
        flaccGoldText
        7s
        linear
        infinite;
}

.flacc-home-text {
    max-width: 680px;

    margin: 24px 0 0;

    color:
        rgba(255, 255, 255, 0.76);

    font-size:
        clamp(1rem, 1.3vw, 1.15rem);

    font-weight: 450;
    line-height: 1.72;
}


/* ================================================================
   INFORMAÇÕES
================================================================ */

.flacc-home-meta {
    display: grid;

    grid-template-columns:
        minmax(245px, 1fr)
        minmax(220px, 0.82fr);

    gap: 12px;

    max-width: 680px;

    margin-top: 30px;
}

.flacc-home-meta-item {
    position: relative;

    display: flex;
    align-items: center;

    gap: 12px;

    min-width: 0;

    padding: 13px 15px;

    overflow: hidden;

    border:
        1px solid
        rgba(255, 255, 255, 0.12);

    border-radius: 17px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.09),
            rgba(255, 255, 255, 0.045)
        );

    box-shadow:
        inset 0 1px 0
        rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(12px);
}

.flacc-home-meta-item::after {
    position: absolute;

    top: 0;
    right: 0;

    width: 34%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 217, 130, 0.90)
        );

    content: "";
}

.flacc-home-meta-icon {
    display: grid;
    place-items: center;

    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    border:
        1px solid
        rgba(95, 226, 210, 0.15);

    border-radius: 13px;

    background:
        rgba(41, 190, 177, 0.15);

    color: var(--flacc-mint);

    font-size: 0.92rem;
}

.flacc-home-meta-copy {
    min-width: 0;
}

.flacc-home-meta-copy small,
.flacc-home-meta-copy strong {
    display: block;
}

.flacc-home-meta-copy small {
    margin-bottom: 4px;

    color:
        rgba(255, 255, 255, 0.53);

    font-size: 0.64rem;
    font-weight: 800;

    letter-spacing: 0.095em;
    text-transform: uppercase;
}

.flacc-home-meta-copy strong {
    overflow: hidden;

    color: #ffffff;

    font-size:
        clamp(0.8rem, 1vw, 0.9rem);

    font-weight: 800;

    letter-spacing: 0.01em;
    line-height: 1.35;

    text-overflow: ellipsis;
    white-space: nowrap;
}

.flacc-home-meta-copy strong i {
    margin: 0 7px;

    color: var(--flacc-gold);

    font-size: 0.67rem;
}


/* ================================================================
   BOTÕES
================================================================ */

.flacc-home-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 27px;
}

.flacc-home-btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 54px;

    padding:
        9px
        20px
        9px
        9px;

    overflow: hidden;

    border:
        1px solid
        transparent;

    border-radius: 16px;

    font-size: 0.9rem;
    font-weight: 850;

    line-height: 1.2;
    text-decoration: none;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.flacc-home-btn::after {
    position: absolute;

    top: -60%;
    left: -80%;

    width: 45%;
    height: 220%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.35),
            transparent
        );

    transform: rotate(18deg);

    content: "";

    transition:
        left 0.65s ease;
}

.flacc-home-btn:hover::after {
    left: 135%;
}

.flacc-home-btn:hover {
    transform: translateY(-3px);
}

.flacc-home-btn-icon {
    position: relative;
    z-index: 1;

    display: grid;
    place-items: center;

    width: 36px;
    height: 36px;

    flex: 0 0 36px;

    border-radius: 11px;
}

.flacc-home-btn > span,
.flacc-home-btn > i {
    position: relative;
    z-index: 1;
}

.flacc-home-btn-primary {
    background:
        linear-gradient(
            135deg,
            #ffd777 0%,
            #f2b84b 60%,
            #d99528 100%
        );

    box-shadow:
        0 13px 30px
        rgba(226, 159, 38, 0.25);

    color: #082237;
}

.flacc-home-btn-primary .flacc-home-btn-icon {
    background:
        rgba(7, 31, 47, 0.12);
}

.flacc-home-btn-primary:hover {
    box-shadow:
        0 18px 38px
        rgba(226, 159, 38, 0.35);

    color: #061827;
}

.flacc-home-btn-arrow {
    margin-left: 2px;

    font-size: 0.75rem;

    transition:
        transform 0.25s ease;
}

.flacc-home-btn-primary:hover .flacc-home-btn-arrow {
    transform: translateX(4px);
}

.flacc-home-btn-secondary {
    border-color:
        rgba(255, 255, 255, 0.18);

    background:
        rgba(255, 255, 255, 0.07);

    box-shadow:
        inset 0 1px 0
        rgba(255, 255, 255, 0.09);

    color: #ffffff;

    backdrop-filter: blur(10px);
}

.flacc-home-btn-secondary .flacc-home-btn-icon {
    background:
        rgba(95, 226, 210, 0.12);

    color: var(--flacc-mint);
}

.flacc-home-btn-secondary:hover {
    border-color:
        rgba(95, 226, 210, 0.45);

    background:
        rgba(255, 255, 255, 0.12);

    color: #ffffff;
}

.flacc-home-btn:focus-visible,
.flacc-home-flyer-link:focus-visible {
    outline:
        3px solid
        rgba(255, 217, 130, 0.90);

    outline-offset: 4px;
}

.flacc-home-assurance {
    display: flex;
    flex-wrap: wrap;

    gap:
        10px
        20px;

    margin-top: 20px;

    color:
        rgba(255, 255, 255, 0.57);

    font-size: 0.74rem;
    font-weight: 650;
}

.flacc-home-assurance span {
    display: inline-flex;
    align-items: center;

    gap: 7px;
}

.flacc-home-assurance i {
    color: var(--flacc-mint);
}


/* ================================================================
   PALCO DO FLYER
================================================================ */

.flacc-home-visual {
    position: relative;

    min-width: 0;
}

.flacc-home-stage {
    position: relative;

    display: grid;
    place-items: center;

    min-height: 500px;

    perspective: 1300px;
}

.flacc-home-stage::before {
    position: absolute;
    z-index: -1;

    width: 116%;
    aspect-ratio: 1;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(10, 95, 99, 0.12) 0 35%,
            transparent 36%
        ),
        radial-gradient(
            circle,
            rgba(95, 226, 210, 0.18),
            transparent 61%
        );

    filter: blur(1px);
    content: "";
}

.flacc-home-orbit {
    position: absolute;

    border:
        1px solid
        rgba(255, 255, 255, 0.13);

    border-radius: 50%;

    pointer-events: none;
}

.flacc-home-orbit-one {
    width: 108%;
    aspect-ratio: 1;

    border-right-color:
        rgba(242, 184, 75, 0.55);

    transform: rotate(21deg);

    animation:
        flaccOrbit
        24s
        linear
        infinite;
}

.flacc-home-orbit-two {
    width: 86%;
    aspect-ratio: 1;

    border-bottom-color:
        rgba(95, 226, 210, 0.52);

    transform: rotate(21deg);

    animation:
        flaccOrbit
        20s
        linear
        infinite
        reverse;
}

.flacc-home-stage-word {
    position: absolute;

    right: -23%;
    bottom: 10%;

    color:
        rgba(255, 255, 255, 0.035);

    font-size:
        clamp(3.2rem, 5vw, 5.4rem);

    font-weight: 950;

    letter-spacing: 0.08em;
    line-height: 1;

    transform: rotate(90deg);
    transform-origin: center;

    white-space: nowrap;
}

.flacc-home-flyer-float {
    position: relative;
    z-index: 3;

    width:
        min(100%, 348px);

    animation:
        flaccFlyerFloat
        5.5s
        ease-in-out
        infinite;
}

.flacc-home-flyer-link {
    position: relative;

    display: block;

    width: 100%;

    color: inherit;
    text-decoration: none;
}

.flacc-home-flyer-back {
    position: absolute;
    inset: 0;

    border:
        1px solid
        rgba(255, 255, 255, 0.15);

    border-radius: 26px;

    transition:
        transform
        0.45s
        cubic-bezier(0.2, 0.8, 0.2, 1);
}

.flacc-home-flyer-back-one {
    background:
        linear-gradient(
            150deg,
            rgba(255, 255, 255, 0.12),
            rgba(22, 134, 128, 0.23)
        );

    transform:
        translate(18px, 11px)
        rotate(5deg);
}

.flacc-home-flyer-back-two {
    background:
        linear-gradient(
            150deg,
            rgba(242, 184, 75, 0.18),
            rgba(255, 255, 255, 0.045)
        );

    transform:
        translate(-13px, 10px)
        rotate(-4deg);
}

.flacc-home-flyer {
    position: relative;
    z-index: 3;

    display: flex;
    flex-direction: column;

    min-height: 472px;

    padding:
        23px
        23px
        19px;

    overflow: hidden;

    border:
        1px solid
        rgba(255, 244, 201, 0.52);

    border-radius: 26px;

    background:
        radial-gradient(
            circle at 73% 26%,
            rgba(255, 218, 128, 0.16),
            transparent 24%
        ),
        radial-gradient(
            circle at 14% 74%,
            rgba(64, 217, 197, 0.18),
            transparent 32%
        ),
        linear-gradient(
            151deg,
            #063042 0%,
            #07515b 47%,
            #08283c 100%
        );

    box-shadow:
        0 32px 60px rgba(0, 12, 24, 0.42),
        0 8px 20px rgba(0, 12, 24, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);

    color: #ffffff;

    transform:
        rotateY(-7deg)
        rotateX(2deg)
        rotateZ(1.5deg);

    transform-style: preserve-3d;

    transition:
        transform
        0.5s
        cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow
        0.5s
        ease;
}

.flacc-home-flyer-link:hover .flacc-home-flyer {
    box-shadow:
        0 38px 78px rgba(0, 12, 24, 0.50),
        0 0 42px rgba(242, 184, 75, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);

    transform:
        rotateY(-2deg)
        rotateX(0)
        rotateZ(0)
        translateY(-4px)
        scale(1.015);
}

.flacc-home-flyer-link:hover
.flacc-home-flyer-back-one {
    transform:
        translate(23px, 15px)
        rotate(7deg);
}

.flacc-home-flyer-link:hover
.flacc-home-flyer-back-two {
    transform:
        translate(-18px, 14px)
        rotate(-6deg);
}

.flacc-home-flyer-lines {
    position: absolute;
    inset: 0;

    opacity: 0.18;

    background:
        repeating-radial-gradient(
            circle at 0 100%,
            transparent 0 17px,
            rgba(255, 255, 255, 0.09) 18px 19px
        ),
        linear-gradient(
            125deg,
            transparent 61%,
            rgba(255, 255, 255, 0.08) 61.2%,
            transparent 61.6%
        );

    pointer-events: none;
}

.flacc-home-flyer-shine {
    position: absolute;
    z-index: 7;

    top: -40%;
    left: -100%;

    width: 50%;
    height: 190%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.17),
            transparent
        );

    filter: blur(2px);

    transform: rotate(19deg);

    pointer-events: none;

    animation:
        flaccFlyerShine
        7s
        ease-in-out
        infinite;
}

.flacc-home-flyer-top,
.flacc-home-flyer-edition,
.flacc-home-flyer-logo,
.flacc-home-flyer-book,
.flacc-home-flyer-call,
.flacc-home-flyer-period,
.flacc-home-flyer-footer {
    position: relative;
    z-index: 2;
}

.flacc-home-flyer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 10px;
}

.flacc-home-flyer-brand strong,
.flacc-home-flyer-brand small {
    display: block;
}

.flacc-home-flyer-brand strong {
    color: #ffffff;

    font-size: 0.68rem;
    font-weight: 950;

    letter-spacing: 0.12em;
}

.flacc-home-flyer-brand small {
    margin-top: 2px;

    color:
        rgba(255, 255, 255, 0.55);

    font-size: 0.48rem;
    font-weight: 700;

    letter-spacing: 0.04em;
}

.flacc-home-flyer-status {
    display: inline-flex;
    align-items: center;

    gap: 5px;

    padding: 6px 8px;

    border:
        1px solid
        rgba(82, 226, 148, 0.35);

    border-radius: 999px;

    background:
        rgba(11, 61, 50, 0.55);

    color: #a5f3c8;

    font-size: 0.47rem;
    font-weight: 900;

    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.flacc-home-flyer-status i {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #52e294;

    box-shadow:
        0 0 8px
        rgba(82, 226, 148, 0.90);
}

.flacc-home-flyer-edition {
    position: absolute;

    top: 71px;
    right: 22px;

    display: flex;
    align-items: flex-end;

    gap: 4px;

    color: var(--flacc-gold-soft);
}

.flacc-home-flyer-edition strong {
    font-size: 2.5rem;
    font-weight: 950;

    letter-spacing: -0.08em;
    line-height: 0.73;
}

.flacc-home-flyer-edition sup {
    position: relative;
    top: -0.8em;

    font-size: 0.34em;
}

.flacc-home-flyer-edition span {
    font-size: 0.48rem;
    font-weight: 900;

    letter-spacing: 0.18em;

    writing-mode: vertical-rl;
}

.flacc-home-flyer-logo {
    display: block;

    margin-top: 30px;
}

.flacc-home-flyer-logo > strong {
    display: block;

    width: max-content;

    background:
        linear-gradient(
            105deg,
            #fff7d7,
            #f2b84b 58%,
            #ffe29a
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;

    font-size: 4.15rem;
    font-weight: 950;

    letter-spacing: -0.09em;
    line-height: 0.82;
}

.flacc-home-flyer-logo > span {
    display: block;

    margin-top: 9px;

    color:
        rgba(255, 255, 255, 0.80);

    font-size: 0.63rem;
    font-weight: 760;

    letter-spacing: 0.065em;
    line-height: 1.42;
    text-transform: uppercase;
}

.flacc-home-flyer-book {
    position: absolute;

    top: 153px;
    right: 12px;

    display: grid;
    place-items: center;

    width: 105px;
    height: 105px;
}

.flacc-home-flyer-book-glow {
    position: absolute;

    width: 100%;
    height: 100%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 216, 120, 0.23),
            transparent 68%
        );

    animation:
        flaccBookGlow
        3s
        ease-in-out
        infinite;
}

.flacc-home-flyer-book > i {
    position: relative;
    z-index: 2;

    color: var(--flacc-gold-soft);

    font-size: 2.8rem;

    filter:
        drop-shadow(
            0 8px 16px
            rgba(0, 0, 0, 0.24)
        );
}

.flacc-home-flyer-page {
    position: absolute;

    top: 9px;
    left: 50%;

    width: 2px;
    height: 28px;

    border-radius: 999px;

    background:
        linear-gradient(
            var(--flacc-gold-soft),
            transparent
        );

    transform-origin:
        50%
        44px;

    animation:
        flaccPage
        3.4s
        ease-in-out
        infinite;
}

.flacc-home-flyer-page-one {
    transform: rotate(-32deg);
    animation-delay: -0.4s;
}

.flacc-home-flyer-page-two {
    transform: rotate(0);
    animation-delay: -1.1s;
}

.flacc-home-flyer-page-three {
    transform: rotate(32deg);
    animation-delay: -1.8s;
}

.flacc-home-flyer-call {
    display: block;

    width: 72%;

    margin-top: 64px;
    padding-left: 12px;

    border-left:
        3px solid
        var(--flacc-gold);
}

.flacc-home-flyer-call small,
.flacc-home-flyer-call strong,
.flacc-home-flyer-call span {
    display: block;
}

.flacc-home-flyer-call small {
    color: var(--flacc-mint);

    font-size: 0.51rem;
    font-weight: 900;

    letter-spacing: 0.18em;
}

.flacc-home-flyer-call strong {
    margin-top: 3px;

    color: #ffffff;

    font-size: 1.48rem;
    font-weight: 950;

    letter-spacing: -0.045em;
    line-height: 1;
}

.flacc-home-flyer-call span {
    margin-top: 6px;

    color:
        rgba(255, 255, 255, 0.58);

    font-size: 0.5rem;
    font-weight: 700;
}

.flacc-home-flyer-period {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 12px;

    margin-top: 20px;
    padding: 12px 13px;

    border:
        1px solid
        rgba(255, 255, 255, 0.13);

    border-radius: 13px;

    background:
        rgba(3, 22, 36, 0.34);
}

.flacc-home-flyer-period small {
    color:
        rgba(255, 255, 255, 0.55);

    font-size: 0.45rem;
    font-weight: 850;

    letter-spacing: 0.11em;
}

.flacc-home-flyer-period strong {
    display: flex;
    align-items: center;

    gap: 7px;

    color: var(--flacc-gold-soft);

    font-size: 0.72rem;
    font-weight: 950;

    letter-spacing: 0.035em;
}

.flacc-home-flyer-period i {
    width: 17px;
    height: 1px;

    background:
        rgba(255, 255, 255, 0.35);
}

.flacc-home-flyer-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    margin-top: auto;
    padding-top: 15px;

    color:
        rgba(255, 255, 255, 0.68);

    font-size: 0.53rem;
    font-weight: 750;
}

.flacc-home-flyer-footer > span:first-child {
    display: inline-flex;
    align-items: center;

    gap: 5px;
}

.flacc-home-flyer-footer > span:first-child i {
    color: var(--flacc-mint);
}

.flacc-home-flyer-cta {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    padding: 7px 9px;

    border-radius: 8px;

    background: var(--flacc-gold);
    color: var(--flacc-ink);

    font-size: 0.52rem;
    font-weight: 950;

    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.flacc-home-flyer-caption {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    margin: 14px 0 0;

    color:
        rgba(255, 255, 255, 0.50);

    font-size: 0.68rem;
    font-weight: 700;

    letter-spacing: 0.025em;
}

.flacc-home-flyer-caption i {
    color: var(--flacc-gold-soft);
}

.flacc-home-spark {
    position: absolute;
    z-index: 5;

    display: grid;
    place-items: center;

    color: var(--flacc-gold-soft);

    filter:
        drop-shadow(
            0 0 8px
            rgba(255, 217, 130, 0.55)
        );

    pointer-events: none;

    animation:
        flaccSpark
        4s
        ease-in-out
        infinite;
}

.flacc-home-spark-one {
    top: 9%;
    left: 1%;

    font-size: 0.75rem;
}

.flacc-home-spark-two {
    top: 26%;
    right: -2%;

    font-size: 0.9rem;

    animation-delay: -1.3s;
}

.flacc-home-spark-three {
    bottom: 16%;
    left: -2%;

    font-size: 0.4rem;

    animation-delay: -2.4s;
}


/* ================================================================
   ANIMAÇÕES
================================================================ */

@keyframes flaccAurora {
    0% {
        opacity: 0.48;

        transform:
            translate3d(-2%, -2%, 0)
            scale(0.96);
    }

    100% {
        opacity: 0.82;

        transform:
            translate3d(5%, 4%, 0)
            scale(1.08);
    }
}

@keyframes flaccRay {
    0%,
    100% {
        opacity: 0.22;

        transform:
            translateX(-80%)
            rotate(24deg);
    }

    50% {
        opacity: 0.55;

        transform:
            translateX(130%)
            rotate(24deg);
    }
}

@keyframes flaccParticle {
    0%,
    100% {
        opacity: 0.25;

        transform:
            translateY(0)
            scale(0.72);
    }

    50% {
        opacity: 1;

        transform:
            translateY(-14px)
            scale(1);
    }
}

@keyframes flaccLive {
    0% {
        opacity: 0.85;
        transform: scale(0.5);
    }

    100% {
        opacity: 0;
        transform: scale(1.6);
    }
}

@keyframes flaccGoldText {
    to {
        background-position:
            220%
            center;
    }
}

@keyframes flaccOrbit {
    to {
        transform: rotate(381deg);
    }
}

@keyframes flaccFlyerFloat {
    0%,
    100% {
        transform:
            translate3d(0, 0, 0);
    }

    50% {
        transform:
            translate3d(0, -12px, 0);
    }
}

@keyframes flaccFlyerShine {
    0%,
    18% {
        left: -100%;
    }

    46%,
    100% {
        left: 165%;
    }
}

@keyframes flaccBookGlow {
    0%,
    100% {
        opacity: 0.55;
        transform: scale(0.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

@keyframes flaccPage {
    0%,
    100% {
        opacity: 0.25;
        height: 22px;
    }

    50% {
        opacity: 1;
        height: 33px;
    }
}

@keyframes flaccSpark {
    0%,
    100% {
        opacity: 0.35;

        transform:
            rotate(0deg)
            scale(0.75);
    }

    50% {
        opacity: 1;

        transform:
            rotate(90deg)
            scale(1.15);
    }
}


/* ================================================================
   RESPONSIVIDADE
================================================================ */

@media (max-width: 1199.98px) {

    .flacc-home-content {
        grid-template-columns:
            minmax(0, 1.15fr)
            minmax(300px, 0.7fr);

        gap: 34px;
    }

    .flacc-home-title {
        font-size:
            clamp(3rem, 5vw, 4.4rem);
    }

    .flacc-home-flyer-float {
        width:
            min(100%, 322px);
    }

    .flacc-home-flyer {
        min-height: 450px;
    }

}


@media (max-width: 991.98px) {

    .flacc-home-content {
        grid-template-columns: 1fr;

        gap: 48px;

        min-height: 0;
    }

    .flacc-home-copy {
        text-align: center;
    }

    .flacc-home-kicker,
    .flacc-home-title span {
        margin-right: auto;
        margin-left: auto;
    }

    .flacc-home-text,
    .flacc-home-meta {
        margin-right: auto;
        margin-left: auto;
    }

    .flacc-home-actions,
    .flacc-home-assurance {
        justify-content: center;
    }

    .flacc-home-stage {
        min-height: 520px;
    }

    .flacc-home-stage::before {
        width:
            min(560px, 110%);
    }

    .flacc-home-flyer-float {
        width:
            min(84vw, 350px);
    }

    .flacc-home-stage-word {
        right: 50%;
        bottom: 42%;

        font-size:
            clamp(4.5rem, 13vw, 8rem);

        transform:
            translate(50%, 50%);
    }

}


@media (max-width: 767.98px) {

    .flacc-home {
        padding:
            14px
            0
            28px;
    }

    .flacc-home-card {
        border-radius: 26px;
    }

    .flacc-home-bar {
        align-items: flex-start;

        padding:
            14px
            20px;

        flex-direction: column;

        gap: 7px;
    }

    .flacc-home-notice {
        padding-left: 17px;
    }

    .flacc-home-content {
        gap: 38px;

        padding:
            38px
            20px
            42px;
    }

    .flacc-home-title {
        font-size:
            clamp(2.75rem, 13vw, 4rem);

        line-height: 0.94;
    }

    .flacc-home-overline {
        font-size: 0.68rem;
    }

    .flacc-home-text {
        margin-top: 20px;

        font-size: 0.96rem;
        line-height: 1.65;
    }

    .flacc-home-meta {
        grid-template-columns: 1fr;

        margin-top: 25px;
    }

    .flacc-home-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .flacc-home-btn {
        width: 100%;
    }

    .flacc-home-assurance {
        align-items: center;
        flex-direction: column;
    }

    .flacc-home-stage {
        min-height: 485px;
    }

    .flacc-home-flyer {
        min-height: 444px;

        padding:
            20px
            20px
            17px;

        border-radius: 23px;

        transform:
            rotateY(-4deg)
            rotateZ(1deg);
    }

    .flacc-home-flyer-back {
        border-radius: 23px;
    }

    .flacc-home-flyer-logo > strong {
        font-size:
            clamp(3.65rem, 19vw, 4.15rem);
    }

}


@media (max-width: 419.98px) {

    .flacc-home .container {
        padding-right: 12px;
        padding-left: 12px;
    }

    .flacc-home-live-divider,
    .flacc-home-live > span:last-child {
        display: none;
    }

    .flacc-home-kicker {
        gap: 8px;

        font-size: 0.64rem;
    }

    .flacc-home-content {
        padding-right: 16px;
        padding-left: 16px;
    }

    .flacc-home-meta-copy strong {
        font-size: 0.78rem;
    }

    .flacc-home-flyer-float {
        width:
            min(82vw, 310px);
    }

    .flacc-home-flyer {
        min-height: 420px;

        padding:
            18px
            18px
            15px;
    }

    .flacc-home-flyer-edition {
        top: 65px;
        right: 18px;
    }

    .flacc-home-flyer-logo {
        margin-top: 27px;
    }

    .flacc-home-flyer-logo > strong {
        font-size: 3.45rem;
    }

    .flacc-home-flyer-book {
        top: 143px;
        right: 6px;
    }

    .flacc-home-flyer-call {
        margin-top: 57px;
    }

    .flacc-home-flyer-period {
        padding: 10px;
    }

}


/* ================================================================
   ACESSIBILIDADE
================================================================ */

@media (prefers-reduced-motion: reduce) {

    .flacc-home *,
    .flacc-home *::before,
    .flacc-home *::after {
        scroll-behavior: auto !important;

        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }

}