:root {
    --color-primary: #2C160F; /* Marrom Cacau escuro */
    --color-secondary: #b38c5b; /* Dourado / Cobre */
    --color-cream: #F4E8D8; /* Creme */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-primary);
    color: var(--color-cream);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
}

/* Fundo temático elegante */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradiente luxuoso simulando iluminação de estúdio */
    background: radial-gradient(circle at top right, rgba(179, 140, 91, 0.15) 0%, transparent 50%),
                radial-gradient(circle at bottom left, rgba(179, 140, 91, 0.1) 0%, transparent 40%);
    z-index: 1;
    pointer-events: none;
}

.links-container {
    width: 100%;
    max-width: 500px;
    padding: 40px 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-header {
    text-align: center;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease-out;
}

.logo-wrapper {
    width: 110px;
    height: 110px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: var(--color-cream);
    padding: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.profile-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-secondary);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.profile-subtitle {
    font-size: 0.95rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.links-main {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Estilo Base do Botão */
.link-btn {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(179, 140, 91, 0.3);
    border-radius: 12px;
    color: var(--color-cream);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    animation: fadeInUp 0.5s ease-out backwards;
}

.link-btn:nth-child(1) { animation-delay: 0.1s; }
.link-btn:nth-child(2) { animation-delay: 0.2s; }
.link-btn:nth-child(3) { animation-delay: 0.3s; }
.link-btn:nth-child(4) { animation-delay: 0.4s; }
.link-btn:nth-child(5) { animation-delay: 0.5s; }
.link-btn:nth-child(6) { animation-delay: 0.6s; }
.link-btn:nth-child(7) { animation-delay: 0.7s; }
.link-btn:nth-child(8) { animation-delay: 0.8s; }
.link-btn:nth-child(9) { animation-delay: 0.9s; }
.link-btn:nth-child(10) { animation-delay: 1.0s; }

.link-btn:hover {
    background: rgba(179, 140, 91, 0.15);
    border-color: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    font-size: 1.2rem;
    color: var(--color-secondary);
    margin-right: 15px;
}

.btn-text {
    flex-grow: 1;
    text-align: center;
    margin-right: 30px; /* Para equilibrar o espaço do ícone e manter texto centralizado */
    letter-spacing: 0.5px;
}

/* Botão de Destaque (Workshop) */
.link-highlight {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #8e6c43 100%);
    border: none;
    color: #fff;
    margin-bottom: 10px;
    box-shadow: 0 8px 20px rgba(179, 140, 91, 0.3);
    padding: 24px 20px; /* Aumentado a altura */
}

.link-highlight .btn-icon {
    color: #fff;
    font-size: 1.5rem;
}

.link-highlight .btn-text {
    color: #fff;
    font-size: 1.2rem;
}

.link-highlight:hover {
    background: linear-gradient(135deg, #c7a477 0%, var(--color-secondary) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(179, 140, 91, 0.4);
}

/* Efeito Pulsante para o Destaque */
.pulse-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    border: 2px solid var(--color-secondary);
    z-index: -1;
    animation: pulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

/* Ícones das Redes Sociais */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 15px;
    animation: fadeInUp 0.5s ease-out 0.4s backwards;
}

.social-icon {
    font-size: 1.8rem;
    color: var(--color-cream);
    opacity: 0.7;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.links-footer {
    margin-top: 40px;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.5;
    animation: fadeIn 1s ease-out 1s backwards;
}

/* Animações */
@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); }
}

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

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

/* Responsividade */
@media (max-height: 700px) {
    .profile-header {
        margin-bottom: 20px;
    }
    .logo-wrapper {
        width: 90px;
        height: 90px;
    }
    .link-btn {
        padding: 14px 20px;
    }
}
