  /* Reset de estilos e fonte do Google Fonts */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f9f9f9;
    color: #555;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}
.hero-image {
    background-color: #1e88e5; /* Cor de fundo azul */
    height: 300px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: #555;
}
.logo-container {
    width: 250px;
    height: 250px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.logo-container img {
    max-width: 250px;
    max-height: 250px;
}
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}
.company-name {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}
.contact-info {
    margin-bottom: 20px;
   
}
.contact-info a {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 12px 24px;
    margin: 10px;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}
.contact-info a:hover {
    background-color:  #ff9800;
}
.btn-blue {
    background-color: #1e88e5;
    text-align: center;
    font-weight: 600;
}
.btn-orange {
    background-color: #ff9800;
}
.btn-gray {
    background-color: #ccc;
    color: #333;
}
.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}
.footer a {
    color: #fff;
    text-decoration: none;
}

/* Estilos para dispositivos menores */
@media (max-width: 600px) {
    .container {
        padding: 20px;
    }
    .company-name {
        font-size: 28px;
    }
    .contact-info a {
        padding: 10px 20px;
    }
}