/* styles.css */
:root {
    --main-font: "Roboto Mono", monospace;
    --main-background: #D4D4D4;
    --main-font-color: #D4D1919194D4;
    --yellow:#f0db4f;
    --purple:#393be5;
}

@media (prefers-color-scheme: dark) {
    :root {
        --main-background: #191919;
        --main-font-color: #fff;
    }
}

body {
    font-family: var(--main-font);
    background-color: var(--main-background);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    min-width: 99vw;
    color: var(--main-font-color);
    overflow-x: hidden !important;
    scrollbar-width: thin;
}

/* Banner Principal */

.cover {
    position: relative;
    height: 20vh;
    background-color: #000;
    overflow: hidden;
    background-image: url("../assets/images/index-images/banner.gif");
    background-size: contain;
    background-size: 30%;
    background-position: center;
    background-repeat: no-repeat;
}

@media screen and (max-width: 900px) {
    .cover {
        background-size: 150%;
    }
    
}

.content {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    width: clamp(250px, 80vw, 2000px);
}


.main-title {
    width: 40vw;
    display: flex;
    flex-direction: row;

    & h1 {
        margin-right: 40vw;
    }

    align-items: center;
    border-bottom: 2px solid #abbeca;
}

#divzona {
    margin-left: 100px;

}

.title {
    display: flex;
    align-items: start;
    flex-direction: row;
    width: 40vw;
    align-items: center;

}

.title-p {
    font-weight: 800;
}

.toggle-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2f3437;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    margin-right: 20px;
    margin-left: -20px;
}

.toggle-button:hover {
    background-color: #52575c;
}

.toggle-content {
    margin-top: 3px;
    margin-left: 20vw;
    border-left: 4px solid #2f3437;
    padding-left: 6px;
    width: clamp(250px, 70vw, 3000px);
}

.img-loading {
    margin-top: 5vw;
    height: 70vh;
}

.img:hover {
    transform: scale(1.04);
}

.img-vertical {
    width: 400px;
    height: 600px;
}

.img-vertical-menor {
    width: 400px;
    height: 400px;
}

.img-horizontal {
    width: clamp(300px, 80vw, 1000px);
}

/* Responsividade */
@media screen and (max-width: 999px) {
    #content {
        width: 100vw;
        height: 100vh;
        /* retirar scroll x */
        overflow-x: hidden;
    }
}