@import url(//fonts.googleapis.com/css?family=Lato:300:400);

* {
  margin:0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Lato', sans-serif;
}

.card {
  border: none;
}

img.foto01{
  box-shadow:
  0 2.8px 2.2px rgba(0, 0, 0, 0.034),
  0 6.7px 5.3px rgba(0, 0, 0, 0.048),
  0 12.5px 10px rgba(0, 0, 0, 0.06),
  0 22.3px 17.9px rgba(0, 0, 0, 0.072),
  0 41.8px 33.4px rgba(0, 0, 0, 0.086),
  0 100px 80px rgba(0, 0, 0, 0.12)
;

  
  
  min-height: 200px;
  width: 50vw;
  /* margin: 100px auto; */
  background: white;
  border-radius: 5px;
}

/* inicio nav */
nav {
  position: fixed;
  width: 100%;
  height: 6vh;
  background: rgba(255,255,255,0.8);
  display: flex;
  z-index: 1;
}

.nav-links {
  display: flex;
  list-style: none;
  width: 50%;
  /* background: #82cab7; */
  height: 100%;
  justify-content: space-around;
  align-items: center;
  margin-left: auto;
}

.nav-links li a {
  color: #ee86b3;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
}

.nav-links li a:hover {
  text-decoration: overline;
}

.nav-logo {
  display: flex;
  width: 30%;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  margin-right: auto;
}

.logo {
  top: 5%;
  width:150px;
  padding-right:15px;
  position: absolute;
  /* display:flex; */
  /* vertical-align: middle; */
}

.logo-mobile {
  top: 5%;
  width:100px;
  padding-right:15px;
  position: absolute;
  display: none;
}

/* logo ativa baby padrao */
.star-1 {
  fill:#f4dd78;
}
.star-2 {
  fill:#82cab7;
}
.star-3 {
  fill:#ee86b3;
}
.text-baby {
  fill:#e985af;
}
.text-ativa {
  fill:#80c6b4;
}

.home {
  margin: 0 5% 0 5%;
  height: 79vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home h1 {
  margin: 20px;
  font-size: 50px;
}

.home-content {
  display: flex;
  padding: 20px;
  /* flex-direction: column; */
  position: relative;
  display: flex;
  justify-content: space-between;
}

.home-content .card {
  position: relative;
}

.home-content .card.card2 {
  width: 50%;
  margin: 8vh 0 10px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.home-content .card .face {
  transition: 0.5s;
}

.home-content .card .face.face1 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* z-index: 1; */
}

.home-content .card .face.face2 {
  position: relative;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px 20px 20px 20px;
  /* box-sizing: border-box;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8); */
}

.home-content .card .face.face2 .content p {
  margin: 0;
  padding: 0;
}

.home-content .card .face.face2 .content a {
  margin: 15px;
  display: inline-block;
  text-decoration: none;
  font-weight: 900;
  color: #333;
  padding: 5px;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* border: 1px solid #333; */
}

.icon-store {
  width: 80px;
  padding: 20px 0 0;
  transition: 0.5s;
}

.icon-store:hover {
  stroke: #e985af;
}

.app-iphone {
  width: 100%;
  height: auto;
  margin-left: 30%;
}

/* final nav */

h1 {
  font-family: 'Lato', sans-serif;
  font-weight:300;
  letter-spacing: 2px;
  font-size:48px;
}
p {
  font-family: 'Lato', sans-serif;
  letter-spacing: 1px;
  font-size:14px;
  color: #333333;
}

.text-white {
  color: white;
}

.header {
  position:relative;
  text-align:center;
  background: white;
  color:black;
}

.ondas {
    position:relative;
    height: 100vh;
    text-align:center;
    background: linear-gradient(60deg, rgba(84,58,183,1) 0%, rgba(0,172,193,1) 100%);
    color:white;
}

.ondas-top {
    position:relative;
    width: 100%;
    height:15vh;
    margin-top:-7px; /*Fix for safari gap*/
    min-height:100px;
    max-height:150px;
}

/* Animation */
.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}

.content-ondas {
  padding: 5vh;
  background: linear-gradient(60deg, rgba(84,58,183,1) 0%, rgba(0,172,193,1) 100%);;
}

/* mobile */
@media screen and (max-width: 768px) {

  .line {
    width: 30px;
    height: 3px;
    background: #535c68;
    margin: 5px;
  }

  nav {
    position: fixed;
    height: 10vh;
    background: rgba(255,255,255,0.4);
  }

  h1 {
    font-size:24px;
  }

  .hamburger {
    position: fixed;
    cursor: pointer;
    right: 5%;
    top: 5%;
    transform: translate(-5%, -50%);
    z-index: 2;
  }

  .logo {
    display: none;
  }
  .logo-mobile {
    display: flex;
  }

  .nav-links {
    position: fixed;
    background: #ee86b3;
    height: 100vh;
    width: 100%;
    flex-direction: column;
    clip-path: circle(100px at 90% -20%);
    -webkit-clip-path: circle(100px at 90% -20%);
    transition: all 1s ease-out;
    pointer-events: none;
    /* display: none; */
  }

  .nav-links.open {
    clip-path: circle(1100px at 80% -20%);
    -webkit-clip-path: circle(1100px at 80% -20%);
    pointer-events: all;
  }

  .nav-links li {
    opacity: 0;
  }

  .nav-links li a {
    font-size: 25px;
    color: white;
  }

  .nav-links li:nth-child(1) {
    transition: all 0.5s ease 0.4s;
  }

  .nav-links li:nth-child(2) {
    transition: all 0.5s ease 0.6s;
  }

  .nav-links li:nth-child(3) {
    transition: all 0.5s ease 0.8s;
  }

  li.fade {
    opacity: 1;
  }

  .home {
    margin: 0;
    flex-direction: column;
  }

  .home-content .card.card1 {
    padding-top: 8vh;
  }

  .home-content .card.card2 {
    display: none;
  }

  .ondas {
    flex-direction: column;
  }

  .ondas-top {
    height:40px;
    min-height:40px;
  }
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-button img {
  width: 60px; /* Ajuste o tamanho do ícone */
  height: auto;
  transition: transform 0.3s ease-in-out;
}

.whatsapp-button:hover img {
  transform: scale(1.1);
}
