/* Variáveis */
:root {
  --colorFontPattern: #ffffffcd;

  --backgroundColorForm: #f8f9ff;

  --bgColorModalLogin: #00000073;
  --colorButtonReturn: #00ccff;
  --borderColorButtonLogin: white;

  --maxWidth: 1200px;
  --minWidth: 90%;
}

/* Configuração global */
* {
  padding: 0;
  margin: 0;

  scroll-behavior: smooth;

  font-family: var(--defaultFont), Arial;

  box-sizing: border-box;
}

/* Gratitude element */
.gratitudeElement {
  width: 100%;
  height: fit-content;

  display: flex;

  justify-content: center;
  align-items: center;
}
/* End gratitude element */

/* Navbar */
.navbarSection {
  width: 100%;
  display: block;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999999;
}

.navbarSection.whiteBd {
  background-color: var(--whiteColor);
}

.navUpBar {
  width: 100%;
  display: block;
  text-align: center;
  background-color: var(--primary);
  padding: 15px 0;
}

.navUpBarText {
  font-size: 18px;
  line-height: 20px;
  font-weight: bold;
  color: var(--whiteColor);
  text-decoration: none;
}

.navContainer {
  max-width: var(--maxWidth);
  width: var(--minWidth);
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.navLogoImg {
  max-width: 200px;
  width: 100%;
}

.navLinksBox {
  width: auto;
  justify-content: center;
  align-items: center;
  list-style: none;
  column-gap: 20px;
  display: flex;
}

.navLinksBox.closedMenu {
  display: flex;
}

.navLink,
.navLinkItem {
  color: var(--whiteColor);
  text-decoration: none;
  transition: all 300ms;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  cursor: pointer;
}

.navLink:hover,
.navLinkItem:hover,
#callLogin:hover {
  color: var(--primary);
}

.navbarDropDrown {
  width: auto;
  position: relative;
  display: flex;
  column-gap: 15px;
  color: var(--whiteColor);
}

.navbarDropDrown ul {
  position: absolute;
  top: 25px;
  left: auto;
  right: 0;
  width: auto;
  display: none;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  white-space: nowrap;
  list-style: none;
  background-color: var(--primary);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  color: var(--primary);
  border: 2px solid currentColor;
  overflow: hidden;
}

.dropDrownItem {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: start;
}

.dropDrowLink {
  width: 100%;
  color: var(--whiteColor);
  font-size: 14px;
  padding: 10px;
  text-decoration: none;
  font-weight: 600;
  text-align: start;
}

.dropDrowLink:hover {
  color: var(--primary);
  background-color: var(--whiteColor);
}

#callLogin {
  width: auto;
  border: 1px solid currentColor;
  padding: 5px 10px;
}

.form-login-title {
  color: var(--whiteColor) !important;
}

.dropDrownIcon {
  font-size: 16px;
  transition: all 300ms;
}

.dropDrownIcon.upPosition {
  transform: rotateX(180deg);
}

.mobileMenu {
  width: 32px;
  height: 32px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 8px;
  cursor: pointer;
  overflow: hidden;
}

.mobileMenuBar {
  width: 35px;
  height: 2px;
  border-radius: 5px;
  transition: all 300ms;
  position: relative;
}

.mobileMenuBar.firstBar {
  transform: rotate(45deg);
  position: absolute;
  width: 35px;
}

.mobileMenuBar.secondBar {
  display: none;
}

.mobileMenuBar.thirdBar {
  transform: rotate(-45deg);
  position: absolute;
  width: 35px;
}

.mobileMenuBar.whiteBg {
  background-color: var(--whiteColor);
}

.mobileMenuBar.blackBg {
  background-color: var(--blackColor);
}

.blackColor {
  color: var(--blackColor);
}

