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


body {
    font-family: 'Helvetica Neue', 'Inter', 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow: hidden;
}

header {
    background-color: #000000;
    color: white;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}

#image-overlay {
    display: none !important;
    pointer-events: none !important;
}

img {
    -webkit-user-select: none; /* For Safari */
    user-select: none; /* Standard syntax for other browsers */
}

.header-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ticker-container {
    flex: 0 0 80%;
    overflow: hidden;
    height: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: -12px;
}

.ticker-label {
    color: #ffffff;
    font-size: 1em;
    font-weight: 700;
    font-style: italic;
    white-space: nowrap;
    flex-shrink: 0;
}

.ticker {
    flex: 1;
    overflow: hidden;
    position: relative;
    margin-left: 0.5rem;
    height: 100%;
    display: flex;
    align-items: center;
}

.ticker-text {
    font-size: 1em;
    font-weight: 400;
    color: #8e8e8e;
    white-space: nowrap;
    animation: scrollText 30s linear infinite;
    padding-left: 1rem;
    cursor: default;
}

.ticker:hover .ticker-text {
    animation-play-state: paused;
}

@keyframes scrollText {
    0% {
        transform: translateX(50%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.header-buttons {
    flex: 0 0 20%;
    display: flex;
    justify-content: flex-end;
    gap:1rem;
}

.social-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.social-btn:hover {
    opacity: 0.7;
}

.social-btn img {
    object-fit: contain;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #34495e;
}

main {
    max-width: 1440px;
    margin: 0 auto;
    padding-top: 6rem;

    &.full-width {
        padding: 0;
        margin: 0;
        max-width: 100%;
    }
}

#black-cover {
    position: fixed;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: #000;
    transition: opacity 0.5s ease-out;
    opacity: 1;
}
#black-cover.hidden {
    opacity: 0;
    pointer-events: none;
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#help {
    width: 100%;
}

#breath .container {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.breat-image {
    position: absolute;
    pointer-events: none;
}

.hero-text {
    text-align: center;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.anxiety-text {
    text-align: center;
    transform: scale(1.25);
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.help-text {
    text-align: center;
    transform: scale(1.05);
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.lets-talk-text {
    text-align: center;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.text-line {
    color: #ffffff;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

.creativity {
    width: 100%;
    text-align: center;
    white-space: nowrap;
    margin-top: 0.25em;
}

.anxiety {
    width: 100%;
    text-align: center;
    white-space: nowrap;
    margin-top: 0.25em;
}

.help {
    width: 100%;
    text-align: center;
    white-space: nowrap;
    margin-top: -0.2em;
}

.lets-talk {
    width: 100%;
    text-align: left;
    white-space: nowrap;
    margin-top: 0.25em;
}

.talk {
    width: 100%;
    text-align: right;
    white-space: nowrap;
    font-size: var(--lets-talk-font-size);
    margin-top: -0.55em;
}

.for {
    margin-top: -0.25em;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    font-size: var(--hero-font-size);
}

.logo-image {
    height: 0.65em;
    margin-right: 0.37em;
    margin-left: -75px;
    margin-top: -55px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}

.anxious-souls {
    margin-top: -0.45em;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    font-size: var(--hero-font-size);
}

.souls {
    margin-top: -0.45em;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    font-size: var(--hero-font-size);
}

.isnot {
    margin-top: -0.4em;
    margin-left: 0.5em;
    width: 100%;
    text-align: left;
    white-space: nowrap;
    font-size: var(--anxiety-font-size);
}

.bs {
    margin-top: -0.45em;
    margin-left: -0.6em;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    font-size: var(--anxiety-font-size);
}

section p {
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 400;
}

section.white {
    background-color: white;
}

section.full-width {
    width: 110vw;
    margin-left: -5vw;
}

button {
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

button:hover {
}

button:active {
    transform: translateY(1px);
}

.container {
    display: flex;
    width: 45rem;
    flex-direction: column;

    &.center {
        justify-content: center;
    }

    .title {
        font-size: 3em;
        line-height: 1;
        font-weight: 600;
        margin-bottom: 2rem;

        &.small {
            font-size: 2em;
        }

        &.medium {
            font-size: 4em;
        }
    }

    p {
        width: 20rem;
    }

    a {
        color: #fff;
        font-size: 2rem;
        font-weight: 600;
        transition: 0.3s ease;

        &.small {
            font-size: 1.5rem;
        }

        &:hover {
            text-decoration: none;
        }
    }
    
    .subtitle {
        font-size: 2rem;
        font-weight: 600;
    }
    
    video {
        margin-bottom: 5rem;
    }
}

.spacer {
    width: 100%;

    &.small {
        height: 3rem;
    }

    &.medium {
        height: 6rem;
    }

    &.large {
        height: 9rem;
    }
}



#demoOutput {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #222222;
    border-radius: 4px;
    border-left: 4px solid #3498db;
    min-height: 2rem;
    color: #ffffff;
}

#content-07 {
    margin-top: -6em;
}

#content-07 a {
    margin-top: -1.8em;
    text-align: center;
}

#content-08 {
    margin-top: 25vw;

    * {
        color: #000000;
    }

    .img01 {
        margin-top: -25vw;
        position: relative;
        overflow: hidden;
        width: 100%;
        height: auto;
        display: block;
    }

    .img02 {
        margin-bottom: -25vw;
        position: relative;
        overflow: hidden;
        width: 100%;
        height: auto;
        display: block;
    }
}

#content-09 {
    margin-top: 18vw;
}

#content-12 p {
    color: #8c8c8c;
}

