/* 1. Modelo de caixa mais intuitivo para todos os elementos */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. Remove margens padrão para um controle mais limpo do espaçamento */
* {
  margin: 0;
}

/* 3. Define a altura mínima do corpo para layouts de página inteira */
body {
  min-height: 100vh;
  /* Define uma altura de linha legível que é herdada */
  line-height: 1.5;
  /* Melhora a suavização da fonte em diferentes sistemas operacionais */
  -webkit-font-smoothing: antialiased;
}

/* 4. Otimização de imagens, vídeos e SVG */
img,
picture,
video,
canvas,
svg {
  display: block;
  /* Garante que mídias não ultrapassem o container */
  max-width: 100%;
}

/* 5. Remove decorações de lista e preenchimentos, use o atributo role="list" se quiser remover os estilos padrão */
ul:where(:not([role="list"])),
ol:where(:not([role="list"])) {
  list-style: none;
  padding: 0;
}

/* 6. Remove a estilização padrão do botão */
button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

/* 7. Garante que elementos de formulário herdem a fonte */
input,
button,
textarea,
select {
  font: inherit;
}

/* 8. Previne que o textarea seja muito pequeno sem o atributo rows */
textarea:not([rows]) {
  min-height: 10em;
}

/* 9. Evita estouro de texto em palavras longas e desnecessárias */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
body {
  width: 100%;

  font-family: "Lora", serif;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #000;
  background: #c9e4dc;
  background: linear-gradient(
    180deg,
    rgba(201, 228, 220, 1) 1%,
    rgba(255, 255, 255, 1) 55%
  );
  overflow-x: hidden;
}

a#desktop {
  display: block;
  @media (max-width: 600px) {
    display: none !important;
  }
}
a#mobile {
  display: none;
  @media (max-width: 600px) {
    display: block !important;
  }
}

