body {
    background-color: #B8393D;
    background-image: url("img/sun-tornado3.svg");
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Impede o overflow horizontal */
}

h1 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 36px;
}

p {
    color: #fff;
}

.main {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    font-family: sans-serif;
    justify-content: center;
    flex-direction: column;
}

.container {
    display: flex;
    flex-wrap: wrap; /* Permite que os itens se movam para a linha seguinte */
    justify-content: center; /* Centraliza os itens */
}

.container1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px; /* Ajuste o padding conforme necessário */
    box-sizing: border-box;
}

.logo-link {
    width: 150px; /* Ajuste conforme necessário */
    height: 150px; /* Ajuste conforme necessário */
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: white;
    padding: 10px;
}

.platform-heci {
    display: flex;
    flex-direction: row;
    margin: 40px;
}

.platform-heci img {
    width: 50px;
    object-fit: contain;
    padding: 10px;
}

.link {
    color: #fff;
    font-size: 1.2rem;
    margin-top: 10px;
    border-bottom: none;
    text-decoration: none;
    background: none;
}

.logo-link:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.button {
    background-color: #009951;
    color: #fff;
    border: none;
    border-radius: 12px; /* Borda arredondada */
    padding: 10px 20px; /* Ajuste o padding conforme necessário */
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    margin-top: 10px;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #007740; /* Cor de fundo ao passar o mouse */
}

/* Estilos para dispositivos móveis */
@media (max-width: 768px) {
    .container1 {
        flex: 1 1 calc(50% - 20px); /* Ajusta para duas colunas em dispositivos móveis */
        max-width: calc(50% - 20px);
    }
    .logo-link {
        width: 100px;
        height: 100px;
    }
    h1 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .link {
        font-size: 1em;
    }
    
    .container1 {
        flex: 1 1 calc(50% - 20px); /* Ajusta para duas colunas em dispositivos móveis */
        max-width: calc(50% - 20px);
    }
}
