:root {
    --color-bg-cream: #f6e6d5;
    --color-blue-deep: #20448b;
    --color-text-dark: #2c3e50;
    --color-orange-accent: #d86d55;
    --radius-lg: 30px;
    --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--color-bg-cream);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: var(--color-text-dark);
}

.container {
    width: 100%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    padding: 40px 20px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.profile {
    margin-bottom: 30px;
}

.avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: var(--shadow-soft);
    margin-bottom: 15px;
}

.title {
    color: var(--color-blue-deep);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.bio {
    color: var(--color-text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 600;
    padding: 0 10px;
}

.links-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    user-select: none;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background-color: var(--color-orange-accent);
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background-color: #c45b46;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(216, 109, 85, 0.4);
}

.btn-primary:active {
    transform: scale(0.98) translateY(0);
}

/* Efeito de pulso para instigar o clique */
.btn-primary .pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-orange-accent);
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.05, 1.15);
        opacity: 0;
    }
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.7);
    color: var(--color-blue-deep);
    border: 1px solid var(--color-blue-deep);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(32, 68, 139, 0.15);
}

.btn-secondary:active {
    transform: scale(0.98) translateY(0);
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.5);
    color: var(--color-blue-deep);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--color-blue-deep);
    color: #fff;
    transform: translateY(-3px);
}

.website-url {
    color: var(--color-blue-deep);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.website-url:hover {
    opacity: 1;
    text-decoration: underline;
}
