/* Reset e Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html, body {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

body {
    background-color: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    position: relative;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #121212, #000000);
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    flex: 1;
}

/* Card de Perfil */
.profile-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.profile-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-card h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    padding: 0 10px;
}

.profile-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* Links */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.link {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px 20px;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.link:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.link-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
}

.link-text {
    flex: 1;
    text-align: left;
}

.link-title {
    display: block;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 3px;
}

.link-subtitle {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.link-arrow {
    opacity: 0.5;
    transition: all 0.3s ease;
}

.link:hover .link-arrow {
    opacity: 1;
    transform: translateX(3px);
}

/* Cores específicas para cada plataforma */
.spotify .link-icon {
    background: rgba(29, 185, 84, 0.2);
    color: #1DB954;
}

.whatsapp .link-icon {
    background: rgba(37, 211, 102, 0.2);
    color: #25D366;
}

.instagram .link-icon {
    background: rgba(225, 48, 108, 0.2);
    color: #E1306C;
}

.facebook .link-icon {
    background: rgba(24, 119, 242, 0.2);
    color: #1877F2;
}

.youtube .link-icon {
    background: rgba(255, 0, 0, 0.2);
    color: #FF0000;
}

.maps .link-icon {
    background: rgba(66, 133, 244, 0.2);
    color: #4285F4;
}

/* Links sociais */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-3px);
}

/* ESTILOS ORIGINAIS DO FOOTER (mantidos) */

/* Reduz apenas o texto "Desenvolvido por" */
.footer-developed {
    font-size: 0.85em; /* 85% do tamanho original */
    opacity: 0.8; /* Leve transparência para discreção */
    display: inline-block; /* Mantém alinhamento */
}

/* Ajuste para telas pequenas */
@media (max-width: 480px) {
    .footer-developed {
        font-size: 0.75em; /* Reduz um pouco mais em mobile */
    }
}

/* Mantém o nome do desenvolvedor com estilo diferente */
.developer-name {
    font-style: italic;
    font-size: 0.9em; /* Tamanho intermediário */
}

.footer-container {
    width: 100%;
    margin-top: 20px;
}

.main-footer {
    max-width: 450px;
    margin: 0 auto;
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    padding: 15px 0;
}

/* NOVOS ESTILOS PARA UMA ÚNICA LINHA */
.footer-text {
    white-space: nowrap;
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* RESPONSIVIDADE QUE MANTÉM O LAYOUT */
@media (max-width: 600px) {
    .main-footer {
        font-size: 13px;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .main-footer {
        font-size: 12px;
    }
}

@media (max-width: 380px) {
    .main-footer {
        font-size: 11px;
    }
}



/* Responsividade */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .profile-card {
        padding: 20px;
    }
    
    .profile-image {
        width: 80px;
        height: 80px;
    }
    
    .profile-card h1 {
        font-size: 20px;
    }
    
    .link {
        padding: 12px 15px;
    }
    
    .link-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
        margin-right: 12px;
    }
    
    .link-title {
        font-size: 15px;
    }
    
    .link-subtitle {
        font-size: 11px;
    }
    
    .main-footer {
        font-size: 11px;
    }
}