@keyframes appear-left-circles {
    from {
        opacity: 0;

        -webkit-transform: translate3d(150%, 0, 0);
        -moz-transform: translate3d(150%, 0, 0);
        -o-transform: translate3d(150%, 0, 0);
        transform: translate3d(150%, 0, 0);
    }

    to {
        opacity: 1;

        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0) ;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes grow-from-center {
    from { 
        -webkit-transform: scaleX(0);
        -moz-transform: scaleX(0);
        -o-transform: scaleX(0);
        transform: scaleX(0);
    }

    to { 
        -webkit-transform: scaleX(1);
        -moz-transform: scaleX(1);
        -o-transform: scaleX(1);
        transform: scaleX(1);
    }
}

section#propaganda {
    height: unset;
    overflow-x: hidden;
}

section#propaganda article {
    width: 100%;
    height: 100vh;
    min-height: 750px;
}

section#propaganda article .container {
    max-width: 85%;

    height: 100%;
    padding-right: 0;
}


/* Essa e a próxima classe é generalizada para todos os articles */
section#propaganda .main-text .title {
    max-width: 19ch;
    width: 100%;

    font-weight: 400;
    font-size: 5em;
    line-height: 120%;

    margin: 0 auto 50px auto;
}

section#propaganda small {
    font-size: 2.8em;
}

section#propaganda *.active .main-text .title { 
    -webkit-animation: appear-top 2s var(--ease-out) 0s both;
    -moz-animation: appear-top 2s var(--ease-out) 0s both;
    -o-animation: appear-top 2s var(--ease-out) 0s both;
    animation: appear-top 2s var(--ease-out) 0s both;
}


section#propaganda *.active  .main-text small { 
    -webkit-animation: appear-top 2s var(--ease-out) 0.25s both;
    -moz-animation: appear-top 2s var(--ease-out) 0.25s both;
    -o-animation: appear-top 2s var(--ease-out) 0.25s both ;
    animation: appear-top 2s var(--ease-out) 0.25s both;
}


.artist-page-link {
    position: relative;

    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    padding: 20px 20px 40px 20px;

    font-size: 2.6em;
    z-index: 1;
    box-shadow: 0px -30px 30px 2px rgba(0, 0, 0, 0.3);
}

.artist-page-link p {
    text-decoration: underline;
    font-style: italic;

    color: var(--secondary-transparent)
}

.artist-page-link svg {
    margin-left: 20px;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.artist-page-link:hover svg {
    transform: translate3d(80%, 0, 0);
}


article#mira-method .container {
    margin: 0 0 0 auto;
}

article#mira-method .main-content {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
}

article#mira-method .main-text {
    width: -moz-fit-content;
    width: fit-content;
    max-width: 50%;
    height: 100%;

    margin-right: 25px;
    align-self: center;
}

article#mira-method .main-text .title {
    opacity: 0;

    -webkit-transform: translate3d(0, 20%, 0);
    -moz-transform: translate3d(0, 20%, 0);
    -o-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
}

article#mira-method .main-text small {
    max-width: 35ch;
    width: 100%;

    margin-left: auto;

    opacity: 0;

    -webkit-transform: translate3d(0, 20%, 0);
    -moz-transform: translate3d(0, 20%, 0);
    -o-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
}


article#mira-method .images-container {
    min-width: 600px;
    max-width: 50%;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;

    align-items: center;
    overflow-x: hidden;

    -webkit-filter: drop-shadow(-8px 12px 8px rgba(0, 0, 0, 0.4));
    filter: drop-shadow(-8px 12px 8px rgba(0, 0, 0, 0.4));

    -webkit-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

article#mira-method .images-container .front-image {
    max-width: 310px;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    position: relative;

    overflow: hidden;

    -webkit-transition: cubic-bezier(0.215, 0.610, 0.355, 1) 0.4s;
    -moz-transition: cubic-bezier(0.215, 0.610, 0.355, 1) 0.4s;
    -o-transition: cubic-bezier(0.215, 0.610, 0.355, 1) 0.4s;
    transition: cubic-bezier(0.215, 0.610, 0.355, 1) 0.4s;

    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%);
    border-radius: 50%;

    grid-column: 1/3;
    grid-row: 1/2;

    -webkit-transform: translate3d(50%, 0, 0);
    -moz-transform: translate3d(50%, 0, 0);
    -o-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);

    opacity: 0;

    z-index: 2;
}

article#mira-method .images-container .front-image:hover, 
article#mira-method .images-container .front-image.hover {
    clip-path: polygon(0 0, 100% 10%, 100% 80%, 0 100%);
    border-radius: 0;
    cursor: pointer;
}

article#mira-method .images-container .front-image:hover img,
article#mira-method .images-container .front-image.hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

article#mira-method .images-container .front-image img {
    width: 100%;
    height: auto;

    -webkit-transition: cubic-bezier(0.215, 0.610, 0.355, 1) 0.4s;
    -moz-transition: cubic-bezier(0.215, 0.610, 0.355, 1) 0.4s;
    -o-transition: cubic-bezier(0.215, 0.610, 0.355, 1) 0.4s;
    transition: cubic-bezier(0.215, 0.610, 0.355, 1) 0.4s;
}


