:root {
  /* colors */
  --green: #2aa14a;
  --green-dark: #016438;
  --blue-dark: #00004a;
  --black: #121420;
}

/* global effect */
* {
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* body style */
body {
  background-color: #fff;
  overflow-x: hidden;
}

.anton-regular {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.top-nav {
  display: flex;
  position: relative;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 1em;
  transition: 700ms;
  transition-timing-function: ease-out;
  z-index: 100;
  left: 0;
  top: 0;
  background-color: #016438;
}

/* logo button */
.logo-massa-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 70px;
}

.logo-massa {
  box-sizing: border-box;
  padding-left: 40px;
  max-width: 160px;
}

.logo-massa-text {
  box-sizing: border-box;
  padding: 1em;
}

.logo-massa-text-big {
  font-family: "Anton", sans-serif;
  font-weight: 300;
  font-size: 46px;
  color: #fff;
}

.logo-massa-text-medium {
  font-family: "Anton", sans-serif;
  font-weight: 300;
  font-size: 30px;
  color: #fff;
}

.logo-massa-text-small {
  font-family: "Anton", sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #fff;
}

.menu {
  display: flex;
  position: relative;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1em;
  right: 50px;
  justify-content: center;
}

.menu li {
  margin: 0 1rem;
  overflow: hidden;
}

/* navbar buttons */
.links-btn {
  display: grid;
  grid-auto-flow: row;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-style: italic;
  text-align: center;
  text-decoration: none;
  color: #777;
  background: #fff;
  width: 160px;
  height: 30px;
  border-radius: 10em;
  cursor: pointer;
}

.links-btn:hover {
  display: grid;
  grid-auto-flow: row;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-style: italic;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: var(--green);
  border: none;
  width: 160px;
  height: 30px;
  border-radius: 10em;
  cursor: pointer;
}

.wrapper-01 {
  padding-top: 100px;
  padding-bottom: 150px;
  padding-left: 80px;
  background-color: var(--blue-dark);
  color: #fff;
}

.wrapper-01 > h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 40px;
}

.wrapper-01 > p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 20px;
}

/* action button */
.cta-button {
  padding: 0.5rem 1.25rem;
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 10rem;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-style: italic;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.05);
  animation: shadow-pulse 1s infinite;
  cursor: pointer;
  text-decoration: none;
}

@keyframes shadow-pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.2);
  }
  100% {
    box-shadow: 0 0 0 35px rgba(255, 255, 255, 0);
  }
}

.cta-button-01:focus {
  outline: none;
}

/* mobile */
@media screen and (max-width: 767px) {
  .cta-button-01 {
    font-size: var(--fs-300);
    padding: 0.3rem 0.5rem;
  }
}

.wrapper-02 {
  background-image: url("img/img.avif");
  background-repeat: no-repeat;
  background-size: cover;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2em;
  padding: 50px;
  align-items: center;
  justify-content: center;
}

.places {
  position: relative;
  text-align: center;
  color: var(--blue-dark);
  background-color: #fff;
  opacity: 95%;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  z-index: 10;
}

.spots-01 {
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
  align-items: center;
  justify-content: center;
  width: 290px;
  display: flex;
  flex-direction: column;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  background-color: #fff;
  opacity: 95%;
  border-radius: 10px;
}

.spots-02 {
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
  align-items: center;
  justify-content: center;
  width: 290px;
  display: flex;
  flex-direction: column;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  background-color: #fff;
  opacity: 95%;
  border-radius: 10px;
}

.spots-03 {
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
  align-items: center;
  justify-content: center;
  width: 290px;
  display: flex;
  flex-direction: column;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  background-color: #fff;
  opacity: 95%;
  border-radius: 10px;
}

.spots-04 {
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
  align-items: center;
  justify-content: center;
  width: 290px;
  display: flex;
  flex-direction: column;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  background-color: #fff;
  opacity: 95%;
  border-radius: 10px;
}

.wrapper-03 {
  display: flex;
  flex-direction: row;
  background-color: #fff;
  color: #016438;
  box-sizing: border-box;
  gap: 1em;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
  justify-content: center;
}

.text-about {
  font-family: "Poppins", sans-serif;
}

.wrapper-04 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background-color: #fff;
  color: #016438;
  box-sizing: border-box;
  gap: 5em;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 60px;
  justify-content: center;
}

.detail-01,
.detail-02,
.detail-03,
.detail-04 {
  display: flex;
  flex-direction: row;
  font-family: "Poppins", sans-serif;
}

.wrapper-05 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background-color: #bbe7d0;
  box-sizing: border-box;
  gap: 5em;
  justify-content: center;
  padding: 30px;
}

.text-differentials {
  font-family: "Poppins", sans-serif;
  font-size:xx-large;
  color: #083028;
}

.wrapper-06 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background-color: #bbe7d0;
  box-sizing: border-box;
  gap: 5em;
  justify-content: center;
  padding: 50px;
}

.icon-01,
.icon-02,
.icon-03,
.icon-04 {
  font-family: "Poppins", sans-serif;
  color: #083028;
  max-width: 290px;
}

.wrapper-07 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background-color: #fff;
  box-sizing: border-box;
  padding: 50px;
  justify-content: center;
}

.text-ambiental {
  font-family: "Poppins", sans-serif;
  color: #016438;
}

.text-ambiental > h1 {
  font-size:xx-large;
}

.footer {
  background-color: #bbe7d0;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  font-family: "Poppins", sans-serif;
  font-size: small;
  color: #083028;
  justify-content: center;
  padding-top: 30px;
}

.phone-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 5em;
  padding-top: 20px;
  padding-bottom: 50px;
}

.phone-main > a {
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  color: #083028;
}

