/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Configuração do body e html */
html, body {
    height: 100%;
    font-family: 'Arial', sans-serif;
}

/* Container principal */
.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/atabaques_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

/* Overlay para opacidade do background */
.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 1;
}

/* Conteúdo principal */
.content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 90%;
    width: 100%;
}

/* Container do logo */
.logo-container {
    margin-bottom: 3rem;
}

/* Logo responsivo */
.logo {
    max-width: 100%;
    height: auto;
    width: 300px;
    max-width: 80vw;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Container das redes sociais */
.social-media {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Ícones das redes sociais */
.social-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease, filter 0.3s ease;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    filter: brightness(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Media queries para responsividade */

/* Tablets */
@media (max-width: 768px) {
    .content {
        padding: 1.5rem;
    }
    
    .logo {
        width: 250px;
    }
    
    .social-media {
        gap: 1.5rem;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
    }
}

/* Smartphones */
@media (max-width: 480px) {
    .content {
        padding: 1rem;
    }
    
    .logo {
        width: 200px;
        max-width: 70vw;
    }
    
    .logo-container {
        margin-bottom: 2rem;
    }
    
    .social-media {
        gap: 1rem;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }
}

/* Smartphones pequenos */
@media (max-width: 320px) {
    .logo {
        width: 180px;
    }
    
    .social-media {
        gap: 0.8rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
}

/* Orientação landscape em dispositivos móveis */
@media (max-height: 500px) and (orientation: landscape) {
    .container {
        background-attachment: scroll;
    }
    
    .content {
        padding: 1rem;
    }
    
    .logo {
        width: 150px;
    }
    
    .logo-container {
        margin-bottom: 1rem;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
}

/* Telas muito grandes */
@media (min-width: 1200px) {
    .logo {
        width: 400px;
    }
    
    .social-icon {
        width: 70px;
        height: 70px;
    }
    
    .social-media {
        gap: 2.5rem;
    }
}

