*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

html, body{
    height: 100%;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}


img, i{
    user-select: none;
    -webkit-user-select: none; /* Para navegadores que utilizam o motor Webkit, como o Safari */
    -moz-user-select: none; /* Para navegadores Firefox */
    -ms-user-select: none; /* Para o Internet Explorer */
}

a, a:hover, a:active{
    text-decoration: none;
}


/*------------Estilizando Fontes*/

html { font-size: 100%; }
body {
--text-size-80: 0.694rem;
--text-size-90: 0.833rem;
--text-size-100: 1rem;
--text-size-200: 1.2rem;
--text-size-300: 1.44rem;
--text-size-400: 1.728rem;
--text-size-500: 2.074rem;
--text-size-600: 2.488rem;
--text-size-700: 2.986rem;
font-family: 'Roboto';
font-weight: normal;
line-height: 1.6;
color: var(--cor-preta);
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
line-height: 1.3;
letter-spacing: -0.022em;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4{
font-weight: 900;
font-family: 'Roboto';
}
h5, .h5, h6, .h6{
    font-weight: normal;
}
small, .small {
font-size: var(--text-size-90);
letter-spacing: 1.25px;
}
h6, .h6 {
font-size: var(--text-size-200);
}
h5, .h5 {
font-size: var(--text-size-300);
}
h4, .h4 {
font-size: var(--text-size-400);
}
h3, .h3 {
font-size: var(--text-size-500);
}
h2, .h2 {
font-size: var(--text-size-600);
}
h1, .h1 {
font-size: var(--text-size-700);
}

@media screen and (min-width: 881px){
    .h1_plus {
        font-size: calc(var(--text-size-700)*1.2);
    }
}
    

.playfair {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    text-transform: uppercase;
}

.above_title{
    margin-top: var(--gap-xs);
    z-index: 2;
}

.title{
    margin-top: var(--gap-xs);
    z-index: 2;
}

.description{
    margin-top: var(--gap-s);
    z-index: 2;
}

.super_description{
    margin-top: var(--gap-xl);
}

.medium_description{
    margin-top: var(--gap-m);
}



.gradient_fill {
    background-image: linear-gradient(112deg, #C87D88, #e6b8b8 50%, #af4a59);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-weight: 900;

}

.session_title_container{
    margin-bottom: var(--gap-l); 
    z-index: 1; 
}

.justify_center{
    justify-content: center;
    align-items: center;
    text-align: center;
}

.align_strech{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.standard_border{
    border-bottom: 1px solid;
    border-image: linear-gradient(90deg, var(--cor-1) 0%, var(--cor-1) 25%, rgba(0,8,20,0) 75%, rgba(0,8,20,0) 100%) 1;;
}

.text_center{
    text-align: center;
}

@media screen and (min-width: 881px){
    .text_center{
        text-align: center;
    }

    .session_title_container{
        margin-bottom: var(--gap-xxl); 
    }

    .texto{
        margin-top: var(--gap-s);
    }
}

a .highlight:hover{
    color: var(--cor-1-hover);
}

a .highlight:active{
    color: var(--cor-1-active);
}

a .highlight_2:hover{
    color: var(--cor-2-hover);
}

a .highlight_2:active{
    color: var(--cor-2-active);
}


.highlight{
    color: var(--cor-1);
}

.highlight_hover{
    color: var(--cor-1-hover);
}

.highlight_2{
    color: var(--cor-2);
}


/* Grids */


.standard_grid{
    display: grid;
    position: relative;
    max-width: 100%;
    column-gap: var(--gap-xxs);
    grid-template-columns: repeat(4, 1fr);
    width: 100vw;
    padding: 0 6vw;
    margin: 0;
}

.standard_grid_insider{
    display: grid;
    position: relative;
    max-width: 100%;
    column-gap: var(--gap-xxs);
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    padding: 0;
    margin: 0;
}


/* Widescreen */
@media screen and (min-width: 1367px){
    .standard_grid{
        padding: 0 calc((100vw - 1160px) / 2);
        column-gap: var(--gap-s);
        grid-template-columns: repeat(12, 1fr);
    }
}

/* Notebook */
@media screen and (min-width: 1201px) and (max-width: 1366px){
    .standard_grid{
        padding: 0 calc((100vw - 1080px) / 2);
        column-gap: var(--gap-s);
        grid-template-columns: repeat(12, 1fr);
    }
}

/* Tablet Paisagem (avaliar colunas) */
@media screen and (min-width: 1025px) and (max-width: 1200px){
    .standard_grid{
        padding: 0 calc((100vw - 924px) / 2);
        column-gap: var(--gap-s);
        grid-template-columns: repeat(12, 1fr);
    }
}

/* Tablet Retrato (avaliar colunas) */
@media screen and (min-width: 881px) and (max-width: 1024px){
    .standard_grid{
        padding: 0 calc((100vw - 780px) / 2);
        column-gap: var(--gap-s);
        grid-template-columns: repeat(12, 1fr);
    }
}

/* Celular Paisagem (avaliar colunas) */
@media screen and (min-width: 768px) and (max-width: 881px){
    .standard_grid{
        padding: 0 calc((100vw - 728px) / 2);
    }
}

/* Grids Content */

.whole_grid, .eight_center, .half, .terco, .quarto, .first_half, .scnd_half, .grid2_9, .grid11{
    grid-column: 1 / span 4;
}



@media screen and (min-width: 881px){
    .standard_grid_insider{
        grid-template-columns: repeat(12, 1fr);

    }

    .whole_grid{
        grid-column: 1 / span 12;
    }

    .eight_center{
        grid-column: 3 / span 8;
    }

    .half{
        grid-column: span 6;
    }

    .terco{
        grid-column: span 4;
    }

    .quarto{
        grid-column: span 3;
    }

    .first_half{
        grid-column: 1 / span 6;
    }

    .scnd_half{
        grid-column: 7 / span 6;
    }

    .grid2_9{
        grid-column: 2 / span 9;
    }

    .grid11{
        grid-column: 11 / span 1;
    }

    .row_1{
        grid-row: 1 / span 1;
    }

    .row_2{
        grid-row: 2 / span 1;
    }

    .row_3{
        grid-row: 3 / span 1;
    }

    .row_4{
        grid-row: 4 / span 1;
    }

  
}


/* Botões */
button {
    border-width: 0;
    border-style: none;
  }

.button_container, .buttons_container{
    width: 100%;
    display: flex;
    align-items: center;
    column-gap: var(--gap-s);
    flex-direction: row;
    z-index: 1;
}

.in_sesseion_cta{
    margin-top: var(--gap-l)
}

.button_container{
    justify-content: space-between;
}

.button_container a.cta{
    width: 100%;
}

.buttons_container{
    justify-content: center;
}

.buttons_container a, .buttons_container .button{
    position: relative;
    min-height: 100%;
    height: 100%;
}

.button{
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    height: 100%;
    transition: var(--hover-transition);
    text-align: center;
    overflow: hidden;
    font-size:  var(--text-size-90);
    letter-spacing: 1.25px;
    font-weight: bold;
    text-transform: uppercase;
}

.button:hover{
    transform: var(--hover-transform);
}


.button_1::after, .button_2::after, .button_1_flex::after, .button_2_flex::after {
    background: var(--cor-neutra);
    content: '';
    height: 155px;
    position: absolute;
    left: -75px;
    top: -50px;
    opacity: .8;
    transform: rotate(35deg);
    width: 50px;
    transition: all 1s cubic-bezier(.175, .52, .165, 1);
    z-index: 1;
}

.button_1:hover::after, .button_2:hover::after, .button_1_flex:hover::after, .button_2_flex:hover::after {
    background: var(--cor-branca);
    opacity: 0;
    left: 120%;
    transform: rotate(40deg);
}

.button_1, .button_2 {
    border-radius: var(--border-radius);
    padding: var(--gap-xs) var(--gap-s);
    width: 100%;
}

.button_1_flex, .button_2_flex {
    border-radius: var(--border-radius);
    padding: var(--gap-xxs) var(--gap-s);

}

.button_1, .button_1_flex{
    background-color: var(--cor-2);
    color: var(--cor-preta) !important;
}

.button_1:hover, .button_1_flex:hover{
    background-color: var(--cor-2-hover);
}

.button_1:active, .button_1_flex:active{
    background-color: var(--cor-2-active);
}

.button_2, .button_2_flex{
    color: var(--cor-branca);
    background-color: var(--cor-preta);
}

.button_2:hover, .button_2_flex:hover{
    background-color: var(--cor-preta-hover);
}

.button_2:active, .button_2_flex:active{
    background-color: var(--cor-preta-active);
}

a svg, a img{
    transition: var(--hover-transition)
}

a svg:hover, a img:hover{
    opacity: var(--hover-opacity);
    transform: var(--hover-transform);
}


a h1, a h2, a h3, a h4, a h5, a h6, a p, a small{
    color: var(--cor-preta);
    transition: 1s ease-in;
} 

a h1:hover, a h2:hover, a h3:hover, a h4:hover, a h5:hover, a h6:hover, a p:hover, a small:hover{
    color: var(--cor-preta-hover);
}

a h1:active, a h2:active, a h3:active, a h4:active, a h5:active, a h6:active, a p:active, a small:active{
    color: var(--cor-preta-active);
}



@media screen and (min-width: 881px){
    .button_1, .button_2, .button_disabled {
        width: var(--button-width);
    }
}




/*------------Nav*/


.nav_bar{
    height: var(--gap-xxl);
    align-items: center;
    z-index: 1000;
    box-shadow: var(--box-shadow);
    position: fixed;
    background-color: var(--cor-neutra);
}


.nav_bar .logo img{
    height: 56px;
    width: auto
}

.nav_bar .logo{
    grid-column: 2 / span 2;
    align-items: center;
    text-align: center;
}

@media screen and (min-width: 881px){
    .nav_bar .logo{
        grid-column: 1 / span 2;
        text-align: left;
    }

    
    .center_button a{
        display: grid;
        justify-content: center;
    }

}

.nav_bar .button_container{
    display: none;
}


@media screen and (min-width: 881px){

    .nav_bar .button_container{
        grid-column: 7 / span 6;
        margin-top: 0;
        justify-content: end;
        display: flex;
    }
    
}


/*------------Botao Whatsapp*/
.whatsapp_button {
    position: fixed;
    bottom: var(--gap-xs);
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
}

.whatsapp_button a{
    grid-column: -1 / -1;
    width: 60px;
    height: 60px;
    justify-self: flex-end;
}

.whatsapp_button img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: var(--standard-shadow);
}

.whatsapp_button img:hover{
    opacity: var(--hover-opacity);
} 


/*------------Sections*/

section{
    padding: var(--gap-l) 0;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: var(--cor-neutra);
    color: var(--cor-preta)
}

section.hero{
    padding: calc(var(--gap-l) + var(--gap-xxl)) 0 var(--gap-l) 0;
    overflow: hidden;
    position: relative;
}

section.hero .title, section.hero .description{
    color: var(--cor-branca);
}

section.hero .first_half, section.hero .scnd_half {
    padding-top: 160px;
}

section.hero .wide_img{
    margin-top: var(--gap-xxl);
}

section.hero .button_2, .section.hero .button_2_flex{
    background-color: var(--cor-2);
    color: var(--cor-preta)
}

section.hero .button_2:hover, .section.hero .button_2_flex:hover{
    background-color: var(--cor-2-hover);
}

section.hero .button_2:active, .section.hero .button_2_flex:active{
    background-color: var(--cor-2-active);
}

.black{
    background-color: var(--cor-preta);
    color: var(--cor-branca);
}

.black *{
    color: var(--cor-branca);
}

.gray{
    background-color: var(--cor-cinza);
    color: var(--cor-preta);
}

.icon{
    width: 1em; /* Herda o tamanho do texto ao redor */
    height: 1em; /* Garante proporção */
    fill: currentColor; /* Herda a cor do texto */
    margin-right: 0.2em; /* Cria espaço entre o ícone e o texto */
    vertical-align: -0.1em; /* Pequeno ajuste para alinhar melhor */
}

.wide_img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--cor-1);
}

