@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 10px 5%;
        height: auto;
    }
    .navbar .menu {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    .navbar .menu a {
        font-size: 1em;
        text-align: center;
        padding: 10px;
    }
    .navbar .buttons {
        flex-direction: column;
        width: 100%;
        gap: 5px;
    }
    header {
        height: auto;
        padding: 20px 0;
    }
    .header-content {
        flex-direction: column;
        align-items: center;
    }
    .header-text, .header-image {
        max-width: 100%;
        padding: 0;
        text-align: center;
    }
    .header-image img {
        max-width: 100%;
    }
    .header-text h1 {
        font-size: 1.8em;
    }
    .typing-text {
        font-size: 1.2em;
    }
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333333;
    line-height: 1.6;
}
html {
    scroll-behavior: smooth;
}
.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}
header {
    background-color: #0072ED;
    color: #fff;
    height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 20px; /* Adicionado para ajuste de espaçamento */
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px; /* Ajustar padding do conteúdo */
}
.header-text {
    flex: 1;
    text-align: left;
    padding-right: 5px;
    max-width: 45%;
}
.header-image {
    flex: 1;
    text-align: left;
    padding-left: 10px;
    max-width: 47%;
    margin-bottom: -20px; /* Remove o espaço entre a imagem e a nova barra */
}
.header-image img {
    display: block;
    max-width: 110%;
    height: auto;
}
.header-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.1em;
    margin-bottom: 0.3em;
}
.typing-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4em;
    white-space: nowrap;
    overflow: hidden;
}
.btn {
    display: inline-block;
    background-color: #2ECC71;
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    font-size: 1.2em;
}
.btn:hover {
    background-color: #27AE60;
}
.section {
    padding: 60px 10%;
    text-align: center;
}
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2em;
    margin-bottom: 30px;
}
.section-content {
    max-width: 1000px;
    margin: auto;
    text-align: left;
}
.reason {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 40px;
    height: 45vh;
}
.reason:nth-child(even) .reason-content {
    order: 1;
}
.reason-content {
    flex: 1;
    padding: 20px;
}
.reason-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8em;
    color: #007BFF;
}
.reason-content p {
    font-size: 1.1em;
    color: #666;
}
.reason-image {
    flex: 1;
    text-align: center;
}
.reason-image img {
    max-width: 85%;
    height: auto;
    border-radius: 20px;
}
footer {
    background-color: #7F8C8D;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}
footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}
footer p {
    margin: 5px 0;
}
/* Menu fixo */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 123, 255, 0.9);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    z-index: 1000;
    height: 90px;
}
.navbar .logo {
    font-size: 1.7em;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.01em; /* Reduzindo o espaçamento entre letras */
    position: relative;
}

/* Esticando as letras "ee" horizontalmente */
.navbar .logo span.stretch {
    display: inline-block;
    transform: scaleX(1.2); /* Esticando horizontalmente em 10% */
    transform-origin: center;
}

.navbar .menu {
    display: flex;
    gap: 15px;
    flex-grow: 1;
    justify-content: center;
}
.navbar .menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
}
.navbar .buttons {
    display: flex;
    gap: 10px; /* Ajuste o espaçamento conforme necessário */
    align-items: center; /* Alinhe verticalmente os botões */
}
.navbar .buttons a {
    background-color: #28a745;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    transition: background-color 0.3s ease;
    font-size: 0.9em;
}
.navbar .buttons a:hover {
    background-color: #218838;
}
nav {
    flex: 1;
}

.rounded-icon {
    border-radius: 50%; /* 50% para bordas completamente arredondadas */
    width: 32px; /* Ajuste conforme necessário */
    height: 32px; /* Ajuste conforme necessário */
}

.menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.menu li {
    margin: 0 15px;
}

.menu li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.auth-buttons .login,
.auth-buttons .register {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
}

.auth-buttons .login {
    background-color: #007bff;
    color: white;
}

