/* CARDS */
.cards-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cards-section .content {
    display: flex;
    gap: 30px;
    justify-content: center;
    max-width: 80%;
}
.card {
    flex: 1;
    padding: 30px 15px;
    border-radius: 5px;
    background-color: var(--bg-color-2);   
    text-align: center;         
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 250px;
    min-width: 200px;
    border: 1px solid transparent;
}
.cards-section .card:hover {
    border-color: #4bdd2260;
}
.card-header {
    color: var(--first-color);
    background-color: transparent;
    border: none;
}
.card-caption {
    color: var(--first-color);
    font-size: 1.1rem;
    font-weight: 500;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.card-header i {
    font-size: 4rem;
}

.cards-section .chamada {
    margin-top: 60px;
    margin-bottom: -5px;
}
.cards-section .chamada a {
    border-bottom: 2px solid transparent;
}
.cards-section .chamada a:hover {
    border-color: var(--first-color)
}
/* FIM CARDS */

/* BANNER */
.banner {
    margin-bottom: 50px;
    position: relative;
}
.banner img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    height: 100vh;
    filter: brightness(1);
    filter: brightness(0.9);
}


/* REPLAYS */
.banner .replays {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
}

.banner .replaysContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner .replays > h1 {
    font-size: 2em;
    color: #F5F5F5;
    font-weight: normal;
}
.banner .replays > a {
    background-color: transparent;
    border: 1px solid #F5F5F5;
    border-radius: 5px;
    padding: 5px 15px;
    font-size: 2em;
    color: #F5F5F5;
    cursor: pointer;
}
.banner .replays > a:hover {
    color: var(--first-color);
    border-color: var(--first-color);
}
/* FIM REPLAYS */
/* FIM BANNER */

/* QUEM SOMOS */
.quemsomos .content {
    display: flex;
    flex-direction: column;
}
.quemsomos .item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.quemsomos .item img {
    width: 100%;
    height: auto;
    max-width: 400px;
}
.quemsomos .item span {
    max-width: 800px;
    display: inline-block;
    font-size: 1.3rem;
}
.quemsomos .titulo {
    font-size: 1.4rem;
}
/* FIM QUEM SOMOS */


/* FALE CONOSCO */
.fale-conosco {
    min-height: calc(100vh - 87px);
    padding: 50px 30px;
    background-color: var(--bg-color-3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: linear-gradient( rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) ), url("../../img/bg5blur.webp");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}
.fale-conosco .form {
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    background-color: var(--bg-color-3);
    padding: 30px 60px;
    border-radius: 5px;
    z-index: 2;
}    
/* FIM FALE CONOSCO */

/* MOBILE */
@media only screen and (max-width: 991px) {
    .page-container {
        padding: 50px 15px;
        min-height: calc(100vh - 166.5px);
    }
    .page-container > *, .fale-conosco .form {
        max-width: 600px;
    }
    .banner img {
        max-height: min(90vh, 600px);
    }

    .quemsomos .content .item {
        flex-direction: column;
    }
    .quemsomos .content .item:nth-child(2) img {
        order: 1;
    }
    .quemsomos .content .item:nth-child(2) div {
        order: 2;
    }
    .quemsomos .item img {
        max-height: 200px;
        object-fit: contain;
    }
    .quemsomos .item span {
        max-width: 800px;
        text-align: justify;
        display: inline-block;
        font-size: 1rem;
    }
    .cards-section .content {
        max-width: 100%;
        flex-direction: column;
    }
    .footer {
        flex-direction: column;
        gap: 50px;
    }

    footer .copyright {
        margin: 0;
    }

    .fale-conosco {
        padding: 50px 15px;
    }
    .fale-conosco .form { 
        padding: 15px 30px;
    }
    .banner .replays > span {
        font-size: 1.5em;;
    }
    .banner .replays > a {
        max-width: 90%;
        font-size: 1.2em;
    } 

    .form button {
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 1rem;
    }

    .navbar {
        padding: 5px 15px;    
        flex-wrap: inherit;

    }
    .navbar .logo img {
        position: relative;
        top: 2px;
        max-width: 120px;
    }
    .menu {
        gap: 10px;
    }
    .menu .item a {
        font-size: 0.7em;
        white-space: nowrap;
    }

    footer {
        padding: 15px;
        font-size: 0.7em;
    }
    footer .social-media a {
        width: 24px;
        height: 24px;
        font-size: 0.6rem;
    }
    footer .contato i {
        font-size: 1rem;
    }
}
/* FIM MOBILE */

@keyframes whatsapp {
    0%, 10%, 100% {
        transform: rotate(0deg);
    }
    2% {
        transform: rotate(-30deg);
    }  
    5% {
        transform: rotate(30deg);
    }   
}