/* Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg, #fff, #f8e9ef);
    color: #333;
}

/* Cabeçalho */
header {
    background-color: #ff85a1;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header .logo {
    color: #fff;
    font-size: 1.8em;
    font-weight: bold;
    text-transform: uppercase;
}

header .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

header .nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

header .nav-links a:hover {
    color: #ffccdc;
}

/* Seção de Redes Sociais */
.social-section {
    padding: 100px 20px 60px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2.5em;
    color: #d43857;
    margin-bottom: 20px;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.social-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffe5ec;
    padding: 15px;
    border-radius: 10px;
    transition: transform 0.3s, background-color 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.social-link img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.social-link span {
    font-weight: bold;
    color: #d43857;
    font-size: 1.1em;
}

.social-link:hover {
    transform: scale(1.1);
    background-color: #ffccd6;
}

/* Rodapé */
footer {
    text-align: center;
    padding: 10px 0;
    background-color: #ff85a1;
    color: #fff;
    font-size: 0.9em;
    margin-top: 40px;
}

/* Animação */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.social-link {
    animation: fadeInScale 0.8s ease-in-out;
}
