body {
    background: url("/src/img/fundo.jpg") no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 10px;
    padding: 10px;
  }
  
  ::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
  }
  
  ::-webkit-scrollbar-thumb {
    background: rgba(255, 0, 149, 0.532);
    border-radius: 50px;
  }

.caixa-1 {
    display: flex;
    justify-content: center;
    font-family: 'Shantell Sans', cursive;
    color: rgba(255, 0, 191, 0.745);
    text-align: center;
    padding: 10px;
}

.buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 10px;
}

button {
    padding: 15px 35px;
    font-size: 22px;
    font-weight: bold;
    color: white;
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
}

button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.5);
    background: linear-gradient(45deg, #ff1493, #ff69b4);
}

button:active {
    transform: translateY(1px);
}

/* Removendo o pseudo-elemento que criava a linha */
button::before {
    display: none;
}

/* Estilo para os links dentro dos botões */
button a {
    color: white;
    text-decoration: none;
    font-family: 'Shantell Sans', cursive;
}

.rodape {
    text-align: center;
    font-family: 'Shantell Sans', cursive;
    color: rgba(0, 0, 0, 0.6);
    font-size: 13px;
    margin-top: 20px;
    padding-bottom: 20px;
    width: 100%;
}

@media (max-width: 768px) {
    body {
        min-height: 100vh;
        height: -webkit-fill-available; /* Para iOS */
    }
    
    .buttons {
        flex-direction: row; /* Mantém os botões lado a lado */
        gap: 15px;
    }
    
    button {
        font-size: 18px;
        padding: 8px 20px;
    }
    
    .rodape {
        font-size: 12px;
        position: relative;
        bottom: 0;
    }
}
