* {
  margin: 0px;
  padding: 0px;
  font-family: Arial, Helvetica, sans-serif;
}

:root {
  --light: #9eca83;
  --primary: #548c31;
  --secondary: #74c044;
  --text: #324029;
  --dark-green: #264016;
  --ice: #e6eae1;
}

body {
  background: linear-gradient(to right, var(--dark-green) 40%, var(--primary) 100%);
}

/* HEADER STYLE */
.header-style {
  display: flex;
  justify-content: space-between;
  align-items: center;

  background-color: white;

  margin: 30px 380px;
  border-radius: 15px;
  padding: 10px 40px;

  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.header-logo {
  background-color: white;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
}

.header-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;

  width: 55%;
}

.header-menu a {
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  background-color: white;
  text-decoration: none;
  text-transform: uppercase;
}

.header-menu a:hover {
  color: var(--secondary);
  cursor: pointer;
  transition: 0.4s;
}

.header-button {
  background-color: white;
}

.header-button button {
  background-color: var(--light);
  padding: 15px;
  border-radius: 15px;

  border: 0px;
  color: var(--text);
  text-transform: uppercase;
  font-size: 15px;
}

.header-button button:hover {
  background-color: var(--text);
  color: white;
  cursor: pointer;
  transition: 1s;
}

/* MAIN STYLE */
.main-principal {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin: auto;
  margin-top: 80px;
  width: 80%;
}

.main-principal-text {
  padding-left: 10px;

  h3 {
    color: white;
    text-transform: uppercase;
  }

  h1 {
    margin-top: 10px;

    color: var(--light);
    text-transform: uppercase;
    font-size: 3em;
  }

  p {
    margin-top: 10px;
    color: white;
    font-size: 1.3em;
  }
}

.main-principal-image {
  img {
    opacity: 0.9;
    border-radius: 45% 10px 0px 0px;
  }
}

.main-contact-lenses {
  background-color: var(--ice);
  margin-top: -4px;
  padding-bottom: 50px;

  h2 {
    padding-top: 50px;
    text-align: center;

    color: var(--text);
    font-size: 2em;
    font-weight: 600;
    text-transform: uppercase;
  }
}

.main-contact-lenses-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 55%;
  margin: auto;
  margin-top: 50px;

  h3 {
    font-size: 30px;
    text-transform: uppercase;
    color: var(--text);
  }

  p {
    font-size: 20px;
    margin-right: 30px;
    margin-top: 15px;
  }

  ul {
    font-size: 20px;
    margin-top: 15px;
    margin-left: 20px;
  }

  button {
    background-color: var(--light);
    margin-top: 30px;
    padding: 15px;
    border-radius: 15px;

    border: 0px;
    color: var(--text);
    text-transform: uppercase;
    font-size: 15px;
  }

  button:hover {
    background-color: var(--text);
    color: white;
    cursor: pointer;
    transition: 1s;
  }

  img {
    margin-left: 30px;
    border-radius: 15px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  }
}

.main-treatments {
  background-color: white;
}

.main-treatments h2 {
  padding-top: 50px;
  text-align: center;

  color: var(--text);
  font-size: 2em;
  font-weight: 600;
  text-transform: uppercase;
}

.main-treatments-options {
  padding: 80px 20px 50px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 60%;
  margin: auto;
}

.option-content {
  border: 1px solid var(--text);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  flex-basis: 100%;
  margin-bottom: 50px;
  background-color: rgb(243, 243, 243);

  .icon {
    color: var(--primary);
  }
  h2 {
    padding-top: 20px;
    font-size: 1.5em;
    color: var(--text);
    margin-bottom: 30px;
  }

  img {
    width: 450px;
    height: 250px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  }

  h4 {
    font-size: 1.3em;
    font-weight: bold;
    color: var(--text);
    margin-top: 20px;
    text-align: left;
    text-transform: uppercase;
  }

  p {
    margin-top: 10px;
    font-size: 19px;
    text-align: left;
  }

  ul {
    font-size: 19px;
    margin-top: 10px;
    margin-left: 20px;
    text-align: left;
  }

  button {
    background-color: var(--light);
    margin-top: 30px;
    padding: 15px;
    border-radius: 15px;

    border: 0px;
    color: var(--text);
    text-transform: uppercase;
    font-size: 15px;
  }

  button:hover {
    background-color: var(--text);
    color: white;
    cursor: pointer;
    transition: 1s;
  }
}

