body {
    background-color: #b4f5b4;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
}

.profile-container {
    text-align: center;
    padding: 20px;
    max-width: 500px;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.profile-image {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 15px;
}

h1 {
    font-family: 'Pattaya', sans-serif;
    font-size: 2.5rem;
    color: #2c2e33;
    margin: 10px 0;
}

h4 {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 300px;
    margin: 0 auto;
}

.btn-social-icon-text {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-size: 1rem;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-social-icon-text:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp { background-color: #25D366; }
.btn-youtube { background-color: #FF0000; }
.btn-instagram { background-color: #E1306C; }
.btn-dribbble { background-color: #EA4C89; }
.btn-linkedin { background-color: #0077B5; }
.btn-facebook { background-color: #3B5998; }
.btn-address { background-color: #28A745; }
.btn-menu { background-color: #FD7E14; }
.btn-website { background-color: #6F42C1; }
.btn-pix { background-color: #00C4B4; }

.mdi {
    margin-right: 8px;
    font-size: 1.2rem;
}

.footer {
    position: fixed;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    color: #6c757d;
}

.footer a {
    color: #2c2e33;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    .profile-container {
        max-width: 90%;
        padding: 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h4 {
        font-size: 1rem;
    }

    .buttons {
        max-width: 100%;
    }

    .btn-social-icon-text {
        font-size: 0.9rem;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .profile-image {
        width: 120px;
        height: 120px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 0.9rem;
    }

    .btn-social-icon-text {
        font-size: 0.8rem;
        padding: 6px;
    }
}