* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?q=80&w=2070') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 450px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
}

.logo {
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #3498db;
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.highlight {
    color: #3498db;
}

p {
    font-size: 0.95rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.opt-btn {
    text-decoration: none;
    color: white;
    background: #3498db;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
}

.opt-btn:hover {
    background: #2980b9;
    transform: scale(1.02);
}

.opt-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid white;
}

.trust-bar {
    margin-top: 30px;
    display: flex;
    justify-content: space-around;
    font-size: 0.8rem;
    opacity: 0.7;
    /* Ajuste no Container para caber todos os botões sem cortar */
.glass-card {
    padding: 30px 20px; /* Diminuímos um pouco o respiro interno */
    max-height: 90vh;    /* Garante que não passe da altura da tela */
    overflow-y: auto;    /* Adiciona scroll se o celular for muito pequeno */
}

/* Ajuste no tamanho dos botões para não ocuparem tanto espaço vertical */
.opt-btn {
    padding: 18px 25px; /* Reduzi levemente a altura de 22px para 18px */
    font-size: 1.1rem;   /* Reduzi levemente a fonte */
    margin-bottom: 5px;  /* Espaçamento entre os botões */
}