@media (max-width: 992px) {
  .navLinksBox {
    position: fixed;
    top: 111px;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 20px 45px;
    background-color: var(--whiteColor);
    row-gap: 20px;
    border-top: 1px solid #0000001f;
  }

  .mobileMenu {
    display: flex;
  }

  .navLink,
  .navLinkItem {
    color: var(--blackColor);
  }

  .navbarDropDrown {
    display: flex;
    flex-direction: column;
    align-items: start;
    color: var(--blackColor);
  }

  .navbarDropDrown ul {
    background-color: transparent;
    position: relative;
    border: none;
    top: 5px;
    padding-left: 10px;
  }

  .dropDrowLink {
    text-align: start;
    color: var(--blackColor);
  }

  #form-login {
    margin-left: 0 !important;
  }
}
/* End navbar */

/* Body container */
.pageBodyContainer {
  width: 100%;
  height: fit-content;

  display: flex;

  justify-content: center;
  align-items: center;

  flex-direction: column;

  margin-top: 3.15rem;
}
/* End body container */

/* Header */
.bannerSection {
  width: 100%;
  height: fit-content;

  position: relative;
}

.bannerImageSection {
  width: 100%;
}

.bannerImageSection img {
  width: 100%;
}

.iconBanner {
  width: 13rem;
  height: 13rem;

  position: absolute;

  bottom: -2rem;
  left: 50%;

  transform: translateX(-50%);
}

.iconBanner img {
  width: 100%;
}

.mobileBannerImage {
  display: none;
}
/* End header */

/* Apresentation */
.apresentation {
  width: var(--minWidth);
  max-width: var(--maxWidth);
  height: fit-content;

  padding-top: 2rem;
  padding-bottom: 3rem;

  display: flex;
  justify-content: center;
  align-items: center;

  flex-direction: column;
}

.titleApresentation {
  width: 50%;
  height: fit-content;

  padding: 1rem 0;

  display: flex;

  justify-content: center;
  align-items: center;

  flex-direction: column;
}

.titleApresentation h1 {
  font-size: 38px;
  text-align: center;
}

.titleApresentation p {
  width: 80%;
  font-size: 15px;
  text-align: center;
}

.listTemplates {
  width: 100%;
  height: fit-content;

  display: flex;
  justify-content: center;
  align-items: center;

  flex-direction: row;

  flex-wrap: wrap;

  gap: 3rem;

  margin-top: 1rem;
}

.classicsList {
  width: 36rem;
  height: fit-content;

  display: flex;

  justify-content: center;
  align-items: center;

  flex-direction: column;

  row-gap: 3rem;
}

.newOceanList {
  width: 36rem;
  height: fit-content;

  display: flex;

  justify-content: center;
  align-items: center;

  flex-direction: column;

  row-gap: 3rem;
}

.listTemplates img {
  width: 100%;
}

.templateTitle {
  font-size: 19px;

  margin-bottom: 0.65rem;
}

.buttonContainer {
  width: 100%;
  height: fit-content;

  display: flex;
  justify-content: center;
  align-items: center;

  flex-direction: row;

  column-gap: 2rem;
}

.buttonWhite {
  padding: 0.5rem 2.5rem;

  text-decoration: none;

  color: var(--primary);

  font-weight: 700;

  background-color: transparent;

  border: 2px solid var(--primary);
  border-radius: 2rem;

  transition: 0.3s;
}

.buttonTemplate {
  padding: 0.5rem 2.5rem;

  color: var(--whiteColor);

  font-weight: 700;

  font-size: 17px;

  background-color: var(--primary);

  border: 2px solid var(--primary);

  border-radius: 2rem;

  cursor: pointer;

  transition: 0.3s;
}

.buttonWhite:hover {
  background-color: var(--primary);
  color: var(--whiteColor);
}

.buttonTemplate:hover {
  filter: brightness(1.4);
}
/* End apresentation */

/* Call to action */
.callToActionContainer {
  width: 100%;
  height: fit-content;

  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;

  flex-direction: column;

  background-color: var(--backgroundColorForm);
}