article#mira-method .images-container .back-image {
    max-width: 464px;
    height: auto;

    grid-row: 1/2;
    grid-column: 2/4;

    -webkit-transform: translate3d(50%, 0, 0);
    -moz-transform: translate3d(50%, 0, 0);
    -o-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);

    opacity: 0;
}

article#mira-method .images-container .back-image img {
    width: 100%;
    height: 100%;
}

article#mira-method .images-container .front-image .foreground .saulo-mira-text::first-letter {
    font-size: unset;
}


article#mira-method.active .images-container .front-image { 
    -webkit-animation: appear-left 2s var(--ease-out) 0s both;
    -moz-animation: appear-left 2s var(--ease-out) 0s both;
    -o-animation: appear-left 2s var(--ease-out) 0s both;
    animation: appear-left 2s var(--ease-out) 0s both;
}

article#mira-method.active .images-container .back-image { 
    -webkit-animation: appear-left 2s var(--ease-out) 0.25s both;
    -moz-animation: appear-left 2s var(--ease-out) 0.25s both;
    -o-animation: appear-left 2s var(--ease-out) 0.25s both;
    animation: appear-left 2s var(--ease-out) 0.25s both;
}



/*================================
    ÁREA DO LIVRO 
==================================*/

article#book-sell .container {
    max-width: 85%;
    padding: 0;

    margin: 0 auto 0 0; 
}


article#book-sell .main-text {
    max-width: 50%;

    margin-left: 50px;
    align-self: center;
}

article#book-sell .main-content {
    width: 100%;
}

article#book-sell .main-text .title {
    opacity: 0;

    -webkit-transform: translate3d(0, 20%, 0);
    -moz-transform: translate3d(0, 20%, 0);
    -o-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
}

article#book-sell .main-text small {
    max-width: 600px;
    width: 100%;

    margin: 0 auto;

    opacity: 0;

    -webkit-transform: translate3d(0, 20%, 0);
    -moz-transform: translate3d(0, 20%, 0);
    -o-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);

}


article#book-sell .images-container {
    max-width: 750px;
    min-width: 650px;
    height: 100%;
    
    grid-template-columns: 1fr 1fr 1fr;
    
    -webkit-filter: drop-shadow(-8px 12px 8px rgba(0, 0, 0, 0.4));
    filter: drop-shadow(-8px 12px 8px rgba(0, 0, 0, 0.4));

    align-items: center;
    justify-items: center;
}

article#book-sell .images-container .front-image-wrapper {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;

    grid-column: 2/4;
    grid-row: 1/2;  

    opacity: 0;

    -webkit-transform: translate3d(-50%, 0, 0);
    -moz-transform: translate3d(-50%, 0, 0);
    -o-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
}

article#book-sell .images-container .front-image {
    position: relative;
    margin: 0 auto;
    max-width: 50%;
}

article#book-sell .images-container .front-image .foreground,
article#book-sell .images-container .front-image .foreground p,
article#book-sell .images-container .front-image {
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

article#book-sell .images-container .front-image:hover,
article#book-sell .images-container .front-image.hover {
    -webkit-transform: rotate(5deg);
    -moz-transform: rotate(5deg);
    -o-transform: rotate(5deg);
    transform: rotate(5deg);
}

article#book-sell .images-container .front-image:hover .foreground p,
article#book-sell .images-container .front-image.hover .foreground p{
    -webkit-transform: rotate(-5deg);
    -moz-transform: rotate(-5deg);
    -o-transform: rotate(-5deg);
    transform: rotate(-5deg);
}

article#book-sell .images-container .front-image  img {
    width: 100%;
    height: auto;
}

article#book-sell .images-container .back-image {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;

    max-width: 500px;

    grid-column: 1/3;
    grid-row: 1/2;

    opacity: 0;

    -webkit-transform: translate3d(-50%, 0, 0);
    -moz-transform: translate3d(-50%, 0, 0);
    -o-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
}

article#book-sell .images-container .back-image img{
    width: 100%;
    height: auto;
}


article#book-sell.active .images-container .front-image-wrapper { 
    -webkit-animation: appear-right 2s var(--ease-out) 0s both;
    -moz-animation: appear-right 2s var(--ease-out) 0s both;
    -o-animation: appear-right 2s var(--ease-out) 0s both;
    animation: appear-right 2s var(--ease-out) 0s both;
}

article#book-sell.active .images-container .back-image { 
    -webkit-animation: appear-right 2s var(--ease-out) 0.25s both;
    -moz-animation: appear-right 2s var(--ease-out) 0.25s both;
    -o-animation: appear-right 2s var(--ease-out) 0.25s both;
    animation: appear-right 2s var(--ease-out) 0.25s both;
}

/*================================
    MENTORING
==================================*/

article#mentoring {
    position: relative;
}

article#mentoring .container {
    margin: 0 0 0 auto;
}


article#mentoring .main-content {
    width: 100%;
}

article#mentoring .main-text {
    padding-top: 50px;
    max-width: 40%;

    margin-right: 50px;
}

article#mentoring .main-text .title {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;

    margin-bottom: 50px;

    opacity: 0;
}

article#mentoring .main-text small {
    opacity: 0;
}

