* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --text-title: #f8fbfb;
    --text-body: #e2e7e9;
    --text-label: #bac6c9;

    --shape-background: #00050a;
    --shape-base: #000f1f;
    --shape-hover: #001933;
    --shape-stroke: #002347;

    --blue-dark: #144a72;
    --blue-mid: #2374a4;
    --blue-ligth: #73b6d2;
    --pink-low: #3f0f41;
    --pink-dark: #7d298a;
    --pink-base: #9547a5;

    --ff: "Raleway", sans-serif;
    --title-lg: 700 3rem var(--ff);
    --title-md: 700 2.5rem var(--ff);
    --title-Sx: 700 1rem var(--ff);
    --subtitle: 500 2rem/200% var(--ff);
    --body-lg: 400 1.25rem/140% var(--ff);
    --body-md: 400 1rem/140% var(--ff);
}

/* GLOBAL */

body {
    font: 400 0.875rem/140% var(--ff);
    color: var(--text-body);
    background-color: var(--shape-background);
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
}

button {
    appearance: none;
    border: none;
    outline: none;
    font: 700 0.875rem var(--ff);
    color: var(--text-title);
    border-radius: .5rem;
    cursor: pointer;
}

img {
    width: 100%;
}

a {
    text-decoration: none;
    color: var(--blue-ligth);
    font: 500 0.875rem var(--ff);
}

/* HERO - NAV and First animation book */ 

#hero {
    width: 100%;
    max-width: 90rem;
    height: 46.6875rem;
    margin-inline: auto;
    position: relative;
}

#hero nav {
    width: 100%;
    max-width: 70rem;
    margin-inline: auto;
    padding-top: 1.25rem;
    padding-inline: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#hero nav .logo-image {
    width: 4.034375rem;
    height: 3rem;
    background: url(../assets/images/hero-01/logo-symbol.svg) no-repeat center/cover;
}

#hero nav button {
    width: 5.5625rem;
    height: 2.5rem;
    background-color: var(--pink-dark);
}

#hero nav button:hover {
    background-image: radial-gradient(var(--pink-base)10%, var(--pink-dark));
}

/* header */

#hero header {
    max-width: 20.9375rem;
    text-align: center;
    margin-inline: auto;
    margin-top: 2.5rem;
}

#hero header h1 {
    padding-inline: 1rem;
    color: var(--text-title);
    font: 700 1.75rem var(--ff);
    margin-bottom: 1rem;
}

#hero header span {
    font: 400 0.875rem var(--ff);
}

/* HERO-1 - animation */
/* Image */
#hero .hero-background {
    width: 100%;
    max-width: 90rem;
    height: 29rem;
    margin-inline: auto;
    
    position: absolute;
    left: 0%;
    right: 0%;
    top: 0%;
    bottom: 0%;
    z-index: -1;
    background: url(../assets/images/hero-01/hero-background.png) no-repeat center/cover;
}

#hero .hero-background > div {
    width: 100%;
    max-width: 90rem;
    height: 29rem;
    margin-inline: auto;
    background: linear-gradient(180deg, rgba(0, 5, 10, 0) 0%, rgba(0, 5, 10, 0) 100%);
}


/* BLUR - ELLIPSES */
#hero .blur-container {
    width: 49.62rem;
    height: 29.9375rem;

    position: absolute;
    left: calc(50% - 793.92px/2 + 0px);
    top: calc(50% - 479px/2 + 112px);
}

#hero .blur-container div {
    background-color: var(--pink-low);
}

/* Ellipse 1 */
#hero .blur-container .ellipse-1 {
    width: 12.6825rem;
    height: 12.6825rem;
    filter: blur(138.038px);

    /*position: absolute;*/
    right: -209.46px;
    top: 393.13px;
}

/* Ellipse 2 */
#hero .blur-container .ellipse-2 {
    width: 9.7125rem;
    height: 9.7125rem;
    filter: blur(104.975px);

    /*position: absolute;*/
    left: -209.46px;
    top: 298.9px;
}

/* Ellipse 3 */
#hero .blur-container .ellipse-3 {
    width: 13.896875rem;
    height: 13.896875rem;
    filter: blur(179.367px);

    /*position: absolute;*/
    left: calc(50% - 222.35px/2 - 82.86px);
    top: 502.65px;
}

/* Ellipse 4 */
#hero .blur-container .ellipse-4 {
    width: 6.225rem;
    height: 6.225rem;
    filter: blur(96.7092px);

    /*position: absolute;*/
    right: -157.8px;
    top: 246px;
}


/* HERO 1 - ICONS CONTAINER */
#hero .icons-container {
    max-width: 23.4375rem;
    height: 15.6875rem;
    margin-inline: auto;

    position: absolute;
    left: 0px;
    right: 0px;
    top: 496px;
}

#hero .icons-container > div {
    width: 20.9375rem;
    height: 5.5rem;
    margin-inline: auto;
    text-align: center;
    font: 500 1rem/140% var(--ff);

    position: absolute;
    left: calc(50% - 335px/2);
    top: calc(50% - 88px/2 + 0.16px);
}

/* opened-spellbook  */
#hero .icons-container .icon-01 {
    width: 2.5rem;
    height: 2.5rem; 

    position: absolute;
    left: calc(50% - 40px/2 + 94.85px);
    top: calc(50% - 40px/2 - 77.5px);
    transform: rotate(15deg);
}

/* ouija-planchette  */
#hero .icons-container .icon-02 {
    width: 2rem;
    height: 2rem;

    position: absolute;
    left: calc(50% - 32px/2 - 157.5px);
    top: calc(50% - 32px/2 + 63.5px);
    transform: rotate(-30deg);
}

