body {
    background: #7D4594;
    color: #7D4594;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
}
.linktree-container {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(125, 69, 148, 0.08);
    padding: 32px 18px;
    max-width: 300px;
    width: 100%;
    margin: 0 6vw;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.logo {
    width: 110px;
    margin-bottom: 14px;
}
h1 {
    color: #7D4594;
    margin-bottom: 8px;
    font-size: 1.3rem;
}
.subtitle {
    margin-bottom: 24px;
    color: #7D4594;
    font-size: 1rem;
    font-weight: bold;
}
.linktree-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.linktree-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #D9DCF0;
    color: #4D4D4F; /* cinza 80% CMYK */
    border: none;
    border-radius: 8px;
    padding: 14px 8px;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 1px 4px rgba(125, 69, 148, 0.06);
    position: relative;
    padding-left: 44px;
    padding-right: 44px; 
    text-align: center;
    min-width: 0;
}
.linktree-btn > span.icon-wrapper {
    position: absolute;
    left: 14px;
    display: flex;
    align-items: center;
    height: 100%;
}
.linktree-btn > span + * {

    text-align: center;
}
.linktree-btn:hover {
    background: #7D4594;
    color: #fff;
}
.icon-wrapper {
    position: absolute;
    left: 14px;
    display: flex;
    align-items: center;
    height: 100%;
}
.linktree-btn .icon {
    width: 24px;
    height: 24px;
    margin-right: 0;
    margin-left: 0;
    filter: brightness(0) saturate(100%) invert(19%) sepia(48%) saturate(1092%) hue-rotate(230deg) brightness(92%) contrast(101%);
}
/* Remove estilos antigos */
.container, .contact-list, .contact-list li, .contact-list a, .location, h1 {
    all: unset;
}

/* Desktop adjustments */
@media (min-width: 450px) {
    .linktree-container {
        max-width: 340px;
        padding: 40px 40px;
    }
    .logo {
        width: 150px;
        margin-bottom: 16px;
    }
    .subtitle {
        font-size: 1.1rem;
        margin-bottom: 32px;
    }
    .linktree-btn {
        font-size: 1.1rem;
        padding: 16px 12px;
        padding-left: 48px;
        padding-right: 48px; 
    }
    .icon-wrapper, .linktree-btn > span.icon-wrapper {
        left: 18px;
    }
    .linktree-btn .icon {
        width: 28px;
        height: 28px;
    }
    .linktree-links {
        gap: 18px;
    }
}

.footer {
    width: 100%;
    background: transparent; 
    color: #fff; 
    text-align: center;
    padding: 10px 8px 8px 8px; 
    font-size: 0.7rem; 
    margin-top: 56px;  
    box-shadow: none; 
}

.footer-content {
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.4;
    word-break: break-word;
}