article#mentoring .images-container {
    min-width: 762px;

    grid-template-columns: repeat(3, 1fr);

    align-items: center;

    flex: 0;
    -webkit-filter: drop-shadow(-8px 12px 8px rgba(0, 0, 0, 0.4));
    filter: drop-shadow(-8px 12px 8px rgba(0, 0, 0, 0.4));
}

article#mentoring .images-container .front-image {
    position: relative;

    max-width: 356px;
    height: -moz-fit-content;
    height: fit-content;

    border-radius: 50%;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%);
    
    grid-column: 1/3;
    grid-row: 1/2;

    -webkit-transition: 0.8s var(--ease-out);
    -moz-transition: 0.8s var(--ease-out);
    -o-transition: 0.8s var(--ease-out);
    transition: 0.8s var(--ease-out);

    overflow: hidden;

    opacity: 0;
}

article#mentoring .images-container .front-image:hover,
article#mentoring .images-container .front-image.hover {
   border-radius: 0;
   clip-path: polygon(0 0, 100% 10%, 100% 80%, 0 100%);
}

article#mentoring .images-container .front-image img {
    width: 100%;
    height: auto;
}

article#mentoring .images-container .front-image .foreground p {
    padding-bottom: 30px;
}


article#mentoring .back-image {
    position: absolute;

    max-width: 1026px;
    height: -moz-fit-content;
    height: fit-content;

    top: 50%;
    right: 5%;
    
    -webkit-transform: translate(50%, -50%);
    -moz-transform: translate(50%, -50%);
    -o-transform: translate(50%, -50%);
    transform: translate(50%, -50%);

    z-index: -1;

    -webkit-filter: drop-shadow(-8px 12px 8px rgba(0, 0, 0, 0.4));
    filter: drop-shadow(-8px 12px 8px rgba(0, 0, 0, 0.4));

    -webkit-transition: 1s var(--ease-out);
    -moz-transition: 1s var(--ease-out);
    -o-transition: 1s var(--ease-out);
    transition: 1s var(--ease-out);
}

body.slided article#mentoring .back-image {
    right: -5%;
}

article#mentoring  .back-image img {
    width: 100%;
    height: auto;
}

article#mentoring.active .images-container .front-image { 
    -webkit-animation: appear-left 2s var(--ease-out) 0s both;
    -moz-animation: appear-left 2s var(--ease-out) 0s both;
    -o-animation: appear-left 2s var(--ease-out) 0s both;
    animation: appear-left 2s var(--ease-out) 0s both;
}



/*============================================================
    PAGINA 2    
==============================================================*/

section#propaganda #propaganda-page-2 {
    position: relative;
}

#propaganda-page-2 small {
    color: var(--secondary-transparent-small);
}

#propaganda-page-2 #mira-method-page-2 .container {
    margin-right: 0;
    max-width: 1600px;

    height: 100%;
    padding-top: 15%;
    padding-left: 0;

    overflow-x: hidden;
}

#mira-method-page-2 {
    padding-left: 100px;
}

#mira-method-page-2 .text-grid {
    max-width: 50%;
    height: -moz-fit-content;
    height: fit-content;

    grid-template-areas: "t t"
                         "s s"
                         "l r";

    grid-template-columns: repeat(2, 1fr);

    text-align: center;

}


#mira-method-page-2 .text-grid .title {
    font-size: 4.8em;
    font-weight: 400;

    grid-area: t;
}

#mira-method-page-2 .text-grid .title::before {
    content: 'CURSO';

    position: absolute;

    -webkit-transform: translateX(-60%);
    -moz-transform: translateX(-60%);
    -o-transform: translateX(-60%);
    transform: translateX(-60%);

    font-size: 0.6em;
    color: var(--secondary-before);
    
    opacity: 0;
}

#mira-method-page-2 .text-grid .title .saulo-mira-text {
    font-size: 1.5em;
}

#mira-method-page-2 .text-grid .title .saulo-mira-text::first-letter {
    font-size: unset;
}

#mira-method-page-2 .text-grid .btn-mira {
    grid-column: 1/3;
    margin: 0 auto;
    
    -webkit-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);

    width: 100%;
    margin-top: 50px;
}

#mira-method-page-2 .text-grid .sub-title {
    font-size: 3.2em;

    grid-area: s;
    margin: 10px 0 60px 0;
    overflow: hidden;
}

#mira-method-page-2 .text-grid .sub-title .animation-wrapper {
    -webkit-transform: translate3d(0, -150%, 0);
    -moz-transform: translate3d(0, -150%, 0);
    -o-transform: translate3d(0, -150%, 0);
    transform: translate3d(0, -150%, 0);
}

#mira-method-page-2 .text-grid .left {
    max-width: 75%;
    margin-left: auto;

    grid-area: l;
    font-size: 2em;
    /* Os dois paddings estão separados por conta das animações */
    padding: 0 30px;

    overflow: hidden;
}

#mira-method-page-2 .text-grid .left .animation-wrapper {
    -webkit-transform: translate3d(150%, 0, 0);
    -moz-transform: translate3d(150%, 0, 0);
    -o-transform: translate3d(150%, 0, 0);
    transform: translate3d(150%, 0, 0);
}