/* crystal-ball  */
#hero .icons-container .icon-03 {
    width: 2.5rem;
    height: 2.5rem;

    position: absolute;
    left: calc(50% - 40px/2 + 148.5px);
    top: calc(50% - 40px/2 + 64.5px);
    transform: rotate(15deg);
}
/* -------------------------- */

/* SECTION KIT-BOOK AND GIFT */

.kit-book {
    max-width: 23.4375rem;
    height: 39.4375rem;
    margin-inline: auto;
    text-align: center;
    padding-top: 5.5rem;

    position: relative;
}

.kit-book .title-container {
    margin-bottom: 4rem;
}

.kit-book .title-inner img {
    width: 3rem;
    height: 3rem;
}

.kit-book .title-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.kit-book .title-inner h2 {
    font: 700 1.5rem var(--ff);
    color: var(--text-title);
}

.kit-book .ellipse-5 {
    position: absolute;
    width: 18.625rem;
    height: 18.625rem;
    left: calc(50% - 298px/2 + 0.5px);
    top: calc(50% - 298px/2 - 7.5px);

    background: var(--pink-low);
    opacity: 0.5;
    filter: blur(103.226px);
    z-index: -3;
}

/* BOOK - CONTAINER */
.kit-book .book-container {
    max-width: 23.4375rem;
    height: 19.9375rem;
    padding-inline: 1rem;
    position: relative;
}

/* BOOK IMAGE */
.kit-book .book-container img:nth-child(1) {
    max-width: 9.824375rem;
    height: 12.98rem;

    position: absolute;
    left: calc(50% - 147.19px/2 - 21.04px);
    top: calc(50% - 207.68px/2 - 1.89px);
}

/* MARCADOR YELLOW IMAGE  */
.kit-book .book-container img:nth-child(2) {
    max-width: 3.65rem;
    height: 11.3075rem;

    position: absolute;
    left: 229.86px;
    top: 28.03px;
    z-index: -1;
    filter: drop-shadow(0.673184px 1.34637px 6.73184px rgba(0, 0, 0, 0.25));
    border-radius: 1.34637px;
    transform: rotate(12deg);
}

/* MARCADOR PINK IMAGE  */
.kit-book .book-container img:nth-child(3) {
    max-width: 3.618125rem;
    height: 11.275625rem;

    position: absolute;
    left: 265.12px;
    top: 58px;
    z-index: -2;
    filter: drop-shadow(0.673184px 1.34637px 6.73184px rgba(0, 0, 0, 0.25));
    border-radius: 1.34637px;
    transform: rotate(20deg); 
}

/* BROCHE IMAGE */
.kit-book .book-container img:nth-child(4) {
    max-width: 4.680625rem;
    height: 5.3375rem;

    position: absolute;
    left: 43.5px;
    top: 210.56px;
    transform: rotate(-7.55deg);
    z-index: -1;
}

/* Vector */
.book-container img[src*="top"] {
    width: 3.67125rem;
    height: 0.63125rem;

    position: absolute;
    left: 50.5px;
    top: 48.09px;
}

.book-container img[src*="center"] {
    width: 2.205625rem;
    height: 2.674875rem;

    position: absolute;
    left: 29px;
    top: 186.51px;
}

.book-container img[src*="bottom"] {
    width: 48.96px;
    height: 50.99px;

    position: absolute;
    left: 255.63px;
    top: 225.81px;
}

.book-container span {
    font-size: 0.625rem;
    line-height: 0.75rem;
}

/* Livro em capa dura */
.book-container span.top {
    position: absolute;
    left: 16px;
    top: 24.77px;
}

/* Broche exclusivo */
.book-container span.center {
    position: absolute;
    left: 13.12px;
    top: 162.36px;
}

/* Marca páginas temático */
.book-container span.bottom {
    position: absolute;
    left: 207.58px;
    top: 283.69px;
}
/* -------------------------- */


/* PRICING-TABLE + CARDS */
.pricing {
    max-width: 23.4375rem;
    height: 44.5rem;
    margin-inline: auto;
}

.pricing h2 {
    text-align: center;
    margin-block: 6.5rem 3rem;
    font: 700 1.5rem var(--ff);
}

.pricing-table {
    display: flex;
  
    align-items: center;
    gap: 1rem;
    padding-inline: 1rem;
}

.pricing-table .monthly .stars,
.pricing-table .annual .stars {
    display: none;
}

/* CONFIGURAÇÃO GERAL DOS CARTÕES */
.pricing-table .price-card {
    width: 100%;
    max-width: 17rem;
    height: 25rem;
    padding: 1.5rem 1rem;
    margin-inline: auto;
    background-color: var(--shape-base);
    border: 2px solid var(--shape-stroke);
    border-radius: 1.5rem; 
    flex: 0 0 auto; /* Impede que os cards encolham */
}

.pricing-table .price-card:hover {
    background-color: var(--shape-hover);
    z-index: 2;
    box-shadow: 0 0 20px rgba(226, 231, 233, 0.199); /* Efeito de brilho */
    transition: box-shadow 300ms ease;
}

