@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

html {
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

body {
    margin: 0;
    padding: 0 1rem;
    /* Quando diminuir a tela vai ficar com espaco nas bordas */
    max-width: 900px;
    min-height: 100vh;
    display: flex;
    /* align-items: center; */
    /* justify-content: center; */
    flex-wrap: wrap;
    background-color: #370617;
    font-family: "Montserrat", sans-serif;
    color: #fff;
}

/* header */

header {
    margin: 10px 0;
    padding: 0 10px;
    height: 40px;
    border-radius: 12px;
    background: #11111142;
    backdrop-filter: blur(10px);
    width: 100%;
    position: sticky;
    z-index: 10;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
}

.logo img {
    width: 35px;
    height: 35px;
}

.criadores {
    width: 300px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
}

#btn-header button{
    font-size: 0.8rem;
    padding: 6px 24px;
}

/* header */


/* Tisora */
#tisora {
    display: grid;
    /*Se mudar aqui vai precisar mudar no js tb a quantidade de colunas e linhas*/
    grid-template-columns: repeat(38, 10px);
    grid-template-rows: repeat(38, 10px);
    gap: 1px;
    background-color: #37061700;
    padding: 10px;
    z-index: 15;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.dot {
    color: #222222c5;
    font-size: 15px;
    text-align: center;
    user-select: none;
    transition: color 0.2s ease;
}

.fixed-dot {
    color: #ff3131;
    font-size: 10px;
    text-align: center;
    user-select: none;
}

.hover-dot-inner {
    color: #ff3131;
    font-size: 8px;
    text-align: center;
    user-select: none;
    transition: color 0.2s ease;
}

.hover-dot-outer {
    color: #222;
    font-size: 8px;
    text-align: center;
    user-select: none;
    transition: color 0.2s ease;
}

/* Tisora */

.texto-tisora {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Mudar aqui para center para voltar a ficar um ao lado do outro */
    width: 100%;
    height: 450px; /* Mudar aqui para 500px para voltar a ficar igual antes */
    position: relative;
}

.text-div {
    position: relative;
    z-index: 2;
}

.text-div h1 {
    font-family: "Bebas Neue", sans-serif;
    font-style: normal;
    font-weight: 500;
    margin: 0;
    font-size: 64px;
}

#B {
    color: #ffffffb4;
}

.text-div p {
    width: 60%;
    color: #ffffffb4;
    font-size: 18px;
}

/* button */

.btn button {
    background: linear-gradient(90deg, #852222, #F74040);
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 10px 32px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.7s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 15px 0;
    /* position: relative;
    z-index: 10; */
}

/* Animacao do btn */

/* button */


.teste-tesoura-3d {
    height: 100vh;
}