#mira-method-page-2 .text-grid .right {
    grid-area: r;

    width: 100%;
    height: 80%;

    border-left: 2px solid var(--secondary-border-color);
    padding-left: 30px;

    text-align: start;
    font-size: 2.3em;

    align-self: center;

    overflow: hidden;
}

#mira-method-page-2 .text-grid .right .animation-wrapper {
    -webkit-transform: translate3d(-150%, 0, 0);
    -moz-transform: translate3d(-150%, 0, 0);
    -o-transform: translate3d(-150%, 0, 0);
    transform: translate3d(-150%, 0, 0);
}

#mira-method-page-2 .images-container {
    max-width: 60%;
    height: -moz-fit-content;
    height: fit-content;

    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    flex-shrink: 0;
    
    -webkit-filter: drop-shadow(-8px 12px 8px rgba(0, 0, 0, 0.4));
    filter: drop-shadow(-8px 12px 8px rgba(0, 0, 0, 0.4));
    
    margin-left: 160px;
}

#mira-method-page-2 .images-container .front-image {
    max-width: 320px;
    height: -moz-fit-content;
    height: fit-content;

    grid-column: 1/3;
    grid-row: 1/1;

    margin-left: -30%;
    z-index: 1;

    clip-path: circle();

    opacity: 0;
}

#mira-method-page-2 .images-container .front-image img {
    width: 100%;
    height: auto;
}

#mira-method-page-2 .images-container .back-image {
    max-width: 528px;
    height: -moz-fit-content;
    height: fit-content;

    grid-column: 1/3;
    grid-row: 1/1;

    opacity: 0;
}

#mira-method-page-2 .images-container .back-image img {
    width: 100%;
    height: auto;
}

#mira-method-page-2.active .images-container .front-image { 
    will-change: transform, opacity;

    -webkit-animation: appear-left .6s var(--ease-out) .7s both;
    -moz-animation: appear-left .6s var(--ease-out) .7s both;
    -o-animation: appear-left .6s var(--ease-out) .7s both;
    animation: appear-left .6s var(--ease-out) .7s both;
}

#mira-method-page-2.active .images-container .back-image { 
    will-change: transform, opacity;

    -webkit-animation: appear-left .6s var(--ease-out) .8s both;
    -moz-animation: appear-left .6s var(--ease-out) .8s both;
    -o-animation: appear-left .6s var(--ease-out) .8s both;
    animation: appear-left .6s var(--ease-out) .8s both;
}

#mira-method-page-2.active .text-grid .title::before { 
    will-change: transform, opacity;

    -webkit-animation: appear-top 0.5s var(--ease-out) .8s both;
    -moz-animation: appear-top 0.5s var(--ease-out) .8s both;
    -o-animation: appear-top 0.5s var(--ease-out) .8s both;
    animation: appear-top 0.5s var(--ease-out) .8s both;
}

#mira-method-page-2.active .text-grid .sub-title .animation-wrapper {
    will-change: transform;

    -webkit-animation: translate-down .6s var(--ease-out) .7s both;
    -moz-animation: translate-down .6s var(--ease-out) .7s both;
    -o-animation: translate-down .6s var(--ease-out) .7s both;
    animation: translate-down .6s var(--ease-out) .7s both;
}

#mira-method-page-2.active .text-grid .left .animation-wrapper { 
    will-change: transform;

    -webkit-animation: translate-left .6s var(--ease-out) both;
    -moz-animation: translate-left .6s var(--ease-out) both;
    -o-animation: translate-left .6s var(--ease-out) both;
    animation: translate-left .6s var(--ease-out) both;
}

#mira-method-page-2.active .text-grid .right .animation-wrapper { 
    will-change: transform;

    -webkit-transform: translate3d(-150%, 0, 0);
    -moz-transform: translate3d(-150%, 0, 0);
    -o-transform:translate3d(-150%, 0, 0) ;
    transform: translate3d(-150%, 0, 0);

    -webkit-animation: translate-right .6s var(--ease-out) forwards;
    -moz-animation: translate-right .6s var(--ease-out) forwards;
    -o-animation: translate-right .6s var(--ease-out) forwards;
    animation: translate-right .6s var(--ease-out) forwards;
}

#mira-method-page-2.active .text-grid .btn-mira { 
    will-change: transform;
    
    -webkit-animation: middleTopDown .6s var(--ease-out) .7s forwards;
    -moz-animation: middleTopDown .6s var(--ease-out) .7s forwards;
    -o-animation: middleTopDown .6s var(--ease-out) .7s forwards;
    animation: middleTopDown .6s var(--ease-out) .7s forwards;
}

/*=============================================================
    BOOK SELL PAGE 2
===============================================================*/

section#propaganda #book-sell-page-2 .container {
    max-width: 1600px;
    margin-right: 0;

    padding-left: 50px;
}

#book-sell-page-2 small {
    font-size: 2.7em;
    padding: 30px 20px;
}

#book-sell-page-2 .main-text {
    width: -moz-fit-content;
    width: fit-content;
    max-width: 45%;

    position: relative;

    padding: 0 30px;
}

