
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #000000;
    color: #fff;
}

/* Navbar Styles */
.main-nav {
    background-color: #000000;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}




.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer; 
}

#logo-text {
    margin: 0;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease; 

}

#logo-text:hover {
    color: #00aaff; 
}

.logo img {
    max-height: 50px; 
    display: block; 
    cursor: pointer;
}



.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #00aaff;
}

/* Responsividade */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 50px;
        right: 20px;
        background-color: #111;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        display: flex;
    }
}


.header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly; 
    align-items: center; 
    min-height: 80vh;
    position: relative;
    /*background-color: red;*/
    padding: 30px;
    box-sizing: border-box;
}

.header-content {
    flex: 1 1 50%; 
    max-width: 50%;
    /*background-color: gray;*/
    text-align: center; 
    padding: 40px;
    box-sizing: border-box;
}

.header-content h1 {
    font-size: 55px;
    line-height: 1.0;
    margin: 20px;
}

.header-content p {
    font-size: 20px;
    margin-bottom: 20px;
}

.download-buttons {
    display: flex;
    gap: 10px; 
    justify-content: center; 
    align-items: center; 
}

.download-buttons img {
    width: 160px;
    height: 60px; 
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-buttons img {
    cursor: pointer;
}

.btn-googleplay{
    width: 160px;
    height: 80px;
}

.btn-iphone{
    width: 160px;
    height:65px ;
}

.download-buttons img:hover {
    transform: translateY(-5px); 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); 
}


.header-image {
    flex: 1 1 50%;
    max-width: 50%;
    display: flex;
    justify-content: center; 
    align-items: center;
    /*background-color: green;*/
    padding: 20px;
    box-sizing: border-box;
}

.header-image img {
    width: 65%;
    transform: rotate(-10deg);
}

/* Media queries para responsividade */
@media (max-width: 768px) {
    .header {
        flex-direction: column; 
        justify-content: center; 
        text-align: center;
    }

    .header-content {
        max-width: 100%;
        text-align: center; 
    }

    .header-content h1 {
        font-size: 30px;
    }

    .header-content p {
        font-size: 0.9rem;
    }

    .header-image img {
       width: 160%;
    }

    .download-buttons img {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 18px;
    }

    .header-content p {
        font-size: 0.8rem;
    }

    .download-buttons img {
        width: 100px;
    }
}


/* compativeis */
.compatible-stores {
    background-color: #fff;
    padding: 20px 0;
    text-align: center;
    width: 100%;
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; 
    gap: 20px;
    width: 100%;
}

.logos-container img {
    max-height: 80px;
    max-width: 150px; 
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logos-container img:hover {
    transform: scale(1.1);
}

/* Media queries para responsividade */
@media (max-width: 768px) {
    .logos-container img {
        max-height: 60px; 
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .logos-container img {
        max-height: 50px;
        max-width: 100px;
    }
}

/*

stylo da pagina QUEM SOMOS

*/

.quem-somos-header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('imagens/jmv-play-plataforma-de-streaming.jpeg') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 50px 20px;
    height: 100vh;
    
}

.header-content{
    margin: 0 auto;
}


/***** Seções *****/
.about-jmv {
    padding: 40px 20px;
    text-align: center;
    /*background-color: #f9f9f9;*/
}

.about-jmv h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
}

.about-jmv p {
    font-size: 1.2rem;
    color: white;
    line-height: 1.8;
}

/***** Missão e Valores *****/
.mission-values {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px 20px;
    background-color: #fff;
    text-align: center;
}

.mission, .values {
    flex: 1;
    margin: 20px;
    max-width: 400px;
}

.mission h2, .values h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.mission p, .values ul {
    font-size: 1rem;
    color: #555;
}

.values ul {
    list-style: none;
    padding: 0;
}

.values li {
    margin: 5px 0;
}


/* Footer Styles */
.footer {
    background-color: #000;
    color: #fff;
    padding: 20px 10px;
    text-align: center;
    border-top: 2px solid #00aaff;
}

.footer-container {
    display: flex;
    justify-content: space-around; 
    align-items: center; 
    flex-wrap: nowrap; 
    max-width: 700px; 
    margin: 0 auto; 
    padding: 20px 0;
    width: 100%; 
}

.footer-logo {
    text-align: center; /* Centraliza o conteúdo */
    cursor: pointer; /* Indica que é clicável */
}

.footer-logo img {
    max-height: 110px;
    display: block;
    margin: 0 auto; /* Remove margem extra abaixo da imagem */
}

#footer-logo-text {
    margin-top: 10px; /* Espaçamento entre o texto e a imagem */
    color: white;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease; /* Transição para hover */
}

#footer-logo-text:hover {
    color: #00aaff; /* Cor ao passar o mouse */
}

.footer-links,
.footer-socials {
    flex: 1;
    text-align: center; 
}

.footer-links h3,
.footer-socials h3 {
    font-size: 1.2rem;
    color: #00aaff;
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 5px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00aaff;
}

.footer-socials .social-icons {
    display: flex;
    justify-content: center;
}

.footer-socials .social-icons a {
    margin: 0 10px;
    font-size: 1.5rem;
    color: #fff;
    transition: color 0.3s ease;
}

.footer-socials .social-icons a:hover {
    color: #00aaff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 10px;
    margin-top: 10px;
    font-size: 0.8rem;
    text-align: center;
}

.footer-bottom a {
    color: #00aaff;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #fff;
}


@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; 
        align-items: center; 
        text-align: center; 
        padding: 20px 10px; 
        margin: 0 auto; 
        width: 100%; 
    }

    .footer-logo img {
        margin-bottom: 20px; 
    }

    .footer-links,
    .footer-socials {
        margin: 20px 0; 
        width: 100%; 
    }

    .footer-links ul {
        padding: 0;
    }

    .footer-socials .social-icons {
        display: flex;
        justify-content: center; 
        gap: 10px; 
    }
}

@media (max-width: 360px) {
    .contact-form{
        width: 50px;
    }
}
.hidden {
    opacity: 0; 
    transform: translateY(20px); 
    transition: opacity 0.6s ease, transform 0.6s ease; 
}


.visible {
    opacity: 1; 
    transform: translateY(0); 
}

.header.hidden {
    transition-delay: 0.2s;
}
.compatible-stores.hidden {
    transition-delay: 0.4s;
}
