body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #011111;
    color: #fff;
}

body.light {
    background: #fff;
    color: #222;
}

.bio-container {
    max-width: 400px;
    margin: 40px auto;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bio-logo {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.bio-logo-container {
    border-radius: 50%;
    border: 5px solid;
    padding: 12px 12px 10px 12px;
    display: inline-block;
}

.bio-title {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 0px;
    text-align: center;
}

.bio-subtitle {
    font-size: 1.1rem;
    margin-bottom: 0px;
    text-align: center;
}

.bio-btn {
    display: block;
    width: 100%;
    background: #ff5a1f;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 32px;
    padding: 14px 0;
    text-align: center;
    margin-bottom: 18px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s;
    margin-top: 30px;
}

.bio-location-card {
    color: #fff;
    border-radius: 24px;
    margin-bottom: 22px;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.bio-location-content {
    padding: 10px;
    text-align: center;
}

.bio-location-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.bio-location-btn {
    background: #222;
    color: #fff;
    border-radius: 16px;
    padding: 8px 18px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 6px;
    transition: background 0.2s;
}
.bio-location-btn:hover {
    background: #444;
}

.bio-location-emojis {
    position: absolute;
    top: -18px;
    left: 12px;
    font-size: 1.5rem;
    display: flex;
    gap: 6px;
}

.bio-social {
    display: flex;
    gap: 18px;
    margin-bottom: 18px;
}

.bio-social-btn {
    width: 48px;
    height: 48px;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
    color: white;
    text-decoration: none;
}

.bio-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 54px;
    height: 54px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    z-index: 10;
    text-decoration: none;
    font-size: 25px;
    color:white;
}
.bio-whatsapp-dot {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 12px;
    height: 12px;
    background: #ff3b3b;
    border-radius: 50%;
    border: 2px solid #fff;
}

@media (max-width: 600px) {
    .bio-container {
        max-width: 98vw;
        padding: 16px 40px;
    }
    .bio-logo {
        width: 140px;
        height: 140px;
    }
    .bio-whatsapp {
        width: 44px;
        height: 44px;
    }
    .bio-whatsapp img {
        width: 24px;
        height: 24px;
    }
    .bio-whatsapp-dot {
        width: 9px;
        height: 9px;
        top: 8px;
        right: 8px;
    }
}