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

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 56px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .container {
    flex-direction: column;
    padding: 32px 18px;
  }
}

.flex-top {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

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

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

.flex-spacebetween {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-column {
  flex-direction: column;
}

.relative {
  position: relative;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-item-1 {
  flex: 1 1 360px;
}

.flex-item-2 {
  flex: 2 1 360px;
}

.flex-item-3 {
  flex: 3 1 360px;
}

.flex-item-4 {
  flex: 4 1 360px;
}

.flex-item-5 {
  flex: 5 1 360px;
}

.flex-item-auto {
  flex: 2 1 auto;
}

.w-auto {
  width: auto;
}

.w-100 {
  width: 100%;
}

.w-75 {
  width: 75%;
}

.w-50 {
  width: 50%;
}

.w-25 {
  width: 25%;
}

.hidden {
  overflow: hidden;
}

.hero {
  height: 90vh;
}
@media screen and (max-width: 960px) {
  .hero {
    height: auto;
  }
}
/* Normalize hero vertical padding regardless of utility classes */
.container.hero {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media screen and (max-width: 960px) {
  .container.hero {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* Specific spacing between text and image in contact CTA */
.container.contact-cta {
  gap: 48px;
}
@media screen and (max-width: 960px) {
  .container.contact-cta {
    gap: 32px;
  }
}

/* Keep hero columns proportional and centered */
.hero .flex-item-3 {
  flex: 1 1 360px;
}

.bg-home {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.svg-bg-home {
  width: 100%;
}
@media screen and (min-width: 1440px) {
  .svg-bg-home {
    width: 100%;
  }
}

/* Smooth fade of bg into body color to avoid hard edge */
.bg-home::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 20vh;
  background: linear-gradient(to bottom, rgba(237, 234, 239, 0) 0%, #edeaef 100%);
}

.list-item {
  list-style: none;
  position: relative;
  padding: 8px 8px 8px 72px;
  margin-bottom: 48px;
}
.list-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: -8px;
  display: block;
  width: 64px;
  height: 64px;
}

.best {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 50px;
  background-color: #f7f2fa;
}
@media screen and (max-width: 960px) {
  .best {
    flex-direction: column;
  }
}
.best::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 124px;
  height: 32px;
  background-image: url("../svg/entail.svg");
  background-repeat: no-repeat;
}

.best-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 16px;
  margin: 8px 0px;
}
@media screen and (max-width: 960px) {
  .best-item {
    justify-content: center;
    align-items: center;
  }
}

.bg-invite {
  height: 100vh;
  overflow: hidden;
}

.bg-invite::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 16vh;
  background: linear-gradient(to bottom, #edeaef 0%, rgba(237, 234, 239, 0) 100%);
  pointer-events: none;
}

.bg-invite::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 20vh;
  background: linear-gradient(to bottom, rgba(237, 234, 239, 0) 0%, #edeaef 100%);
  pointer-events: none;
}

.svg-invite {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 1440px) and (min-width: 1140px) {
  .svg-invite {
    transform: translate(-50%, -50%) scale(1.5);
  }
}

.list {
  list-style: none;
}
.list li {
  margin-bottom: 12px;
}
.list a {
  color: #e6e6e6;
}

footer {
  background: linear-gradient(220.94deg, #F06292 14.43%, #F48FB1 85.28%);
}

.bt-rose {
  border-top: 1px solid #D81B60;
}

h1 {
  color: #161617;
  font-family: "Sora", sans-serif;
  font-size: 64px;
  line-height: 100%;
}
@media screen and (max-width: 960px) {
  h1 {
    font-family: "Sora", sans-serif;
    font-size: 36px;
    line-height: 120%;
  }
}

h2 {
  color: #161617;
  font-family: "Sora", sans-serif;
  font-size: 52px;
  line-height: 110%;
}
@media screen and (max-width: 960px) {
  h2 {
    font-family: "Sora", sans-serif;
    font-size: 36px;
    line-height: 120%;
  }
}

h3 {
  color: #161617;
  font-family: "Sora", sans-serif;
  font-size: 36px;
  line-height: 120%;
}
@media screen and (max-width: 960px) {
  h3 {
    font-family: "Sora", sans-serif;
    font-size: 24px;
    line-height: 130%;
  }
}

h4 {
  color: #161617;
  font-family: "Sora", sans-serif;
  font-size: 24px;
  line-height: 130%;
}
@media screen and (max-width: 960px) {
  h4 {
    font-family: "Sora", sans-serif;
    font-size: 18px;
    line-height: 140%;
  }
}

h5 {
  text-transform: uppercase;
  background: linear-gradient(220.94deg, #F06292 14.43%, #F48FB1 85.28%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-family: "Sora", sans-serif;
  font-size: 18px;
  line-height: 140%;
}
@media screen and (max-width: 960px) {
  h5 {
    font-family: "Sora", sans-serif;
    font-size: 16px;
    line-height: 150%;
  }
}

p {
  color: #666566;
  font-family: "Source Code Pro", sans-serif;
  font-size: 16px;
  line-height: 140%;
}
@media screen and (max-width: 960px) {
  p {
    font-family: "Source Code Pro", sans-serif;
    font-size: 14px;
    line-height: 150%;
  }
}

.bold {
  font-weight: bold;
  color: #353436;
}

strong {
  color: #161617;
  font-family: "Source Code Pro", sans-serif;
  font-size: 16px;
  line-height: 140%;
}
@media screen and (max-width: 960px) {
  strong {
    font-family: "Source Code Pro", sans-serif;
    font-size: 14px;
    line-height: 150%;
  }
}

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

.weight-light {
  font-weight: 300;
}

a {
  font-family: "Source Code Pro", sans-serif;
  font-size: 16px;
  line-height: 140%;
  text-decoration: none;
  color: #232224;
  transition: 0.5s ease;
}
a:hover {
  opacity: 0.9;
}

.btn {
  background: linear-gradient(220.94deg, #F06292 14.43%, #F48FB1 85.28%);
  border-radius: 16px;
  padding: 12px 32px;
  transition: 0.3s ease;
  color: #fefbff;
  box-shadow: 0px 17px 17px rgba(248, 187, 208, 0.13), 0px 5.125px 5.125px rgba(248, 187, 208, 0.0847), 0px 2.12866px 2.12866px rgba(248, 187, 208, 0.065), 0px 0.769896px 0.769896px rgba(248, 187, 208, 0.0453);
}
.btn:hover {
  transform: scale(1.02);
  box-shadow: 0px 17px 31px rgba(248, 187, 208, 0.27), 0px 5.125px 9.34559px rgba(248, 187, 208, 0.1759), 0px 2.12866px 3.88168px rgba(248, 187, 208, 0.135), 0px 0.769896px 1.40393px rgba(248, 187, 208, 0.0941);
}

.link {
  display: inline-block;
  color: #F48FB1;
  background-image: url("../svg/icon-arrow.svg");
  background-repeat: no-repeat;
  background-position: 0 50%;
  font-size: 18px;
  padding: 16px 16px 16px 40px;
  position: relative;
}
.link::after {
  content: "";
  position: absolute;
  display: block;
  top: 75%;
  left: 56px;
  width: 0%;
  height: 2px;
  border-radius: 2px;
  transition: 0.5s ease;
  background-color: #F48FB1;
}
.link:hover {
  opacity: 0.8;
  padding-left: 64px;
  background-position: 8px 50%;
}
.link:hover::after {
  width: 100%;
  background-color: #F48FB1;
}

.button-app {
  transition: 0.5s ease;
}
.button-app:hover {
  filter: drop-shadow(0px 10px 13px rgba(248, 187, 208, 0.27));
}

.s-0 {
  margin: 0;
  padding: 0;
}

.m-1 {
  margin: 8px;
}

.m-2 {
  margin: 16px;
}

.m-3 {
  margin: 48px;
}

.m-4 {
  margin: 72px;
}

.m-5 {
  margin: 128px;
}

.mt-1 {
  margin-top: 8px;
}

.mt-2 {
  margin-top: 16px;
}

.mt-3 {
  margin-top: 48px;
}

.mt-4 {
  margin-top: 72px;
}

.mt-5 {
  margin-top: 128px;
}

.ml-1 {
  margin-left: 8px;
}

.ml-2 {
  margin-left: 16px;
}

.ml-3 {
  margin-left: 48px;
}

.ml-4 {
  margin-left: 72px;
}

.ml-5 {
  margin-left: 128px;
}

.mr-1 {
  margin-right: 8px;
}

.mr-2 {
  margin-right: 16px;
}

.mr-3 {
  margin-right: 48px;
}

.mr-4 {
  margin-right: 72px;
}

.mr-5 {
  margin-right: 128px;
}

.mb-1 {
  margin-bottom: 8px;
}

.mb-2 {
  margin-bottom: 16px;
}

.mb-3 {
  margin-bottom: 48px;
}

.mb-4 {
  margin-bottom: 72px;
}

.mb-5 {
  margin-bottom: 128px;
}

.mx-1 {
  margin-left: 8px;
  margin-right: 8px;
}

.mx-2 {
  margin-left: 16px;
  margin-right: 16px;
}

.mx-3 {
  margin-left: 48px;
  margin-right: 48px;
}

.mx-4 {
  margin-left: 72px;
  margin-right: 72px;
}

.mx-5 {
  margin-left: 128px;
  margin-right: 128px;
}

.my-1 {
  margin-top: 8px;
  margin-bottom: 8px;
}

.my-2 {
  margin-top: 16px;
  margin-bottom: 16px;
}

.my-3 {
  margin-top: 48px;
  margin-bottom: 48px;
}

.my-4 {
  margin-top: 72px;
  margin-bottom: 72px;
}

.my-5 {
  margin-top: 128px;
  margin-bottom: 128px;
}

.p-1 {
  padding: 8px;
}

.p-2 {
  padding: 16px;
}

.p-3 {
  padding: 48px;
}

.p-4 {
  padding: 72px;
}

.p-5 {
  padding: 128px;
}

.pt-1 {
  padding-top: 8px;
}

.pt-2 {
  padding-top: 16px;
}

.pt-3 {
  padding-top: 48px;
}

.pt-4 {
  padding-top: 72px;
}

.pt-5 {
  padding-top: 128px;
}

.pl-1 {
  padding-left: 8px;
}

.pl-2 {
  padding-left: 16px;
}

.pl-3 {
  padding-left: 48px;
}

.pl-4 {
  padding-left: 72px;
}

.pl-5 {
  padding-left: 128px;
}

.pr-1 {
  padding-right: 8px;
}

.pr-2 {
  padding-right: 16px;
}

.pr-3 {
  padding-right: 48px;
}

.pr-4 {
  padding-right: 72px;
}

.pr-5 {
  padding-right: 128px;
}

.pb-1 {
  padding-bottom: 8px;
}

.pb-2 {
  padding-bottom: 16px;
}

.pb-3 {
  padding-bottom: 48px;
}

.pb-4 {
  padding-bottom: 72px;
}

.pb-5 {
  padding-bottom: 128px;
}

.px-1 {
  padding-left: 8px;
  padding-right: 8px;
}

.px-2 {
  padding-left: 16px;
  padding-right: 16px;
}

.px-3 {
  padding-left: 48px;
  padding-right: 48px;
}

.px-4 {
  padding-left: 72px;
  padding-right: 72px;
}

.px-5 {
  padding-left: 128px;
  padding-right: 128px;
}

.py-1 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.py-2 {
  padding-top: 16px;
  padding-bottom: 16px;
}

.py-3 {
  padding-top: 48px;
  padding-bottom: 48px;
}

.py-4 {
  padding-top: 72px;
  padding-bottom: 72px;
}

.py-5 {
  padding-top: 128px;
  padding-bottom: 128px;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100vh;
  position: relative;
  scroll-behavior: smooth;
  background-color: #edeaef;
}

svg, img {
  display: block;
  width: 100%;
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  z-index: 1001;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 960px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}

header {
  width: 100%;
  height: 72px;
  background-color: transparent;
  box-shadow: none;
  transition: background 0.4s ease, box-shadow 0.4s ease, -webkit-backdrop-filter 0.4s ease, backdrop-filter 0.4s ease, border-radius 0.4s ease, border-color 0.4s ease;
  position: fixed;
  z-index: 999;
}

.active-header {
  /* Glassmorphism floating header (even more transparent) */
  background: rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  backdrop-filter: saturate(180%) blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.01);

  /* Float centered to match sections width */
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1440px;
}

.navbar-desktop {
  max-width: 1440px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .navbar-desktop {
    display: none;
  }
}

.logo {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 800;
}

.navbar-desktop-item-1 {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.navbar-desktop-item-2 {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.menu-desktop {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.menu-desktop .menu-item {
  position: relative;
  margin-left: 16px;
}

.nav-link-desktop {
  display: inline-block;
  padding: 12px 16px;
  position: relative;
}
.nav-link-desktop::after {
  content: "";
  position: absolute;
  top: 42%;
  right: -3px;
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  border-radius: 1px;
  transition: 0.2s linear;
  border-bottom: 2px solid #F48FB1;
  border-right: 2px solid #F48FB1;
}
.nav-link-desktop:hover::after {
  top: 45%;
}

.dropdown-menu {
  background-color: #fefbff;
  border-radius: 16px;
  padding: 16px 24px;
  box-shadow: 0px 51px 80px rgba(248, 187, 208, 0.08), 0px 15.375px 24.1177px rgba(248, 187, 208, 0.0521), 0px 6.38599px 10.0172px rgba(248, 187, 208, 0.04), 0px 2.30969px 3.62384px rgba(248, 187, 208, 0.0279);
  list-style: none;
  position: absolute;
  top: 48px;
  left: 24px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.7s ease;
}
.dropdown-menu .dropdown-item {
  width: 100%;
}

.active-dropdown-menu {
  pointer-events: all;
  opacity: 1;
}

.nav-link-dropdown {
  display: inline-block;
  width: 100%;
  padding: 8px 16px;
  position: relative;
}
.nav-link-dropdown::after {
  content: "";
  position: absolute;
  top: 90%;
  left: 0;
  transition: 0.5s ease;
  width: 0%;
  height: 2px;
  background-color: #F06292;
}
.nav-link-dropdown:hover::after {
  width: 100%;
}

.navbar-mobile {
  max-width: 1440px;
  margin: 0 auto;
  padding: 10px 24px;
  display: none;
}
@media screen and (max-width: 960px) {
  .navbar-mobile {
    /* use 3-col grid to keep center element truly centered */
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    position: relative;
  }
}
@media screen and (max-width: 960px) {
  /* Ensure the logo sits in the center track */
  .navbar-mobile .logo {
    grid-column: 2;
    justify-self: center;
  }
}

.bx {
  width: 36px;
  height: 36px;
  position: relative;
  cursor: pointer;
  z-index: 800;
}
.bx::after {
  content: "";
  position: absolute;
  top: 40%;
  left: 17%;
  width: 70%;
  height: 2px;
  transition: 0.7s ease;
  background-color: #F48FB1;
}
.bx::before {
  content: "";
  position: absolute;
  top: 64%;
  left: 17%;
  width: 70%;
  height: 2px;
  transition: 0.7s ease;
  background-color: #F48FB1;
}

.active-bx {
  width: 36px;
  height: 36px;
  position: relative;
  cursor: pointer;
  z-index: 800;
}
.active-bx::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 17%;
  transform: rotate(-135deg);
  width: 70%;
  height: 2px;
  background-color: #F48FB1;
}
.active-bx::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 17%;
  width: 70%;
  height: 2px;
  transform: rotate(315deg);
  background-color: #F48FB1;
}

.menu-mobile {
  width: 100vw;
  height: 100vh;
  background-color: #f7f2fa;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, -100px, 0);
  transition: 1s ease;
}

.active-menu-mobile {
  opacity: 1;
  pointer-events: all;
}

.nav-list-mobile {
  max-width: 1440px;
  list-style: none;
  display: flex;
  flex-direction: column;
}
.nav-list-mobile svg {
  width: 36px;
  height: 36px;
}
.nav-list-mobile svg path {
  stroke: #a6a6a7;
  transition: 0.7s ease;
}
.nav-list-mobile svg:hover path {
  stroke: #F48FB1;
}

.nav-link-mobile {
  display: inline-block;
  font-family: "Sora", sans-serif;
  font-size: 36px;
  line-height: 120%;
  color: #555456;
  padding: 16px 24px;
  position: relative;
}
.nav-link-mobile::after {
  content: "";
  position: absolute;
  top: 90%;
  left: 16px;
  transition: 0.5s ease;
  width: 0%;
  height: 2px;
  transition: 0.1s ease;
  background-color: #F06292;
}
.nav-link-mobile:hover {
  color: #F48FB1;
}
.nav-link-mobile:hover::after {
  width: 100%;
}

.box {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0px 24px;
  margin-top: 88px;
}
@media screen and (max-width: 960px) {
  .box {
    margin-top: 56px;
  }
}

.container-swiper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 56px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.swiper-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.swiper-slide {
  max-width: 440px;
  padding: 24px 36px;
  border-radius: 50px;
  background-color: #f7f2fa;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.button-next {
  position: absolute;
  right: 32px;
  top: 24px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background-image: url("../svg/icon-arrow.svg");
  background-repeat: no-repeat;
  background-position: center center;
}

.button-prev {
  position: absolute;
  right: 88px;
  top: 24px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background-image: url("../svg/icon-arrow.svg");
  background-repeat: no-repeat;
  background-position: center center;
  transform: rotate(180deg);
}

.photo-profile {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.photo-1 {
  background-image: url("../img/antonio.jpeg");
}

.photo-2 {
  background-image: url("../img/darlene.jpeg");
}

.photo-3 {
  background-image: url("../img/gabriela.jpeg");
}

.photo-4 {
  background-image: url("../img/marcio.png");
}

.photo-5 {
  background-image: url("../img/vanda.jpeg");
}

.dropshadow {
  filter: drop-shadow(0 16px 24px rgba(248, 187, 208, 0.25));
}

.bg-icon-mobile::after {
  background-image: url("../svg/icon-mobile.svg");
  background-size: cover;
  transition: 0.5s ease;
  cursor: pointer;
  filter: drop-shadow(0px 16px 24px rgba(248, 187, 208, 0.25));
}
.bg-icon-mobile:hover::after {
  transform: scale(1.05);
}

.bg-icon-progress::after {
  background-image: url("../svg/progress.svg");
  background-size: cover;
  transition: 0.5s ease;
  cursor: pointer;
  filter: drop-shadow(0px 16px 24px rgba(248, 187, 208, 0.25));
}
.bg-icon-progress:hover::after {
  transform: scale(1.05);
}

.bg-icon-help::after {
  background-image: url("../svg/help.svg");
  background-size: cover;
  transition: 0.5s ease;
  cursor: pointer;
  filter: drop-shadow(0px 16px 24px rgba(248, 187, 208, 0.25));
}
.bg-icon-help:hover::after {
  transform: scale(1.05);
}

.bg-icon-mobile-1::after {
  background-image: url("../svg/mobile.svg");
  background-size: cover;
  transition: 0.5s ease;
  cursor: pointer;
  filter: drop-shadow(0px 16px 24px rgba(248, 187, 208, 0.25));
}
.bg-icon-mobile-1:hover::after {
  transform: scale(1.05);
}

.bg-icon-house::after {
  background-image: url("../svg/house-svgrepo-com (1).svg");
  background-size: cover;
  transition: 0.5s ease;
  cursor: pointer;
  filter: drop-shadow(0px 16px 24px rgba(248, 187, 208, 0.25));
}
.bg-icon-house:hover::after {
  transform: scale(1.05);
}

.bg-icon-card::after {
  background-image: url("../svg/icon-card.svg");
  background-size: cover;
  transition: 0.5s ease;
  cursor: pointer;
  filter: drop-shadow(0px 16px 24px rgba(248, 187, 208, 0.25));
}
.bg-icon-card:hover::after {
  transform: scale(1.05);
}

.bg-icon-check::after {
  background-image: url("../svg/icon-check.svg");
  background-size: cover;
  transition: 0.5s ease;
  width: 40px;
  height: 40px;
  top: 12px;
  left: 8px;
  cursor: pointer;
  filter: drop-shadow(0px 16px 24px rgba(248, 187, 208, 0.25));
}
.bg-icon-check:hover::after {
  transform: scale(1.05);
}

.icon {
  filter: drop-shadow(0px 16px 24px rgba(248, 187, 208, 0.25));
  transition: 0.5s ease;
  cursor: pointer;
}
.icon:hover {
  transform: scale(1.05);
}

.icon-networks {
  max-width: 48px;
}

.div-card {
  perspective: 600px;
  position: relative;
}

.card {
  width: clamp(280px, 40vw, 520px);
  aspect-ratio: 10 / 7;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  transform-origin: center center;
  transform-style: preserve-3d;
  z-index: -1;
  animation: flip-card 12s linear infinite alternate, change-bg-card 12s linear infinite alternate;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

@keyframes flip-card {
  0% {
    transform: rotateX(-10deg) rotateY(10deg) rotateY(-15deg);
  }
  40% {
    transform: rotateX(0deg) rotateY(20deg);
  }
  60% {
    transform: rotateX(180deg) rotateY(20deg);
  }
  100% {
    transform: rotateX(190deg) rotateY(10deg) rotateY(15deg);
  }
}
@keyframes change-bg-card {
  0%, 49% {
    background-image: url("../img/exemplo10.png");
    background-size: cover;
  }
  50%, 100% {
    background-image: url("../img/exemplo11.png");
    background-size: cover;
  }
}

/* Hero icons inside the card corners */
.card .icon-card-hero,
.card .icon-mobile-hero,
.card .icon-contactless-hero {
  position: absolute;
  width: clamp(32px, 5vw, 56px);
  height: auto;
  z-index: 2;
}

.card .icon-card-hero { /* top-left */
  top: 12px;
  left: 12px;
}

.card .icon-mobile-hero { /* top-right */
  top: 12px;
  right: 12px;
}

.card .icon-contactless-hero { /* bottom-right */
  bottom: 12px;
  right: 12px;
}

/* Keep icons upright to viewer while card flips */
.card .icon-card-hero,
.card .icon-mobile-hero,
.card .icon-contactless-hero {
  transform-origin: center center;
  animation: icons-orient 12s linear infinite alternate;
}

@keyframes icons-orient {
  0%, 49% { transform: rotate(0deg); }
  50%, 100% { transform: rotate(180deg); }
}

@keyframes icons-hero {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(10px, -40px, 0);
  }
}
.bg-home-blur1 {
  transform: translate3d(0, -100px, 0);
}

.bg-home-blur2 {
  transform: translate3d(0, -150px, 0);
}

.people1 {
  opacity: 0;
  animation: people 10s ease 0s infinite;
}

.people2 {
  opacity: 0;
  animation: people 10s ease 5s infinite;
}

.people3 {
  opacity: 0;
  animation: people 10s ease 2s infinite;
}

.people4 {
  opacity: 0;
  animation: people 10s ease 7s infinite;
}

.people5 {
  opacity: 0;
  animation: people 10s ease 3s infinite;
}

.people6 {
  opacity: 0;
  animation: people 10s ease 8s infinite;
}

@media screen and (max-width: 960px) {
  #people2 {
    display: none;
  }
}

@keyframes people {
  0% {
    opacity: 0;
  }
  20%, 50% {
    opacity: 1;
  }
  70%, 100% {
    opacity: 0;
  }
}
.fignu2-screen1 {
  animation: fignu2-screen1 18s ease infinite alternate;
}

@keyframes fignu2-screen1 {
  0%, 15% {
    opacity: 1;
  }
  20%, 80% {
    opacity: 0;
  }
  85%, 100% {
    opacity: 1;
  }
}
.fignu2-screen2 {
  animation: fignu2-screen2 18s ease infinite alternate;
}

@keyframes fignu2-screen2 {
  0%, 15% {
    opacity: 0;
  }
  20%, 35% {
    opacity: 1;
  }
  40%, 100% {
    opacity: 0;
  }
}
.fignu2-screen3 {
  animation: fignu2-screen3 18s ease infinite alternate;
}

@keyframes fignu2-screen3 {
  0%, 35% {
    opacity: 0;
  }
  40%, 55% {
    opacity: 1;
  }
  60%, 100% {
    opacity: 0;
  }
}
.fignu2-screen4 {
  animation: fignu2-screen4 18s ease infinite alternate;
}

@keyframes fignu2-screen4 {
  0%, 55% {
    opacity: 0;
  }
  60%, 75% {
    opacity: 1;
  }
  80%, 100% {
    opacity: 0;
  }
}
.fisiohome {
  transform: center center;
  transform-box: fill-box;
  transform: translate3d(0, -40px, 0);
  animation: fisiohome 3s ease infinite alternate;
}

@keyframes fisiohome {
  0% {
    transform: translate3d(0, -40px, 0) rotate(0deg);
  }
  100% {
    transform: translate3d(0, -20px, 0);
  }
}
.house-1, .house-2 {
  animation: fignu-house 4s ease infinite alternate;
}

@keyframes fignu-house {
  0% {
    stroke-width: 4;
    stroke-dasharray: 0 400;
    stroke-opacity: 1;
  }
  100% {
    stroke-width: 4;
    stroke-dasharray: 400 0;
    stroke-opacity: 1;
  }
}/*# sourceMappingURL=style.css.map */
