@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4; /* Adicionando uma cor de fundo neutra para o corpo */
}

:root {
    --black: #000000;
    --azul: #00245b;
    --degrade-btn: linear-gradient(45deg, #808080, #d3d3d3);
}

.background-azul {
    background: var(--azul);
}

.container {
    max-width: 1440px;
    padding: 0 5%;
    margin: 0 auto;
}

section, footer {
    padding: 2.7rem 0;
}

.btn-gradiente {
    padding: 10px 25px;
    color: white;
    border: none;
    cursor: pointer;
    background-image: var(--degrade-btn);
    border-radius: 5px; /* Adicionando bordas arredondadas aos botões */
    transition: background-image 0.3s ease; /* Adicionando transição suave para mudança de fundo */
}

.btn-gradiente:hover {
    background-image: linear-gradient(45deg, #d3d3d3, #808080); /* Invertendo a direção do gradiente no hover */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background-color: var(--azul); /* Definindo cor de fundo para o menu de navegação */
}

.logo a {
    font-size: 30px;
    font-weight: bold;
    color: white;
}

.ul {
    display: flex;
    align-items: center;
}

.ul li {
    margin: 0 35px;
    font-size: 15px;
}

.ul li a {
    color: white;
    text-decoration: none;
}

.ul li a:hover {
    text-decoration: underline;
}

.menu-icon img {
    width: 40px;
    height: auto;
    vertical-align: middle;
    transition: width 0.3s, height 0.3s;
}

.menu-icon.img-large img {
    width: 60px;
    height: auto;
}

main .container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 30px;
    gap: 20px; /* Adicionando espaçamento entre os itens no contêiner principal */
}

.main-text {
    width: 50%;
    color: white;
    margin-top: 0;
}

.main-text h1 {
    font-size: 4.5rem;
}

.main-text h4 {
    margin-top: 10px;
    font-size: 1.5rem;
    line-height: 1.5;
}

.main-img {
    width: 40%;
    text-align: center;
}

.main-img img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
}

.menu-icon {
    display: none;
    position: relative;
    z-index: 10;
}

.resultados {
    background: #4a90e2;
    color: white; /* Garantindo que o texto na seção de resultados seja legível */
}

.resultados .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px; /* Adicionando espaçamento entre os itens na seção de resultados */
}

.resultados .resultados-text {
    font-size: 1.6rem;
    font-weight: 600;
    width: 50%;
}

.resultados .resultados-numero {
    display: flex;
    align-items: center;
    justify-content: center;
}

.resultados .resultados-numero p {
    text-align: center;
    margin: 0 30px;
    font-size: 20px;
}

.resultados .resultados-numero p span {
    font-size: 30px;
    font-weight: 600;
}

.holograma .container {
    display: flex;
    align-items: center;
    gap: 20px; /* Adicionando espaçamento entre os itens na seção de hologramas */
}

.holograma .holograma-img {
    width: 50%;
}

.holograma .holograma-img img {
    width: 100%;
    border-radius: 10px;
}

.holograma .holograma-text {
    width: 50%;
    padding-left: 90px;
}

.holograma .holograma-text h2 {
    font-size: 2.5em;
}

.holograma .holograma-text p {
    margin: 20px 0;
    color: gray;
}

/* Responsividade */
@media (max-width: 960px) {
    .menu-icon {
        display: block;
    }
    .ul {
        position: fixed;
        background: var(--azul);
        top: 0;
        width: 100%;
        height: 100%;
        left: 100%;
        transition: left 0.3s ease-in-out;
        flex-direction: column;
        justify-content: center;
    }
    .ul li {
        font-size: 20px;
        margin: 15px 0;
    }
    .ul.ativo {
        left: 0;
    }
    main .container {
        flex-direction: column;
    }
    main .container .main-img,
    main .container .main-text {
        width: 100%;
        text-align: center;
    }
    main .container .main-text h1 {
        font-size: 4rem;
    }
    main .container .main-text div {
        justify-content: center;
    }
    .resultados .container {
        flex-direction: column;
    }
    .resultados .resultados-text,
    .resultados .resultados-numero {
        width: 100%;
        text-align: center;
    }
    .resultados-numero {
        margin-top: 30px;
    }
    .holograma .container {
        flex-direction: column-reverse;
    }
    .holograma .holograma-text,
    .holograma .holograma-img {
        width: 100%;
        text-align: center;
        padding: 0;
    }
}

@media (max-width: 440px) {
    .resultados .resultados-numero {
        flex-direction: column;
    }

    main .container .main-text h1 {
        font-size: 3rem;
    }
}

