@import url('./variaveis.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background-color: #102E1B !important;
    min-height: 100%;
    height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #102E1B !important;
    min-height: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin: 0;
}

.bio-wrapper {
    background-color: #102E1B !important;
    min-height: 100vh;
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bio-container {
    max-width: 400px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background-color: #102E1B;
    margin: 0 auto;
}

.bio-header {
    background: var(--primary);
    padding: 20px 20px;
    text-align: center;
}

.bio-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid var(--accent);
    object-fit: cover;
    object-position: center top;
    margin-bottom: 15px;
}

.bio-name {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.bio-title {
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 500;
}

.bio-content {
    background: var(--primary);
    padding: 15px 20px;
}

.bio-description {
    color: var(--white);
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.bio-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bio-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.bio-link.whatsapp {
    background: var(--whatsapp);
    color: var(--primary);
}

.bio-link.whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
}

.bio-link.site {
    background: var(--accent);
    color: var(--primary);
}

.bio-link.site:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

.bio-link.review {
    background: var(--accent);
    color: var(--primary);
}

.bio-link.review:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

.bio-link i {
    font-size: 1.2rem;
}

.bio-footer {
    background: var(--primary);
    padding: 20px;
    text-align: center;
}

.bio-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.bio-social a {
    color: var(--white);
    font-size: 1.3rem;
    transition: color 0.3s;
}

.bio-social a:hover {
    color: var(--accent);
}

.bio-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
}

.bio-footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(179, 152, 106, 0.1);
}

.bio-footer-bottom p {
    font-size: 0.8rem;
    opacity: 0.4;
    margin-bottom: 4px;
    color: var(--white);
}

.bio-footer-bottom a {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.bio-footer-bottom a:hover {
    opacity: 1;
}