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

body {
    font-family: 'Inter', sans-serif;
    background-image: url('../assets/images/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    min-height: 100vh;
    margin: 0;
    color: #333;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-size: cover;
    height: 100vh;
    z-index: -1;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-width: 400px;
    margin: 0 auto;
    padding: 60px 30px 40px;
    text-align: center;
}

/* Logo circular */
.logo-section {
    margin-bottom: 30px;
}

.logo-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Texto do cabeçalho */
.header {
    margin-bottom: 40px;
}

.brand-name {
    font-size: 2rem;
    font-weight: 400;
    color: #bcb3a4;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.brand-description {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Links principais */
.main-links {
    margin-bottom: 50px;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 20px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 25px;
    text-decoration: none;
    text-align: center;
    color: #bcb3a4;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.button-icon {
    width: 30px;
    height: 30px;
    /*transition: filter 0.3s ease;*/
}

.link-button:hover {
    background: rgb(248, 248, 248);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.link-button span {
    display: block;
}

/* Ícones sociais */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: #BCB3A4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: #bcb3a4d8;
    transform: translateY(-2px);
    box-shadow: bcb3a4d8;
}

.social-icon i {
    font-size: 1.2rem;
}

/* Responsividade */
@media (max-width: 480px) {
    .container {
        padding: 40px 20px 30px;
    }
    
    .logo-circle {
        width: 100px;
        height: 100px;
    }
    
    .brand-name {
        font-size: 1.8rem;
    }
    
    .brand-description {
        font-size: 0.9rem;
    }
    
    .link-button {
        padding: 16px 18px;
        font-size: 0.95rem;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }
    
    .social-icon i {
        font-size: 1.1rem;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 30px 15px 25px;
    }
    
    .logo-circle {
        width: 90px;
        height: 90px;
    }
    
    .brand-name {
        font-size: 1.6rem;
    }
    
    .social-icons {
        gap: 15px;
    }
}

/* Media query para desktops - telas grandes */
@media (min-width: 1024px) {
    .container {
        max-width: 500px;
        padding: 60px 40px 60px;
        justify-content: center;
    }
    
    .logo-circle {
        width: 150px;
        height: 150px;
    }
    
    .brand-name {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }
    
    .brand-description {
        font-size: 1.2rem;
    }
    
    .link-button {
        padding: 22px 25px;
        font-size: 1.1rem;
        margin-bottom: 16px;
        border-radius: 30px;
    }
    
    .button-icon {
        width: 35px;
        height: 35px;
    }
    
    .social-icon {
        width: 60px;
        height: 60px;
    }
    
    .social-icon i {
        font-size: 1.4rem;
    }
    
    .social-icons {
        gap: 25px;
        margin-top: 40px;
    }
}