.callToActionContainer img {
  width: 100%;
}

.callToAction {
  width: var(--minWidth);
  max-width: var(--maxWidth);

  height: fit-content;

  padding: 1rem 0;

  display: flex;
  justify-content: flex-start;
  align-items: center;

  flex-direction: column;

  position: absolute;

  top: 50%;

  transform: translateY(-50%);
}

.titleText {
  width: 50%;
  height: fit-content;

  text-align: center;
}

.titleText h1 {
  font-size: 38px;
}

.titleText p {
  font-size: 15px;
}

.imageSection {
  width: 95%;
  height: fit-content;

  display: flex;
  justify-content: center;
  align-items: center;
}

.imageSection img {
  width: 100%;
}

.orderExecute {
  width: 100%;
  height: fit-content;

  display: flex;

  justify-content: center;
  align-items: center;

  flex-direction: row;
}

.orderContainer1 {
  width: 30%;
  height: 15rem;

  position: relative;

  display: flex;

  justify-content: center;
  align-items: flex-start;

  flex-direction: row;
}

.orderContainer2 {
  width: 30%;
  height: 15rem;

  position: relative;

  display: flex;

  justify-content: center;
  align-items: flex-start;

  flex-direction: row;
}

.orderContainer3 {
  width: 30%;
  height: 15rem;

  position: relative;

  display: flex;

  justify-content: center;
  align-items: flex-start;

  flex-direction: row;
}

.orderContainer4 {
  width: 15%;
  height: 15rem;

  position: relative;

  display: flex;

  justify-content: flex-start;
  align-items: flex-start;

  flex-direction: row;
}

.orderItem {
  width: 100%;
  height: fit-content;

  display: flex;

  justify-content: center;
  align-items: center;

  flex-direction: column;

  text-align: center;

  z-index: 1;
}

.orderItem img {
  width: auto;
  height: 4rem;
  margin-bottom: 2rem;
}

.orderItem h1 {
  font-size: 18px;
  margin-bottom: 0.25rem;
}

.orderItem p {
  width: 90%;

  font-size: 12px;
}

.lastItem {
  width: 100%;
}

.orderItemArrows {
  width: 80%;
  height: 15rem;

  margin-left: -3rem;

  z-index: 2;
}

.arrowDesktop {
  display: block;
}

.arrowMobile {
  display: none;
}

.buttonToActionSection {
  width: 100%;
  height: 3rem;

  text-align: center;

  display: flex;
  justify-content: center;
  align-items: center;
}

.buttonToAction {
  padding: 0.5rem 2.5rem;

  color: var(--whiteColor);

  font-weight: 700;

  font-size: 17px;

  background-color: var(--primary);

  border: 2px solid var(--primary);

  border-radius: 2rem;

  text-decoration: none;

  transition: 0.3s;

  cursor: pointer;
}

.buttonToAction:hover {
  filter: brightness(1.4);
}

.callToActionImageDesktop {
  display: block;
}

.callToActionImageMobile {
  display: none;
}
/* End call to action */

