body {
    font-family: Arial, sans-serif;
    background-color: #051323d9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.contact-container {
    background-color: #051323;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.contact-container img.logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
}

.contact-container h1 {
    color: #fff;
    margin-bottom: 20px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.contact-list li i {
    font-size: 20px;
    margin-right: 10px;
}

.contact-list li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    flex: 1;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-list li a i.fa-arrow-right {
    font-size: 14px;
    color: #ca9d48;
}

.contact-list li a:hover {
    text-decoration: underline;
    color: #ca9d48;
}

/* Estilizando ícones com cores específicas */
.whatsapp-icon {
    color: #25D366;
}

.email-icon {
    color: #007bff;
}

.website-icon {
    color: #007bff;
}

.youtube-icon {
    color: #FF0000;
}

.instagram-icon {
    color: #C13584;
}

.linkedin-icon {
    color: #0077B5;
}

.facebook-icon {
    color: #1877F2;
}

.tiktok-icon {
    display: inline-block;
    color: #fff; /* Use the primary color of the TikTok logo */
    text-shadow:
        -1px -1px 0 #ff5864,
         1px -1px 0 #ff5864,
        -1px  1px 0 #ff5864,
         1px  1px 0 #ff5864; /* Add shadow effect for depth */
}

@media (max-width: 600px) {
    .contact-container {
        padding: 15px 20px;
    }

    .contact-container img.logo {
        max-width: 250px;
    }

    .contact-list li a {
        font-size: 14px;
    }
}
