/* Estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #02313b;
    color: #00aaff;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

/* Estilos do cabeçalho */
header {
    text-align: center;
    margin-bottom: 2rem;
}

.titulo {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 170, 255, 0.3);
    letter-spacing: -1px;
}

.subtitulo {
    font-size: 1.8rem;
    font-weight: 400;
    opacity: 0.9;
}

/* Estilos dos botões */
.botoes {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.botao {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border: 2px solid #00aaff;
    border-radius: 50px;
    color: #00aaff;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
}

.botao:hover {
    background-color: #00aaff;
    color: #02313b;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 170, 255, 0.2);
}

.icone {
    font-size: 1.5rem;
}

/* Estilos dos feeds */
.feeds {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
    justify-content: center;
    margin: 2rem 0;
}

.feed-container {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feed-container h2 {
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.5rem;
    color: #00aaff;
}

.twitter-feed, .instagram-feed {
    width: 100%;
    min-height: 400px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 170, 255, 0.7);
}

/* Estilos do rodapé */
footer {
    margin-top: 3rem;
    text-align: center;
    font-size: 1rem;
    opacity: 0.7;
}

/* Responsividade */
@media (max-width: 768px) {
    .titulo {
        font-size: 2.5rem;
    }
    
    .subtitulo {
        font-size: 1.3rem;
    }
    
    .botoes {
        flex-direction: column;
        gap: 1rem;
    }
    
    .botao {
        width: 100%;
    }
    
    .feeds {
        flex-direction: column;
    }
    
    .feed-container {
        max-width: 100%;
    }
    
    .container {
        padding: 1rem;
    }
}