/* wave image  */
.waveSection {
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.upWaveSection {
  background-image: url("../img/upWave.jpg");
  aspect-ratio: 1922/257;
}
/* End of wave image  */ 

/* Form */
.sessao-formulario {
  width: 100%;
}
/* End form */

/* Inicio Thank You Element */
.thankyouContainer {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  width: 100vw;
  height: 100vh;

  position: fixed;
  z-index: 99;

  top: 0;
  left: -1000rem;

  display: flex;
  justify-content: center;
  align-items: center;

  color: var(--colorFontPattern);

  background: rgba(73, 73, 73, 0.43);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(11.2px);
  -webkit-backdrop-filter: blur(11.2px);

  transition: 1s;
}

.thankyouContainer.showThankyouContainer {
  left: 0;
}

.thankyouBody {
  max-width: var(--maxWidth);
  width: var(--minWidth);
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
}

.thankyouCardTilt {
  width: 55%;

  display: flex;
  justify-content: center;
  align-items: center;

  flex-direction: column;
  row-gap: 1rem;

  padding: 1rem;
}

.thankyouContainerPattern {
  width: 80%;
  min-height: 5rem;

  display: flex;
  justify-content: center;
  align-items: center;

  flex-direction: column;

  text-align: center;
}

.thankyouSectionTitleTitle {
  font-size: 65px;
  margin-bottom: 0.5rem;
}

.thankyouSectionTitle p {
  margin: 0;

  font-size: 20px;
}

.thankyouSectionImage {
  height: 15rem;
}

.thankyouSectionImage img {
  height: 100%;
}

.thankyouSectionText {
  height: fit-content;
}

.thankyouSectionText p {
  font-size: 18px;
  margin: 0;
}

.thankyouSectionSocialMedia {
  display: flex;
  justify-content: center;
  align-items: center;

  flex-direction: column;
  row-gap: 0.5rem;
}

.thankyouSectionSocialMediaIconSocialMedia {
  width: 35%;
  height: fit-content;

  display: flex;
  justify-content: space-around;
  align-items: center;
}

.thankyouSectionSocialMediaIconSocialMedia img {
  width: 80%;
  opacity: 1;
  transition: 0.4s;
}

.thankyouSectionSocialMediaIconSocialMedia img:hover {
  opacity: 0.6;
}

.thankyouSectionSocialMediaHiddenButton {
  width: 80%;
  height: fit-content;

  display: flex;
  justify-content: center;
  align-content: center;
}

.thankyouSectionSocialMediaHiddenButton button {
  padding: 0.5rem 1rem;
  border-style: none;
  font-size: 10px;
  border-radius: 2rem;
  cursor: pointer;
  transition: 0.3s;

  color: var(--colorFontPattern);

  background-color: var(--colorButtonReturn);
}

/* Fim Thank You Element */

@media (max-width: 1330px) {
  /* Header */
  .iconBanner {
    width: 11rem;
    height: 11rem;
  }
  /* End header */
}

@media (max-width: 963px) {
  /* Header */
  .titleApresentation {
    width: 65%;
  }

  .titleApresentation h1 {
    font-size: 28px;
  }

  .iconBanner {
    width: 9rem;
    height: 9rem;
  }
  /* End header */

  /* Call to action */
  .titleText {
    width: 80%;
  }

  .titleText h1 {
    margin-bottom: 1rem;
  }

  .imageSection {
    width: 100%;
  }

  .orderItemArrows {
    width: 35%;
    margin-left: 0;

    margin: 0.5rem 0;

    height: fit-content;
  }

  .orderExecute {
    flex-direction: column;
  }

  .orderContainer1 {
    width: 50%;

    height: fit-content;
    flex-direction: column;
    align-items: center;
  }

  .orderContainer2 {
    width: 50%;

    height: fit-content;
    flex-direction: column;
    align-items: center;
  }

  .orderContainer3 {
    width: 50%;

    height: fit-content;
    flex-direction: column;
    align-items: center;
  }

  .orderContainer4 {
    width: 50%;
  }

  .callToActionImageDesktop {
    display: none;
  }

  .callToActionImageMobile {
    display: block;
  }

  .arrowDesktop {
    display: none;
  }

  .arrowMobile {
    display: block;
  }

  .orderItem h1 {
    font-size: 28px;
  }

  .orderItem p {
    font-size: 20px;
  }

  .orderItem img {
    height: 8rem;
  }

  .buttonToActionSection {
    margin-top: 4rem;
  }
  /* End call to action */
}

@media (max-width: 675px) {
  /* Header */
  .titleApresentation {
    width: 100%;
  }

  .titleApresentation h1 {
    font-size: 28px;
  }

  .iconBanner {
    width: 12rem;
    height: 12rem;
  }

  .desktopBannerImage {
    display: none;
  }

  .mobileBannerImage {
    display: block;
  }
  /* End header */

  /* Call to action */
  .titleText {
    width: 80%;
  }

  .titleText h1 {
    margin-bottom: 1rem;
  }

  .imageSection {
    width: 100%;
  }

  .orderItemArrows {
    width: 30%;
  }

  .orderContainer1 {
    width: 50%;
  }

  .orderContainer2 {
    width: 50%;
  }

  .orderContainer3 {
    width: 50%;
  }

  .orderContainer4 {
    width: 50%;
  }

  .orderItem h1 {
    font-size: 28px;
  }

  .orderItem p {
    font-size: 20px;
  }

  .orderItem img {
    height: 6rem;
  }

  .buttonToActionSection {
    margin-top: 5rem;
  }
  /* End call to action */
}

@media (max-width: 548px) {
  /* Header */
  .titleApresentation h1 {
    font-size: 26px;
  }

  .iconBanner {
    width: 9rem;
    height: 9rem;
  }
  /* End header */

  /* Call to action */
  .titleText {
    width: 100%;
  }

  .titleText h1 {
    font-size: 26px;

    margin-bottom: 0.75rem;
  }

  .titleText p {
    font-size: 18px;
  }

  .imageSection {
    width: 100%;
  }

  .orderItemArrows {
    width: 30%;
  }

  .orderContainer1 {
    width: 75%;
  }

  .orderContainer2 {
    width: 75%;
  }

  .orderContainer3 {
    width: 75%;
  }

  .orderContainer4 {
    width: 75%;
  }

  .orderItem h1 {
    font-size: 26px;
  }

  .orderItem p {
    font-size: 18px;
  }

  .orderItem img {
    height: 6rem;
  }

  .buttonToActionSection {
    margin-top: 5rem;
  }
  /* End call to action */
}

@media (max-width: 395px) {
  /* Call to action */
  .titleText {
    width: 100%;
  }

  .titleText h1 {
    font-size: 26px;

    margin-bottom: 0.75rem;
  }

  .titleText p {
    font-size: 14px;
  }

  .imageSection {
    width: 100%;
  }

  .orderItemArrows {
    width: 20%;
  }

  .orderContainer1 {
    width: 85%;
  }

  .orderContainer2 {
    width: 85%;
  }

  .orderContainer3 {
    width: 85%;
  }

  .orderContainer4 {
    width: 85%;
  }

  .orderItem h1 {
    font-size: 26px;
  }

  .orderItem p {
    font-size: 14px;
  }

  .orderItem img {
    height: 5rem;
  }

  .buttonToActionSection {
    margin-top: 2rem;
  }
  /* End call to action */
}

@media (max-width: 330px) {
  /* Header */
  .titleApresentation h1 {
    font-size: 24px;
  }

  .iconBanner {
    width: 6rem;
    height: 6rem;
  }

  .titleApresentation p {
    font-size: 13px;
  }
  /* End header */

  /* Call to action */
  .titleText {
    width: 100%;
  }

  .titleText h1 {
    font-size: 24px;

    margin-bottom: 0.75rem;
  }

  .titleText p {
    font-size: 13px;
  }

  .imageSection {
    width: 100%;
  }

  .orderItemArrows {
    width: 20%;
  }

  .orderContainer1 {
    width: 85%;
  }

  .orderContainer2 {
    width: 85%;
  }

  .orderContainer3 {
    width: 85%;
  }

  .orderContainer4 {
    width: 85%;
  }

  .orderItem h1 {
    font-size: 24px;
  }

  .orderItem p {
    font-size: 13px;
  }

  .orderItem img {
    height: 4rem;
  }

  .buttonToActionSection {
    margin-top: 0;
  }
  /* End call to action */
}
