/* Fundo em gradiente */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Garante que o body ocupe toda a tela */
    /* background: url('../css/imagens/fundo01.jpg') no-repeat center center fixed; Imagem para desktop */
    background: url('../css/imagens/images-mobile/jeiphones-background-full.jpg') no-repeat center center fixed #fdfcfa; /* Imagem para desktop */
    background-size: contain; /* Redimensiona a imagem para cobrir toda a tela */
    font-family: Arial, sans-serif;
    margin: 0;
    color: white;
    position: relative;
    overflow-x: hidden; /* Evita rolagem desnecessária */
}

/* Evita rolagem extra no celular */
html, body {
    height: 100%;
    overflow-x: hidden;
}

/* Logo à esquerda */
.logo-left {
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 100;
    display: block;
}

.logo {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background-color: #ffffff;
    /* background-image: url('../css/imagens/logoiphone.jpg'); Imagem da logo */
    background-image: url('../css/imagens/images-mobile/jeiphones-mobile_02.jpg'); /* Imagem da logo */
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

/* Botão de menu hambúrguer */
.hamburger-menu {
    position: fixed;
    top: 15px;
    right: 15px;
    font-size: 1.5em;
    color: white;
    cursor: pointer;
    z-index: 100;
}

/* Menu oculto com o botão de login à frente do hambúrguer */
.hidden-menu {
    position: fixed;
    top: 15px;
    right: 90px;
    z-index: 200;
    display: none;
}

.hidden-menu.active {
    display: block;
}

/* Botão de login */
.login-button {
    font-size: 0.9em;
    background-color: #555;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.login-button:hover {
    background-color: #403A34;
}

/* Container */
.container {
    text-align: center;
    /* max-width: 320px; */
    width: fit-content;
    padding: 20px;
    background-color: #ffffff1f;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    z-index: 50;
    position: relative;
    backdrop-filter: blur(10px);
}


/* Título */
h1 {
    font-size: 1.8em;
    margin: 10px 0;
}

/* Descrição */
.description {
    font-size: 1em;
    color: #e0e0e0;
    margin-bottom: 20px;
}


/* Rodapé fixo */
/* Rodapé fixo na parte inferior */
.footer {
    position: fixed; /* Mantém o rodapé fixo */
    bottom: 10px; /* Distância do final da tela */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    font-size: 0.8em;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    padding: 5px 0;
    background: rgba(0, 0, 0, 0.5); /* Fundo levemente escuro para destacar */
    display: block;
}


.footer a {
    color: inherit;
    font-style: italic;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}


.isDisabled {
    color: currentColor;
    cursor: not-allowed;
    opacity: 0.5;
    text-decoration: none;
}

.home-title {
    display: block;
}

/* Botão do WhatsApp */
#whatsapp-button-oficial {
    position: fixed;
    bottom: 60px;
    right: 60px;
    display: flex !important;
    justify-content:center !important;
    align-items: center !important
}
#whatsapp-button-oficial .whatsapp-button,
#whatsapp-button-oficial-mobile .whatsapp-button {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    font-size: 3em;
    text-decoration: none;
    padding: 10px 10px;
    border-radius: 50%;
    border: 2px solid white;
    width: 52px;
    height: 52px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    position: fixed;
    bottom: 90px;
    right: 30px;
}
.whatsapp-button {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    font-size: 1.2em;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 25px;
    border: 2px solid #79e27d;
    width: 100%;
    max-width: 290px;
    box-shadow: none;
}
.whatsapp-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
#whatsapp-button-mobile.whatsapp-button:hover {
    background-color: rgb(0, 156, 135);
}

#whatsapp-button-container {
    display: block;
}

#mobile {
    display: none;
}


/* Responsividade para telas menores */
@media (max-width: 768px) {
    .container {
        background-color: transparent;
        font-size: 15px;
        text-align: center;
        /* max-width: 320px; */
        width: 100%; /* Melhor ajuste em telas menores */
        height: 100vh;
        padding: 0 0;
        border-radius: 0;
        box-shadow: none;
        z-index: 50;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

    body#body {
        /* background: url('../css/imagens/bg-jeiphones-mobile.jpg') no-repeat; */
        background: #fdfcfa;
        /* background-size: 120% auto;  */
        background-size: cover;
        background-position: top center;
    }

    .hamburger-menu {
        top: 30px;
    }

    .hidden-menu {
        top: 30px;
        right: 50px;
    }

    .logo-left {
        display: none;
    }

    .footer {
        display: none;
        bottom: 0;
        background: transparent;
        color: #5B5048;
    }

    .home-title {
        display: none;
    }

    #whatsapp-button-container {
        display: flex;
    }

    .logo-mobile {
        padding-top: 16px;
        margin-top: 16PX;
    }

    .logo-mobile img {
        width: 100%;
        max-width: 290px;
    }

    .image-fluid {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    /* Transição desktop -> mobile */
    #desktop {
        display: none;
    }

    #mobile {
        display: flex;
    }

}