.auth-buttons .register {
    background-color: #28a745;
    color: white;
}
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    nav {
        margin-bottom: 10px;
    }

    .menu {
        flex-direction: column;
        align-items: center;
    }

    .auth-buttons {
        flex-direction: column;
        align-items: center;
    }
}
/* Barra com logos das plataformas */
.header-logos {
    background-color: #0056b3; /* Azul mais escuro */
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; /* Ocupa 100% da largura */
    position: absolute;
    bottom: 0; /* Fixa na parte inferior do header */
    left: 0; /* Alinha à esquerda */
    margin-bottom: -10px; /* Ajuste para diferentes zooms */
    height: 17vh;
}
.logos-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 80%;
    margin: auto;
}
.logos-container img {
    max-height: 35px; /* Ajuste conforme necessário */
    margin: 0 60px;
    filter: brightness(0) invert(1); /* Torna as logos esbranquiçadas */
    opacity: 0.8; /* Reduz a opacidade para destacar no fundo azul */
    object-fit: contain;
    height: 70px;
    width: 140px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.logos-container img:hover {
    opacity: 1; /* Totalmente visível quando o mouse está sobre a logo */
    transform: scale(1.1); /* Aumenta ligeiramente o tamanho da logo */
}
.step {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.step:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.step-header h3 {
    margin: 0;
    font-size: 1.5em;
}

.step-content {
    display: none; /* Oculta o conteúdo por padrão */
    padding-top: 10px;
}

.step.active .step-content {
    display: block; /* Mostra o conteúdo ao ativar */
}
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.image-container {
    background-color: #f0f0f0; /* Um tom de cinza ligeiramente diferente */
    padding: 20px 0 0 0; /* Espaçamento apenas no topo */
    margin: 0; /* Zero margem para as direções especificadas */
}

.image-container img {
    width: 100%; /* Ajusta a largura da imagem para preencher o container */
    height: auto; /* Mantém a proporção da imagem */
    object-fit: contain; /* Certifica que a imagem não seja cortada */
    display: block; /* Garante que a imagem não tenha espaço extra embaixo */
}

.popup-content form input, .popup-content form .btn {
    box-sizing: border-box;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.popup-content {
    background-color: #fff;
    padding: 0px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    max-width: 400px; /* Ajuste a largura máxima do popup */
    width: 90%;
    position: relative; /* Para posicionar o botão de fechar */
}

.popup-content-container{
    margin-left: 10%;
    margin-right: 10%;
    margin-bottom: 10%;
}

.popup-content h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.popup-content p {
    font-size: 0.9em;
}

.popup-content input {
    width: calc(100% - 20px); /* Ajuste para não passar das bordas */
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.popup-content form input {
    box-sizing: border-box;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.popup-content form .btn {
    margin-top: 10px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 1.5em;
    color: #000; /* Cor do ícone de fechar */
}

.notification {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2ECC71;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
.como-funciona-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 0%;
    gap: 5%;
    height: 100%;
    width: max-content;
    align-content: flex-end;
}
.content-left {
    flex: 1;
    color: #ffffff;
}

.content-right {
    display: flex;
    align-items: flex-end; /* Alinha a base da imagem com o container */
}

.como-funciona-imagem {
    max-width: 100%; /* Reduz a largura da imagem em 30% */
    height: auto;
    margin-bottom: -30px; /* Remove a margem inferior */
}

.como-funciona {
    position: relative;
    padding-bottom: 0; /* Remove o padding inferior */
    margin-bottom: 0; /* Remove a margem inferior */
}

.texto-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
}

.imagem-container {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.como-funciona-barra {
    background-color: #0056b3; /* Azul mais escuro */
    padding: 20px 0; /* Espaçamento vertical */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95%; /* Ocupa 100% da largura */
    box-sizing: border-box; /* Inclui padding e border na largura total */
    position: relative;
    border-radius: 15px;
}

.barra-conteudo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center; /* Centraliza o texto */
    width: 80%; /* Ajusta a largura do conteúdo */
    max-width: 1200px; /* Limita a largura máxima */
    margin: auto; /* Centraliza horizontalmente */
    gap: 20px; /* Espaçamento entre a frase e o botão */
}

.frase-efeito {
    font-size: 1.3em;
    font-family: 'Montserrat', sans-serif;
    flex: 2; /* Faz a frase ocupar mais espaço */
    color: #ffffff;
}

.btn.cta {
    background-color: #2ECC71; /* Cor do botão CTA */
    color: #fff; /* Cor do texto */
    text-decoration: none; /* Remove o sublinhado */
    padding: 15px 30px; /* Espaçamento interno */
    border-radius: 10px; /* Bordas arredondadas */
    transition: background-color 0.3s ease; /* Transição suave */
    font-size: 1.2em; /* Tamanho da fonte */
    flex: 1; /* Faz o botão ocupar menos espaço */
}

.btn.cta:hover {
    background-color: #27AE60; /* Cor do botão ao passar o mouse */
}
.section-content.timeline-container {
    display: flex;
    align-items: center;
    position: relative;
}

.timeline-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    width: 40%; /* Ajuste conforme necessário */
    margin-bottom: 10px;
    margin: 5px;
}

.timeline-card h3 {
    font-size: 1.5em;
    color: #007BFF;
    margin-bottom: 10px;
}

.timeline-card p {
    font-size: 0.9em;
    color: #007BFF;
    margin-bottom: 10px;
}

.section.sobre {
    padding: 60px 10%;
    text-align: center;
    background: linear-gradient(to right, #cceaff 0%, #ffffff 100%);
}

.section.precos {
    padding: 60px 10%;
    text-align: center;
    background-color: #f9f9f9;
}

.precos-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.radar-animacao {
    position: relative;
    width: 500px;
    height: 500px;
    margin: auto;
}

.logo-central h2 {
    font-family: 'Montserrat', sans-serif;
    color: #007BFF;
    font-size: 1.8em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}

.radar-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border: 2px solid #007BFF;
    border-radius: 50%;
    overflow: hidden;
}

.radar-sweep {
    position: absolute;
    width: 50%;
    height: 100%;
    background: rgba(0, 123, 255, 0.103);
    transform-origin: 100% 50%;
    animation: sweep 4s linear infinite, pulse 0.5s ease-in-out infinite;
}

@keyframes sweep {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-orbita {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    width: 50px; /* Set a fixed width */
    height: 50px; /* Set a fixed height */
}

.logo-orbita img {
    width: 150%; /* Make sure the image fits within the .logo-orbita */
    height: 40%; /* Make sure the image fits within the .logo-orbita */
}

.frase-impacto {
    max-width: 500px;
    margin: auto;
    text-align: left;
}

.frase-impacto h2 {
    font-size: 2.2em;
    color: #007BFF;
}

.frase-impacto p {
    font-size: 1.2em;
    color: #666;
}
