.elementor-kit-5{--e-global-color-primary:#F50094;--e-global-color-secondary:#FFE6F3;--e-global-color-text:#FFFFFF;--e-global-color-accent:#666666;--e-global-color-ab6054d:#1A1A1A;--e-global-color-9fa1dd7:#A8D8B9;--e-global-typography-primary-font-family:"Playfair Display";--e-global-typography-primary-font-size:48px;--e-global-typography-primary-font-weight:600;--e-global-typography-primary-line-height:1.2em;--e-global-typography-primary-letter-spacing:0.5px;--e-global-typography-primary-word-spacing:0px;--e-global-typography-secondary-font-family:"Lato";--e-global-typography-secondary-font-size:16px;--e-global-typography-secondary-font-weight:400;--e-global-typography-secondary-letter-spacing:0.25px;--e-global-typography-secondary-word-spacing:0px;--e-global-typography-text-font-family:"Montserrat";--e-global-typography-text-font-size:18px;--e-global-typography-text-font-weight:600;--e-global-typography-text-text-transform:uppercase;--e-global-typography-text-line-height:1.2em;--e-global-typography-text-letter-spacing:0.75px;--e-global-typography-text-word-spacing:0px;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-5 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */body {
  margin: 0;
  padding: 0;
  font-family: 'Lato', sans-serif;
  overflow-x: hidden;
}

.background {
  position: absolute;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #ffe6f3, #ffd4e4);
  overflow: hidden;
  z-index: 0;
}

.bubble {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(255, 0, 153, 0.2);
  border-radius: 50%;
  animation: float 20s infinite ease-in-out;
  filter: blur(8px);
}

.bubble:nth-child(1) {
  top: 80%;
  left: 10%;
  animation-duration: 25s;
}

.bubble:nth-child(2) {
  top: 50%;
  left: 30%;
  animation-duration: 18s;
}

.bubble:nth-child(3) {
  top: 60%;
  left: 70%;
  animation-duration: 22s;
}

.bubble:nth-child(4) {
  top: 90%;
  left: 90%;
  animation-duration: 30s;
}

.bubble:nth-child(5) {
  top: 75%;
  left: 50%;
  animation-duration: 20s;
}

@keyframes float {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-200px) scale(1.2);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

.content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 20vh;
  color: #1a1a1a;
}

button {
  background-color: #f50094;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 16px;
  margin-top: 20px;
  cursor: pointer;
  transition: 0.3s ease;
}

button:hover {
  background-color: #cc007a;
}
/* Estilo da barra de rolagem para navegadores baseados em Webkit (Chrome, Edge, Opera, Safari) */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #ffe6f3; /* rosa claro */
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background: #f50094; /* rosa da identidade visual */
  border-radius: 10px;
  border: 2px solid #ffe6f3; /* borda que dá efeito suave */
}

::-webkit-scrollbar-thumb:hover {
  background: #cc007a; /* rosa mais escuro no hover */
}

/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: #f50094 #ffe6f3;
}/* End custom CSS */