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

:root {
    --primary-color: #d27d94;
    --second-color: #9e83aa;
    --bg-white: #fff;
    --bg-gray: #fafafa;
    --text-white: #fff;
    --text-black: #212121;
    --box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    transition: 0.3s;
    color: var(--text-black);
    font-weight: 600;
}

body {
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  font-size: 1.4rem;
  margin: 0 auto;
  background-color: var(--bg-white);
  font-family: "Poppins", sans-serif;
}

input, select, textarea {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
}

/* Estilizando a barra de rolagem */
::-webkit-scrollbar {
  width: .6rem;
}
::-webkit-scrollbar-track {
  background: #b1b1b1;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 6px;
  transition: .3s;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

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

.all-display {
    width: 100%;
    height: 100%;
}

.bg-site {
    position: relative;
    min-height: 100vh;
}

.loading {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99999;
    background-color: var(--second-color);
    opacity: 1;
    visibility: visible;
    transition: opacity 1s ease-out, visibility 1s;
}

.loading-box {
    position: relative;

}

.loading.sumir,
.loading-circle.sumir {
    opacity: 0;
    visibility: hidden;
}

.loading-circle {
    visibility: visible;
    opacity: 1;
    transition: opacity .5s ease-out, visibility .5s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loading-logo {
    visibility: hidden;
    opacity: 0;
    transition: opacity 1s ease-out, visibility 1s, scale 1s;
}

.loading-logo.show {
    visibility: visible;
    opacity: 1;
    scale: 3;
}

.content-info {
    z-index: 9999;
    position: absolute;
    top: 0;
    left: 0;
    flex-direction: column;
    gap: 3rem;
}

.bg-color {
    min-width: 100%;
    z-index: 999;
    background-color: var(--text-black);
    opacity: 90%;
}

.bg-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.content-listen {
    color: var(--text-white);
    font-size: 1.5rem;
    margin-top: -2rem;
}

.content-info button {
    background-color: var(--primary-color);
    color: var(--text-white);
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 10rem;
    font-size: 1.6rem;
    font-weight: 700;
    transition: .3s;
    cursor: pointer;
}

.content-info button:hover {
    scale: 1.1;
}

footer {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    max-height: max-content;
    z-index: 9999;
}

.footer-box {
    width: 100%;
    padding: 1rem 3rem;
    justify-content: space-around;
}

.footer-box p {
    font-size: 1.3rem;
    color: var(--text-white);
}

.footer-box img {
    filter: brightness(1000);
}

@media (max-width: 600px) {
    .footer-box img {
        display: none;
    }
}