:root {
    --bg-color: #F7F5F0; /* Soft sand */
    --primary-color: #728B78; /* Sage green */
    --primary-hover: #5D7463; 
    --secondary-color: #E3DDD1; /* Warm beige */
    --text-color: #4A4A4A;
    --whatsapp-color: #25D366;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.background-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: drift 15s ease-in-out infinite alternate;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: #E8F0E9;
    top: -50px;
    left: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: #F4EBE3;
    bottom: -100px;
    right: -150px;
    animation-delay: -5s;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 50px) scale(1.1); }
}

.container {
    max-width: 450px;
    width: 100%;
    padding: 40px 20px;
    text-align: center;
    z-index: 1;
}

.profile {
    margin-bottom: 30px;
    animation: fadeInDown 1s ease-out;
}

.avatar-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 10px 25px rgba(114, 139, 120, 0.2);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.title {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.subtitle {
    font-size: 15px;
    font-weight: 300;
    opacity: 0.8;
}

.link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-item {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.link-item:nth-child(1) { animation-delay: 0.1s; }
.link-item:nth-child(2) { animation-delay: 0.2s; }
.link-item:nth-child(3) { animation-delay: 0.3s; }
.link-item:nth-child(4) { animation-delay: 0.4s; }
.link-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.link-btn i {
    position: absolute;
    left: 24px;
    font-size: 18px;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.link-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 25px rgba(114, 139, 120, 0.15);
    background: #fff;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.link-btn.whatsapp:hover {
    color: #fff;
    background: var(--whatsapp-color);
    border-color: var(--whatsapp-color);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.link-btn.whatsapp:hover i {
    color: #fff;
}

footer {
    margin-top: 40px;
    animation: fadeIn 1s ease-out 1s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

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

.social-links a {
    color: var(--primary-color);
    font-size: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
    color: var(--primary-hover);
}

.footer-text {
    font-size: 12px;
    color: #999;
    font-weight: 300;
}
