:root {
    --signature-font: "Poiret One", sans-serif;
    --base-font: "Poppins", sans-serif;
    --primary-color: #3c5034;
}

html {
  scroll-behavior: smooth;
}

#sobre,#areas,#contato {
  scroll-margin-top: 10rem;
}

body {
    background-color: #333;
    font-family: var(--base-font);
    margin: 0
}

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
p {
    margin: 0;
    padding: 0;
}

.header-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    height: 8rem;
    background-color: white;
    border-radius: 0 0 5rem 5rem;
}

.header-inner {
    display: flex;
    height: 100%;
    padding: 0 5rem;
    align-items: center;
}

.header-item {
    padding: 0 3rem
}

.header-mobile-item {
    display: none;
}

.header-signature {
    font-family: var(--signature-font);
}

.header-item--nav {
    flex: 1;
}

.nav-container {
    display: flex;
}

.nav-item {
    padding: 0 1rem;
}

.nav-item--social {
    padding: 0 .5rem;
}

.container {
    margin-top: 10rem;
    position: relative;
}

.main-picture {
    position: fixed;
    top: 0;
    right: 0;
    height: 40rem;
    padding-top: 7rem;
    background-color: #d6c7aa;
    border-radius: 0 0 0 31rem;
    background: linear-gradient(90deg, transparent, #d6c7aa);
    z-index: -1;
}

.section {
    padding: 2rem 5rem;
    min-height: 25rem;
}

.section#sec-1 {
    width: 68vw;
    display: flex;
}

.home {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.home-container {
    width: 30rem;
    text-align: center;
    color: white;
}

.home-container--name {
    text-transform: uppercase;
    font-weight: 400;
    font-family: var(--signature-font);
    font-size: 3rem;
}

.home-container--tagline {
    font-weight: 400;
}

.home-container--description {}

.section#sobre {
    background-color: white;
    text-align: center;
}

.section#sobre p {
    padding: 0 10rem;
}

.section#areas {
    background-color: var(--primary-color);
    text-align: center;
    color: white;
}

.areas {
    display: flex;
    justify-content: center;
    padding: 3rem;
}

.area-item {
    margin: 0 3rem;
    font-size: 1.3rem;
}

.area-item img {
    object-fit: cover;
    height: 15rem;
    width: 15rem;
    border-radius: 50%;
}

.section#contato {
    background-color: #333;
    text-align: center;
}

.contact {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.contact-card {
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 2rem;
    background: white;
}

.button-list {
    list-style-type: none;
}

.footer {
    background-color: white;
    padding: 2rem 5rem;
}

.footer-content {
    text-align: center;
}

.footer-content a {
    text-decoration: underline;
    color: var(--primary-color);
}

@media (max-width: 768px) {
  .header-container {
    border-radius: 0;
  }

  .header-inner {
    padding: 0 1rem;
  }

  .header-item {
    display: none;
    padding: 0;
  }

  .header-mobile-item {
    display: block;
  }

  .header-mobile-item.header-signature {
    flex: 1;
    text-align: center;
    font-size: 2rem;
  }

  .section#sec-1 {
    width: auto;
  }

  .main-picture {
    border-radius: 0;
    object-fit: cover;
    height: auto;
    width: 100vw;
    left: 0;
    filter: brightness(0.5);
  }

  .section#sobre p {
    padding: 0 0;
  }

  .section#areas {
    padding: 2rem 1rem;
  }

  .areas {
    flex-direction: column;
    padding: 0;
  }

  .area-item {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .area-item img {
    height: 3rem;
    width: 3rem;
  }

  .section#contato {
    padding: 2rem 1rem;
  }

  .section#contato ul {
    padding: 0;
  }
}



.btn {
    font-family: var(--base-font);
    padding: 0.5rem 2rem;
    border-radius: 1.5rem;
    border: none;
    cursor: pointer;
    transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.btn:hover {
    filter: brightness(0.75);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-secondary {
    background-color: #333;
    color: white;
}

.contact-btn {
    width: 100%;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-btn span {
    flex: 1;
    margin-left: 1rem;
}