article#book-sell-page-2 .main-text .title {

    max-width: none;
    text-align: center;
    margin: 0; /* Limpa as margens herdadas */
    margin-bottom: 100px;

    padding: 0;

    opacity: 0;
}



#book-sell-page-2 .main-text .sub-text {
    width: 100%;
    padding: 0 30px;

    margin-bottom: 30px;
}

#book-sell-page-2 .main-text .sub-text small {
    overflow: hidden;
}

#book-sell-page-2 .main-text .sub-text .animation-wrapper.top {
    -webkit-transform: translate3d(150%, 0, 0);
    -moz-transform: translate3d(150%, 0, 0);
    -o-transform: translate3d(150%, 0, 0);
    transform: translate3d(150%, 0, 0);
}

#book-sell-page-2 .main-text .sub-text hr {
    border-color: var(--secondary-border-color);

    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
} 

#book-sell-page-2 .main-text .sub-text .animation-wrapper.bottom {
    -webkit-transform: translate3d(-150%, 0, 0);
    -moz-transform: translate3d(-150%, 0, 0);
    -o-transform: translate3d(-150%, 0, 0);
    transform: translate3d(-150%, 0, 0);
}

#book-sell-page-2 .action-buttons {
    display: flex;
}


#book-sell-page-2 .main-text .action-buttons .btn-mira {
    margin: 0 auto;

    -webkit-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
}


#book-sell-page-2 .images-container {
    grid-template-columns: repeat(3, 1fr);

    justify-items: center;
    align-items: center;
}

#book-sell-page-2 .front-image-wrapper {
    max-width: 250px;
    height: -moz-fit-content;
    height: fit-content;

    grid-row: 1/1;
    grid-column: 1/3;

    z-index: 1;

    opacity: 0;
}

#book-sell-page-2 .back-image {
    max-width: 512px;
    height: -moz-fit-content;
    height: fit-content;

    grid-row: 1/1;
    grid-column: 2/4;

    opacity: 0;
}

#book-sell-page-2  img {
    width: 100%;
    height: auto;

    -webkit-filter: drop-shadow(-8px 12px 8px rgba(0, 0, 0, 0.4));
    filter: drop-shadow(-8px 12px 8px rgba(0, 0, 0, 0.4));
}


article#book-sell-page-2.active .main-text .title { 
    -webkit-animation: appear-top .6s var(--ease-out) .7s forwards;
    -moz-animation: appear-top .6s var(--ease-out) .7s forwards;
    -o-animation: appear-top .6s var(--ease-out) .7s forwards;
    animation: appear-top .6s var(--ease-out) .7s forwards;
}

#book-sell-page-2.active .main-text .sub-text .animation-wrapper.top { 
    -webkit-animation: translate-up .6s var(--ease-out) 0.7s forwards;
    -moz-animation: translate-up .6s var(--ease-out) 0.7s forwards;
    -o-animation: translate-up .6s var(--ease-out) 0.7s forwards;
    animation: translate-up .6s var(--ease-out) 0.7s forwards;
}

#book-sell-page-2.active .main-text .sub-text hr { 
    -webkit-animation: grow-from-center 0.8s var(--ease-out) forwards;
    -moz-animation: grow-from-center 0.8s var(--ease-out) forwards;
    -o-animation: grow-from-center 0.8s var(--ease-out) forwards;
    animation: grow-from-center 0.8s var(--ease-out) forwards;
} 

#book-sell-page-2.active .main-text .sub-text .animation-wrapper.bottom { 
    -webkit-animation: translate-down .6s var(--ease-out) 0.5s forwards;
    -moz-animation: translate-down .6s var(--ease-out) 0.5s forwards;
    -o-animation: translate-down .6s var(--ease-out) 0.5s forwards;
    animation: translate-down .6s var(--ease-out) 0.5s forwards;
}

#book-sell-page-2.active .main-text .btn-mira { 
    -webkit-animation: middleTopDown .6s var(--ease-out) .7s forwards;
    -moz-animation: middleTopDown .6s var(--ease-out) .7s forwards;
    -o-animation: middleTopDown .6s var(--ease-out) .7s forwards;
    animation: middleTopDown .6s var(--ease-out) .7s forwards;
}

#book-sell-page-2.active .front-image-wrapper { 
    -webkit-animation: appear-left .8s var(--ease-out) .7s forwards;
    -moz-animation: appear-left .8s var(--ease-out) .7s forwards;
    -o-animation: appear-left .8s var(--ease-out) .7s forwards;
    animation: appear-left .8s var(--ease-out) .7s forwards;
}

#book-sell-page-2.active .back-image { 
    -webkit-animation: appear-left .6s var(--ease-out) .7s forwards;
    -moz-animation: appear-left .6s var(--ease-out) .7s forwards;
    -o-animation: appear-left .6s var(--ease-out) .7s forwards;
    animation: appear-left .6s var(--ease-out) .7s forwards;
}


/*=============================================================
    MENTORING PAGE 2
===============================================================*/

section#propaganda article#mentoring-page-2 {
    position: relative;
}

section#propaganda article#mentoring-page-2 .container {
    max-width: 90%;

    padding-left: 0;
    padding-right: 0;

    margin: 0 auto 0 0;
}

