/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #5C5C5E 0%, #4A4A4C 50%, #3B3B3D 100%);
    min-height: 100vh;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

/* Efeito de fundo animado */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.1) 0%, transparent 50%);
    z-index: -1;
    animation: backgroundMove 20s ease-in-out infinite;
}

@keyframes backgroundMove {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-20px) translateY(-10px); }
    50% { transform: translateX(20px) translateY(10px); }
    75% { transform: translateX(-10px) translateY(20px); }
}

/* Container principal */
.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease-out;
}

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

/* Seção do perfil */
.profile-section {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeIn 1s ease-out 0.2s both;
    padding-top: 20px; /* Espaçamento abaixo da tarja */
}

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

.profile-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-description {
    font-size: 1rem;
    color: #b8b8b8;
    font-weight: 400;
    line-height: 1.5;
}

/* Seção de links */
.links-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.link-button {
    display: flex;
    align-items: center;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: slideInLeft 0.6s ease-out both;
}

.link-button:nth-child(1) { animation-delay: 0.3s; }
.link-button:nth-child(2) { animation-delay: 0.4s; }
.link-button:nth-child(3) { animation-delay: 0.5s; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }

.link-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.link-button:hover::before {
    left: 100%;
}

.link-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.link-button:active {
    transform: translateY(0) scale(0.98);
}

/* Estilos específicos por plataforma */
.link-button.whatsapp:hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.2) 0%, rgba(37, 211, 102, 0.1) 100%);
    border-color: rgba(37, 211, 102, 0.3);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.2);
}

.link-button.website:hover {
    background: linear-gradient(135deg, rgba(180, 211, 66, 0.2) 0%, rgba(180, 211, 66, 0.1) 100%);
    border-color: rgba(180, 211, 66, 0.3);
    box-shadow: 0 12px 40px rgba(180, 211, 66, 0.2);
}

.link-button.instagram:hover {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.2) 0%, rgba(255, 204, 119, 0.1) 100%);
    border-color: rgba(225, 48, 108, 0.3);
    box-shadow: 0 12px 40px rgba(225, 48, 108, 0.2);
}

.link-icon {
    width: 24px;
    height: 24px;
    margin-right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.link-button:hover .link-icon {
    transform: scale(1.1);
}

.link-text {
    flex: 1;
    text-align: left;
}

.link-arrow {
    width: 16px;
    height: 16px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.link-button:hover .link-arrow {
    opacity: 1;
    transform: translateX(4px);
}

/* Footer */
.footer {
    text-align: center;
    margin-top: auto;
    animation: fadeIn 1s ease-out 0.8s both;
}

.footer p {
    font-size: 0.875rem;
    color: #666;
    font-weight: 300;
}

/* Responsividade */
@media (max-width: 480px) {
    .container {
        padding: 30px 16px;
    }
    
    .profile-name {
        font-size: 1.75rem;
    }
    
    .profile-description {
        font-size: 0.9rem;
    }
    
    .link-button {
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    .profile-image {
        width: 100px;
        height: 100px;
    }

@media (max-width: 360px) {
    .container {
        padding: 20px 12px;
    }
    
    .link-button {
        padding: 14px 18px;
        font-size: 0.95rem;
    }

/* Melhorias de acessibilidade */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    body::before {
        animation: none;
    }

/* Estados de foco para acessibilidade */
.link-button:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

.link-button:focus:not(:focus-visible) {
    outline: none;
}

.link-button:focus-visible {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}



/* Top Banner */
.top-banner {
    width: 100%;
    background-color: transparent;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.banner-logo {
    max-width: 200px; /* Ajuste o tamanho máximo da logo */
    height: auto;
    display: block;
    margin: 0 auto;
    background-color: #FFFFFF;
    padding: 10px;
    border-radius: 10px;
}


