.logo {
    -webkit-user-drag: none;
}

html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: auto;
    font-family: 'Arial', sans-serif;
    position: relative;
    min-height: 100vh;
}

body {
    background: url('./img/fundo.png') no-repeat center center;
    background-size: 110%;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 0;
}

.titulo {
    font-family: 'Pacifico', cursive;
    font-size: 3em;
    color: #e67e22;
    margin-bottom: 0;
}

header p {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 18px;
    color: #7f8c8d;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url('./img/fundo.png') center/cover no-repeat;
    filter: blur(5px);
    z-index: -2;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px;
    color: white;
}

.logo {
    width: 150px;
    border-radius: 50%;
    margin-top: 20px;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

h1, p {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.5s;
}

p {
    font-size: 18px;
    color: #7f8c8d;
}

.btn {
    display: flex;
    align-items: center;
    background-color: #e67e22;
    color: white;
    padding: 15px;
    text-decoration: none;
    border-radius: 25px;
    font-size: 18px;
    margin: 15px auto;
    width: 80%;
    max-width: 400px;
    text-align: left;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.btn:nth-child(1) {
    animation-delay: 1s;
}

.btn:nth-child(2) {
    animation-delay: 1.2s;
}

.btn:nth-child(3) {
    animation-delay: 1.4s;
}

.btn:nth-child(4) {
    animation-delay: 1.6s;
}

.btn:nth-child(5) {
    animation-delay: 1.8s;
}

.btn:nth-child(6) {
    animation-delay: 2s;
}

.btn:hover {
    background-color: #d35400;
    transform: scale(1.05);
}

.btn img {
    width: 30px;
    margin-right: 10px;
    flex-shrink: 0;
}

.btn span {
    flex: 1;
    text-align: center;
}

footer {
    color: white;
    padding: 20px 0;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer-content p {
    margin: 5px 0;
    font-size: 14px;
}

.footer-content p:first-child {
    font-weight: bold;
}