article#mentoring-page-2 .background {
    display: none;
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
    
    z-index: -1;

    -webkit-filter: var(--background-filter);
    filter: var(--background-filter);

}

body.webp-supported article#mentoring-page-2 .background {
    /* LINK */
    background: url('https://saulomira.com.br/images/Propaganda/Mentoring/back_image.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

body.webp-not-supported article#mentoring-page-2 .background {
    background: url('https://saulomira.com.br/images/Propaganda/Mentoring/back_image.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

article#mentoring-page-2 .main-content {
    width: 100%;
}

article#mentoring-page-2 .main-text {
    padding-top: 50px;
    max-width: 45%;
}

article#mentoring-page-2 .main-text .title {
    position: relative;
    top: -15%;

    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;

    margin-bottom: 50px;

    opacity: 0;
}

article#mentoring-page-2 .main-text .sub-text small {
    padding: 0 25px;
    font-size: 2.3em;

    opacity: 0;
}

article#mentoring-page-2 .main-text .sub-text small:nth-of-type(2) {
    border-left: 2px solid var(--secondary-border-color);
}

article#mentoring-page-2 .main-text .btn-mira {
    display: block;
    margin: 0 auto;

    margin-top: 55px;

    -webkit-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
}

article#mentoring-page-2 .saulo-mira-text::first-letter {
    font-size: unset;
}

article#mentoring-page-2 .images-container {
    min-width: 762px;

    grid-template-columns: repeat(3, 1fr);

    align-items: center;
    justify-items: flex-end;

    flex: 0;

    -webkit-filter: drop-shadow(-8px 12px 8px rgba(0, 0, 0, 0.4));
    filter: drop-shadow(-8px 12px 8px rgba(0, 0, 0, 0.4));
}

article#mentoring-page-2 .images-container .front-image {
    max-width: 356px;
    height: -moz-fit-content;
    height: fit-content;

    border-radius: 50%;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%);
    
    grid-column: 2/4;
    grid-row: 1/2;

    -webkit-transition: 0.8s var(--ease-out);
    -moz-transition: 0.8s var(--ease-out);
    -o-transition: 0.8s var(--ease-out);
    transition: 0.8s var(--ease-out);

    overflow: hidden;

    opacity: 0;
}


article#mentoring-page-2 .images-container .front-image img {
    width: 100%;
    height: auto;
}

article#mentoring-page-2.active .images-container .front-image { 
    -webkit-animation: appear-right .8s var(--ease-out) 0s both;
    -moz-animation: appear-right .8s var(--ease-out) 0s both;
    -o-animation: appear-right .8s var(--ease-out) 0s both;
    animation: appear-right .8s var(--ease-out) 0s both;
}

article#mentoring-page-2.active .main-text .btn-mira {
    -webkit-animation: middleTopDown .6s var(--ease-out) .6s forwards;
    -moz-animation: middleTopDown .6s var(--ease-out) .6s forwards;
    -o-animation: middleTopDown .6s var(--ease-out) .6s forwards;
    animation: middleTopDown .6s var(--ease-out) .6s forwards;
}



@media only screen and (max-width: 1530px){
    #mira-method-page-2 .text-grid {
        font-size: 0.85em;
    }

    #mira-method-page-2 .images-container {
        flex-shrink: 0.5;
        min-width: 465px;
    }
}

@media only screen and (max-width: 1490px) {
    section#propaganda article .container {
        max-width: 95%;
    }

    article#mentoring .images-container,
    article#mentoring-page-2 .images-container {
        min-width: 670px;
    }

    article#mentoring-page-2 .images-container .front-image,
    article#mentoring .images-container .front-image {
        max-width: 313px;

    }

    article#mentoring .back-image {
        max-width: 902px;
        min-width: 902px
    }

}



