@import url('https://fonts.googleapis.com/css2?family=Copse&display=swap');


.__container_body_overflow_hidden {
    width: 100vw;
    height: 100dvh;
    overflow: hidden;
    display: block;
}

.__container_body_overflow_auto {
    width: 100%;

    height: 100%;
    overflow: auto;
    display: block;
}


.__center_icon_container {

    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;

    background-image: url('/imgs/banner.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}



.__descr_content_ {

    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.__descr_content_ p {
    width: 80%;

    line-height: 33px;

    font-weight: 500;
    font-size: 25px;


    font-family: "Copse", serif;
    font-weight: 800;
    font-style: normal;
    text-align: center;
}


.__container_algiment_itens {

    width: 100%;
    height: auto;
    flex-wrap: wrap;
    margin-bottom: 10px;
    gap: 25px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}






/* VIDEO */

.video-box {
    background: white;
    padding: 18px;
    width: 300px;
    border-radius: 28px;
    border: 1px solid #f1e3ea;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
    animation: float 5s ease-in-out infinite;
}

.video-thumb {
    width: 100%;
    aspect-ratio: 10/9;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .25), transparent);
}

.play {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.play button {
    width: 88px;
    height: 88px;
    border: none;
    border-radius: 50%;
    background: white;
    color: var(--primary);
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 0 0 12px rgba(255, 255, 255, .18);
    transition: .3s;
}

.play button:hover {
    transform: scale(1.08);
}

.video-info {
    padding: 24px 8px 8px;
}

.video-info h2 {
    font-size: 1.5rem;
    line-height: 33px;
    margin-bottom: 12px;
    color: var(--dark);
}

.video-info p {
    color: var(--text-light);
    line-height: 1.7;
}




@keyframes float {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }

}



.footer {
    background: linear-gradient(180deg, #111, #0a0a0a);
    color: #fff;
    padding-top: 60px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-logo {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #4da6ff;
}

.footer-section p {
    line-height: 1.7;
    color: #bdbdbd;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #bdbdbd;
    text-decoration: none;
    transition: .3s;
}

.footer-section a:hover {
    color: #4da6ff;
    padding-left: 5px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom {
    margin-top: 50px;
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: #888;
    font-size: .9rem;
}

/* Responsivo */
@media (max-width:768px) {

    .footer {
        text-align: center;
    }

    .social-links {
        align-items: center;
    }

}


.__icon_link_three {
   
    width: 42px;
    height: 42px;
    background-image: url('');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 10px;
}

