/* fontes tipograficas */
.pt-sans-regular {
    font-family: "PT Sans", serif;
    font-weight: 400;
    font-style: normal;
}

.pt-sans-bold {
    font-family: "PT Sans", serif;
    font-weight: 700;
    font-style: normal;
}

.pt-sans-regular-italic {
    font-family: "PT Sans", serif;
    font-weight: 400;
    font-style: italic;
}

.pt-sans-bold-italic {
    font-family: "PT Sans", serif;
    font-weight: 700;
    font-style: italic;
}

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


html,
body {
    font-family: "PT Sans", sans-serif;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: url('../img/dedo.png') 16 16, auto !important;
    /* font-size: 1.5rem; */
}

button,
.btn,
a {
    cursor: url('../img/dedo.png') 16 16, auto !important;
}

.titulo{
    font-size: 6rem;
    font-weight: 700;
}


.btn:hover {
    background-color: white;
    color: black;
}

/* secções */
#section1 {
    background: rgb(255, 255, 255);
}

#section2 {
    background: rgb(255, 0, 0);
}

#section3 {
    background: rgb(255, 183, 0);
}

#section4 {
    background: rgb(255, 183, 0);
}

#section5 {
    background: rgb(170, 213, 237)
}

#section6 {
    background: rgb(255, 105, 105)
}

.section {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* font-size: 6rem;
    font-weight: 700; */
    line-height: 0.8 !important;
    text-align: center;
}

.container-fluid {
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: row;
    width: 700%;
    /* caso venha a ter mais secções */
    height: 100vh;
    transition: transform 0.8s ease-in-out;
}

/* redimensiona para telemovel */
@media (max-width: 768px) {
    .container-fluid {
        flex-direction: column;
        width: 100vw;
        height: 700vh;
    }

    .section {
        width: 100vw;
        height: 100vh;
    }
}