@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poiret+One&display=swap");
:root {
  --transition: all 0.4s ease;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 50px #ffd700;
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 70px #ffc800;
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 50px #ffd700;
  }
}
@keyframes fly-right {
  0% {
    transform: translate(0, 0) rotate(0deg) rotateY(0deg);
  }
  25% {
    transform: translate(50vw, -20vh) rotate(-10deg) rotateY(0deg);
  }
  50% {
    transform: translate(100vw, 10vh) rotate(10deg) rotateY(0deg);
  }
  75% {
    transform: translate(50vw, 20vh) rotate(-5deg) rotateY(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg) rotateY(0deg);
  }
}
@keyframes fly-left {
  0% {
    transform: translate(0, 0) rotate(0deg) rotateY(180deg);
  }
  25% {
    transform: translate(50vw, -20vh) rotate(-10deg) rotateY(180deg);
  }
  50% {
    transform: translate(100vw, 10vh) rotate(10deg) rotateY(180deg);
  }
  75% {
    transform: translate(50vw, 20vh) rotate(-5deg) rotateY(180deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg) rotateY(180deg);
  }
}
@keyframes flap {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-30deg);
  }
}
@keyframes swing {
  0% {
    rotate: -3deg;
  }
  50% {
    rotate: 3deg;
  }
  100% {
    rotate: -3deg;
  }
}
@keyframes openPetal {
  0% {
    transform: translateX(-50%) rotate(0);
  }
}
@keyframes openPetal-middle {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(0);
  }
}
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(#73a9e5 10%, #7abde5 20%, #88d0e5 30%, #95e4e5 40%, #ddf1ce 50%, #69cdc1 60%);
  background-attachment: fixed; /* Mantém o fundo fixo */
  overflow-x: hidden; /* Evita barra horizontal */
}

body {
  font-family: "Poiret One", sans-serif;
  display: flex;
  flex-direction: column;
}

section {
  min-height: 100vh; /* Garante que o conteúdo mínimo ocupe toda a altura da tela */
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Começa o conteúdo no topo */
}

.content {
  background: linear-gradient(46deg, rgba(230, 230, 230, 0), rgba(255, 255, 255, 0.9215686275));
  backdrop-filter: blur(5px);
  border-radius: 30px;
  margin: 20px;
  position: relative;
  padding: 20px;
  z-index: 10;
  box-shadow: -20px 20px 130px -40px rgba(217, 217, 217, 0.4196078431), 20px -20px 130px 20px rgba(255, 255, 255, 0.5411764706);
  text-align: center;
}
.content:nth-child(2) {
  margin-top: 250px;
}
.content:last-child {
  margin-bottom: 300px;
}
.content .title {
  font-size: 30px;
  color: black;
  margin: 0;
}
.content .text {
  font-size: 18px;
  font-weight: 300;
}
.content .message {
  overflow: hidden;
  height: 20px;
  transition: var(--transition);
}
.content .message.-hidden {
  transition: var(--transition);
  height: 0;
}
.content .button {
  display: inline-block;
  outline: none;
  cursor: pointer;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 24px;
  border: none;
  transition: all 0.2s ease;
  background: linear-gradient(to right, rgb(230, 30, 77) 0%, rgb(227, 28, 95) 50%, rgb(215, 4, 102) 100%);
  color: #fff;
}

.sky {
  position: relative;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
}

.garden {
  position: absolute;
  overflow: hidden;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80vmin;
  display: flex;
  justify-content: space-evenly;
  align-items: flex-end;
}
.garden:after {
  content: "";
  width: 100%;
  height: 100%;
  z-index: 3;
  mask: linear-gradient(transparent 40%, black 90%, black 100%);
  backdrop-filter: blur(8px);
}

.sun {
  z-index: 1;
  position: absolute;
  top: 50px;
  left: 70%;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, #FFD700, #FFB900);
  border-radius: 50%;
  box-shadow: 0 0 50px #FFD700;
  pointer-events: all;
}
.sun.-pulse {
  animation: pulse 1s ease-in-out;
}

