/* SVG padrão */
#header svg {
  width: auto;
  height: 207px;
  transition: transform 0.8s ease, color 0.4s ease;
  color: var(--color-primary);
}

#header svg.color-changed {
  color: var(--color-white);
}

#header .logo-coffee {
  transform: scale(1);
  transform-origin: center;
  transition: transform 0.8s ease, color 0.4s ease;
}

#header .logo-coffee.big-text {
  transform: scale(0.4);
}

.fade-in {
  opacity: 0;
  transform: translateX(100vw);
  animation: slideInCenter 1.4s ease forwards;
}

@keyframes slideInCenter {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.delay-1 {
  animation-delay: 0s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.4s;
}

.logo-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.logo-final {
  opacity: 0;
  width: 802px;
  height: auto;
  pointer-events: none;
  transition: opacity 0.8s ease;
  transform: rotate(0deg);
}

.logo-final.show {
  opacity: 1;
  animation: spin 30s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.container {
  height: 100%;
}

.section1 {
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: var(--color-white);
  transition: background-color 1s ease;
  overflow: hidden;
}

.section1.bg-changed {
  background-color: var(--color-primary);
}

.section2 {
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: var(--color-primary);
  padding: 100px;
  overflow: hidden;
  z-index: 3;
}

.section3 {
  background-color: var(--color-white);
  padding: 100px;
  margin-top: -100dvh;
  overflow: hidden;
}

.section4 {
  height: 100dvh;
  background-color: var(--color-white);
  padding: 0px;
  overflow: hidden;
}

.section5 {
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px;
}

.section5 img {
  max-height: calc(100dvh - 200px);
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 108px;
}

.s5Imagens {
  max-height: calc(100dvh - 200px);
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
}

.section6 {
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px;
}

.section7 {
  height: 100dvh;
  display: grid;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 100px;
  align-items: center;
}

.section7 img {
  width: 92px;
  height: auto;
  margin-bottom: -30px;
}

.section8 {
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 100px;
  align-items: center;
}

.section9 {
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  padding: 100px;
  align-items: center;
}

.section10,
.section11 {
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 100px;
}

.section2 .s2img1,
.section2 .s2img2,
.section2 .s2img3,
.section2 .s2img4,
.section2 .s2img5,
.section2 .s2img6 {
  height: 170px;
  width: auto;
  margin: auto;
  margin: 16px;
}

.section2 .text4 {
  color: var(--color-white);
  margin-bottom: 132px;
}

/* .section3 .subphase.s3part1 {
  margin-top: 100px;
} */

.section3 .text2 {
  color: var(--color-primary);
  margin-bottom: 68px;
}
.section3 .text7 {
  color: var(--color-primary);
}

.section3 .s3part3 .text7 {
  color: var(--color-primary);
}

.InstaCard {
  position: relative;
  display: block;
}

.InstaCard .instaTitle {
  position: absolute;
  left: 70px;
  top: 28px;
  right: 70px;
  z-index: 2;
}

.InstaCard .instaTitle .lines {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background: #2a2a2a;
  display: flex;
  overflow: hidden;
  border-radius: 10px;
}

.InstaCard .instaTitle .line {
  height: 100%;
  width: 0%;
  background: white;
  transition: width 0.1s linear;
}

.section4 .InstaCard .instaBody img {
  border-radius: 0;
  width: 100%;
  object-fit: cover;
  height: 100%;
  max-height: 100dvh;
  width: 100%;
}

.section4 .instaBody .gradient::before {
  width: 100%;
}

.section4 .InstaCardFooter {
  bottom: 50%;
}

.line {
  width: 100%;
  height: 2px;
  background-color: var(--color-gray-dark);
  border-radius: 4px;
}

.instaPerfil {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.instaPerfil img {
  border-radius: 28px;
  width: 28px;
  height: 28px;
}

.InstaCard .instaBody img,
.InstaCard .instaBody video {
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
  height: calc(100dvh - 200px);
}

.InstaCardsRow {
  --bs-gutter-x: 92px;
}

.InstaCardFooter {
  position: absolute;
  left: 66px;
  bottom: 22px;
  right: 66px;
  z-index: 2;
}

.section9 img {
  width: 100%;
  height: auto;
  max-height: calc(100dvh - 362px);
  border-radius: 10px;
  margin-top: 58px;
  object-fit: cover;
}

.cardMoradas {
  position: relative;
}

.cardMoradas img {
  width: 100%;
  /* height: 704px */
  max-height: calc(100dvh - 200px);
  object-fit: cover;
  border-radius: 24px;
}

.cardMoradaText {
  margin: 24px;
  padding: 24px;
  position: absolute;
  bottom: 0;
  display: flex;
  gap: 4px;
  border-radius: 24px;
  background: #ffffff40;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  align-items: center;
  color: var(--color-white);
  right: 0;
  max-width: 354px;
  width: 100%;
  text-decoration: none;
}

.cardMoradaText .text8 {
  color: var(--color-white);
  font-size: 16px;
}

.cardMoradaText .text9 {
  color: var(--color-white);
  font-size: 16px;
}

.cardMoradaText .btnmorada {
  padding: 3px 22px;
  border: 1px solid var(--color-white);
  border-radius: 22px;
}

.cardMoradaText:hover .btnmorada {
  background-color: var(--color-white);
}

.instagramCards,
.instagramImgCards {
  height: 340px;
}

.instagramCards {
  display: grid;
  justify-items: stretch;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.instagramCards .nomeInsta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.instagramCards .contagemInsta {
  display: flex;
  gap: 22px;
  margin-bottom: 24px;
  color: #6b6b6b;
  justify-content: center;
}

.instagramCards button {
  background-color: var(--color-dark);
  border: none;
  color: var(--color-white);
  padding: 12px 32px;
  border-radius: 10px;
  cursor: pointer;
}

.instagramImgCards {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.instagramImgCards img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.instagramImgCards svg {
  position: absolute;
  bottom: 14px;
  left: 24px;
  z-index: 2;
  color: white;
}

.gradient::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 80.14%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 1;
  width: calc(100% - 20px);
  border-radius: 10px;
}

.section3 .gradient::before {
  height: calc(100% - 6px);
}

.section4 .gradient::before {
  border-radius: 0px;
}

/* .s2Imgs{
  display: flex;
  gap: 32px;
} */
.instaBody .gradient::before {
  width: calc(100% - 92px);
}
.s3card3 .InstaCardFooter {
  bottom: 40%;
  left: 100px;
}

.s3card3.fullscreen .gradient::before {
  border-radius: 0;
}

a:hover.cardMoradaText {
  color: var(--color-primary) !important;
}

.modal-strip {
  background-color: #000000;
  bottom: 0;
  color: #fff;
  left: 0;
  padding: 20px;
  position: fixed;
  width: 100%;
  display: inline-block;
  -webkit-transform: translate3d(0, 200px, 0);
  transform: translate3d(0, 200px, 0);
  -webkit-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
  z-index: 999 !important;
}
.modal-strip.modal-active {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

#usecookies .modal-strip {
  z-index: 1700 !important;
  max-width: 100%;
  /* left: 16px; */
  left: 0;
  /* right: 16px; */
  right: 0;
  width: auto;
  /* bottom: 16px; */
  bottom: 0;
  padding-top: 24px !important;
  padding-bottom: 24px !important;
  height: 96px;
  /* background-color: var(--white) !important; */
  background-color: var(--color-primary) !important;
  border-top: 1px solid var(--color-black);
  display: flex;
  flex-direction: row;
  align-items: center;
}

#usecookies #botaoConcordar button {
  padding: 13px 32px;
  color: var(--color-white);
  background-color: var(--color-black) !important;
  border: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 228px;
}

@media (max-width: 991.98px) {
  #header .logo-coffee {
    transform: scale(0.5);
  }

  #header .logo-coffee.big-text {
    transform: scale(0.3);
  }

  .logo-final {
    width: 125vw;
  }
  .section2 {
    padding: 140px 20px 100px;
  }

  .section2 .text4 {
    margin-bottom: 50px;
  }

  .section2 .s2img1,
  .section2 .s2img2,
  .section2 .s2img3,
  .section2 .s2img4,
  .section2 .s2img5,
  .section2 .s2img6 {
    height: 100px;
  }

  .s2Imgs {
    display: flex;
  }

  .section3 {
    padding: 20px;
  }

  .section3 .text2 {
    margin-bottom: 28px;
  }

  .section3 .s3part3 {
    margin-top: 32px;
    margin-bottom: 64px;
  }

  .section4 .InstaCard .instaBody img {
    border-radius: 0;
    width: 100%;
    object-fit: cover;
    height: 100dvh;
    width: 100%;
    max-height: 100dvh;
  }

  .section5 {
    padding: 150px 20px 100px;
    height: auto;
  }

  .section5 img {
    max-height: calc(100dvh - 432px);
    border-radius: 10px;
    width: 100%;
    object-fit: cover;
  }

  .iconCoffee {
    position: fixed;
    left: 20px;
    top: 52px;
    display: block;
    z-index: 1;
    text-align: center;
    min-width: 32px;
    padding: 0px;
  }

  .iconCoffee img {
    width: 37px;
  }

  .navbar {
    top: 50px;
  }
  .section5 .text7 {
    margin-bottom: 46px;
  }
  .section7 {
    padding: 20px;
  }
  .section7 img {
    width: 56px;
    height: auto;
    margin-bottom: -30px;
  }

  .section8 {
    padding: 20px;
  }

  .section9 {
    padding: 20px;
    justify-content: center;
  }

  .section10 {
    padding: 150px 20px 80px;
  }

  .section11 {
    padding: 80px 20px;
  }
  .cardMoradas {
    position: relative;
    margin-bottom: 12px;
  }

  .cardMoradas img {
    max-height: calc(100dvh - 526px);
  }

  .cardMoradaText {
    margin: 8px;
    padding: 24px;
    position: absolute;
    bottom: 0;
    display: flex;
    gap: 4px;
    border-radius: 24px;
    background: #ffffff40;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    align-items: center;
    color: var(--color-white);
    right: 0;
    max-width: calc(100% - 16px);
    width: 100%;
    text-decoration: none;
    left: 0;
  }

  .section11 .nomeInsta img {
    width: 48px;
    height: 48px;
  }

  .section2 {
    margin-top: -1px;
  }

  .section1 {
    height: 100dvh;
  }

  .section3 {
    margin-top: 0;
  }

  .InstaCard {
    position: relative;
    display: block;
    margin-bottom: 16px;
  }
  .InstaCardFooter {
    opacity: 1 !important;
  }

  .section4 .InstaCardFooter {
    bottom: 32px;
    left: 32px;
  }

  .s5Imagens {
    max-height: fit-content;
  }

  .section5 img {
    max-height: calc(100dvh - 432px);
    border-radius: 10px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 16px;
  }

  .rowSec11 {
    --bs-gutter-x: 4px;
  }

  .instagramCards {
    margin-bottom: 32px;
    height: 140px;
  }
  .instagramImgCards {
    height: 140px;
    margin-bottom: 8px;
  }
  .section3 .text3 {
    font-weight: 400;
    margin-bottom: 12px;
  }

  .instagramImgCards svg {
    bottom: 14px;
    left: 14px;
  }

  footer .cont100 {
    padding: 96px 24px;
  }

  footer .cont100 .row {
    row-gap: 64px;
  }

  footer .footerBottomBar {
    padding: 0 24px;
  }

  .imgFooter {
    width: 100%;
    padding: 0 100px;
    margin-top: 102px;
    padding: 0 19px !important;
  }

  #usecookies .modal-strip {
    height: auto !important;
  }

}