.wide_img_reverse{
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--cor-1);
}

#hero_index{
    background: 
        linear-gradient(350deg, rgba(38,38,38,1) 65%, rgba(38,38,38,0) 90%), 
        url('../images/angela_home_reduzida.webp');
    background-size: 144%;
    background-position: center top;
    background-repeat: no-repeat;
}

#hero_regra{
    position: relative;
    height: 320px;
    display: flex;
    align-items: center;
}

#regra_fundo{
    position: absolute;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    z-index: -1;
}

#angela_solo{
    position: absolute;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

#nao_precisam{
    position: relative;
    width: 100%;
    height: 400px;
    margin-top: var(--gap-m);
    background: url('../images/nao_precisa_hq.webp');
    background-size: 144%;
    background-position: center center;
    background-repeat: no-repeat;
}


@media screen and (min-width: 881px){
    section{
        padding: var(--gap-sessions) 0;
    }

    section.hero{
        padding: calc(2 * var(--gap-xxl)) 0 var(--gap-xxl) 0;
        overflow: hidden;
        position: relative;
    }

    section.hero .title, section.hero .description{
        color: var(--cor-preta);
    }

    section.hero .first_half, section.hero .scnd_half{
        padding-top: 0;
    }


    section.hero .button_2, .section.hero .button_2_flex{
        background-color: var(--cor-preta);
        color: var(--cor-branca);
    }
    
    section.hero .button_2:hover, .section.hero .button_2_flex:hover{
        background-color: var(--cor-preta-hover);
    }
    
    section.hero .button_2:active, .section.hero .button_2_flex:active{
        background-color: var(--cor-preta-active);
    }

    .wide_img{
        position: absolute;
        left: 0;
        top: 0;
        width: calc(50% - var(--gap-l));
        height: 100%;
        background-color: var(--cor-1);
    }


    .wide_img_reverse{
        position: absolute;
        right: 0;
        top: 0;
        width: calc(50% - var(--gap-l));
        height: 100%;
    }

    

    #hero_index{
        background-image: url('../images/angela_home_reduzida.webp');
        background-size: cover;
    }

    #hero_regra{
        height: 400px;
    }


    #nao_precisam{
        position: absolute;
        right: 0;
        top: 0;
        width: calc(50% - var(--gap-l));
        margin-top: 0;
        height: 100%;
        background-image: url('../images/nao_precisa_hq.webp');
        background-size: cover;
        background-position: center center;
    }
    
    
    
}


/* Sessão HashTags */

section#hashtags {
    padding: var(--gap-l) 0;
}

.tag-list {
    width: 100vw;
    max-width: 100%;
    display: flex;
    flex-shrink: 0;
    gap: 1rem 0;
    position: relative;
    overflow: hidden;
}


.loop-slider .inner {
    display: flex;
    animation-name: loop;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: var(--direction);
    animation-duration: var(--duration);
}

.tag {
    font-weight: 900;
    display: flex;
    white-space: nowrap;
    align-items: center;
    padding: var(--gap-s);
    margin-right: 1rem; /* Must use margin-right instead of gap for the loop to be smooth */
}


.fade {
    pointer-events: none;
    position: absolute;
    inset: 0;
}

@keyframes loop {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.3%);
    }
}





