/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 420px; /* padrão Link in Bio */
    margin: 0 auto;
    padding: 20px;

    background-image: url("../background.png");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}




/* Cabeçalho */
.header {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

/* Container glass único */
.glass-card {
    width: 100%;
    max-width: 360px;
    padding: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;

    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Logo */
.logo {
    max-width: 160px;
    height: auto;
}

/* Imagem dos suplementos */
.supplements {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 12px;
}


/* Ícones flutuantes */
.icons {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.icon-link {
    color: #333;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.7);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.icon-link:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Estilos dos links */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-button {
    display: block;
    text-decoration: none;
    color: #333;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;

}

.link-button:hover {
    transform: translateY(-3px);

}

.link-button img {
    width: 100%;
    height: auto;
    display: block;
}

.link-button span {
    display: block;
    padding: 12px 15px;
    background-color: white;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
}

/* Rodapé */
.footer {
    margin-top: 30px;
    text-align: center;
    padding: 20px 0;
    font-size: 12px;
    color: #888;
}

/* Responsividade */
@media (min-width: 768px) {
    .container {
        max-width: 500px;
    }
    
    .logo {
        max-width: 220px;
    }
    
    .logo-container::before {
        width: 240px;
        height: 120px;
    }
    
    .link-button span {
        font-size: 16px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    
    .logo {
        max-width: 160px;
    }
    
    .logo-container::before {
        width: 180px;
        height: 90px;
    }
    
    .icon-link {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}

/*Flutuação dos icons*/


.icon-floating {
    position: absolute;
    width: 50px; /* ajuste conforme necessário */
    height: 50px;
    animation: float 3s ease-in-out infinite;
}

.icon-top-right {
    top: 5px;
    right: 20px;
}

.icon-bottom-left {
    bottom: 10px;
    left: 20px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}