.cloud {
  z-index: 2;
  position: absolute;
  display: inline-block;
  background: #fff;
  cursor: pointer;
  pointer-events: all;
  border-radius: 50%;
  opacity: 0.9;
  scale: 1;
  box-shadow: 0 4px 6px rgba(255, 255, 255, 0.15);
  transition: var(--transition);
}
.cloud.-dissolved {
  transform: scale(0.8);
  opacity: 0;
  transition: var(--transition);
}

.cloud:before, .cloud:after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(255, 255, 255, 0.15);
}

.cloud.small {
  width: 80px;
  height: 50px;
}
.cloud.small:before {
  width: 40px;
  height: 40px;
  top: -20px;
  left: 15px;
  box-shadow: 0 4px 6px rgba(255, 255, 255, 0.15);
}
.cloud.small:after {
  width: 60px;
  height: 60px;
  top: -30px;
  left: -20px;
  box-shadow: 0 4px 6px rgba(255, 255, 255, 0.15);
}

.cloud.medium {
  width: 120px;
  height: 70px;
}
.cloud.medium:before {
  width: 85px;
  height: 60px;
  top: -20px;
  left: 20px;
  box-shadow: 0 4px 6px rgba(255, 255, 255, 0.15);
}
.cloud.medium:after {
  width: 70px;
  height: 70px;
  top: -30px;
  left: -15px;
  box-shadow: 0 4px 6px rgba(255, 255, 255, 0.15);
}

.cloud.large {
  width: 135px;
  height: 90px;
}
.cloud.large:before {
  width: 115px;
  height: 100px;
  top: -45px;
  left: 40px;
  box-shadow: 0 4px 6px rgba(255, 255, 255, 0.15);
}
.cloud.large:after {
  width: 125px;
  height: 90px;
  top: -35px;
  left: -25px;
  box-shadow: 0 4px 6px rgba(255, 255, 255, 0.15);
}

.bee {
  position: absolute;
  z-index: 3;
  height: 20px;
  width: 40px;
  border-radius: 10px;
  pointer-events: all;
  background: linear-gradient(to right, #f4c13d 30%, #0d323e 30%, #0d323e 45%, #f4c13d 45%, #f4c13d 55%, #0d323e 55%, #0d323e 70%, #f4c13d 70%, #f4c13d 80%, #0d323e 80%);
}
.bee.-left {
  animation: fly-left 10s linear infinite;
}
.bee.-right {
  animation: fly-right 10s linear infinite;
}

.bee:before {
  position: absolute;
  content: "";
  height: 5px;
  width: 5px;
  background-color: #0d323e;
  border-radius: 50%;
  top: 4px;
  left: 4px;
}

.bee:after {
  position: absolute;
  content: "";
  height: 2px;
  width: 10px;
  background-color: #0d323e;
  border-radius: 0.31em;
  top: 9px;
  left: 35px;
}

.wings {
  position: relative;
  height: 15px;
  width: 15px;
  background-color: rgba(170, 203, 218, 0.4901960784);
  border-radius: 5em 5em 0 5em;
  top: -15px;
  left: 7px;
  animation: flap 0.5s linear infinite;
}

.wings:before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  background-color: rgba(170, 203, 218, 0.4901960784);
  border-radius: 5em 5em 5em 0;
  left: 15px;
  animation: flap 0.5s linear infinite;
}

