* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
body {
    background-color: navy;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}


body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(66, 153, 225, 0.08) 0%, rgba(0, 0, 0, 0) 60%);
    pointer-events: none;
        }

.container {
    max-width: 760px;
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(0px);
    border-radius: 2rem;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255,255,255,0.08);
    transition: all 0.2s ease;
}

.text {
    color: #F0F4FF;
    text-align: left;
}

h2 {
    text-align: center;
    margin-bottom: 10px;
}

h3 {
    text-align: center;
    margin-top: 5px;
}

.botao {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.botao a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 60px;
    padding: 0.85rem 2rem;
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.25s ease;
    letter-spacing: 0.2px;
}

.botao a:hover {
    background: #3B82F6;
    border-color: #3B82F6;
    transform: scale(1.02);
    box-shadow: 0 10px 20px -8px rgba(59, 130, 246, 0.4);
}