@import url('https://fonts.googleapis.com/css2?family=Galada&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dynalight&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    background-color: whitesmoke;
    min-height: 100dvh;
    max-width: 100dvw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

header {
    padding: 20px;
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100dvh;
    background-color: rgb(14, 14, 14);
    gap: 20px;
}

header img {
    width: 600px;
    animation:
        transicao 10s infinite,
        opacidade 3s forwards;
    filter: grayscale(100) brightness(100);
    padding: 10px;

}

header h1 {
    color: whitesmoke;
    font-family: "Montserrat", sans-serif;
    font-weight: 200;
    animation: movimentobaixopracima 12s;
    animation-iteration-count: 1;
}

header h2 {
    color: whitesmoke;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    animation: movimentobaixopracima 12s;
    animation-iteration-count: 1;
}

@keyframes transicao {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(15px);
    }

    75% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

main {
    flex: 1;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    text-align: center;
}

#contato {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-wrap: wrap;
    justify-content: center;
    text-align: center;
    align-items: center;
    padding-bottom: 20px;
    animation: opacidade 3s;
    animation-iteration-count: 1;
    text-align: center;
}

h1,
h2 {
    color: black;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    animation: movimentobaixopracima 12s;
    animation-iteration-count: 1;
}

h2 {
    font-weight: normal;
}

button {
    cursor: pointer;
    background-color: rgba(172, 242, 253, 0.644);
    color: black;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 20px;
    border: 0;
    padding: 20px;
    padding-left: 80px;
    padding-right: 80px;
    border-radius: 10px;
    transition: 0.5s;
}

button:hover {
    color: whitesmoke;
    box-shadow: 0px 0px 10px whitesmoke;
    transform: scale(1.000000000001);
    font-weight: bold;
}

#casamentos h2{
    max-width: 700px;
    padding: 20px;
}

.portfolio {
    gap: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: opacidade 3s;
    animation-iteration-count: 1;
    text-align: center;
    min-height: 100dvh;
    padding-bottom: 20px;
    padding-top: 20px;
    align-items: center;
}

@keyframes opacidade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.videos {
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    animation: opacidade 5s;
    animation-iteration-count: 1;
}

.videos video,
.videos img {
    width: 640px;
    height: 360px;
    border-radius: 20px;
    align-items: center;
    object-fit: cover;
    transition: none !important;
}

.videos-comercial {
    align-items: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    animation: opacidade 5s;
    animation-iteration-count: 1;
}

.videos-comercial video,
.videos-comercial img {
    width: 300px;
    height: 531px;
    border-radius: 20px;
    align-items: center;
    object-fit: cover;
    transition: box-shadow 0.5s ease-in-out;
}

video:fullscreen {
    object-fit: contain;
    background-color: black;
    transition: all 0.8s ease-in;
}

video:-webkit-full-screen {
    object-fit: contain;
    background-color: black;
    transition: all 0.8s ease-in;
}

video:not(:fullscreen) {
    transition: none !important;
}

video:hover {
    box-shadow: 0px 0px 10px whitesmoke;
    transition: box-shadow 0.5s ease-in-out;
}

#parceiros {
    background-color: whitesmoke;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: whitesmoke;
    padding: 20px;
}

#parceiros div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

#parceiros img {
    width: 150px;
    filter: drop-shadow(1px 1px 0px black);
}



footer {
    align-items: center;
    text-align: center;
    text-wrap: wrap;
    background-color: rgb(15, 15, 15);
    padding-top: 10px;
    padding-bottom: 10px;
    color: rgb(230, 230, 230);
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 19px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}


@media screen and (max-width: 700px) {
    header img {
        width: 400px;
    }

    .videos video,
    .videos img {
        width: 500px;
        height: 280px;
    }

    .videos-comercial video,
    .videos-comercial img {
        width: 270px;
        height: 470px;
    }
}


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

    #casamentos {
        min-height: 0;
        padding-top: 20px;
        padding-bottom: 30px;
    }

    #casamentos h2 {
        width: 250px;
        font-size: 16px;
        padding: 0;
    }

    header img {
        width: 270px;
    }

    .videos video,
    .videos img {
        width: 400px;
        height: 250px;
    }

    .portfolio h2{
        font-size: 18px;
    }

    .portfolio button{
        padding: 10px;
        font-size: 18px;
    }

    #parceiros img {
        width: 75px;
    }

    footer{
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        font-size: 16px;
        text-align: center;
    }
}

@media screen and (max-width: 420px) {
    #contato h1{
        font-size: 24px;
    }

    #contato h2{
        font-family: Arial, Helvetica, sans-serif;
        font-size: 18px;
    }

    .videos video,
    .videos img {
        width: 290px;
        height: 170px;
    }

}