/*declare variable cor-texto*/
:root {
  --cor-texto: #9b6767;
}

*{
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
}

body {
  background-color: #f2dcd8;
  /* amarelo */
  font-family: "Raleway", sans-serif;
  text-align: center;
  color: var(--cor-texto);
}

.icon {
  margin-top: 50px;
  width: 190px;
  height: auto;
}

.flor {
  width: 60px;
  position: absolute;
}

#flor1 {
  top: 0;
  left: 0;
}

#flor2 {
  top: 0;
  right: 0;
}

#flor3 {
  bottom: 0;
  left: 0;
}

#flor4 {
  bottom: 0;
  right: 0;
}

h1 {
  margin-bottom: 2px;
  font-family: "Beau Rivage", cursive;
  font-size: 50px;
  margin-block-start: 0;
  margin-block-end: 0;
}

h2 {
  margin-bottom: 30px;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-size: 15px;
}

.button {
  background-color: #FFF;
  /* branco */
  border: none;
  border-radius: 25px;
  color: var(--cor-texto);
  /* preto */
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 4px 2px;
  cursor: pointer;
}

.social-media {
  margin-top: 30px;
  text-align: center;
}

.social-media img {
  width: 30px;
  height: auto;
  margin: 0 10px;
}

.social-media a{
  font-family: "Roboto", sans-serif;
  color: var(--cor-texto);
  font-size: 1.5em;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.social-media a span{
  margin-top: -5px;
}

.baseServicos{
  display: flex;
  justify-content: center;
}

.servicos{
  margin: 0 50px;
  text-align: left;
}
.servicos ul{
  text-align: left;
}
.servicos p{
  line-height: 26px;
}

ul li {
  list-style-position: inside;
}


/*fixed footer to footer page*/
footer {
  font-style: italic;
  color: var(--cor-texto);
  font-size: 10px;
  text-align: center;
  position: absolute;
  bottom: 10px;
  width: 100%;
}

footer a {
  color: var(--cor-texto);
}