/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #1d748f4a;
    color: #4e4e4e;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    flex-direction: column;
}

.container {
    text-align: center;
    width: 100%;
    max-width: 400px;
    background: rgb(205, 205, 205);
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.613);
    padding: 20px;
    margin-bottom: 20px;
}

/* Cabeçalho */
.header {
    margin-bottom: 2rem;
}

.logo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    box-shadow: #000 0px 5px 10px;
}

.client-name {
    font-size: 1.5rem;
    color: #000;
    animation: fadeIn 2s ease-in-out;
}

/* Lista de contatos */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-button {
    background: #1d748f;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0);
    text-decoration: none;
    color: rgba(255, 255, 255, 0.851);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    animation: slideUp 1s ease-in-out;
    text-align: center;
    border: none;
    cursor: pointer;
    width: 100%;
}

.contact-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    background: #1d748f;
}

.icon {
    font-size: 1.5rem;
}

h2 {
    font-size: 1.2rem;
    color: #c0c0c0;
    margin: 0;
}

/* Rodapé */
.fundo {
    text-align: center;
    width: 100%;
    max-width: 400px;
    background: rgb(205, 205, 205);
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.613);
    padding: 10px;
}

.copy p {
    font-size: 0.9rem;
    color: #000;
    margin-bottom: 10px;
}

.bottom a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

.bottom a:hover {
    text-decoration: underline;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsividade */
@media (max-width: 480px) {
    .container {
        padding: 15px;
    }

    .contact-button {
        padding: 10px;
    }

    .icon {
        font-size: 1.2rem;
    }

    h2 {
        font-size: 1rem;
    }

    .copy p {
        font-size: 0.8rem;
    }
}