/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Alterado de "height" para "min-height" */
    text-align: center;
    overflow-y: auto; /* Permite rolagem vertical apenas se necessário */
    overflow-x: hidden; /* Impede rolagem horizontal */
}

.container {
    max-width: 400px;
    width: 100%; /* Garante que o container ocupe toda a largura disponível */
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 0 auto; /* Centraliza o container horizontalmente */
    overflow: hidden; /* Evita que o conteúdo transborde */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #ff5d56; /* Alteração da cor de destaque */
}

h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #ff5d56; /* Alteração da cor de destaque */
}

.subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
}

.message {
    font-size: 1rem;
    color: #777;
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap; /* Permite que os ícones quebrem linha em telas pequenas */
}

.social-icons a {
    text-decoration: none;
    color: #333;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ff5d56; /* Alteração da cor de destaque */
}

.btn-whatsapp {
    display: inline-block;
    padding: 10px 20px;
    background-color: #25d366;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    width: 100%; /* Faz o botão ocupar toda a largura do container */
    text-align: center; /* Centraliza o texto dentro do botão */
}

.btn-whatsapp:hover {
    background-color: #1da851;
}

.btn-whatsapp i {
    margin-right: 10px;
}

@media (max-width: 600px) {
    body {
        padding: 20px; /* Adiciona um espaçamento nas bordas para evitar cortes */
    }

    h1 {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .message {
        font-size: 0.9rem;
    }

    .btn-whatsapp {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}