:root {
  --cor1: #f5f5f5;
  --cor2: #333;
  --cor3: #000;
  --amarelo: #e6b743;
  --gap: 30px;
  --f-size-85: 0.85rem
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  display: flex;
  height: 100svh;
  flex-direction: column;
  width: 100svw;
  justify-content: center;
  align-items: center;
  gap: 0;
  background-image: url('https://condominioamigodoidoso.com.br/images/condominio-amigo-idoso-bg-1200x480-1.jpg');
  background-color: black;
  background-size: cover;
}
a, a:visited{
  text-decoration: none;
}
ul{
  list-style: none;
}
small{
  font-size: var(--f-size-85);
}
.header{
  background-color: black;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 20px;
}
.header .logo img{
  width: 200px;
}
.header .menu{
  display: flex;
  justify-content: space-between;
}
.header .menu ul{
  display: flex;
  gap: 20px;
  color: var(--amarelo);
}
.header .menu a, .header .menu a:visited{
  color: var(--amarelo);
}
section{
  padding: 20px 120px;
}
.maiuscula{
  text-transform: uppercase;
}
.info{
  max-width: 50%;
  color: white;
}
.container {
  background-color: #fff;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
  z-index: 1;
  max-width: 600px;
  align-self: center;
}

h1 {
  color: var(--cor2);
  margin-bottom: 20px;
}

p {
  font-size: 18px;
  line-height: 1.6;
}

.contact-info {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.contact-info a {
  color: var(--cor2);
  text-decoration: none;
  margin: 0 10px;
  padding: 10px;
}

.contact-info ul {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.contact-info ul li {
  padding: 20px;
}

.contact-info a:hover {
  background-color: var(--cor2);
  color: var(--cor1);
}

.img-logo {
  width: 180px;

}
@media (max-width: 490px) {
  .container {
    width: calc(100vw - 15px);
  }
}