.main-about {
  background-color: var(--ice);
  padding-bottom: 50px;

  h2 {
    padding-top: 50px;
    text-align: center;

    color: var(--text);
    font-size: 2em;
    font-weight: 600;
    text-transform: uppercase;
  }
}

.main-about-content {
  width: 55%;
  margin: auto;
  margin-top: 50px;

  h3 {
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--text);
  }

  p {
    font-size: 20px;
    margin-right: 70px;
  }

  img {
    border-radius: 15px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  }
}

.main-about-content-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-about-images {
  width: 70%;
  margin: auto;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;

  img {
    margin-top: 20px;
    border-radius: 15px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  }
}

/* FOOTER STYLE */
.footer-content {
  height: 400px;
}

.footer-content h2 {
  padding-top: 30px;
  text-align: center;

  color: white;
  font-size: 2em;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-content p {
  text-align: center;
  color: var(--light);
}

.contact-content {
  margin: auto;
  width: 60%;
  padding: 50px 0px 50px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-location iframe {
  border-radius: 15px;
}

.contact-infos {
  width: 40%;
}

.contact-infos p {
  color: white;
  margin-bottom: 20px;
  text-align: left;
  font-size: 18px;
}

.raw-phones {
  margin-top: 10px;

  p {
    margin-bottom: 5px;
  }

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

.social-medias a {
  text-decoration: none;
}

.social-medias i {
  color: white;
  margin-right: 10px;
}

.social-medias i:hover {
  color: var(--primary);
  transition: 0.7s;
}

/* WHATSAPP BUTTON */
.whatsapp {
  display: flex;
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: var(--secondary);
  height: 63px;
  width: 63px;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
}

.whatsapp i {
  color: white;
}

/* -------------------------------------------- */
/* ESTILIZAÇÃO PARA DIFERENTES TAMANHOS DE TELA */
/* -------------------------------------------- */

@media (max-width: 1680px) {
  .header-style {
    margin: 15px 220px;
    padding: 7px 20px;
  }

  .main-about-content {
    width: 70%;
  }

  .main-about-images {
    width: 80%;
  }

  .contact-content {
    width: 70%;
  }
}

@media (max-width: 1440px) {
  .header-style {
    margin: 15px 220px;
    padding: 7px 20px;
  }

  .header-logo img {
    width: 150px;
    height: 32.607px;
  }

  .header-menu a {
    font-size: 12px;
  }

  .header-button button {
    padding: 10px;
    font-size: 12px;
    border-radius: 10px;
  }

  .main-principal {
    width: 80%;
    margin-top: 50px;
  }

  .main-principal-text {
    h3 {
      font-size: 0.9em;
    }

    h1 {
      font-size: 2.3em;
    }

    p {
      font-size: 0.9em;
    }
  }

  .main-principal-image {
    img {
      width: 648px;
      height: 432px;
    }
  }

  .main-contact-lenses {
    h2 {
      padding-top: 35px;
      font-size: 1.8em;
    }
  }

  .main-contact-lenses-content {
    width: 75%;

    h3 {
      font-size: 25px;
    }

    p {
      font-size: 17px;
    }

    ul {
      font-size: 17px;
    }
  }

  .main-treatments h2 {
    padding-top: 35px;
    font-size: 1.8em;
  }

  .main-treatments-options {
    width: 65%;
  }

  .option-content {
    h2 {
      font-size: 1.4em;
    }

    img {
      width: 300px;
      height: 166.666667px;
    }

    h4 {
      font-size: 1.2em;
    }

    p {
      font-size: 17px;
    }

    ul {
      font-size: 17px;
    }
  }

  .main-about {
    h2 {
      padding-top: 35px;
      font-size: 1.8em;
    }
  }

  .main-about-content {
    width: 75%;

    h3 {
      font-size: 25px;
    }

    p {
      font-size: 18px;
    }

    img {
      width: 240px;
      height: 320px;
    }
  }

  .main-about-images {
    width: 67%;

    .office-one {
      width: 498.220641px;
      height: 280px;
    }

    .office-two {
      width: 420px;
      height: 280px;
    }
  }

  .footer-content h2 {
    padding-top: 35px;
    font-size: 1.8em;
  }

  .contact-content {
    width: 70%;
  }

  .contact-location iframe {
    width: 500px;
    height: 250px;
  }

  .contact-infos p {
    font-size: 19px;
  }

  .whatsapp {
    height: 58px;
    width: 58px;
  }
}

@media (max-width: 1024px) {
  .header-style {
    margin: 15px 110px;
    padding: 7px 20px;
  }

  .main-principal {
    width: 95%;
    margin-top: 50px;
  }

  .main-principal-image {
    img {
      width: 518.4px;
      height: 345.6px;
    }
  }

  .main-treatments-options {
    padding: 40px 20px 20px 20px;
  }

  .main-about-content {
    img {
      width: 240px;
      height: 320px;
    }
  }

  .main-about-images {
    width: 77%;

    .office-one {
      width: 408.888889px;
      height: 230px;
    }

    .office-two {
      width: 345px;
      height: 230px;
    }
  }

  .contact-content {
    width: 85%;
  }
}

@media (max-width: 768px) {
  .header-style {
    flex-direction: column;
    align-items: center;
    margin: 15px 20px;
    padding: 10px 20px;
  }

  .header-top {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }

  .menu-toggle {
    display: block;
  }

  .header-menu,
  .header-button {
    display: none;
    width: 100%;
  }

  .header-menu a {
    font-size: 15px;
  }

  .header-style.menu-open .header-menu,
  .header-style.menu-open {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: 15px;
  }

  .header-style.menu-open .header-menu a,
  .header-style.menu-open .header-button button {
    padding: 3px 0;
    margin-bottom: 5px;
  }

  .main-principal {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow-x: hidden;
  }

  .main-principal-image {
    img {
      width: 345.6px;
      height: 230.4px;
    }
  }

  .main-principal-text {
    padding-left: 15px;

    h1 {
      margin-right: 20px;
      font-size: 2.2em;
    }

    p {
      display: none;
    }
  }

  .main-contact-lenses {
    padding-bottom: 30px;

    h2 {
      font-size: 1.6em;
    }
  }

  .main-contact-lenses-content {
    width: 95%;
    flex-direction: column;
    justify-content: unset;

    h3 {
      margin-left: 25px;
      text-align: left;
      font-size: 1.3em;
    }

    p {
      margin-left: 25px;
      text-align: left;
      font-size: 1.1em;
    }

    ul {
      margin-left: 45px;
      text-align: left;
      font-size: 1.1em;
      list-style: disc;
      list-style-position: inside;
    }

    button {
      display: none;
    }

    img {
      margin-left: 0px;
      margin-top: 25px;
    }
  }

  .main-treatments h2 {
    padding-top: 30px;
    font-size: 1.6em;
  }

  .main-treatments-options {
    padding: 20px 0px 0px 0px;
    width: 95%;
  }

  .option-content {
    margin-bottom: 25px;

    h2 {
      padding-top: 20px;
    }

    h4 {
      font-size: 1.2em;
    }

    p {
      font-size: 17px;
    }

    ul {
      font-size: 17px;
      list-style: disc;
      list-style-position: inside;
    }

    button {
      font-size: 13px;
    }
  }

  .main-about {
    h2 {
      font-size: 1.6em;
    }
  }

  .main-about-content {
    width: 92%;
    flex-direction: column;

    h3 {
      font-size: 1.4em;
      text-align: center;
    }

    p {
      text-align: center;
      font-size: 1.1em;
      margin-right: 0px;
      margin-bottom: 30px;
    }

    img {
      width: 240px;
      height: 320px;
    }
  }

  .main-about-content-info {
    flex-direction: column;
  }

  .main-about-images {
    flex-direction: column;
    margin-top: 0px;

    .office-one {
      width: 345px;
      height: 194.0625px;
    }
  }

  .footer-content h2 {
    font-size: 1.6em;
  }

  .contact-content {
    width: 95%;
    flex-direction: column;
    padding: 30px 0px 0px 0px;
  }

  .contact-location iframe {
    width: 350px;
    height: 250px;
  }

  .footer-content p {
    font-size: 0.8em;
  }

  .contact-infos {
    margin-top: 20px;
    margin-bottom: 20px;
    width: 95%;

    p {
      font-size: 0.9em;
    }
  }

  .whatsapp {
    right: 10px;
    bottom: 10px;
    height: 50px;
    width: 50px;
  }
}