#footer {
    background-color: #000000;
    color: white;
    padding: 2rem 0;
    margin-top: 2rem;
    font-size: 0.25em;

    p {
        font-size: 4em;
        line-height: 0.5;
        width: unset;
    }

    a {
        font-size: 4em;
    }

    .container {
        display: flex;
        flex-direction: row;
        align-content: flex-start;
        justify-content: flex-start;
        align-items: flex-start;

        div:nth-child(2) {
            margin-left: 6rem;
            margin-top: -6px;
        }
    }

    .powered {
        margin-top: -1em !important;
        margin-bottom: 4em;
    }
}

.footer-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.footer-column:first-child {
    flex: 0 0 70%;
}

.footer-column:last-child {
    flex: 0 0 30%;
}

.footer-column p,
.footer-column b {
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 400;
    display: block;
}

.footer-column p:last-child {
    margin-bottom: 0;
}

.footer-column b {
    font-weight: 700;
}

.footer-column a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #3498db;
    text-decoration: underline;
}

#breathCanvas {
    cursor: pointer;
}

.no-scroll {
    overflow-y: scroll;
    height: 100vh;
}

#animationPosts_container {
    z-index: 9999999;
    position: fixed;
    margin: auto auto;
    width: 1440px;
    height: 100vh;
    padding: 0 1em;
    pointer-events: none;
}

#animationPosts {
    position: fixed;
    width: 100%;
    z-index: 10;
    display: flex;
    animation-duration: 4s;
    animation-fill-mode: forwards;
    opacity: 0;
    top: 0px;
    left: 0px;
    z-index: 9999999;
    pointer-events: none;
}

#animationPosts .coluna {
    width: 50%;
    animation-duration: 4s;
    animation-fill-mode: forwards;
    display: block;
}

#animationPosts .coluna:nth-child(2n) {
    margin-top: 85px;
}

#animationPosts .blankPost {
    width: 100%;
    padding-top: 128.66%;
    background: url("assets/images/post.svg") left top / 100% no-repeat;
    margin-bottom: 25px;
}

.animate__animated {
    animation-duration: var(--animate-duration);
    animation-fill-mode: both;
}

.wow {
    opacity: 0;
}

.animate__postUp {
    animation-name: postUp;
}

.animate__hidePosts {
    animation-name: hidePosts;
}

@keyframes postUp {
    0% { 
        opacity: 0; 
        transform: translateY(100%); 
    }
    50% { 
        opacity: 1; 
    }
    99% { 
        opacity: 0; 
        transform: translateY(-100%); 
    }
    100% { 
        opacity: 0; 
        transform: translateY(-100%); 
        visibility: hidden; 
        z-index: -999; 
    }
}