.pricing-table .price-card > div {
    height: 21.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-table .price-card header {
    width: 14rem;
    margin-inline: auto;
}

.pricing-table .price-card h3 {
    font: var(--title-Sx);
    margin-bottom: 1.5rem;
    color: var(--blue-ligth);
}

.pricing-table .half-year h3 {
    color: #c59dd2;
}

.pricing-table .price p:nth-child(1) {
    font: var(--title-md);
    margin-bottom: .5rem;
}

.pricing-table .price p:nth-child(1) span {
    font: var(--title-Sx);
}

/* HALF-YEAR - CONFIGURAÇÃO DO CARTÃO SEMESTRAL */

/* CONFIGURAÇÃO DO BUNNY-IMG */
.pricing-table .half-year {
    position: relative;
}

/* Bunny */
.pricing-table .half-year > img {
    position: absolute;
    width: 2.815625rem;
    height: 3.120625rem;
    left: 32px;
    top: -50.19px;
    display: none;
}

/* CONFIGURAÇÃO DA TAG DE DESTAQUE NO HEADLINE DO CARTÃO SEMESTRAL */
.pricing-table .half-year .tag {
    width: 5.625rem;
    height: 1.875rem;
    padding: 0.5625rem 1.25rem;
    border-radius: 62.4375rem;

    font: 700 0.625rem var(--ff);
    letter-spacing: 5%;
    background-color: var(--shape-stroke);

    position: absolute;
    right: 24.43px;
    top: 23.91px;
}

/* Details - CONFIGURAÇÃO GERAL DOS BÔNUS DE CADA PLANO */
.pricing-table .details {
    font: 300 0.75rem/140% var(--ff);
    width: 15rem;
    height: auto;
    margin-inline: auto;
    
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
}

.pricing-table .details ul li {
    font: 300 0.75rem/140% var(--ff);
    display: flex;
    align-items: center;
}

.pricing-table .details ul li img {
    width: 2.2rem;
    height: 2.2rem;
}

.pricing-table .details .subscribe-btn {
    width: 13rem;
    height: 2.5rem;
    background-color: var(--blue-dark);
    margin-inline: auto;
}

.pricing-table .details .subscribe-btn:hover {
    background-color: var(--blue-mid);
}

.pricing-table .half-year .details button {
    background-color: var(--pink-dark);
}

.pricing-table .half-year .details button:hover {
    background-color: var(--pink-base);
}

/* ------------------------- */


/* FOOTER */
footer {
    position: relative;
}

footer .links-container {
    max-width: 19.4375rem;
    height: 17.4375rem;
    margin-inline: auto;

    padding-top: 6rem;
}

footer .links-container .social-links {
    max-width: 19.4375rem;
    height: 6.5rem;
    text-align: center;
}

footer div > img {
    max-width: 9.91375rem;
    height: 2.5rem;
    margin-bottom: .75rem;
}

.social-links nav {
    border-top: 1px solid var(--shape-stroke);
    padding-top: 0.75rem;

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

.social-links nav a {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5rem;
    position: relative;
    z-index: 2;
}

nav a:hover::before {
    scale: 1;
}

nav a::before {
    content: "";

    width: inherit;
    height: inherit;
    border-radius: inherit;
    background-color: var(--shape-stroke);
    
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    scale: 0;
    transition: scale 200ms ease;
}

.social-links nav a > span {
    width: 1.5rem;
    height: 1.5rem;
}

nav a:nth-child(1) span {
    background: url(../assets/icons/instagram-default.svg) no-repeat center/cover;
}

nav a:nth-child(1):hover span {
    background: url(../assets/icons/instagram.svg) no-repeat center/cover;
}

nav a:nth-child(2) span {
    background: url(../assets/icons/twitter-default.svg) no-repeat center/cover;
}

nav a:nth-child(2):hover span {
    background: url(../assets/icons/twitter.svg) no-repeat center/cover;
}

nav a:nth-child(3) span {
    background: url(../assets/icons/facebook-default.svg) no-repeat center/cover;
}

nav a:nth-child(3):hover span {
    background: url(../assets/icons/facebook.svg) no-repeat center/cover;
}

nav a:nth-child(4) span {
    background: url(../assets/icons/discord-default.svg) no-repeat center/cover;
}

nav a:nth-child(4):hover span {
    background: url(../assets/icons/discord.svg) no-repeat center/cover;
}

nav a:nth-child(5) span {
    background: url(../assets/icons/whatsapp-default.svg) no-repeat center/cover;
}

nav a:nth-child(5):hover span {
    background: url(../assets/icons/whatsapp.svg) no-repeat center/cover;
}

nav a:nth-child(6) span {
    background: url(../assets/icons/mail-default.svg) no-repeat center/cover;
}

nav a:nth-child(6):hover span {
    background: url(../assets/icons/mail.svg) no-repeat center/cover;
}

footer .nav-wrapper {
    margin-top: 2.5rem;
    display: flex;
    gap: 1.5rem;
}

footer .nav-wrapper h3 {
    font: var(--title-Sx);
    margin-bottom: 1.25rem;
}

footer .nav-wrapper a {
    padding-block: 0.25rem;
}

footer .nav-wrapper a:hover {
    color: var(--text-body);
}

footer .nav-wrapper .content-links,
footer .nav-wrapper .help-links {
    width: 8.9375rem;
    height: 8.4375rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

footer .nav-wrapper .content-links nav,
footer .nav-wrapper .help-links nav {
    width: 8.9375rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

/* MEDIA ATÉ 375px */
@media (width <= 23.4375em) {
    footer {
        max-width: 23.4375rem;
        height: 25.9375rem;
        margin-inline: auto;
        background: url(../assets/images/hero-01/footer-bg-sm.svg) no-repeat center/cover;
    } 
}

@media (width > 23.4375em) {
    footer {
        max-width: 90rem;
        height: 25.9375rem;
        margin-inline: auto;
        background: url(../assets/images/hero-01/book-trace-bg.svg) no-repeat center/cover;
    } 
}

/* MEDIA ATÉ 950px */
@media (width < 59.375em) {
    .pricing-table {
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    .pricing-table::-webkit-scrollbar {
        display: none; /* Esconde a barra no Chrome/Safari */
    }   
}


/* MEDIA ACIMA DE 950px */

@media (width > 59.375em ) {
    #hero header {
        max-width: 41rem;
        text-align: center;
        margin-inline: auto;
        margin-top: 5rem;
    }
    
    #hero header h1 {
        color: var(--text-title);
        font: var(--title-lg);
        margin-bottom: 2rem;
    }
    
    #hero header span {
        display: inline-block;
        max-width: 35.5rem;
        padding-inline: 1.5rem;
        font: 400 1.25rem/140% var(--ff);
    }

    .pricing .half-year img {
        display: block;
    }

    footer .links-container {
        max-width: 58rem;
        height: auto;
        display: flex;
        margin-inline: auto;
        justify-content: space-between;
        align-items: center;
        padding: 8.5rem 2rem 0rem 2rem;

    }

    footer div > img {
        max-width: 16.5rem;
        height: 4.160625rem;
    }
}


/* MEDIA 950px ate 1280px */

@media (59.375em < width < 80em) {
    #hero .hero-background {
        height: auto;
        margin-inline: auto;
    }

     /* HERO 1 - ICONS CONTAINER */
     #hero .icons-container {
        max-width: 75rem;
        height: 25rem;

        position: absolute;
        top: 840px;
    }

    #hero .icons-container > div {
        width: 62rem;
        font: 500 2rem/140% var(--ff);

        position: absolute;
        left: calc(50% - 950px/2);
        top: 114px;
    }

    #hero .icons-container h2 {
        width: 62rem;
        font: 500 2rem/140% var(--ff);

        position: absolute;
        left: calc(50% - 950px/2);
        top: 114px;
    }

    /* Speelbook */
    #hero .icons-container .icon-01 {
        width: 5.5rem;
        height: 5.5rem;

        position: absolute;
        left: calc(50% - 88px/2 + 4.19px);
        top: calc(50% - 88px/2 - 147.74px);
    }

    /* Ouija Planchette */
    #hero .icons-container .icon-02 {
        width: 5rem;
        height: 5rem;

        position: absolute;
        left: calc(50% - 80px/2 - 400px);
        top: calc(50% - 80px/2 + 89.13px);
    }

    /* Crystal Ball */
    #hero .icons-container .icon-03 {
        width: 4.5rem;
        height: 4.5rem;
        
        position: absolute;
        left: calc(50% - 72px/2 + 420px);
        top: calc(50% - 72px/2 + 90.15px);
    }

    .kit-book {
        max-width: 62rem;
        height: 71.125rem;
        margin-top: 35rem;
    }  

    .kit-book .title-inner h2 {
        font: 700 2rem var(--ff);
    }

    .kit-book .title-inner p {
        font: var(--body-md);
    }

    .kit-book .ellipse-5 {
        position: absolute;
        width: 48.125rem;
        height: 48.125rem;
        left: calc(50% - 930px/2 + 60px);
        top: calc(50% - 930px/2 + 150px);
    
        background: var(--pink-low);
        opacity: 0.5;
        filter: blur(300px);
    }

    .kit-book .book-container {
        max-width: 62rem;
        height: 57.5rem;
        position: relative;
    }
    
    .kit-book .book-container img:nth-child(1) {
        max-width: 27.1875rem;
        height: 36.5625rem;

        position: absolute;
        left: calc(50% - 467px/2 - 13.5px);
        top: calc(50% - 617px/2 - 17.5px);
        z-index: 2;
    }

    .kit-book .book-container img:nth-child(2) {
        max-width: 10.75rem;
        height: 33.5rem;

        position: absolute;
        left: 625.75px;
        top: 46px;

        border-radius: 8px;
        transform: rotate(12deg);
    }

    .kit-book .book-container img:nth-child(3) {
        max-width: 10.75rem;
        height: 33.5rem;

        position: absolute;
        left: 726.99px;
        top: 140.16px;

        border-radius: .5rem;
        transform: rotate(19.2deg);
    }

    .kit-book .book-container img:nth-child(4) {
        max-width: 13.875rem;
        height: 15.875rem;

        position: absolute;
        left: 100px;
        top: 560px;
        transform: rotate(-8deg);
    }

    /* Vector */
    .book-container img[src*="top"] {
        width: 10rem;
        height: 1.7rem;

        position: absolute;
        left: 8.5625rem;
        top: 115.5px;
    }

    .book-container img[src*="center"] {
        width: 6rem;
        height: 6.5rem;

        position: absolute;
        left: 3.5rem;
        top: 510px;
    }

    .book-container img[src*="bottom"] {
        width: 8.090625rem;
        height: 8.46875rem;

        position: absolute;
        left: 44.75rem;
        top: 639px;
    }

    .book-container span {
        font: var(--body-md);
        color: var(--text-title);
    }

    /* Livro em capa dura */
    .book-container span.top {
        position: absolute;
        left: 4.8rem;
        top: 70px;
    }

    /* Broche exclusivo */
    .book-container span.center {
        position: absolute;
        left: 2.625rem;
        top: 460px;
    }

    /* Marca páginas temático */
    .book-container span.bottom {
        position: absolute;
        left: 38.75rem;
        top: 796px;
    }


     /* PRICING-TABLE + CARDS */
     .pricing {
        max-width: 62rem;
        height: 52rem;
        padding-inline: 2rem;
        position: relative;
    }

    /* POSIÇÕES DOS CARTÕES DE PLANOS */
    /* Semestral */
    .pricing-table .half-year {
        position: absolute;
        left: calc(50% - 288px/2 + 0.43px);
        top: calc(50% - 216px/2 - 12.91px);
    }

    /* Mensal */
    .pricing-table .monthly {
        position: absolute;
        left: calc(50% - 288px/2 - 317px);
        top: calc(50% - 216px/2 + 26px);
    }

    /* Anual */
    .pricing-table .annual {
        position: absolute;
        left: calc(50% - 288px/2 + 319.67px);
        top: calc(50% - 216px/2 + 26px);
    }
}


