:root {
    --bg-color-1: #ffdde1;
    --bg-color-2: #ee9ca7;
    --bg-color-3: #ffffff;
    --text-primary: #5c3a21; /* Chocolate escuro elegante */
    --text-secondary: #8c6a51;
    --card-bg: rgba(255, 255, 255, 0.45);
    --card-border: rgba(255, 255, 255, 0.7);
    --card-hover: rgba(255, 255, 255, 0.8);
    --accent: #d81b60; /* Rosa elegante */
    --accent-hover: #ad1457;
}

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

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

.background-animation {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, var(--bg-color-3), var(--bg-color-1), var(--bg-color-2));
    z-index: -1;
    animation: rotateGradient 25s linear infinite;
    opacity: 0.9;
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Flower Decorations */
.flower-deco {
    position: fixed;
    width: 220px;
    height: 220px;
    background-image: url('flowers.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top left;
    z-index: 0;
    opacity: 0.9;
    pointer-events: none;
    mix-blend-mode: multiply;
}

.flower-top-left {
    top: -20px;
    left: -20px;
}

.flower-top-right {
    top: -20px;
    right: -20px;
    transform: scaleX(-1);
}

.flower-bottom-left {
    bottom: -20px;
    left: -20px;
    transform: scaleY(-1);
}

.flower-bottom-right {
    bottom: -20px;
    right: -20px;
    transform: scale(-1, -1);
}

.container {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    z-index: 1;
}

/* Header */
.profile-header {
    text-align: center;
    animation: fadeInDown 0.8s ease-out;
}

.avatar-container {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto 1.5rem;
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 10px 25px rgba(216, 27, 96, 0.15);
    background: #fff;
}

.name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
    color: #4a2311;
}

.bio {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
}

.social-icons a {
    color: var(--text-primary);
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
    opacity: 0.85;
}

.social-icons a:hover {
    color: var(--accent);
    transform: translateY(-3px) scale(1.1);
    opacity: 1;
}

/* Links Section */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.link-card {
    display: flex;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-primary);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.link-card:hover {
    background: var(--card-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(216, 27, 96, 0.1);
    border-color: #fff;
}

.link-card:hover::before {
    left: 200%;
}

.link-card .icon {
    font-size: 1.4rem;
    margin-right: 1.2rem;
    color: var(--accent);
    width: 24px;
    text-align: center;
}

.link-card .title {
    font-size: 1.1rem;
    font-weight: 600;
    flex-grow: 1;
}

.link-card .arrow {
    font-size: 0.9rem;
    opacity: 0.5;
    transition: transform 0.3s ease;
}

.link-card:hover .arrow {
    opacity: 1;
    transform: translateX(4px);
    color: var(--accent);
}

.link-card.highlight {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 221, 225, 0.8));
    border: 2px solid var(--accent);
    box-shadow: 0 8px 20px rgba(216, 27, 96, 0.15);
}
.link-card.highlight:hover {
    background: linear-gradient(135deg, #fff, rgba(255, 221, 225, 1));
}

/* Share Button */
.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.5);
    color: var(--text-primary);
    border: 1px dashed var(--accent);
    padding: 1rem;
    border-radius: 30px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out;
}

.share-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* Toast */
.toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(216, 27, 96, 0.4);
    transition: bottom 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 100;
}

.toast.show {
    bottom: 30px;
}

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

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

@media (max-width: 480px) {
    .container { gap: 1.5rem; }
    .name { font-size: 1.6rem; }
    .link-card { padding: 1.1rem 1.2rem; }
    .link-card .title { font-size: 1.05rem; }
}
