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

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

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-image: linear-gradient(30deg, #7c2be4, #8E78FF);
}
.caixa{
  padding-left: 10%;
}

.center{
  position:absolute;
  left:7%;
  width:200px;
  height:60px;
  top:10%;
  transform:translateX(-50px) translateY(-50px);
  box-shadow: 0px 0px 15px 5px #7c2be4;
  border-radius:60px;
}

.center:hover{
  box-shadow: 0px 0px 15px 1px #7c2be4;
}
.center .button {
  color:white;
  text-decoration: none;
  font-size: 1.4em;
  font-weight:bold;
  background:#fd7e01;
  position:absolute;
  border-radius:60px;
  width:100%;
  height:100%;
  z-index:2;
}
.center .button:hover {
  background:#f69ab8;
  transform: scale(1.1);
  transition: all 0.5s ease;
}
a{
  text-align: center;
  line-height: 2.5em;
}
.center .drop{
  transform:translateY(-10px);
  background:#7c2be4;
  box-shadow: 0px 0px 15px 1px #7c2be4;
  width:20px;
  height:20px;
  top:100%;
  position:absolute;
  border-radius:50%;
  z-index:1;
}
.topdrop{
  width:0px;
  left:0px;
  transform:translateY(-15px);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 25px solid #7c2be4;
}

@keyframes dropDown{
  0%{
    transform:translateY(-10px) scaleX(1.5);
  }
  40%{
    transform:translateY(0px);
  }
  100%{
    transform:translateY(1000px)
  }
}

.raindrop1{
  right:20px;
  animation: dropDown 4s infinite;
}

.raindrop2{
  left:30px;
  animation: dropDown 4s 1s infinite;
}

.raindrop3{
  left:120px;
  animation: dropDown 4s 1.5s infinite;
}


h1{
  color: white;
  font-family: "Catamaran", sans-serif;
  font-size: 2.5em;
  font-size: 4em;
  text-align: center;
  padding: 2em;

}
.container {
display:inline-block;
padding: 2%;
position:relative;
margin: 0 20px;
}
.container .card {
  position: relative;
  width: 320px;
  height: 450px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.container .card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f69ab8;
  clip-path: circle(400px at 80% -40%);
  transition: 0.5s ease-in-out;
}

.container .card:hover:before {
  clip-path: circle(300px at 80% -20%);
}

.container .card .imgBx {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10000;
  width: 100%;
  height: 220px;
  transition: 0.5s;
}

.container .card:hover .imgBx{
  top: 0;
  transform: translateY(0%);
}

.container .card .imgBx img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-25deg);
  width: 300px;
}

.container .card .contentBx {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
  text-align: center;
  transition: 1s;
  z-index: 10;
}

.container .card:hover .contentBx {
  height: 210px;
}

.container .card .contentBx h2 {

  position: relative;
  font-weight: 600;
  font-family: "Catamaran", sans-serif;
  letter-spacing: 1px;
  color: #7c2be4;
}

.container .card .contentBx p, 
.container .card .contentBx .color {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 28px;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.container .card:hover .contentBx p{
  opacity: 1;
  visibility: visible;
  transition-delay: 0.5s;
}

/* Button */

.container .card .contentBx a {
  display: inline-block;
  padding: 10px 20px;
  background: #7c2be4;
  border-radius: 90px;
  margin-top: 10px;
  text-decoration: none;
  font-weight: 600;
  opacity: 0;
  user-select: none;
  min-width: 160px;
  padding: 8px 26px;
  font-family: "Catamaran", sans-serif;
  font-size: 1.2em;
  line-height: 1.5em;
  white-space: nowrap;
  letter-spacing: .03em;
  color: white;
  box-shadow: 0 4px 16px #7c2be4;
  transition: ease .2s;
}

.container .card:hover .contentBx a {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 0.75s;
  padding: 8px 34px;
  box-shadow: 0 5px 24px #7c2be4;
}


.image {
  width: 320px;
}
@media screen and (min-width: 320px) and (max-width: 568px) {
body{
    overflow-x: hidden;
  }
h1{
  font-size: 2em;
  margin-right:5%;
}

.center{
  margin-left:25%;
  width:250px;
  height:40px;
  top:50%;

}
.center .button {
  font-size: 1em;

}
.container{
padding-top: 2em;
}
.container .card {
  position: relative;
  width: 260px;
  height: 350px;
}
.container .card:hover .contentBx {
  height: 110px;
}

.container .card:hover:before {
  clip-path: circle(200px at 70% -20%);
}

.container .card .imgBx {
  top:40%;
  transform: translateY(-30%);
  
}

.container .card .imgBx img{
  top: 40%;
  left: 50%;
  width: 220px;

}

.container .card:hover .contentBx {
  height: 210px;
}

.container .card .contentBx h2 {

  position: relative;
  padding: 1em;
  font-size: 1.2em;
  
}
.container .card .contentBx p, 
.container .card .contentBx .color {
  font-size: 0.9em;
  }

/* Button */
.container .card .contentBx a {
  font-size: 0.8em;
}
@media screen and (min-width: 375px) and (max-width: 667px) {
  .center{
    margin-left:25%;
    width:250px;
    height:40px;
    top:35%;
  }
  @media only screen and (min-device-width: 375px) and (min-device-height: 812px) {
    .center{
      margin-left:25%;
      width:250px;
      height:40px;
      top:30%;
    }