* {
  padding: 0;
  margin: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
  font-family: "Cabin";
}

html,
body {
  position: relative;
  display: block;
  width: 100%;
  min-height: 100vh;
}

:root {
  --green: #088004;
  --green-clean: #4e9e3f;
  --white: #ffff;
  --black: #333;
  --grey: #e3e3e3;
}

.container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;

  .header-top {
    position: relative;
    width: 100%;
    display: block;
    border: 1px solid var(--grey);

    .navigations {
      position: relative;
      display: flex;
      flex-direction: row;
      justify-content: space-around;
      width: 100%;
      background-color: var(--white);
      align-items: center;

      .list-navs {
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 10px;

        .list {
          display: flex;
          position: relative;
          align-items: center;
          justify-content: center;
          font-size: 17px;
          font-weight: 500;
          padding: 10px;
          gap: 10px;

          a {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: row;
            color: var(--black);
            gap: 10px;

            img {
              position: relative;
              display: block;
              width: 50px;
              height: 50px;
              border-radius: 7px;
              border: 2px solid var(--green);
              padding: 2px;
              object-fit: cover;
            }
          }

          .btn-booking {
            position: relative;
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            gap: 10px;
            background-color: var(--green);
            color: var(--white);
            transition: 0.3s ease-in-out all;
            padding: 10px;
            border-radius: 7px;
          }

          .btn-booking:hover {
            background-color: var(--green-clean);
          }

          .btn-menu-left {
            position: relative;
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            gap: 10px;
            background-color: var(--green);
            color: var(--white);
            transition: 0.3s ease-in-out all;
            padding: 10px;
            border-radius: 7px;
            border: none;
            cursor: pointer;
          }
        }

        .contacts i {
          color: var(--green);
        }

        .bar-right::after {
          content: "";
          position: absolute;
          right: -10px;
          top: 0;
          width: 2px;
          height: 100%;
          background-color: var(--grey);
        }
      }
    }
  }

  .mobile {
    display: none;
    .container-menu-right {
      position: absolute;
      width: 100%;
      top: 0;
      right: 1000px;
      min-height: 100vh;
      background-color: rgba(0, 0, 0, 0.1);
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      transition: 0.4s ease-in-out all;
      opacity: 0;
      z-index: 1000000;

      .menu-wrapper {
        width: 100%;
        position: relative;
        flex: 1;
        max-width: 300px;
        overflow: hidden;
        margin-left: auto;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;
        background-color: var(--white);

        .control-close {
          position: relative;
          width: 100%;
          background-color: var(--black);
          display: flex;
          justify-content: center;
          align-items: center;
          flex-direction: row;
          color: var(--white);

          button {
            margin-right: auto;
            background-color: var(--green);
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 30px;
            padding: 10px;
            color: var(--white);
            border: none;
            outline: none;
            cursor: pointer;
          }

          h3 {
            margin-right: auto;
          }
        }

        .navigations {
          padding: 0;
        }
        .navigations,
        .navigations .list-navs {
          flex-direction: column !important;
          gap: 0;
        }
        .navigations .list-navs {
          width: 100%;

          .list {
            width: 100%;
            border: 1px solid var(--grey);
          }
        }
      }
    }

    .active {
      right: 0px;
      opacity: 1;
    }
  }

  .carrosel-and-forms {
    position: relative;
    width: 100%;
    display: block;
    min-height: 100vh;

    .carrosel {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: block;

      swiper-container {
        width: 100%;
        height: 100%;
        position: relative;
        display: block;
        overflow: hidden;
      }

      swiper-slide {
        text-align: center;
        font-size: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
      }

      swiper-slide img {
        display: block !important;
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
      }
    }
  }

  .forms-and-text {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 20px;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    z-index: 100;
    width: 100%;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);

    .text-welcome {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      gap: 10px;
      width: 100%;
      max-width: 400px;

      h1 {
        position: relative;
        display: block;
        width: 100%;
        text-align: left;
        font-size: 70px;
        font-family: "Lora";
        color: var(--white);
        font-weight: 500;
      }

      p {
        position: relative;
        display: block;
        width: 100%;
        text-align: left;
        font-size: 19px;
        font-family: "Cabin";
        color: var(--white);
        font-size: 500;
      }

      a {
        position: relative;
        display: block;
        margin-right: auto;
        text-align: center;
        font-size: 19px;
        font-family: "Cabin";
        color: var(--white);
        font-size: 500;
        text-transform: uppercase;
        padding: 10px;
        border-radius: 7px;
        background-color: #088004;
      }
    }

    .forms {
      position: relative;
      display: block;
      width: 100%;
      max-width: 400px;
      background-color: var(--white);
      padding: 20px;
      border-radius: 7px;

      form {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 15px;
        width: 100%;

        h2 {
          position: relative;
          display: block;
          font-size: 30px;
          font-weight: 500;
          color: var(--black);
          font-family: "Lora";
          text-transform: capitalize;
        }

        .camps-forms {
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: flex-start;
          gap: 10px;
          width: 100%;

          label {
            position: relative;
            display: block;
            font-size: 15px;
          }

          input {
            position: relative;
            display: block;
            padding: 10px;
            border-radius: 7px;
            border: 1px solid var(--grey);
            width: 100%;
            outline: none;
          }
        }

        button {
          position: relative;
          display: block;
          width: 100%;
          text-align: center;
          font-size: 19px;
          font-family: "Cabin";
          color: var(--white);
          font-size: 500;
          text-transform: uppercase;
          padding: 10px;
          border-radius: 7px;
          background-color: #088004;
          border: none;
          cursor: pointer;
          outline: none;
        }
      }
    }
  }

  .container-about {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    border-top: 10px solid var(--white);
    flex-wrap: wrap;
    gap: 10px;

    .box-dialog {
      position: relative;
      background: linear-gradient(
        to right,
        var(--white),
        var(--white),
        transparent
      );
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      width: 100%;
      max-width: 900px;
      gap: 10px;
      padding: 20px;

      h3 {
        font-size: 18px;
        position: relative;
        color: var(--green-clean);
        display: block;

        text-align: center;
      }

      h2 {
        font-size: 50px;
        position: relative;
        color: var(--black);
        display: block;
        font-family: "Lora";
        text-align: center;
      }

      p {
        font-size: 16px;
        position: relative;
        color: var(--black);
        display: block;
        font-family: "Cabin";
        text-align: center;
      }
    }

    .box-imgs {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: row;
      gap: 10px;
      flex-wrap: wrap;
      overflow: hidden;
      width: 100%;
      padding: 20px;

      img {
        width: 100%;
        max-width: 450px;
        position: relative;
        display: block;
        object-fit: cover;
        height: 370px;
        border-radius: 7px;
      }
    }
  }

  .container-differential {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    flex-direction: column;
    width: 100%;

    h3 {
      font-size: 18px;
      position: relative;
      color: var(--green-clean);
      display: block;

      text-align: center;
    }

    h2 {
      font-size: 50px;
      position: relative;
      color: var(--black);
      display: block;
      font-family: "Lora";
      text-align: center;
    }

    p {
      font-size: 16px;
      position: relative;
      color: var(--black);
      display: block;
      font-family: "Cabin";
      text-align: center;
    }

    .box-differential {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      flex-direction: row;
      flex-wrap: wrap;
      width: 100%;

      .list-box {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 400px;
        border: 1px solid var(--grey);
        height: 300px;
        padding: 20px;
        gap: 10px;

        i {
          position: relative;
          display: block;
          font-size: 50px;
          color: var(--green-clean);
        }

        h4 {
          font-size: 19px;
          position: relative;
          color: var(--black);
          display: block;
          font-family: "Lora";
          text-align: center;
        }

        p {
          font-size: 14px;
          position: relative;
          color: var(--black);
          display: block;
          font-family: "Cabin";
          text-align: center;
        }
      }

      swiper-container {
        width: 100%;
        height: 100%;
        max-width: 1200px;
        position: relative;
        display: block;
        overflow: hidden;
        padding: 20px;
        
        background-color: var(--white);
      }

      swiper-slide {
        text-align: center;
        font-size: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        position: relative;
        background-color: var(--white);
        overflow: hidden;
      }

      swiper-slide img {
        display: block !important;
        position: relative !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
        transform: translate(3px);
        
        background-color: var(--white);
      }
    }
  }

  .footer-site {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--black);
    color: var(--white);
    padding: 10px;
    width: 100%;
    text-align: center;
  }
}

@media only screen and (max-width: 750px) {
  .container {
    .mobile {
      display: flex;
      .navigations {
        justify-content: space-between !important;
        padding: 0 30px;
      }
    }

    .desktop {
      display: none;
    }
  }
}

.btn-wts{
  position: fixed; 
	width: 60px; 
	height: 60px; 
	bottom: 20px;
	right: 30px;
	background-color: #25d366;
	color: #fff;
	border-radius: 50%;
	text-align: center;
	font-size: 34px;
	z-index: 1000;
	display: flex;
	justify-content: center;
	align-items: center;
}
.btn-wts:hover{
	color: #fff;
	background-color: #25d300;
}

.btn-wts:active,
.btn-wts:focus{
	color:#fff;
}

.btn-wts svg{
	width: 34px;
	fill: #fff;
}

.btn-booking-float{
  bottom: 100px;
  background-color: transparent !important;
}

.btn-booking-float svg{
	width: 54px;
	fill: #fff;
}