* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #000;
}

.container {
    max-width: 500px;
    margin: 20px auto;
    padding: 15px;
    box-sizing: border-box;
    text-align: center;
}

.foto-perfil {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

p {
    font-size: 1.1rem;
    color: #a1a0a0;
    margin-bottom: 30px;
}

.links a {
    display: block;
    text-decoration: none;
    margin-bottom: 16px;
}

.links img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease-in-out;
}

.links a:hover img {
    transform: scale(1.03);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* ── Card WhatsApp Exclusivo ── */
.card-wa-exclusivo-link {
    display: block;
    text-decoration: none;
    margin-bottom: 16px;
}

.card-wa-exclusivo {
    position: relative;
    width: 100%;
    aspect-ratio: 2.8 / 1;
    border-radius: 8px;
    overflow: hidden;
    background: url('img-whatsapp-grupo.png') center / cover no-repeat;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    display: flex;
    align-items: center;
}

.card-wa-exclusivo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.88);
    z-index: 1;
}

.card-wa-foto {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    height: 72%;
    aspect-ratio: 1 / 1;
    z-index: 2;
    background: url('logo-dark.png') no-repeat;
    background-size: 230%;
    background-position: 50% 60%;
}

.card-wa-texto {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 18px;
}

.card-wa-icon {
    width: 34px;
    height: 34px;
    fill: #25D366;
    flex-shrink: 0;
}

.card-wa-linha1 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.25rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.card-wa-linha2 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
    color: #25D366;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.card-wa-exclusivo-link:hover .card-wa-exclusivo {
    transform: scale(1.03);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}
