/* ── Botão Entrar com Google ── */
.btn-google-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 0.78rem 1rem;
    background: #fff;
    color: #3c4043;
    border: 1.5px solid #dadce0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.01em;
}

.btn-google-login:hover {
    background: #f7f8fc;
    border-color: #bbc8e8;
    box-shadow: 0 3px 10px rgba(66,133,244,0.15);
    color: #3c4043;
    text-decoration: none;
}

.btn-google-login svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

/* ── Intro text antes do botão Google ── */
.google-auth-intro {
    text-align: center;
    color: #666;
    font-size: 0.85rem;
    margin: 0 0 0.75rem;
    line-height: 1.5;
}

/* ── Card de identidade (passo WhatsApp) ── */
.google-id-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #eef5ff 0%, #f5f9ff 100%);
    border: 1.5px solid #c5d9f7;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    margin-bottom: 0.25rem;
}

.google-id-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4285F4, #0a62d4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 2px 8px rgba(66,133,244,0.3);
    text-transform: uppercase;
}

.google-id-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.google-id-name {
    font-weight: 700;
    font-size: 0.92rem;
    color: #1a3566;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'Roboto', sans-serif;
}

.google-id-email {
    font-size: 0.78rem;
    color: #6b7da8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.google-id-verified {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 0.7rem;
    color: #0c9153;
    font-weight: 700;
    flex-shrink: 0;
    background: #e6f9f0;
    padding: 3px 7px;
    border-radius: 20px;
    border: 1px solid #b3e9d0;
    white-space: nowrap;
}

/* ── Wrapper do input WhatsApp ── */
.whatsapp-field-label {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--gray-dark, #36344d);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.whatsapp-input-group {
    display: flex;
    align-items: stretch;
    border: 2px solid #25d366;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.whatsapp-input-group:focus-within {
    border-color: #1aad58;
    box-shadow: 0 0 0 3px rgba(37,211,102,0.15);
}

.whatsapp-input-prefix {
    background: #f0fdf6;
    padding: 0 13px;
    display: flex;
    align-items: center;
    border-right: 1.5px solid #c8f0d9;
    color: #25d366;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.whatsapp-input-group input[type="tel"] {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    flex: 1;
    padding: 11px 12px;
    font-size: 1rem;
    color: var(--gray-dark, #36344d);
    background: transparent;
    width: 100%;
    border-radius: 0 !important;
    -webkit-appearance: none;
}

/* ── Divisor "identificado como" ── */
.google-whatsapp-divider {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #aab;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0.1rem 0 0;
}

.google-whatsapp-divider::before,
.google-whatsapp-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #dde4ee;
}
