* {
    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;
    padding: 20px;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    min-height: 400px;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    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: 100% 100%;
    position: relative;
    padding: 20px;
}

.container__conteudo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.container__informacoes {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.container__botao {
    border-radius: 16px;
    background: #1875E8;
    padding: 16px 24px;
    width: 100%;
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 700;
    border: none;
    margin-top: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.container__botao:hover {
    background: #1565C0;
}

.container__texto {
    margin: 16px 0;
}

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

h1 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: clamp(36px, 8vw, 72px);
    line-height: 1.2;
    margin-bottom: 10px;
}

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

#texto-vitoria h2 {
    font-size: clamp(20px, 4vw, 28px);
    line-height: 1.4;
}

#texto-vitoria {
    display: none;
}

.container__imagem-robo {
    width: 100%;
    max-width: 400px;
    height: auto;
    flex-shrink: 0;
}

.container__informacoes img {
    width: clamp(60px, 10vw, 100px);
    height: auto;
    margin-bottom: 20px;
}

/* Media Queries para diferentes tamanhos de tela */
@media (max-width: 1024px) {
    .container {
        max-width: 90%;
        padding: 15px;
    }
    
    .container__conteudo {
        gap: 15px;
    }
    
    .container__imagem-robo {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .container {
        border-radius: 16px;
        padding: 15px;
        min-height: 300px;
    }
    
    .container__conteudo {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .container__imagem-robo {
        max-width: 250px;
        order: -1;
    }
    
    .container__informacoes {
        padding: 10px;
    }
    
    h1 {
        font-size: clamp(28px, 8vw, 48px);
    }
    
    #texto-vitoria h2 {
        font-size: clamp(16px, 4vw, 24px);
    }
}

@media (max-width: 480px) {
    .container {
        border-radius: 12px;
        padding: 10px;
    }
    
    .container__imagem-robo {
        max-width: 200px;
    }
    
    .container__informacoes img {
        width: clamp(50px, 12vw, 80px);
        margin-bottom: 15px;
    }
    
    .container__botao {
        padding: 12px 20px;
        font-size: clamp(16px, 4vw, 20px);
    }
}

@media (max-width: 320px) {
    .container__imagem-robo {
        max-width: 150px;
    }
    
    h1 {
        font-size: clamp(24px, 8vw, 36px);
    }
    
    #texto-vitoria h2 {
        font-size: clamp(14px, 4vw, 20px);
    }
}