section#main {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin: 0 auto;

  .shadow {
    box-shadow: -3px 2px 12px 0px rgba(0, 0, 0, 0.39);
    -webkit-box-shadow: -3px 2px 12px 0px rgba(0, 0, 0, 0.39);
    -moz-box-shadow: -3px 2px 12px 0px rgba(0, 0, 0, 0.39);
  }

  .hidden {
    @media (max-width: 720px) {
      display: none !important;
    }
  }

  section#group-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 100px;
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid #c5c5c5;
    z-index: 5;
    a.icon {
      width: max-content;
      height: auto;

      @media (max-width: 720px) {
        display: none;
      }
    }
    a#collapsed {
      display: none;
      @media (max-width: 720px) {
        display: block;
        text-decoration: none;
        border: none;
      }
    }
    ul#menu {
      display: flex;
      width: max-content;
      flex-wrap: nowrap;
      column-gap: 20px;
      z-index: 5;
      li {
        a {
          font-family: "Montserrat", sans-serif;
          font-size: 18px;
          text-decoration: none;
          font-weight: 600;
          color: #000;
        }
      }
      @media (max-width: 720px) {
        position: absolute;
        top: 48px;
        display: flex;
        flex-direction: column;
        background: #fff;
        padding: 30px;
      }
    }
    @media (max-width: 720px) {
      position: fixed;
      top: 0;
      background: rgba(255, 255, 255, 0.8);
      align-items: center;
      justify-content: flex-end;
    }
  }

  section#description {
    width: 100%;
    max-width: 1500px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 100px 15px 20px 15px;

    @media (max-width: 1311px) {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    div.group-top-text {
      display: flex;
      flex-direction: column;
      width: 50%;
      align-items: flex-start;
      justify-content: flex-start;
      @media (max-width: 720px) {
        width: 100%;
      }
      h4 {
        background: #f9f9f9;
        padding: 5px 15px;
        border-radius: 20px;
        margin-bottom: 15px;
        @media (max-width: 720px) {
          font-size: 12px;
        }
      }
      h1 {
        font-family: "Lora", serif;
        font-size: 42px;
        line-height: 1.1em;
        margin-bottom: 50px;
      }
      p {
        font-size: 16px;
        line-height: 1.3em;
        margin-bottom: 50px;
        span {
          font-weight: 800;
        }
      }
      div.cta {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        margin-bottom: 30px;
        column-gap: 20px;
        @media (max-width: 720px) {
          display: flex;
          flex-direction: column;
          row-gap: 20px;
          margin: 0 auto 50px auto;
        }
        a.agendamento {
          background: #1d5c6b;
          color: #fff;
          text-decoration: none;
          padding: 10px 15px;
          border-radius: 20px;
        }
        a.metodo {
          border: 1px solid #1d5c6b;
          background: #fff;
          color: #000;
          text-decoration: none;
          padding: 10px 15px;
          border-radius: 20px;
        }
      }
    }
    img.bigImg {
      border-radius: 30px;
    }
  }
  section#family {
    display: flex;
    width: 100%;
    max-width: 1500px;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    padding: 50px 15px;
    div.m_left {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 50%;
      img {
        border-radius: 30px;
        @media (max-width: 1315px) {
            width:80%;
             height:auto;
        }
        
      }
      @media (max-width: 720px) {
        width: 100%;
        margin-bottom: 20px;
      }
    }
    div.m_right {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 50%;
      @media (max-width: 720px) {
        width: 100%;
      }
      h2 {
        font-family: "Lora", serif;
        font-size: 34px;
        line-height: 1.1em;
        margin-bottom: 20px;
        margin-top: 15px;
      }
      p {
        line-height: 1.5em;
        margin-bottom: 15px;
        font-size: 18px;
        margin-bottom: 50px;
        span {
          font-weight: 600;
        }
      }
      h2.quote {
        font-family: "Lora", serif;
        font-size: 22px;
        line-height: 1.5;
        color: #1d5c6b;
        background: #d8e9e4;
        padding: 18px;
        border-radius: 14px;
        border-left: 6px solid #1d5c6b;
        padding: 50px 15px;
      }
    }
  }
  section#book {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 100px;
    background: #72519f;
    padding: 100px 15px 0 15px;
    div.group {
      display: flex;
      flex-wrap: wrap;
      width: 100%;
      div.l_side {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        width: 50%;
        height: auto;
        padding-left: 20%;
        @media (max-width: 1800px) {
          padding-left: 15%;
        }
        @media (max-width: 1650px) {
          padding-left: 5%;
        }
        @media (max-width: 1450px) {
          width: 100%;
          max-width: 900px;
          align-items: flex-start;
          justify-content: center;
          margin: 0 auto;
        }

        h2 {
          color: #fff;
          font-size: 40x;
          margin-bottom: 20px;
          line-height: 1.1em;
        }
        img.book-hands-2 {
          display: none;
          @media (max-width: 1450px) {
            display: block;
            /* background: gold; */
          }
        }

        img.livro_01_mobile {
          display: none;
          @media (max-width: 1450px) {
            display: block;
            margin: 0 auto 100px auto;
            width: 350px;
            height: auto;
          }
          @media (max-width: 580px) {
            width: 95%;
            height: auto;
          }
        }
        p {
          color: #fff;
          line-height: 1.3em;
          font-size: 22px;
          margin-bottom: 15px;
        }
        a.cta {
          width: max-content;
          display: flex;
          align-items: center;
          justify-content: center;
          background: #ec9c2e;
          color: #fff;
          padding: 10px 20px;
          border-radius: 10px;
          text-decoration: none;
          text-transform: uppercase;
          margin-top: 55px;
          margin-bottom: 100px;
          transition: 0.5s;
          &:hover {
            background: #b97a24;
          }
          @media (max-width: 1450px) {
            margin: 50px auto;
          }
          @media (max-width: 580px) {
            display: none;
          }
        }
      }
      div.r_side {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        width: 50%;
        height: auto;
        a.cta-mobile {
          display: none;
        }
        /* img {
          max-width: 700px;
          &.livro_01 {
            margin-bottom: 50px;
            width: 320px;
            height: auto;
            border-radius: 2px;
            @media (max-width: 1450px) {
              display: none;
            }
          }
        } */
        img.book-hands-2-mobile {
          /* background: crimson; */
          margin-bottom: 50px;
          @media (max-width: 1450px) {
            display: none;
          }
        }

        @media (max-width: 1450px) {
          display: flex;
          width: 100%;
          max-height: 900px;
          align-items: center;
          justify-content: center;
        }
        @media (max-width: 580px) {
          position: relative;
          padding: 0;
          img {
            margin: 0;
            margin-left: -15px;
          }
          a.cta-mobile {
            position: absolute;
            top: 10px;
            right: 65px;
            display: flex;
            width: max-content;
            background: #d98f2a;
            padding: 15px;
            color: #fff;
            text-decoration: none;
            border-radius: 10px;
            line-height: 1.1em;
          }
        }
      }
    }
  }

  section#metodo {
    width: 100%;
    display: flex;
    flex-direction: column;
    background: #f7f3ef;
    padding: 100px 15px;
    align-items: flex-start;
    justify-content: flex-start;
    div.group-text {
      width: 100%;
      max-width: 1400px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      margin: 0 auto;
      h2 {
        font-family: "Lora", serif;
        font-size: 34px;
        line-height: 1.1em;
        text-align: center;
        margin-bottom: 20px;
      }
      p {
        font-size: 18px;
        line-height: 1.3em;
        margin-bottom: 25px;
        max-width: 900px;
      }
      div.group-cards {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        flex-wrap: wrap;
        row-gap: 50px;
        @media (max-width: 1265px) {
          padding: 10px 50px;
          justify-content: flex-start;
          align-items: center;
          gap:50px;
          max-width: 950px;
          margin: 0 auto;
          
        }
        @media (max-width: 720px) {
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          row-gap: 20px;
          padding:0;
          
        }

        div.card {
          position: relative;
          width: 100%;
          max-width: 400px;
          min-height: 200px;
          background: #fff;
          border-radius: 30px;
          padding: 50px;
          span.number {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: #1d5c6b;
            color: #fff;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-bottom: 15px;
          }
          p.title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
          }
        }
      }
    }
  }

  section#area-atuacao {
    width: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 100px 15px;
    align-items: flex-start;
    justify-content: flex-start;

    div.group-text {
      width: 100%;
      max-width: 1400px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      margin: 0 auto;
      h2 {
        font-family: "Lora", serif;
        font-size: 34px;
        line-height: 1.1em;
        text-align: center;
        margin-bottom: 15px;
      }
      p {
        font-size: 18px;
        line-height: 1.3em;
        margin-bottom: 25px;
        max-width: 900px;
        margin-bottom: 15px;
        margin-bottom: 20px;
      }
      a {
        position: absolute;
        bottom: 20px;
        left: 26%;
        display: block;
        text-decoration: none;
        width: max-content;
        height: auto;
        padding: 10px 20px;
        border: 1px solid #000;
        border-radius: 5px;
        color: #000;
        -webkit-box-shadow: 2px 2px 15px -7px #000000;
        box-shadow: 2px 2px 15px -7px #000000;
        margin: 0 auto;
      }
      div.group-cards {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: wrap;
        row-gap: 50px;
        width: 100%;
        @media (max-width: 720px) {
          display: flex;
          flex-direction: column;
          row-gap: 30px;
          align-items: center;
          justify-content: center;
        }

        div.card {
          position: relative;
          width: 100%;
          max-width: 300px;
          min-height: 650px;
          background: #fff;
          border-radius: 30px;
          padding: 15px;
          img {
            margin-bottom: 15px;
            border-radius: 20px;
          }
          p.title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
          }
        }
      }
    }
  }

  section#temas-palestras {
    width: 100%;
    display: flex;
    flex-direction: column;
    background: #f7f3ef;
    padding: 100px 15px;
    align-items: flex-start;
    justify-content: flex-start;

    div.group-text {
      width: 100%;
      max-width: 1400px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      margin: 0 auto;
      h2 {
        font-family: "Lora", serif;
        font-size: 34px;
        line-height: 1.1em;
        text-align: center;
        margin-bottom: 20px;
      }
      p {
        font-size: 18px;
        line-height: 1.3em;
        margin-bottom: 25px;
        max-width: 900px;
        margin-bottom: 60px;
      }
      div.group-cards {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        width: 100%;
        flex-wrap: wrap;
        row-gap: 50px;
        @media (max-width:1265px) {
          align-items:center;
          justify-content:flex-start;
          gap:50px;
          padding: 10px 50px;
        }

        @media (max-width: 800px) {
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          row-gap: 50px;
        }

        div.card {
          position: relative;
          width: 100%;
          max-width: 400px;
          min-height: 150px;
          background: #fff;
          border-radius: 30px;
          padding: 15px;
          img {
            margin-bottom: 15px;
            border-radius: 20px;
          }
          p.title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
          }
        }
}
    }
  }
  section#social-proof {
    display: block;
    width: 100%;
    padding: 100px 15px;
    div.swiper {
      width: 95%;
      max-width: 1600px;
      div.swiper-wrapper {
        position: relative;
        div.swiper-slide {
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          p {
            font-size: 20px;
            text-align: center;
            width: 95%;
            margin-bottom: 15px;
            max-width: 1200px;
            &.small {
              font-size: 16px;
              font-style: italic;
            }
          }
        }
      }
      /* div.swiper-pagination {
        position: absolute;
        background: lightcoral;
        bottom: -20px;
        z-index: 3;
      } */
    }
  }
  section#contato {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 100px 15px;
    background: #f7f3ef;
    h2 {
      font-family: "Lora", serif;
      font-size: 34px;
      margin-bottom: 50px;
    }
    p {
      font-size: 18px;
      line-height: 1.1em;
      margin-bottom: 50px;
    }
    div.info {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 50px;
      background: #fff;
      border-radius: 50px;
      width: 98%;
      max-width: 800px;

      @media (max-width: 720px) {
        padding: 20px;
        border-radius: 20px;
      }
      p {
        margin-bottom: 15px;
        text-align: center;
        span {
          font-weight: bold;
          margin-right: 10px;
          line-height: 1.3em;
        }
        @media (max-width: 720px) {
          font-size: 14px;
        }
      }
      a {
        text-decoration: none;
        color: #222;
      }
    }
  }
  footer {
    display: flex;
    width: 100%;
    flex-direction: column;
    padding: 100px 15px;
    background: #0f2f36;
    align-items: center;
    justify-content: center;

    div.group-info {
      display: flex;
      flex-wrap: wrap;
      width: 100%;
      max-width: 1200px;
      height: auto;
      @media (max-width: 720px) {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        row-gap: 20px;
      }
      div.info {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        &.large {
          max-width: 500px;
        }
        p {
          color: #fff;
          font-weight: 600;
          &.normal {
            font-weight: 300;
          }
        }
        a {
          color: #fff;
          text-decoration: none;
        }
      }
    }
  }
}
