* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #58585A;
    --secondary: #F19800;
}

body {
    font-family: 'Roboto', Verdana, Arial, sans-serif;
    color: #111;
}

a {
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1120px;
    padding: 0.5rem 2rem;
    margin: 0 auto;
}

.conteiner-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header .logo {
    padding-top: 1rem;
}

.header .logo img {
    height: 153px;
}

.footer {
    background: var(--secondary);
    color: #fff;
    font-weight: 300;
    font-size: 1.25rem;
    text-align: center;
    padding: 1rem 1rem;
    line-height: 2rem;
}

.footer a {
    font-weight: 500;
    color: #fff;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.content h2 {
    font-weight: 400;
    padding: 0.5rem 1rem;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 2rem;
}

.contact {
    text-align: center;
}

.contact-whatsapp img {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 1.5rem;
    transition: 0.3s ease;
}

.contact-whatsapp:hover img {
    filter: brightness(1.1);
}

.contact-phone {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.contact-email {
    text-decoration: underline;
    color: #000;
    font-size: 1.3rem;
    transition: 0.3s ease;
}

.contact-email:hover {
    color: var(--primary);
}

.address {
    margin: 2rem 0;
    text-align: center;
    font-style: normal;
    font-size: 1.25rem;
    line-height: 2.5rem;
}

@media (max-width: 1080px) {
    html {
      font-size: 93.75%;
    }
  }
  
  @media (max-width: 720px) {
    html {
      font-size: 87.5%;
    }
  }