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

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.business-card {
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 400px;
    text-align: center;
    padding: 20px;
    padding-top: 0px;
    background: #fff;
}

.card-header {
    text-align: center;
    margin-bottom: 20px;
}

.card-header .logo {
    max-width: 150px;
    margin-bottom: 15px;
}

.card-header h1 {
    font-size: 22px;
    color: #29265B;
    margin: 0;
}

.card-header h2 {
    font-size: 16px;
    color: #666;
    margin-top: 5px;
}

.card-header h3 {
    font-size: 13px;
}

.card-body {
    margin: 20px 0;
}

.card-body p {
    margin: 10px 0;
    font-size: 16px;
    color: #29265B;
    text-align: center;
}

.card-footer {
    margin-top: 20px;
}

.card-footer button {
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    background: #29265B;
    color: #fff;
    border: none;
    width: 90%;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 0px 0;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.card-footer button:hover {
    background: #D19E0C;
    color: #29265B;
}

.logo {
    display: block;
    margin: 0 auto 20px; /* Centraliza o logo e adiciona espaço abaixo */
    max-width: 30%; /* Limita a largura a 60% do container */
    height: auto; /* Mantém a proporção da imagem */
  }

  .social-icons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons .icon {
    font-size: 35px;
    transition: transform 0.3s ease;
    color: #343167;
}

.social-icons .icon:hover {
    transform: scale(1.2);
    color: #29265B;
}

.profile-container {
    position: relative;
    width: 150px;
    height: 200px;
    background-color: #29265B; /* Fundo azul */
    border-radius: 0px 0px 20px 20px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center; /* Certifica-se de centralizar o conteúdo verticalmente */
    align-items: center; /* Certifica-se de centralizar o conteúdo horizontalmente */
    padding-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.profile-container .logo {
    position: absolute;
    top: 30px;
    width: 80px;
    height: 80px;
}

.profile-container .photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin-top: 250px;
}

.profile-container .photo.adjust-png {
    object-position: center; /* Centraliza a imagem */
    transform: scale(1.2); /* Aplica zoom e deslocamento */
}


@media (max-width: 500px) {
    .business-card {
        width: 90%;
    }
}