@media only screen and (max-width: 1350px){
/*     body {
        --yellow: var(--secondary);
        --red: var(--secondary);
        --green: var(--secondary);
    } */
    section#propaganda .btn-yellow {
        color: white;
        background-color: rgb(216, 181, 53, 0.6);
    }

    section#propaganda .btn-green {
        color: white;
        background-color: rgb(104, 184, 110, 0.6);
    }

    section#propaganda .btn-red {
        color: white;
        background-color: rgb(255, 118, 103, 0.6);
    }

    section#propaganda .main-text {
        min-width: 500px;
        margin: 0 auto;

        font-size: 0.8em;
    }

    section#propaganda .main-text .title {
        max-width: initial;
        margin: 0 auto 35px auto;
    }

    section#propaganda .main-text small {
        margin: 0 auto;
    } 
    
    section#propaganda *.active .back-image { 
        -webkit-animation: none;
        -moz-animation: none;
        -o-animation: none;
        animation: none;
    }


    #mira-method-page-2 {
        position: relative;

        padding-left: 0;
    }
    
    #mira-method-page-2 .backdrop-filter {
        position: absolute;

        width: 100%;
        height: 100%;

        /* LINK */
        background-image: url('https://saulomira.com.br/images/Propaganda/Mira_method/back_image_2.webp');
        background-size: cover;
        background-position: center;

        filter: var(--background-filter);
    }

    #propaganda-page-2 #mira-method-page-2 .container {
        padding-top: 0;
    }

    #mira-method-page-2 .main-content {
        position: relative;

        justify-content: center;
        min-height: 100%;

        padding: 0 20px
    }

    #mira-method-page-2 .text-grid {
        margin: 0;
        max-width: 800px;
    }

    #mira-method-page-2 .images-container {
        display: none;
    }


    section#propaganda #book-sell-page-2 .container {
        position: relative;
        padding: 0 20px;

        flex-direction: column-reverse;
        justify-content: center;
    }


    #book-sell-page-2 .main-content {
        position: relative;

        justify-content: center;
        min-height: 100%;
    }

    #book-sell-page-2 .images-container {
        max-width: none;
        width: 150px;

        position: initial;

        margin: 30px 0;

        z-index: -1;

        overflow: visible;
        display: block;
    }

    #book-sell-page-2.active .front-image-wrapper {
        -webkit-animation: appear .8s var(--ease-out) .7s forwards;
        -moz-animation: appear .8s var(--ease-out) .7s forwards;
        -o-animation: appear .8s var(--ease-out) .7s forwards;
        animation: appear .8s var(--ease-out) .7s forwards;
    }

    #book-sell-page-2 .images-container .back-image {
        position: absolute;
        left: 0;
        top: 0;

        max-width: none;
        height: 100%;
        width: 100%;

        -webkit-filter: var(--background-filter);
        filter: var(--background-filter);

        opacity: 1;
        transform: none;
    }


    #book-sell-page-2 .images-container .back-image img {
        width: 100%;
        height: 100%;

        -o-object-fit: cover;
        object-fit: cover;
    }

    article#book-sell-page-2 .main-text {
        font-size: 0.7em;
        margin: 0 auto 30px auto;
    }

    article#book-sell-page-2 .main-text .title {
        margin-bottom: 20px;
    }
    
    #book-sell-page-2 .main-text .sub-text small {
        padding: 15px 20px;
    }

    #book-sell-page-2 .main-text .btn-mira {
        min-width: 200px;
        font-size: calc(18rem / 16);
    }


    section#propaganda div#propaganda-page-1 {
        overflow: hidden;
    }

    section#propaganda article#mentoring-page-2 .container {
        max-width: unset;
    }

    article#mentoring-page-2 .main-content {
        flex-direction: column;
    }

    article#mentoring-page-2 .images-container {
        grid-template-columns: 1fr;
        align-self: center;
        min-width: unset;
        margin-bottom: 24px;
    }

    article#mentoring-page-2 .images-container img {
        max-width: 240px;
    }

    article#mentoring-page-2 .background {
        display: block;
    }
}   

@media only screen and (max-width: 1180px) {
    section#propaganda .main-text .title {
        font-size: 4.6em;
    }

    section#propaganda small {
        font-size: 2.4em;
    }
}

@media only screen and (max-width: 1130px) {
    section#propaganda article {
        height: 100vh;
        min-height: 736px;
    }

    section#propaganda article .container {
        max-width: 100%;
        margin: 0;
    }

    section#propaganda .main-text {
        min-width: 500px;

        margin: 0 auto;
        margin-bottom: 120px;

        padding: 0 10px;
    }
    
    section#propaganda article#book-sell-page-2 .main-text {
        margin-top: 50px;
    }

    section#propaganda article#mentoring .main-text {
        margin: 0 auto;
    }

    section#propaganda .main-text .title {
        max-width: initial;
        margin: 0 auto 35px auto;
    }

    section#propaganda .main-text small {
        margin: 0 auto;
    }

    article#mira-method .main-content, 
    article#mentoring .main-content {
        flex-direction: column;
        justify-content: center;
    }
    
    article#book-sell .main-content {
        flex-wrap: wrap;
        justify-content: center;
    }

    article#mira-method .images-container {
        max-width: 90%;
        margin-left: auto;
        
        -webkit-transform: translateX(10%);
        -moz-transform: translateX(10%);
        -o-transform: translateX(10%);
        transform: translateX(10%);
    }

    section#propaganda article#book-sell,
    section#propaganda article#book-sell-page-2 {
        min-height: 900px;
    }

    article#book-sell .images-container {
        max-width: 850px;
        margin-right: auto;

        order: 2;

        -webkit-transform: translateX(-10%);
        -moz-transform: translateX(-10%);
        -o-transform: translateX(-10%);
        transform: translateX(-10%);
    }

    article#mentoring .container {
        align-items: flex-start;
    }

    article#mentoring .main-content {
        padding-top: 50px;
    }

    article#mentoring .images-container {
        position: absolute;
        top: 60%;
        right: 0;

        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    article#mentoring .back-image {
        top: 60%;
    }
}

@media only screen and (max-width: 800px) {
    article#mira-method .images-container {
        min-width: 750px;
        /* margin-right: -30%; */
    }

    article#mira-method .images-container .front-image:hover {
        clip-path: inset(0 5% 0 5%);
    }

    article#book-sell .images-container {
        max-width: 600px;
    }

}

@media only screen and (max-width: 730px) {
    article#mentoring .back-image {
        top: 55%;

        min-width: 0;
        width: 720px;
    }

    article#mentoring .back-image img {
        clip-path: inset(0 10% 0 10%);
    }

    article#mentoring .images-container {
        top: 55%;

        min-width: 0;
        width: 433px;
    }
}

