body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 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; /* Transição suave para o hover */

}

#logo-text:hover {
    color: #00aaff; /* Cor ao passar o mouse */
}

.logo img {
    max-height: 50px; 
    display: block; 
    cursor: pointer;
}


.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1000; /* Garante que o menu esteja acima de outros elementos */
}

.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: 60px; /* Ajuste para evitar sobreposição com o cabeçalho */
        right: 20px;
        background-color: #111;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
        z-index: 999; /* Certifique-se de que o menu está visível */
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin-bottom: 10px; /* Espaço entre os itens no menu móvel */
    }
}


.header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly; 
    align-items: center; 
    position: relative;
    /*background-color: red;*/
    padding-top: 50px;
    padding-bottom: 20px;
    box-sizing: border-box;
    margin: 0 auto;
    width: 60%;
}

.header-content {
    flex: 1 1 60%; 
    width:100%;
    /*background-color: gray;*/
    text-align: center; 
    padding: 5px;
    box-sizing: border-box;
    height:430px;

}

.header-content h1 {
    font-size: 250%;
    line-height: 1.0;
    margin: 20px;
}

.header-content p {
    font-size: 150%;
    margin-bottom: 20px;
}

.download-buttons {
    display: flex;
    gap: 10px; 
    justify-content: center; 
    align-items: center; 
    /*background-color: red;*/
}

.download-buttons img {
    /*width: 160px;
    height: 60px;*/ 
    width: 200px;
    height: 160px;
    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 40%;
    width: 10%;
    display: flex;
    justify-content: center; 
    /*background-color: green;*/
    /*padding: 20px;
    box-sizing: border-box;*/
}

.header-image img {
    width: 80%;
    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: 800%;
    }

    .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;
    }
}


/* abaixo da compativeis */
/*.fundo-todo {
    background: url('/imagens/freepik__candid-image-photography-natural-textures-highly-r__75183.jpeg') no-repeat center center;
    background-size: cover;
}*/

.fundo-todo {
    background: linear-gradient(rgba(0, 0, 0, 0.767), rgba(0, 0, 0, 0.644)), 
                url('imagens/candid-image-photography-natural-textures-highly-r__75183.jpeg') no-repeat center center;
    background-size: cover;
}


.tv-app-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    color: #fff;
    padding: 50px 20px;
    height: 300px; 
}

.tv-app-section .content {
    display: flex;
    align-items: center;
    max-width: 80%;
    margin: 0 auto;
    width: 100%;
}

.tv-app-section .image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tv-app-section .image-content img {
    max-width: 90%;
    height: auto;
    border-radius: 10px;
}

.tv-app-section .text-content {
    flex: 1;
    padding-left: 20px;
}

.tv-app-section .text-content h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

.tv-app-section .text-content p {
    font-size: 1rem;
    line-height: 1.5;
}

/* Responsividade */
@media (max-width: 768px) {
    .tv-app-section {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding: 30px 20px;
    }

    .tv-app-section .content {
        flex-direction: column;
    }

    .tv-app-section .text-content {
        padding-left: 0;
        margin-top: 20px;
    }

    .tv-app-section .image-content img {
        max-width: 80%;
    }
}

.smart-tv-app {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*background: url('/imagens/background.jpg') no-repeat center center; */
    background-size: cover;
    padding: 50px 20px;
    height: 300px; 
    color: #fff; 
}

.smart-tv-app .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
}

.smart-tv-app h1 {
    flex: 1;
    font-size: 1.8rem;
    line-height: 1.2;
    font-weight: bold;
    margin: 0 20px 0 0;
}

.smart-tv-app img {
    flex: 1;
    max-width: 55%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsividade */
@media (max-width: 768px) {
    .smart-tv-app {
        flex-direction: column;
        height: auto;
        text-align: center;
    }

    .smart-tv-app .content {
        flex-direction: column;
    }

    .smart-tv-app h1 {
        margin: 0 0 20px 0;
    }

    .smart-tv-app img {
        max-width: 80%;
    }
}


.stats-section {
    display: flex;
    justify-content: center;
    align-items: center;
    /*background: url('/imagens/background.jpg') no-repeat center center; /* Substitua pelo fundo desejado */
    background-size: cover;
    padding: 50px 20px;
    color: #fff;
    text-align: center;
}

.stats {
    display: flex;
    gap: 50px;
}

.stat-item {
    font-size: 1.5rem;
}

.stat-item h1 {
    font-size: 2.5rem;
    color: #00aaff;
    margin: 0;
}



/* formulario*/

form {
    width: 100%;
    
}

.form-section {
    padding: 20px;
    /*background-color: red;*/
    
}

.form-section h1 {
    font-size: 2rem;
    color: #00aaff;
    margin-bottom: 10px;
    text-align: center;
    
}

.form-section p {
    font-size: 1rem;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form {
    background-color: #00aaff;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.contact-form label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #fff;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 95%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
}

.contact-form button {
    width: 100%;
    padding: 10px;
    background-color: #007acc;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #005f99;
}




.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;
    cursor: pointer; 
}

.footer-logo img {
    max-height: 110px;
    display: block;
    margin: 0 auto; 
}

#footer-logo-text {
    margin-top: 10px; 
    color: white;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease; 
}

#footer-logo-text:hover {
    color: #00aaff; 
}

.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;
}