@keyframes hidePosts {
    0% { 
        z-index: 10; 
        opacity: 0; 
    }
    50% { 
        z-index: 10; 
        opacity: 1; 
    }
    100% { 
        visibility: hidden; 
        z-index: -999; 
        opacity: 0; 
    }
}

#cookies {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    z-index: 99999999;
    background-color: #ffffff;
    pointer-events: all;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

#cookies.hidden {
    opacity: 0;
    pointer-events: none !important;
}

.cookies-text {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 125px;
    height: 150px;
    margin-top: 65px;
}

.cookies-text a {
    color: #000;
    text-decoration: underline;
    font-size: 22px;
    line-height: 1.5;
    cursor: pointer;
}
.cookies-text a:hover {
    text-decoration: none;
}

.video-mask-container {
    position: relative;
    overflow: hidden;
    width: 700px;
    height: 394px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    clip-path: polygon(131.1px 35.4px, 569.2px 70.8px, 700px 394px, 0px 394px);
}

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

.img01, .img02 {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 300px;
    display: block;
    object-fit: cover;
}

.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mt-1 {
    margin-top: 1rem;
}


@media (max-width: 1440px) {
    main {
        max-width: 95%;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    main {
        max-width: 100%;
        margin: 0;
        overflow: hidden;
    }

    main.full-width {
        overflow: visible;
    }
    
    section {
        padding: 1rem;
        margin: 1rem 0;
    }

    section.white {
        height: 150vh;
    }

    #animationPosts_container {
        width: 174vw;
        margin-left: -6vw;
    }

    #black-cover {
        height: 105vh;
        top: -5vh;
    }

    #cookies {
        left: 0;
        top: -5%;
        height: 105%;
    }

    .spacer {
        &.large {
            height: 2rem;
        }
    }

    .header-content {
        display: flex;
        max-width: 100vw;
        flex-direction: row;
        gap: 0.5rem;
        padding: 0 0.35rem;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: space-between;
        align-items: center;
        margin: 0 0.25em;
    }
    
    .header-buttons {
        gap: 0.5rem;
        margin-top: -2px;
        margin-right: 5px;
    }

    .ticker-container {
        width: 70vw;
        gap: 0.25em;
        flex: unset;
    }
    
    .ticker-label {
        font-size: 0.5em;
    }

    .ticker-text {
        font-size: 0.6em;
    }

    .social-btn img {
        height: 20px;
    }

    .logo-image {
        height: 0.65em;
        margin-right: 0.1em;
        margin-left: -10px;
        margin-top: -19px;
    }

    #breathCanvas {
        width: 85vw !important;
        height: 85vw !important;
        border: 15px solid;
    }

    @keyframes breathBorder {
        0% {
            transform: scale(0.85);
        }
        25% {
            transform: scale(0.85);
        }
        50% {
            transform: scale(1);
        }
        75% {
            transform: scale(1);
        }
        100% {
            transform: scale(0.85);
        }
    }

    #breathCanvas.mobile {
        animation: breathBorder 8s ease-in-out infinite;
    }

    #breath {
        margin-top: -3em;
    }

    .video-mask-container {
        width: 90vw;
        margin-left: -6vw;
        height: auto;
        transform: scale(1.2);
    }

    .container {
        width: 100%;

        .title {
            font-size: 2em;

            &.medium {
                font-size: 2.5em;
            }
        }

        a {
            font-size: 1rem;
        }

        p {
            width: 100%;
        }
    }

    #content-07 {

        margin-top: 0;

        a {
            img {
                width: 100%;
            }
        }
    }

    #content-08 {

        .container {
            margin-top: -20vh;
        }

        .img01 {
            margin-top: 0;
            margin-bottom: 25vh;
        }

        .img02 {
            margin-bottom: 0;
        }
    }

    #content-08a {
        padding-left: 1.5em;
    }

    #footer .container {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-content: center;
        justify-content: center;
        align-items: center;

        div:nth-child(2) {
            margin-left: 0;
        }
    }
}