@media only screen and (max-width: 700px) {
    
    article#propaganda-page-1  div.container {
        align-items: flex-start;
        padding: 0;
    }

    article#mira-method .main-content {
        padding-top: 60px;
    }
}

@media only screen and (max-width: 630px){
    .artist-page-link {
        font-size: 2.2em;
    }
}


@media only screen and (max-width: 660px){
    article#book-sell .images-container {
        transform: translateX(-25%)
    }
}



@media only screen and (max-width: 560px) {
    #mira-method-page-2 .text-grid {
        font-size: 0.7em;
    }

    #mira-method-page-2 .text-grid .left {
        padding: 0 10px;
        font-size: 2.3em;

        max-width: 80%;
    }

    #mira-method-page-2 .text-grid .right {
        padding-left: 10px;
        font-size: 2.6em;
    }

    #book-sell-page-2 .action-buttons {
        flex-flow: column;
        align-items: center;
    }

    #book-sell-page-2.active .main-text .btn-mira {
        width: 80%;
        margin: 10px 0;
    }
}

@media only screen and (max-width: 550px) {
    section#propaganda .main-text {
        min-width: 100%;
        width: 100%;

        margin-bottom: 70px;
    }

    section#propaganda .main-text .title {
        font-size: 4em;
    }

    section#propaganda .main-text small {
        font-size: 2.2em;
    }

    article#mira-method .images-container {
        max-width: 100%;
        min-width: 550px;
        margin-left: 0;
    }

    article#mira-method .images-container .front-image {
        max-width: 252px;
    }

    article#book-sell .images-container .back-image  {
        max-width: 390px;
    }

    article#book-sell .images-container .front-image  {
        max-width: 180px;
    }

    article#mentoring .images-container {
        min-width: 0;
        width: 362px;
    }
    
    article#mentoring .images-container .front-image {
        width: 215px;
    }

    article#mentoring .back-image img {
        clip-path: inset(0 18% 0 18%);
    }
}

@media only screen and (max-width: 470px) {
    #mira-method-page-2 .text-grid {
        grid-template-areas: "t t"
                             "s s"
                             "l l"
                             "r r";

        justify-items: center;
    }

    #mira-method-page-2 .text-grid .right,
    #mira-method-page-2 .text-grid .left {
        width: -moz-fit-content;
    width: fit-content;
        margin: 0;
        padding: 20px 0;

        font-size: 3.2em;
        border-bottom: 1px solid var(--secondary-transparent);

        text-align: center;
    }

    #mira-method-page-2 .text-grid .right {
        border: none;
        font-size: 3.4em;
    }

    #mira-method-page-2.active .text-grid .left .animation-wrapper {
        -webkit-transform: translate3d(0, 150%, 0);
        -moz-transform: translate3d(0, 150%, 0);
        -o-transform: translate3d(0, 150%, 0);
        transform: translate3d(0, 150%, 0);

        -webkit-animation: translate-up 6s var(--ease-out) forwards;
        -moz-animation: translate-up 6s var(--ease-out) forwards;
        -o-animation: translate-up 6s var(--ease-out) forwards;
        animation: translate-up 6s var(--ease-out) forwards;
    }

    #mira-method-page-2.active .text-grid .right .animation-wrapper {
        -webkit-transform: translate3d(0, -150%, 0);
        -moz-transform: translate3d(0, -150%, 0);
        -o-transform: translate3d(0, -150%, 0);
        transform: translate3d(0, -150%, 0);

        -webkit-animation: translate-down 6s var(--ease-out) forwards;
        -moz-animation: translate-down 6s var(--ease-out) forwards;
        -o-animation: translate-down 6s var(--ease-out) forwards;
        animation: translate-down 6s var(--ease-out) forwards;
    }
}


@media only screen and (max-width: 450px) {
    
    article#mira-method .images-container { 
        min-width: 450px;    
    }

    article#mira-method .images-container .front-image {
        max-width: 218px;
    }
    article#book-sell .images-container {
        max-width: 450px;
        min-width: 4005;
    }

    article#book-sell .images-container .front-image  {
        max-width: 140px;
    }

    section#propaganda .main-text {
        padding-left: 10px ;
        padding-right: 10px ;
    }
    section#propaganda .main-text .title {
        font-size: 3.4em;
    }
}


@media only screen and (max-width: 450px) and (min-height: 650px){
    section#propaganda article#book-sell,
    section#propaganda article {
        min-height: 0;
        max-height: none;

        height: 630px;
    }
}


@media only screen and (max-width: 380px) {
    article#mentoring .images-container {
        min-width: 0;
        width: 312px;
    }

    article#mentoring .back-image img {
        clip-path: inset(0 25% 0 25%);
    }
}

/* 
@media only screen and (max-height: 850px) {
    article#mentoring .images-container,
    article#mentoring .back-image {
        top: calc(45% + 150px);
    }
}

@media only screen and (max-height: 650px) {
    article#mentoring .images-container,
    article#mentoring .back-image {
        top: calc(45% + 180px);
    }
} */