/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    text-align: center;
}

.container {
 
    width: 100%;
}

.headline {
    font-size: 140px;
    font-weight: bold;
    margin: 0;
    font-family: "Orbitron", serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
}

.headline-sub {
    font-size: 140px;
    font-weight: bold;
    margin: 0;
  
   
}

.subtext {
    font-size: 40px;
    margin-top: 10px;
    margin-bottom: 20px;
    text-shadow: 2px 2px blue;
    Padding-bottom: 40px;
    
}

.logos {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-bottom: 30px;
}

.logo {
    height: 60px; /* Defina a altura desejada para as logos */
    width: auto;  /* O width é ajustado automaticamente para manter a proporção */
    object-fit: contain; /* Certifique-se de que a imagem seja ajustada para o tamanho sem distorção */
}


/* Contact Button */
.contact-button {
    margin-top: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #007bff;
    color: white;
    font-size: 25px;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.contact-button:hover {
    background-color: #0056b3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transform: translateY(4px);
}

.contact-button i {
    margin-right: 10px;
}

/* Adding font awesome icon */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');


/* Responsividade para telas menores */
@media (max-width: 768px) {
    .headline {
        font-size: 60px; /* Reduzir o tamanho do texto */
    }

    .subtext {
        font-size: 18px; /* Reduzir o tamanho do subtítulo */
    }

    .logos {
        flex-direction: column; /* Empilhar logos verticalmente */
        gap: 15px; /* Reduzir o espaço entre logos */
    }

    .logo {
        height: 40px; /* Reduzir o tamanho das logos */
    }

    .contact-button {
        font-size: 16px; /* Reduzir o tamanho da fonte do botão */
        padding: 10px 20px; /* Ajustar o padding para o botão */
    }
}

@media (max-width: 480px) {

    .headline {
        font-size: 70px;
        padding-bottom: 40px;
    
    }

    .headline-sub {
        font-size: 70px;
        padding-bottom: 40px;
    
    }

    .subtext {
        font-size: 30px;
    }

    .contact-button {
        font-size: 14px;
        padding: 8px 16px;
    }
}