@import url('https://fonts.googleapis.com/css2?family=Marmelad&display=swap');

@font-face {
    font-family: 'Lisu Bosa';
    src: url('/assets/fonts/LisuBosa-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Marmelad', sans-serif;
}

body {
    background-color: #121212;
    color: #fff;
    text-align: center;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
}

header img {
    width: 70px;
    pointer-events: auto;
}

header a {
    position: relative;
    z-index: 10;
}

.banner {
    background-image: url('/assets/Vector.png');
    background-size: 80%;
    background-position: center;
    background-repeat: no-repeat;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    padding-top: 100px;
}

.text-container {
    padding: 20px 40px;
    border-radius: 10px;
    max-width: 60%;
}

.text-container h1 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 15px;
    font-family: 'Lisu Bosa', serif;
}

.text-container p {
    font-size: 22px;
    line-height: 1.5;
    color: #707070;
}

.film-strip {
    background-image: url(/assets/image\ 2.png);
    height: 90px;
    background-size: auto 90px;
    font-variant: JIS04;
    animation: move 2000s infinite;
    }
    @keyframes move {
   from {background-position: 0;}
   to{background-position: -100000px;}
    }


#servicos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: justify;
    padding: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

#servicos h2 {
    font-size: 24px;
    text-align: center;
}

#servicos p {
    color: #707070;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 20px;
}

#servicos ul {
    list-style-position: inside;
    text-align: justify;
    padding-left: 10px;
    font-size: 22px;
    color: #707070;
}

#servicos ul li {
    margin-bottom: 10px;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    padding-bottom: 45%;
    height: 0;
    overflow: hidden;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

footer {
    background-color: #1a1a1a;
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 20px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-buttons button {
    width: 40px;
    height: 40px;
    background-color: #555; 
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.footer-buttons button:hover {
    background-color: #777; 
}

.footer-buttons button img {
    width: 20px;
    height: 20px;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 15px;
}

.footer-separator {
    width: 100%;
    height: 1px;
    background-color: white;
    margin: 20px 0;
}

.footer-rights {
    font-size: 12px;
    opacity: 0.7;
}

.contact-info p {
    font-size: 14px;
    margin: 5px 0;
}

.copyright {
    margin-top: 10px;
    font-size: 12px;
}

@media (max-width: 768px) {
    .banner {
        height: 350px;
    }

    .text-container {
        max-width: 90%;
        padding: 20px;
    }

    .text-container h1 {
        font-size: 30px;
    }

    .text-container p {
        font-size: 14px;
        color: #707070;
    }

    .film-strip img {
        width: 100%;
    }

    .form-container {
        padding: 30px;
        margin: 20px;
    }

    .form-container h2 {
        font-size: 20px;
    }

    button {
        padding: 10px;
    }

    footer {
        padding: 20px 0;
    }

    .footer-container {
        max-width: 100%;
        padding: 0 20px;
    }

    .footer-container img {
        width: 80px;
    }

    .social-icons a img {
        width: 20px;
    }

    .contact-info p {
        font-size: 12px;
    }

    .copyright {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .banner {
        height: 250px;
    }

    .text-container {
        max-width: 95%;
    }

    .text-container h1 {
        font-size: 22px;
    }

    .text-container p {
        font-size: 14px;
        color: #707070;
    }

    .film-strip img {
        width: 100%;
    }

    .form-container {
        padding: 20px;
    }

    .form-container h2 {
        font-size: 18px;
    }

    button {
        padding: 8px;
    }

    footer {
        padding: 15px 0;
    }

    .footer-container img {
        width: 60px;
    }

    .social-icons a img {
        width: 18px;
    }

    .contact-info p {
        font-size: 10px;
    }

    .copyright {
        font-size: 8px;
    }
}

