* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: white;
}

body {
    background: linear-gradient(#1354A5 0%, #041832 33.33%, #041832 66.67%, #01080E 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

body::before {
    background-image: url("img/code.png");
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    z-index: 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    height: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 24px;
    border: 1px solid #1875E8;
    box-shadow: 4px 4px 20px 0px rgba(1, 8, 14, 0.15);
    background-image: url("img/Ruido.png");
    background-size: cover;
    position: relative;
    z-index: 1;
}

.container__conteudo {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 16px;
}

.container__informacoes {
    width: 100%;
    padding: 20px;
    text-align: center;
}

.container__botao {
    border-radius: 16px;
    background: #1875E8;
    padding: 16px 24px;
    width: 100%;
    max-width: 300px;
    font-size: 1.5rem;
    font-weight: 700;
    border: none;
    margin-top: 16px;
}

.container__texto {
    margin: 16px 0;
}

.container__texto-azul {
    color: #1875E8;
}

h1 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 2.5rem;
}

h2,
p,
button {
    font-family: 'Inter', sans-serif;
}

h2 {
    font-size: 1.5rem;
    font-weight: 400;
}

/* Responsivo para telas maiores */
@media (min-width: 768px) {
    .container {
        flex-direction: row;
        min-height: 600px;
    }

    .container__conteudo {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        position: absolute;
        bottom: 0;
        width: 100%;
        padding: 20px;
    }

    .container__informacoes {
        text-align: left;
        flex: 1;
    }

    h1 {
        font-size: 4rem;
    }

    h2 {
        font-size: 2rem;
    }

    .container__botao {
        font-size: 1.5rem;
    }
    .container__imagem-robo {
    max-width: 300px;
    height: auto;
    width: 80%;
    margin-bottom:16px;

}

.container__informacoes img {
    width: 60px;
    height: auto;
    margin-bottom: 16px;
}
@media only screen and (max-width: 414px) {
    .container {
        flex-direction: column;
        align-items: center;
        padding: 20px;
        min-height: auto;
        height: auto;
    }

    .container__imagem-robo {
        width: 80%;
        max-width: 250px;
        margin-bottom: 20px;
    }

    .container__informacoes {
        text-align: center;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    .container__botao {
        font-size: 1rem;
        padding: 12px 20px;
    }
}


}

