@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Gluten:wght@300&display=swap');port url('https://fonts.googleapis.com/css2?family=Gluten:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Familjen+Grotesk&display=swap');

@font-face {
    font-family: 'Augie';
    src: url('../fonts/augie.ttf') format('truetype');
  }

:root{
    --cor-fundo: rgb(255, 255, 255);
    --cor-hover: rgb(118, 180, 145);
    --cor-primaria: rgb(0, 0, 0);
}

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


 .conteudo {
    margin-bottom: 48px;
    border-top: 0.4px solid #FFF2E7;
    height: 100%;
    width: 100%;
}

.video-inicio {
    background-image: url(../images/video.svg);
    height: 825px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
     padding: 12px;
}

.menu {
    margin-top: 10px;
    text-align: center;
}

.menu-item {
    border: 7px solid transparent;
    border-image: url("../images/borda.svg") 13 round; 
    background-color: white;
    color: var(--cor-primaria);
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Augie', 'cursive';
    font-size: 32px;
    padding: 6 40 6 40;
}

.menu-item:hover {
    border-image: url("../images/borda.svg") 8 round; 
    
}

.texto {
    text-align: center;
    margin-top: 60px;
}

.texto-titulo {
    font-family: 'Fredoka One', 'cursive';
    font-weight: 400;
    font-size: 75px;
    color: #DC95C9;
    -webkit-text-stroke: 1px rgb(0, 0, 0);
    padding-bottom: 40px;
}

.texto-paragrafo {
    font-family: 'Sarala', sans-serif;
    font-size: 28px;
    text-align: justify;
    text-justify: inter-word;
    padding: 0px 128px;
}

.texto-assinatura {
    font-family: 'Sarala', sans-serif;
    font-size: 28px;
    text-align: right;
    text-justify: inter-word;
    padding: 20px 128px;
}

.texto-paragrafo-imagem {
    display: flex;
    flex-direction: row;
}

.texto-imagem {

    height: 480px;
    margin-right: 100px;
}


@media (max-width: 1308px) {
    
    .texto-paragrafo-imagem {
        flex-direction: column-reverse;
    }

    .texto-imagem {
        height: auto;
        width: 40%;
        margin-left: 30%;
    }
}


@media (max-width: 830px) {

    .texto-titulo {
        font-size: 40px;
    }

    .texto-paragrafo, .texto-assinatura {
        padding: 5px 40px;
        font-size: 18px;
    }
}


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

    .texto {
        margin-top: 40px;
    }

    .texto-titulo {
      font-size: 35px;
    }

    .texto-paragrafo, .texto-assinatura {
        padding: 5px 30px;
        font-size: 18px;
    }

}

@media screen and (max-width: 420px) {
    .texto-titulo {
      font-size: 30px;
    }

    .texto-paragrafo, .texto-assinatura {
        padding: 5px 30px;
        font-size: 15px;
    }
}

@media screen and (max-width: 310px) {
    .texto-titulo {
      font-size: 25px;
    }

    .texto-paragrafo, .texto-assinatura {
        padding: 0px 30px;
        font-size: 15px;
    }

}