.heart {
  position: absolute;
  width: 30px;
  height: 30px;
  background: radial-gradient(circle at 50% 50%, #fbb1cc, #fddcd3);
  transform: rotate(0) scale(0.9);
  clip-path: path("M12 4.419c-2.826-5.695-11.999-4.064-11.999 3.27 0 7.27 9.903 10.938 11.999 15.311 2.096-4.373 12-8.041 12-15.311 0-7.327-9.17-8.972-12-3.27z");
  transition: transform 2s ease-out, opacity 2s ease-out;
  pointer-events: none;
  z-index: 3;
  opacity: 1;
}

.flower {
  position: absolute;
  left: 45%;
  bottom: 2vmin;
  animation: swing 4s ease-in-out infinite;
  transform-origin: center bottom; /* Define o ponto de oscilação */
}
.flower.-orange .bulb {
  background-color: #e24f5f;
}
.flower.-orange .petal {
  background-image: linear-gradient(to bottom, #ffa085, #fa7373, #1a233a 99%);
}
.flower.-pink .bulb {
  background-color: #de118b;
}
.flower.-pink .petal {
  background-image: linear-gradient(to bottom, #ff43b6, #c22887, #1a233a 99%);
}
.flower.-purple .bulb {
  background-color: #ad2be0;
}
.flower.-purple .petal {
  background-image: linear-gradient(to bottom, #ad2be0, #712291, #1a233a 99%);
}
.flower.-jasmine .bulb {
  background-color: #bd79d8;
}
.flower.-jasmine .petal {
  background-image: linear-gradient(to bottom, #fac8eb, #e7caf8, #1a233a 99%);
}
.flower.-begonia .bulb {
  background-color: #d879a9;
}
.flower.-begonia .petal {
  background-image: linear-gradient(to bottom, #f6899e, #fbcac3, #1a233a 99%);
}
.flower.-datura .bulb {
  background-color: #799dd8;
}
.flower.-datura .petal {
  background-image: linear-gradient(to bottom, #86d5f3, #bce2f7, #1a233a 99%);
}
.flower.-violet .bulb {
  background-color: #9b79d8;
}
.flower.-violet .petal {
  background-image: linear-gradient(to bottom, #62bfff, #f4c7f2, #1a233a 99%);
}
.flower.-canna .bulb {
  background-color: #d879ac;
}
.flower.-canna .petal {
  background-image: linear-gradient(to bottom, #fdb396, #fd6b76, #1a233a 99%);
}
.flower.-fragans .bulb {
  background-color: #e8b279;
}
.flower.-fragans .petal {
  background-image: linear-gradient(to bottom, #feeaa1, #f5c3a2, #1a233a 99%);
}

.stem {
  width: 2vmin;
  background-image: linear-gradient(to left bottom, #5b8d8e 20%, #14443b, #0e4041);
  border-radius: 4vmin;
  height: 5vmin;
}
.stem .leaf {
  position: absolute;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 2vmin;
  border-bottom-right-radius: 2vmin;
  top: 12%;
  transform: rotate(-70deg) rotateY(30deg);
  background-image: linear-gradient(to left bottom, #5b8d8e 20%, #14443b, #0e4041);
}
.stem .leaf.-small {
  width: 7vmin;
  height: 4vmin;
}
.stem .leaf.-big {
  width: 11vmin;
  height: 6vmin;
  translate: -1vmin;
}
.stem .leaf.left {
  transform: rotateY(140deg);
  left: -6vmin;
}
.stem .leaf.right {
  left: 1vmin;
  transform: rotateY(40deg);
  translate: 0vmin;
}

.petals {
  position: absolute;
  top: 1vmin;
  left: 50%;
  transform: translateX(-50%);
  width: 2vmin;
  height: 2vmin;
}

.petal {
  position: absolute;
  left: 50%;
  bottom: 2vmin;
  transform: translateX(-50%);
  width: 5vmin;
  height: 14vmin;
  clip-path: ellipse(50% 50% at 50% 50%);
  transform-origin: center bottom;
  transition: transform 1.5s ease-out;
}
.petal.-closed {
  transform: translateX(-50%) rotate(0);
}

.bulb {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  width: 10vmin;
  height: 14vmin;
  bottom: 3vmin;
  border-radius: 50% 50% 50% 50%/80% 80% 20% 20%;
  background-image: none;
  transition: transform 1.5s ease-out;
}
.bulb.-closed {
  transform: translateX(-50%) scale(0);
}

.petal-1 {
  transform: translateX(-50%) rotate(-30deg);
}

.petal-2 {
  transform: translateX(-50%) rotate(-50deg);
}

.petal-3 {
  transform: translateX(-50%) rotate(-70deg);
}

.petal-4 {
  transform: translateX(-50%) rotate(30deg);
}

.petal-5 {
  transform: translateX(-50%) rotate(50deg);
}

.petal-6 {
  transform: translateX(-50%) rotate(70deg);
}

/*# sourceMappingURL=styles.css.map */
