@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap");

*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

body {
  height: 100%;
  /* Make this site really long */
  width: 100%;
  /* Make this site really wide */
  overflow-x: hidden;
  font-size: 100%;
  list-style-type: none;
  font-family: "Poppins", sans-serif;
}

a {
  color: #205976;
}

a:hover {
  text-decoration: none;
}

.btn-outline-primary {
  border-radius: 0;
}

.btn-outline-primary:hover {
  border: 0;
  background-color: #205976;
}


.gallery-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.gallery-item {
  margin-bottom: 30px;
}

.modal-body {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-body img {
  max-width: 100%;
  max-height: 80vh;
}

@font-face {
  font-family: "High";
  src: url("./assets/highrushcondensed.ttf");
}

#instafeed {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  width: 90%;
  margin: 0 auto;
  margin-top: 2rem;
  max-width: 1200px;
}

@media (max-width: 900px) {
  #instafeed {
    grid-template-columns: 1fr;
  }
}

#instafeed img {
  object-fit: cover;
  width: 100%;
  height: 450px;
  border-radius: 8px;
}

.instafeed-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.insta-button {
  width: 300px;
  display: flex;
  justify-content: center;
  border-radius: 6px;
  padding: 12px 22px;
  background-color: #205976;
  color: white;
  margin: 20px 0px;
}

.colors {
  color: #205976;
  color: #f9f4e8;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  background-color: #f9f4e8;
  gap: 3%;
  padding: 0.7rem 0;
}

.navbar p {
  font-family: "Poppins", sans-serif;
  color: #205976;
  font-weight: 700;
  font-size: 1.3rem;
}

.s1 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15%;
  background-color: #f9f4e8;
}

.s1 img {
  width: 60vw;
}

.bg-blue {
  background-color: #205976;
  padding: 5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3rem;
}

.bg-blue-two {
  background-color: #205976;
}

.bg-blue-two p {
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
}

.bg-blue h2 {
  font-family: "High";
  font-size: 10rem;
  color: #fff;
  font-weight: 300;
  margin-bottom: -2rem;
}

.bg-blue button {
  border: none;
  font-size: 1.5rem;
  padding: 1rem 2rem;
  background-color: #f9f4e8;
  color: #205976;
  border-radius: 2em;
  font-weight: 700;
}

.s3 {
  width: 100vw;
  background-color: #f9f4e8;
  padding: 4rem 0;
}

.container-s3 {
  width: 60%;
  margin: auto;
  display: flex;
  justify-content: center;
}

.s3 h2 {
  font-family: "High";
  font-size: 6rem;
  color: #205976;
  font-weight: 300;
  margin-top: 1rem;
}

.s3 img {
  height: 500px;
}

.s3 p {
  color: #205976;
  font-size: 1.5rem;
  font-weight: 400;
}

.s3 button {
  border: none;
  font-size: 2rem;
  padding: 1rem 2rem;
  background-color: #205976;
  color: #f9f4e8;
  border-radius: 2em;
  font-weight: 700;
}

.container-form {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80vw;
  margin: 2rem auto;
}

form {
  display: flex;
  flex-direction: column;
  width: 35vw;
  gap: 1rem;
}

form label {
  font-size: 1.5rem;
  color: #205976;
  font-weight: 700;
}

input {
  width: 80%;
  height: 2rem;
  background-color: #f9f4e8;
  border: none;
  border-radius: 2em;
}

.submit {
  width: max-content;
  font-size: 1.5rem;
  background-color: #205976;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 0.5em;
}

.address-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.address-container h2 {
  color: #205976;
  font-family: "High";
  font-size: 5rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.address-container-sec {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.address-container-sec p {
  color: #205976;
}

.address-container-sec h3 {
  color: #205976;
}

.address-container-sec img {
  width: 80px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0 2rem 0;
}

footer p {
  color: #000;
}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active,
.dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

.slides {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60vw;
  margin: 4rem auto;
  gap: 2rem;
}

.text-slide h2 {
  font-family: "High";
  font-size: 10rem;
  color: #205976;
  font-weight: 300;
}

.text-slide p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  text-align: justify;
}

.mySlides {
  width: 30vw !important;
}

.bg-mobile {
  display: none;
  visibility: hidden;
}


@media (max-width: 1200px) {

  .s1 img {
    width: 90vw;
  }

  .bg-desktop {
    display: none;
    visibility: hidden;
  }

  .bg-mobile {
    display: block;
    visibility: visible;
    background-size: 100vw;
    background-color: #205976;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    padding: 3rem 0;
  }

  .bg-blue-two {
    background-color: #205976;
    padding: 2rem 0;
    gap: 1rem;
  }

  .bg-blue-two p {
    color: #fff;
    font-size: 1rem;
    text-align: center;
    max-width: 100%;
  }

  .bg-blue h2 {
    font-family: "High";
    font-size: 5rem;
    text-align: center;
    color: #fff;
    font-weight: 300;
    margin-bottom: -1rem;
    margin-top: 1rem;
  }

  .bg-blue button {
    border: none;
    font-size: 1rem;
    padding: 1rem 2rem;
    background-color: #f9f4e8;
    color: #205976;
    border-radius: 2em;
    font-weight: 700;
    margin-top: 1rem;
  }

  .slides {
    flex-direction: column;
    width: 80vw;
  }

  .mySlides {
    width: 100% !important;
    margin: auto;
  }

  .slideshow-container {
    margin: auto;
  }

  .s3 {
    width: 100vw;
    background-color: #f9f4e8;
    padding: 1rem 0;
  }

  .container-s3 {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: justify;
  }

  .text-slide h2 {
    font-size: 7rem;
    text-align: center;
  }

  .text-slide p {
    font-size: 1rem;
  }

  .s3 h2 {
    font-family: "High";
    font-size: 4rem;
    color: #205976;
    font-weight: 300;
    text-align: center;
    margin-top: 1rem;
  }

  .s3 img {
    height: 100%;
    margin-top: 2rem;
  }

  .s3 p {
    color: #205976;
    max-width: 100%;
    font-size: 1.2rem;
    font-weight: 400;
  }

  .s3 button {
    border: none;
    font-size: 1.2rem;
    padding: 1rem 2rem;
    background-color: #205976;
    color: #f9f4e8;
    border-radius: 2em;
    font-weight: 700;
    display: block;
    margin: auto;
  }

  .agende-consulta {
    text-align: center;
  }

  .container-form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 80vw;
    margin: 2rem auto;
  }

  form {
    display: flex;
    flex-direction: column;
    width: 90vw;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  form label {
    font-size: 1.5rem;
    color: #205976;
    font-weight: 700;
  }

  input {
    width: 100%;
    height: 2rem;
    background-color: #f9f4e8;
    border: none;
    border-radius: 2em;
  }

  .submit {
    width: max-content;
    font-size: 1.5rem;
    background-color: #205976;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.5em;
    align-self: center;
  }

  .address-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .address-container h2 {
    color: #205976;
    font-family: "High";
    font-size: 5rem;
    font-weight: 300;
    margin-bottom: 1rem;
  }

  .address-container-sec {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .address-container-sec p {
    color: #205976;
  }

  .address-container-sec h3 {
    color: #205976;
  }

  .address-container-sec img {
    width: 80px;
  }
}