/* Reset básico para manter a consistência */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #121212, #1f1f1f);
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    transition: background 0.5s ease-in-out;
}

header {
    width: 100%;
    position: absolute;
    top: 0;
    padding: 20px 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

header h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    transition: transform 0.3s ease;
}

header h1:hover {
    transform: scale(1.05);
    color: #e94560;
}

nav a {
    color: #bbb;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.1rem;
    transition: color 0.3s;
}

nav a:hover {
    color: #e94560;
}

.frame {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 600px;
    backdrop-filter: blur(15px);
    animation: fadeIn 1s ease-in-out;
}

h1 {
    font-size: 2.5rem;
    color: #e94560;
    margin-bottom: 10px;
}

p {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 20px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #e94560;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Botões flutuantes */
.whatsapp, .instagram {
    position: fixed;
    bottom: 20px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s;
}

.whatsapp {
    right: 20px;
    background: #25d366;
}

.instagram {
    left: 20px;
    background: #E1306C;
}

.whatsapp:hover, .instagram:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}