/* MEDIA ACIMA DE 1280px */

@media (width >= 80em) {
    #hero {
        height: 95.25rem;
    }

    #hero nav {
        padding-top: 2.5rem;
    }

    #hero nav .logo-image {
        width: 14.375rem;
        height: 3.625rem;
        background: url(../assets/images/hero-01/logo-horizontal.svg) no-repeat center/cover;
    }
    
    #hero .hero-background > div {
        width: 90rem;
        height: 59.25rem;
        margin-inline: auto;
        background: linear-gradient(180deg, rgba(0, 5, 10, 0) 0%, rgba(0, 5, 10, 0) 100%);
    }

    /* HERO-1 - animation */

    /* header - desktop */
    #hero header h1 {
        opacity: 0;
        animation: apper 3s 350ms both;
    }

    #hero header span {
        opacity: 0;
        animation: apper 3s 1s both;
    }

    /* Image */
    #hero .hero-background {
        width: 90rem;
        height: 59.25rem;
        margin-inline: auto;
        opacity: 0;
        animation: apper 4s .5ms both;
    }

    @keyframes apper {
        to {
            opacity: 1;
        }
    }

    /* BLUR - ELLIPSES - DESKTOP */

    #hero .blur-container {
        width: 120.0625rem;
        height: 72.4375rem;
        left: -259px;
        top: 366px;
    }

    /* Ellipse 1 */
    #hero .blur-container .ellipse-1 {
        width: 30.6875rem;
        height: 30.6875rem;
        filter: blur(334px);

        position: absolute;
        left: calc(50% - 491px/2 + 696.5px);
        top: 330px;
    }

    /* Ellipse 2 */
    #hero .blur-container .ellipse-2 {
        width: 23.5rem;
        height: 23.5rem;
        filter: blur(254px);

        position: absolute;
        left: calc(50% - 376px/2 - 791px);
        top: 264px;
    }

    /* Ellipse 3 */
    #hero .blur-container .ellipse-3 {
        width: 33.625rem;
        height: 33.625rem;
        filter: blur(434px);

        position: absolute;
        left: calc(50% - 538px/2 - 219px);
        top: 587px;
    }

    /* Ellipse 4 */
    #hero .blur-container .ellipse-4 {
        width: 15.0625rem;
        height: 15.0625rem;
        filter: blur(234px);

        position: absolute;
        left: calc(50% - 241px/2 + 696.5px);
        top: 26px;
    }

    /* HERO 1 - ICONS CONTAINER */
    #hero .icons-container {
        max-width: 75rem;
        height: 25rem;

        position: absolute;
        top: calc(50% - 88px/2 + 325px);

        will-change: transform, opacity; /* Hint to browser for optimization */
        backface-visibility: hidden; /* Prevent flickering in some browsers */
    }

    #hero .icons-container > div {
        width: 71rem;
        height: 8rem;
        font: var(--subtitle);

        position: absolute;
        left: calc(50% - 1136px/2);
        top: 114px;
    }

    /* Speelbook */
    #hero .icons-container .icon-01 {
        width: 5.5rem;
        height: 5.5rem;
        border-radius: 9999px;

        position: absolute;
        left: calc(50% - 88px/2 - 14px);
        top: calc(50% - 88px/2 - 147.74px);
        transform: rotate(15deg);    
    }

    /* Ouija Planchette */
    #hero .icons-container .icon-02 {
        width: 5rem;
        height: 5rem;
        border-radius: 9090px;

        position: absolute;
        left: calc(50% - 80px/2 - 520.96px);
        top: calc(50% - 80px/2 + 89.13px);
        transform: rotate(92deg);
    }

    /* Crystal Ball */
    #hero .icons-container .icon-03 {
        width: 4.5rem;
        height: 4.5rem;
        border-radius: 8181px;
        
        position: absolute;
        left: calc(50% - 72px/2 + 550.14px);
        top: calc(50% - 72px/2 + 90.15px);
        transform: rotate(-14deg);
    }


    /* - ANIMATED - HERO 1  ICONS CONTAINER */
    #hero .icons-container .icon-01,
    #hero .icons-container .icon-02,
    #hero .icons-container .icon-03 {
        opacity: 0;
        scale: 0.8;
        transition: opacity 1s ease, scale 0.5s ease, transform 1s ease; 
    }

    /* Partes da frase */
    #hero .icons-container > div .part-01,
    #hero .icons-container > div .part-02,
    #hero .icons-container > div .part-03 {
        color: var(--text-title);
        opacity: 0.3;
        transition: opacity 1s ease;
    }

    /* Spans dentro de cada parte */
    #hero .icons-container > div .part-01 > span,
    #hero .icons-container > div .part-02 > span,
    #hero .icons-container > div .part-03 > span {
        color: inherit;
        transition: color 0.5s ease;
    }

    /* Quando passa o mouse no container */
    /* Ícone e parte 1 */
    #hero .icons-container:hover .icon-01 {
        opacity: 2;
        scale: 1;
        transition-delay: 10ms;
    }

    #hero .icons-container:hover .part-01 {
        opacity: 1;
        transition-delay: 10ms;
    }
    
    #hero .icons-container:hover .part-01 > span {
        color: var(--blue-ligth);
        transition-delay: 10ms;
    }

    #hero .icons-container .icon-01:hover {
        transform: scale(1) rotate(25deg);
        transition: transform .5s ease;
    }


    /* Ícone e parte 2 */
    #hero .icons-container:hover .icon-02 {
        opacity: 2;
        scale: 1;
        transition-delay: 0.7s;
    }
    
    #hero .icons-container:hover .part-02 {
        opacity: 1;
        transition-delay: 0.7s;
    }
    
    #hero .icons-container:hover .part-02 > span {
        color: var(--blue-ligth);
        transition-delay: 0.7s;
    }

    #hero .icons-container .icon-02:hover {
        transform: scale(1) rotate(110deg);
        transition: transform .5s ease;
    }

    /* Ícone e parte 3 */
    #hero .icons-container:hover .icon-03 {
        opacity: 1;
        scale: 1;
        transition-delay: 1.4s;
    }
    
    #hero .icons-container:hover .part-03 {
        opacity: 1;
        transition-delay: 1.4s;
    }
    
    #hero .icons-container:hover .part-03 > span {
        color: var(--blue-ligth);
        transition-delay: 1.4s;
    }

    #hero .icons-container .icon-03:hover {
        transform: scale(1) rotate(-24deg);
        transition: transform 0.5s ease;
    }


    /* SECTION KIT-BOOK AND GIFT */
    .kit-book {
        max-width: 90rem;
        height: 99.125rem;
        padding-top: 15.655rem;
        position: relative;
    }  

    .kit-book .title-inner h2 {
        font: 700 2rem var(--ff);
    }

    .kit-book .title-inner p {
        font: var(--body-md);
    }

    .kit-book .ellipse-5 {
        position: absolute;
        width: 58.125rem;
        height: 58.125rem;
        left: calc(50% - 930px/2);
        top: calc(50% - 930px/2 - 200px);
    
        background: var(--pink-low);
        opacity: 0.5;
        filter: blur(300px);
    }

    .kit-book .book-container {
        max-width: 90rem;
        height: 57.5rem;
        position: relative;
    }
    
    .kit-book .book-container img:nth-child(1) {
        max-width: 29.1875rem;
        height: 38.5625rem;

        position: absolute;
        left: calc(50% - 467px/2 - 13.5px);
        top: calc(50% - 617px/2 - 17.5px);
        z-index: 2;
    }

    .kit-book .book-container img:nth-child(2) {
        max-width: 10.75rem;
        height: 33.5rem;
        
        position: absolute;
        left: 882.75px;
        top: 46px;
        border-radius: 8px;
        transform: rotate(12deg);
    }

    .kit-book .book-container img:nth-child(3) {
        max-width: 10.75rem;
        height: 33.5rem;

        position: absolute;
        left: 982.99px;
        top: 140.16px;
        border-radius: .5rem;
        transform: rotate(20.5deg);
    }

    .kit-book .book-container img:nth-child(4) {
        max-width: 13.875rem;
        height: 15.875rem;

        position: absolute;
        left: 330px;
        top: 590px;
        transform: rotate(-8deg);
    }

    /* Vector */
    .book-container img[src*="top"] {
        width: 10.90625rem;
        height: 1.875rem;

        position: absolute;
        left: 345px;
        top: 115.5px;
    }

    .book-container img[src*="center"] {
        width: 6.553125rem;
        height: 7.9375rem;

        position: absolute;
        left: 283.65px;
        top: 510px;
        z-index: -4;
    }

    .book-container img[src*="bottom"] {
        width: 9.090625rem;
        height: 9.46875rem;

        position: absolute;
        left: 955.3px;
        top: 639px;
    }

    .book-container span {
        font: var(--body-md);
        color: var(--text-title);
    }

    /* Livro em capa dura */
    .book-container span.top {
        position: absolute;
        left: 278px;
        top: 70px;
    }

    /* Broche exclusivo */
    .book-container span.center {
        position: absolute;
        left: 262px;
        top: 460px;
    }

    /* Marca páginas temático */
    .book-container span.bottom {
        position: absolute;
        left: 878px;
        top: 796px;
    }

    /* ANIMAÇÕES KIT-BOOK */
    /* Todos os demais elementos começam invisíveis e recolhidos */
    .book-container img:not(:first-child),
    .book-container span {
    opacity: 0;
    transform: scale(0.5) translate(0, 0);
    transition: all 0.5s ease;
    z-index: 1;
    }

    /* Efeito de sair de trás */
    /* MARCADOR AMARELO - ANIMAÇÃO */
    .kit-book:hover .book-container img:nth-child(2) {
        animation: yellowMarker 0.6s ease-out forwards;
    }

    .kit-book:hover .book-container img:nth-child(3) {
        animation: pinkMarker 0.6s ease-out forwards;
    }

    .kit-book:hover .book-container img:nth-child(4) {
        animation: pin 0.6s ease-out forwards;
    }

    .kit-book:hover .book-container img[src*="top"] {
        animation: vectorTop 0.6s ease-out forwards;
    }

    .kit-book:hover .book-container span.top {
        animation: spanTop 0.6s ease-out forwards;
    }

    .kit-book:hover .book-container img[src*="center"] {
        animation: vectorCenter 0.6s ease-out forwards;
    }

    .kit-book:hover .book-container span.center {
        animation: spanCenter 0.6s ease-out forwards;
    }

    .kit-book:hover .book-container img[src*="bottom"] {
        animation: vectorBottom 0.6s ease-out forwards;
    }

    .kit-book:hover .book-container span.bottom {
        animation: spanBottom 0.6s ease-out forwards;
    }

  @keyframes yellowMarker {
    0% {
      opacity: 1;
      transform: scale(0.5) translate(-100%, 10%) rotate(0deg);
    }
    70% {
      opacity: 1;
      transform: scale(1.05) translate(1.3%, 0%) rotate(11deg); /* passa um pouco do ponto */
    }
    100% {
      opacity: 1;
      transform: scale(1) translate(0.9%, -0.2%) rotate(11deg); /* volta pra posição final */
    }
  }

  /* MARCADOR ROSA - ANIMAÇÃO */
  @keyframes pinkMarker {
    0% {
      opacity: 1;
      transform: scale(0.5) translate(-220%, 20%) rotate(0deg);
    }
    70% {
      opacity: 1;
      transform: scale(1.05) translate(2.1%, -1.9%) rotate(19deg); 
    }
    100% {
      opacity: 1;
      transform: scale(1) translate(1.9%, -1.7%) rotate(19deg); 
    }
  }

  /* BROCHE - ANIMAÇÃO */
  @keyframes pin {
    0% {
      opacity: 1;
      transform: scale(0.5) translate(120%, -50%) rotate(0deg);
    }
    70% {
      opacity: 1;
      transform: scale(1) translate(2.2%, 0.40%) rotate(-10deg); 
    }
    100% {
      opacity: 1;
      transform: scale(1) translate(1.8%, 0.27%) rotate(-10deg); 
    }
  }

  /* VECTOR TOP + TEXTO */
  @keyframes vectorTop {
    0% {
      opacity: 1;
      transform: scale(0.5) translate(160%, 20rem);
    }
    70% {
      opacity: 1;
      transform: scale(1.05) translate(3%, 2%); 
    }
    100% {
      opacity: 1;
      transform: scale(1) translate(2%, 0.27%); 
    }
  }

  @keyframes spanTop {
    0% {
      opacity: 1;
      transform: scale(0.5) translate(300%, 17rem);
    }
    70% {
      opacity: 1;
      transform: scale(1.05) translate(3%, 2%); 
    }
    100% {
      opacity: 1;
      transform: scale(1) translate(2%, 0.27%); 
    }
  }

   /* VECTOR CENTER + TEXTO */
   @keyframes vectorCenter {
    0% {
        opacity: 1;
        transform: scale(0.5) translate(28rem, -12rem);
      }
      70% {
        opacity: 1;
        transform: scale(1) translate(1%, 0.33%); 
      }
      100% {
        opacity: 1;
        transform: scale(1) translate(0%, 0.27%); 
      }
    }

  @keyframes spanCenter {
    0% {
      opacity: 1;
      transform: scale(0.5) translate(28rem, -4.9rem);
    }
    70% {
      opacity: 1;
      transform: scale(1.05) translate(3.5%, 0.55%); 
    }
    100% {
      opacity: 1;
      transform: scale(1) translate(2%, 0.27%); 
    }
  }

  /* VECTOR BOTTOM + TEXTO */
  @keyframes vectorBottom {
    0% {
        opacity: 1;
        transform: scale(0.5) translate(-22rem, -12rem);
      }
      70% {
        opacity: 1;
        transform: scale(1) translate(1%, 0.33%); 
      }
      100% {
        opacity: 1;
        transform: scale(1) translate(0%, 0.27%); 
      }
  }

  @keyframes spanBottom {
    0% {
      opacity: 1;
      transform: scale(0.5) translate(-14rem, -16rem);
    }
    70% {
      opacity: 1;
      transform: scale(1.05) translate(3.5%, 0.55%); 
    }
    100% {
      opacity: 1;
      transform: scale(1) translate(2%, 0.27%); 
    }
  }

  /* Efeito de retorno dos itens */
    /* MARCADOR AMARELO - ANIMAÇÃO */
    .kit-book:not(:hover) .book-container img:nth-child(2) {
        animation: yellowMarkerBack 0.6s ease-out forwards;
    }

    .kit-book:not(:hover) .book-container img:nth-child(3) {
        animation: pinkMarkerBack 0.6s ease-out forwards;
    }

    .kit-book:not(:hover) .book-container img:nth-child(4) {
        animation: pinBack 0.6s ease-out forwards;
    }

    .kit-book:not(:hover) .book-container img[src*="top"] {
        animation: vectorTopBack 0.6s ease-out forwards;
    }

    .kit-book:not(:hover) .book-container span.top {
        animation: spanTopBack 0.6s ease-out forwards;
    }

    .kit-book:not(:hover) .book-container img[src*="center"] {
        animation: vectorCenterBack 0.6s ease-out forwards;
    }

    .kit-book:not(:hover) .book-container span.center {
        animation: spanCenterBack 0.6s ease-out forwards;
    }

    .kit-book:not(:hover) .book-container img[src*="bottom"] {
        animation: vectorBottomBack 0.6s ease-out forwards;
    }

    .kit-book:not(:hover) .book-container span.bottom {
        animation: spanBottomBack 0.6s ease-out forwards;
    }

  /* MARCADOR AMARELO - ANIMAÇÃO */  
  @keyframes yellowMarkerBack {
    0% {
        opacity: 1;
        transform: scale(1) translate(0.9%, -0.2%) rotate(11deg); /* volta pra posição final */
    }
    100% {
      opacity: 1;
      transform: scale(0.5) translate(-185%, 10%) rotate(0deg);
    }
  }

  /* MARCADOR ROSA - ANIMAÇÃO */
  @keyframes pinkMarkerBack {
    0% {
      opacity: 1;
      transform: scale(1) translate(1.9%, -1.7%) rotate(19deg); 
    }
    100% {
        opacity: 1;
        transform: scale(0.5) translate(-300%, 20%) rotate(0deg);
      }
  }

  /* BROCHE - ANIMAÇÃO */
  @keyframes pinBack {
    0% {
      opacity: 1;
      transform: scale(1) translate(1.8%, 0.27%) rotate(-10deg); 
    }
    100% {
        opacity: 1;
        transform: scale(0.5) translate(120%, -50%) rotate(0deg);
    }
  }

  /* VECTOR TOP + TEXTO */
  @keyframes vectorTopBack {
    0% {
      opacity: 1;
      transform: scale(1) translate(2%, 0.27%); 
    }
    100% {
        opacity: 1;
        transform: scale(0.5) translate(160%, 20rem);
    }
  }

  @keyframes spanTopBack {
    0% {
      opacity: 1;
      transform: scale(1) translate(2%, 0.27%); 
    }
    100% {
        opacity: 1;
        transform: scale(0.5) translate(300%, 17rem);
    }
  }

   /* VECTOR CENTER + TEXTO */
  @keyframes vectorCenterBack {
    0% {
        opacity: 1;
        transform: scale(1) translate(0%, 0.27%); 
    }
    100% {
        opacity: 1;
        transform: scale(0.5) translate(28rem, -12rem);
    }
  }

  @keyframes spanCenterBack {
    0% {
        opacity: 1;
        transform: scale(1) translate(2%, 0.27%); 
      }
    100% {
      opacity: 1;
      transform: scale(0.5) translate(28rem, -4.9rem);
      }
  }

  /* VECTOR BOTTOM + TEXTO */
  @keyframes vectorBottomBack {
      0% {
        opacity: 1;
        transform: scale(1) translate(0%, 0.27%); 
      }
      100% {
        opacity: 1;
        transform: scale(0.5) translate(-27.5rem, -12rem);
      }
  }

  @keyframes spanBottomBack {
    0% {
        opacity: 1;
        transform: scale(1) translate(2%, 0.27%); 
      }
    100% {
      opacity: 1;
      transform: scale(0.5) translate(-21rem, -16rem);
    }
  }
  /* -------------------------- */


  /* PRICING-TABLE + CARDS */
  .pricing {
    max-width: 90rem;
    height: 77.125rem;
  }

  .pricing h2 {
    margin-block: 12.125rem 3rem;
    font: 700 2rem var(--ff);
  }

  .pricing .pricing-table {
    max-width: 90rem;
    height: 47rem;
    margin-inline: auto;
    position: relative;
  }    

  .pricing .bg {
    background: url(../assets/images/pricing-background.svg) no-repeat center/cover;
    width: 59rem;
    height: 59rem;
    filter: blur(300px);
    position: absolute;
    top: 202rem;
    left: 22%;
    z-index: -2;
  }

  .pricing-table .price-card {
    width: 18rem;
    height: 26rem;
  }

  .pricing-table .price-card > div {
    height: 22.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-table .details .subscribe-btn {
    width: 14rem;
}

 /* Animação só dispara se tiver a classe start-animation */
.pricing-table.start-animation .monthly {
    animation: monthly .5s ease-out both;
}

.pricing-table.start-animation .annual {
    animation: annual .5s ease-out both;
}

.pricing-table.start-animation .half-year {
    animation: halfYear .5s ease-out both;
}

/* Semestral */
.pricing-table .half-year {
    position: absolute;
    left: calc(50% - 288px/2 + 0.43px);
    top: 19.5%;
    z-index: 1;
}

/* Mensal */
.pricing-table .monthly {
    position: absolute;
    left: calc(50% - 288px/2 + 0.43px);
    top: 19.5%;
}

/* Anual */
.pricing-table .annual {
    position: absolute;
    left: calc(50% - 288px/2 + 0.43px);
    top: 19.5%;
}

/* ANIMAÇÃO DOS CARTÕES DOS PLANOS */
.pricing-table .price-card:hover {
    background-color: var(--shape-hover);
    z-index: 2;
    box-shadow: 0 0 20px rgba(226, 231, 233, 0.250);
    transition: box-shadow 1s ease;
}


/* Destaque do half-year quando ninguém estiver em hover */
.price-card.half-year.highlight {
    background-color: var(--shape-hover);
  }
  
  /* Quando ele mesmo estiver com hover, mantém cor */
  .price-card.half-year.hovering {
    background-color: var(--shape-hover);
  }
  

/* CONFIGURAÇÃO DAS ESTRELAS */

.pricing-table .monthly .stars,
.pricing-table .annual .stars {
    display: block;
}

/* MONTHLY STARS */
.pricing-table .monthly .stars img:nth-child(1) {
    position: absolute;
    width: 4rem;
    height: 4rem;
    left: -45px;
    top: -50px;

    transform: matrix(0.99, 0.14, 0.14, -0.99, 0, 0) rotate(-1px);
}

.pricing-table .monthly .stars img:nth-child(2) {
    position: absolute;
    width: 2rem;
    height: 2rem;
    left: -46px;
    top: -8px;

    transform: matrix(0.99, 0.14, 0.14, -0.99, 0, 0) rotate(-1px);
}

.pricing-table .monthly:hover .stars img:nth-child(1) {
    animation: bigStarUp .5s both ease;
}

.pricing-table .monthly:hover .stars img:nth-child(2) {
    animation: smallStarUp .5s both ease;
}


/* ANNUAL STARS */

.pricing-table .annual .stars img:nth-child(1) {
    position: absolute;
    width: 4rem;
    height: 4rem;
    left: calc(50% - 23.22px/2 + 147px);
    top: calc(50% - 23.22px/2 + 208px);

    transform: matrix(0.99, 0.14, 0.14, -0.99, 0, 0) rotate(-1px);
}

.pricing-table .annual .stars img:nth-child(2) {
    position: absolute;
    width: 2rem;
    height: 2rem;
    left: calc(50% - 23.22px/2 + 127px);
    top: calc(50% - 23.22px/2 + 230px);

    transform: matrix(0.99, 0.14, 0.14, -0.99, 0, 0) rotate(-1px);
}

.pricing-table .annual:hover .stars img:nth-child(1) {
    animation: bigStar .5s both ease;
}

.pricing-table .annual:hover .stars img:nth-child(2) {
    animation: smallStar .5s both ease;
}


@keyframes halfYear {
    to {
        transform: translateY(-8px);
    }
}

@keyframes monthly {
    to {
        transform:translate(-288px, 55px) rotate(-8deg);
    }
}

@keyframes annual {
    to {
        transform: translate(288px, 55px) rotate(8deg);
    }
}

@keyframes bigStarUp {
    to {
        transform: rotate(-10deg);
    }
}

@keyframes smallStarUp {
    to {
        transform: rotate(15deg);
    }
}

@keyframes bigStar {
    to {
        transform: rotate(10deg);
    }
}

@keyframes smallStar {
    to {
        transform: rotate(-15deg);
    }
}


/* FOOTER */
footer .links-container {
    max-width: 74rem;
}
}
