:root {
    --bg-color: #FFFFFF;
    --black: #000000;

    --red: #FF0011;
    --yellow: #FFBD02;
    --blue: #2D80FF;
    --green: #00C058;

    --marginDesktop: 32px;
}

@font-face {
    font-family: 'Satoshi';
    src: url('<?php echo get_template_directory_uri(); ?>/../data/font/Satoshi-Regular.otf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi-Bold';
    src: url('<?php echo get_template_directory_uri(); ?>/../data/font/Satoshi-Bold.otf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

body {
    background-color: var(--bg-color);
    color: var(--black);
}

main {
    min-height: 80vh;
}


* {
    margin: 0;
    padding: 0;
}

p {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 25px;
    color: var(--black);
    margin-bottom: 0 !important;

    text-wrap: pretty;
}

h1 {
    font-size: 40px;
    line-height: 45px;

    font-family: 'Satoshi', sans-serif;
    font-weight: 600;
    font-style: normal;
    color: var(--black);
    margin-bottom: 0 !important;
}

.h1 {
    font-size: 40px;
    line-height: 45px;

    font-family: 'Satoshi', sans-serif;
    font-weight: 600;
    font-style: normal;
    color: var(--black);
    margin-bottom: 0 !important;
}


.p-bigger {
    font-size: 25px;
    line-height: 28px;
}

.p-smaller {
    font-size: 15px;
    line-height: 19px;
}



.p-bigger p {
    font-size: 25px !important;
    line-height: 28px !important;
}

.p-smaller p {
    font-size: 15px !important;
    line-height: 19px !important;
}

.grid {
    display: grid;
    grid-template-columns: repeat(16, 1fr);
    row-gap: var(--marginDesktop);
    column-gap: 0px;
}

.bold {
    font-family: 'Satoshi-Bold', sans-serif;
    font-weight: 400;
    font-style: normal;
}

hr {
    margin: 0 !important;
}



/*Header*/
header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    margin: var(--marginDesktop) !important;
}

.headerLogo-p {
    font-size: 30px;
    line-height: 34px;
}

.headerLanguage {
    display: flex;
}

.headerLanguage a {
    text-decoration: none;
}

.language {
    aspect-ratio: 1 / 1;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    border: 1px solid var(--black);
    border-radius: 100%;
    align-items: center;
}

.language-select {
    background-color: var(--black);
}

.language-select p {
    color: var(--bg-color) !important;
}

/*Index*/
main{
    margin: var(--marginDesktop) !important;
}
.landingInfo-container {
    margin-bottom: var(--marginDesktop);
}

.landingInfo {
    grid-column: 1 / span 8;
}

.highlightText p {
    font-size: 190px;
    line-height: 190px;
}

.bolas-container {
    grid-column: 10 / span 7;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    height: fit-content;
}

.bola {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    will-change: transform, background-color, opacity;
    transition:
        transform 0.3s ease-out,
        background-color 0.3s ease-out,
        opacity 0.3s ease-out;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    width: 100%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bola svg {
    width: 60%;
    height: 60%;
    fill: white;
    /* Icon color */
}


.bola-fade-out {
    opacity: 0;
}

.bola-fade-in {
    opacity: 1;
}

.bolas-container-desktop {
    display: grid;
}

.bolas-container-mobile {
    display: none;
}



.empty-slot {
    aspect-ratio: 1 / 1;
    visibility: hidden;
}

.brtVideo {
    grid-column: span 16;
    width: 100%;
    margin-bottom: var(--marginDesktop);
}

.brtVideo video {
    width: 100%;
}

.brtVideo-desktop {
    display: block;
}

.brtVideo-mobile {
    display: none;
}

.info {
    grid-column: span 16;
    display: flex;
    margin-bottom: var(--marginDesktop);
}

.landingInfo-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
}

.landingInfo-title {
    grid-column: 1 / span 2;
}

.landingInfo-text {
    grid-column: 3 / span 6;
    margin-top: 90px;
    margin-bottom: var(--marginDesktop) !important;
}

.bulletLanding {
    border-top: 1px solid var(--black);
    grid-column: 1 / span 8;
    height: fit-content;
    padding: 8px 0;
    align-items: center;
}

.bulletLanding-number {
    grid-column: span 2;
}

.bulletLanding-name {
    grid-column: span 5;
}

.bulletLanding-svg {
    grid-column: span 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.bullet-header {
    cursor: pointer;
}

.bulletLanding-containerMain {
    grid-column: span 8;
    align-self: flex-end;
}

.bulletLanding-content {
    grid-column: 3 / span 6;
    margin: 0;
    padding: 0;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    padding-bottom: 0;
    transition:
        max-height 0.3s ease-out,
        opacity 0.2s ease-out 0.1s,
        margin 0.3s ease-out,
        padding 0.3s ease-out;
}

.bulletLanding-content.show {
    max-height: 100px;
    opacity: 1;
    margin-top: 1rem;
    padding-bottom: 1rem;
    transition:
        max-height 0.3s ease-out,
        opacity 0.1s ease-out,
        margin 0.3s ease-out,
        padding 0.3s ease-out;
}

.bulletLanding-svg svg {
    transition: transform 0.3s ease-out;
}

.bullet-header.active .bulletLanding-svg svg {
    transform: rotate(45deg);
}


/*footer*/
footer {
    margin: var(--marginDesktop) !important;
    padding-top: 30px;
    border-top: 1px solid var(--black);
}

footer a{
    text-decoration: none;
    color: var(--black);
}
footer a:hover{
    text-decoration: underline;
}

.footer-container {
    grid-column: span 4;
}

.footer-container svg{
        height: 50px;
}

.footerhr {
    display: none;
}

.bragametrobusLogo {
    width: 195px;
}

.bragaLogo {
    width: 120px;
}

.footer-containerLogo {
    gap: 50px;
    display: flex;
    align-items: flex-start;
        flex-wrap: wrap;

}

/**/
.section-title {
    grid-column: 1 / span 4;
}

.section-text {
    grid-column: 7 / span 10;
}

.ballInfo-container {
    grid-column: span 4;
    display: flex;
    align-content: center;
    flex-direction: column;
    align-items: center;
}

.ballInfo {
    width: 50%;
}

.ballInfo {
    aspect-ratio: 4 / 4;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.ballInfo .h1 {
    color: var(--bg-color);
    font-size: 45px;
    font-weight: 600;
}

.yellow-ballInfo {
    background-color: var(--yellow);
}

.green-ballInfo {
    background-color: var(--green);
}

.blue-ballInfo {
    background-color: var(--blue);
}

.red-ballInfo {
    background-color: var(--red);
}

.ballInfo-container p {
    text-align: center;
    font-weight: 600;
}

.ballInfo-grid {
    margin-top: 70px;
}

.ballInfo-margin {
    grid-column: span 1;
}

.sectionBreak {
    width: 100%;
    margin: 150px 0 !important;
    border-top: 1px solid var(--black);
}

.lastSection {
    margin-bottom: 150px;
}

.arrows {
    display: none;
}


.icon-container {
    grid-column: 7 / span 10;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    row-gap: var(--marginDesktop);
    column-gap: 0px;
}

.icon-item {
    grid-column: span 5;
    display: flex;
    gap: 50px;
    align-items: center;
}

.iconBall-container {
    aspect-ratio: 4 / 4;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    height: 100px;
    width: 100px;
}

.iconBall-container svg {
    height: 60%;
}

.icon-item p {
    font-weight: 600;
}

/*red*/
#metroBus-desktop {
    display: block;
}

#metroBus-mobile {
    display: none;
}

.metroBus-line {
    grid-column: 2 / span 14;
    margin-top: 150px;
}

.metroBus-line svg {
    width: 100%;
}

#Group_160 {
    width: 100%;
}

.redLine-ball {
    aspect-ratio: 4 / 4;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background-color: var(--red);
}

.redLine-ball svg {
    height: 60%;
}

.redLine-list {
    margin-top: 150px;
}

.redLine-item {
    grid-column: span 7;
    display: flex;
    gap: 50px;
}

.redLine-list {
    grid-column: 3 / span 13;
    display: grid;
    grid-template-columns: repeat(14, 1fr);
    row-gap: var(--marginDesktop);
    column-gap: 0px;
}

.redLine-bot {
    grid-column: 5 / span 8;
    text-align: center;
    margin-top: 80px;
    display: flex;
    justify-content: center;
}

.redLine-container {
    grid-column: 1 / span 16;
    display: grid;
    grid-template-columns: repeat(14, 1fr);
    row-gap: var(--marginDesktop);
    column-gap: 0px;
}

.note p {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
}

.section-text-grid {
    grid-column: 7 / span 10;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    row-gap: var(--marginDesktop);
    column-gap: 0px;
}

.section-text-subtitle {
    grid-column: span 3;
    font-weight: 600;
}


.section-text-subtext {
    grid-column: span 7;
}

.section-text-grid {
    margin-bottom: 100px;
}

.last-note {
    margin-top: 25px;
    grid-column: 7 / span 10;
}

.margin-bottom{
    margin-bottom: 50px;
}

.footerDivision{
    grid-column: 1 / span 16;
    border-top: 1px solid var(--black);
}

.logoFinanciamento{
    display: flex;
    flex-direction: row;
    margin-top: 1em;
    gap: 30px;
}

.footerFinanciamento{
    grid-column: 1 / span 16;
}


.logoFinanciamento svg{
    height:30px;
}

/*Cookie*/
.cookieBanner{
    position: sticky;
    bottom: 0;
    left:0;
    width: calc(100% - var(--marginDesktop)* 2);
    z-index: 10000;
    padding: var(--marginDesktop);
    background-color: rgba(255, 255, 255 , 0.8);
    justify-content: space-between;

}

.cookieBanner {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease; 
  }
  
  .cookieBanner.show {
    display: flex; 
    opacity: 1;
    
  }

.cookieBanner-buttons {
    display: flex;
    gap: var(--marginDesktop);
}



.cookieBanner-buttons p:hover{
    cursor: pointer;
    text-decoration: underline;
}

.cookieBanner p{
    font-size: 20px;
    line-height: 25px;
}

.cookieBanner a{
    text-decoration: none;
    color: var(--black);
}


.cookieBanner a:hover{
    text-decoration: underline;
}




@media only screen and (max-width: 1600px) {
.highlightText p {
    font-size: 130px;
    line-height: 130px;
}

p {
    font-size: 22px;
}

h1 {
    font-size: 35px;
    line-height: 40px;
}

.ballInfo .h1 {
    font-size: 30px;
}

.note p {
    font-size: 18px;
}

.footer-containerLogo {
    gap: 20px;
}

.footer-container svg{
        height: 40px;
}
}

@media only screen and (max-width: 1400px) {
.highlightText p {
    font-size: 100px;
    line-height: 100px;
}
}

@media only screen and (max-width: 1100px) {
.highlightText p {
    font-size: 80px;
    line-height: 80px;
}
}

.highlight {
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.highlight-color {
    transform: scale(1.05);
    transition: all 0.3s ease;
}



@media only screen and (max-width: 960px) {

    .cookieBanner.show {
        flex-direction: column;
    }

    .cookieBanner p{
        font-size: 20px;
        line-height: 25px;
    }
    

    .headerLogo-p {
        font-size: 30px;
        line-height: 35px;
    }

    .highlightText p {
        font-size: 60px;
        line-height: 60px;
    }

    p {
        font-family: 'Satoshi', sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 20px;
    }

    .p-bigger {
        font-size: 22px;
        line-height: 27px;
    }

    .p-smaller {
        font-size: 15px;
        line-height: 19px;
    }

    /*geral*/
    .grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        row-gap: var(--marginDesktop);
        column-gap: 0px;
    }

    /*index*/
    .landingInfo {
        grid-column: 1 / span 5;
    }

    .bolas-container {
        grid-column: 1 / span 5;
    }

    .highlightText p {
        font-size: 60px;
        line-height: 60px;
    }

    .brtVideo video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .landingInfo-container {
        margin-bottom: 0;
    }

    .landingInfo-container h1 {
        width: 100%;
    }

    .brtVideo {
        margin-bottom: 50px;
    }

    .section-title {
        grid-column: 1 / span 10;
    }

    .section-text {
        grid-column: 1 / span 10;
    }

    .sectionBreak {
        margin: 100px 0 !important;
    }

    .ballInfo-margin {
        display: none;
    }

    .ballInfo-container {
        grid-column: span 10;
    }

    .bolas-container {
        grid-column: 1 / span 5;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        height: fit-content;
    }

    .landingInfo-title {
        grid-column: 1 / span 5;
    }

    .landingInfo-text {
        grid-column: 1 / span 5;
        margin-top: 10px;
        margin-bottom: var(--marginDesktop);
    }

    .landingInfo-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .bulletLanding-number {
        grid-column: span 1;
    }

    .bulletLanding-name {
        grid-column: span 3;
    }

    .bulletLanding-content {
        grid-column: 2 / span 5;
    }

    .bolas-margin-bot {
        margin-bottom: var(--marginDesktop);
    }

    .ballInfo {
        margin-bottom: 20px;
    }

    .icon-item {
        grid-column: span 10;
        display: flex;
        gap: 10px;
        align-items: center;
        flex-direction: column;
    }

    .icon-item p {
        text-align: center;
    }

    .highlightText p .iconBall-container {
        aspect-ratio: 4 / 4;
        border-radius: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 70px;
        width: 70px;
    }

    .iconBall-container svg {
        width: 50%;
    }

    .icon-container {
        grid-column: 1 / span 10;
        display: grid;
        grid-template-columns: repeat(10, 1fr);
        row-gap: var(--marginDesktop);
        column-gap: 0px;
    }

    /*red*/
    #metroBus-desktop {
        display: none;
    }

    #metroBus-mobile {
        display: block;
    }

    .metroBus-line {
        margin-top: 50px;
        grid-column: 1 / span 10;
    }

    .metroBus-line svg {
        width: 70%;
    }


    .redLine-ball {
        width: 170px;
        height: 170px;
        background-color: var(--red);
    }

    .redLine-bot {
        grid-column: 1 / span 10;
        text-align: center;
        margin-top: 20px;
    }

    .section-text-subtitle {
        grid-column: span 10;
    }

    .section-text-subtext {
        grid-column: span 10;
    }

    .section-titleMargin {
        margin-bottom: 25px;
    }

    .section-text-grid {
        margin-bottom: 25px;
    }

    .last-note{
        margin-top:0;
    }

    .highlightText p{
        font-size: 55px;
        line-height: 55px;
    }



    /*footer*/
    footer {
        row-gap: 0 !important;
    }

    .footer-container {
        grid-column: 1 / span 5;
    }

    .footerhr {
        display: block;
        grid-column: 1 / span 5;
        border: none;
        border-bottom: 1px solid var(--black);
    }

    .footer-container:first-child {
        padding: 0 0 16px 0;
    }

    .footer-container {
        padding: 16px 0;
    }

    .footerhr {
        display: block;
    }


    /*red*/
    .redLine-container {
        position: relative;
        /* Creates positioning context for arrows */
        width: 100%;
        margin-top: 50px;
        overflow: hidden;
    }

    .redLine-list {
        margin-top: 50px;
    }


    .redLine-list {
        grid-column: 1 / span 16;
        display: flex;
        overflow-x: auto;
        /* Changed from hidden to auto to allow scrolling */
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        /* Remove position: relative from here */
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE/Edge */

    }

    .redLine-list::-webkit-scrollbar {
        display: none;
    }


    .redLine-item {
        flex: 0 0 100%;
        scroll-snap-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        padding: 0 20px;
        box-sizing: border-box;
        transform: scale(0.9);
        transition: transform 0.3s ease;
        opacity: 0.7;
    }

    .redLine-item.active {
        transform: scale(1);
        opacity: 1;
    }

    .arrows {
        display: flex;
        width: 100%;
        justify-content: space-between;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        pointer-events: none;
        z-index: 10;
        box-sizing: border-box;
    }

    .arrows svg {
        pointer-events: auto;
        border-radius: 50%;
        padding: 10px;
        cursor: pointer;
    }

    .section-text {
    grid-column: 1 / span 5;
    }
    .last-note {
    grid-column: 1 / span 5;
}

.logoFinanciamento svg{
    height:25px;
}

}

