/* 1. RESET E CONFIGURAÇÕES GERAIS DE RESPONSIVIDADE */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    -webkit-tap-highlight-color: transparent;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    background-color: #fff0f5;
    background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 9.25C15 6.1 11.5 4 8.5 4 5 4 3 6.5 3 9.5c0 4.25 5.5 8.75 12 13.5 6.5-4.75 12-9.25 12-13.5 0-3-2-5.5-5.5-5.5-3 0-6 2.1-6 5.25z' fill='%23e8227e' fill-opacity='0.05'/%3E%3C/svg%3E");
    color: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(10px, 3vw, 25px); 
    min-height: 100vh;
    font-family: 'Plus Jakarta Sans', 'Cormorant Garamond', 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
}

/* 2. CORREÇÃO DE EMOJIS */
.emoji-fix {
    font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji', sans-serif !important;
    font-style: normal !important;
    font-weight: normal !important;
    line-height: 1 !important;
    display: inline-block;
    font-size: 1.2em;
    margin-right: 6px;
    vertical-align: -2px;
}

/* 3. CONTAINER PRINCIPAL */
.container {
    max-width: 440px; 
    width: 100%;
    text-align: center;
    background: #f8bbd0; 
    border-radius: clamp(24px, 6vw, 40px);
    padding: clamp(25px, 5vw, 38px) clamp(16px, 4vw, 24px);
    box-shadow: 0 20px 45px rgba(232, 34, 126, 0.2);
    border: 1px solid rgba(232, 34, 126, 0.15);
    position: relative;
}

/* 4. BADGE DE STATUS ONLINE */
.badge-atendimento {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.85);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #2b1d14;
    margin-bottom: 15px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.ponto-online {
    width: 8px;
    height: 8px;
    background-color: #25D366;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 6px #25D366;
    animation: pulso-online 1.8s infinite;
}

@keyframes pulso-online {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

/* 5. TEXTOS DO PERFIL */
.frase-entrada {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: clamp(22px, 5vw, 28px);
    margin-top: 14px;
    color: #111;
}

.bio { 
    margin-top: 8px;
    margin-bottom: 22px; 
    font-style: normal; 
    font-size: clamp(13px, 3.5vw, 15px); 
    font-weight: 600;
    line-height: 1.5;
    color: #333;
}

/* 6. FOTO DE PERFIL RESPONSIVA */
.foto-moldura {
    width: clamp(180px, 45vw, 230px); 
    height: clamp(180px, 45vw, 230px); 
    margin: 0 auto;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(45deg, #e8227e, #d4af37, #e8227e);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(232, 34, 126, 0.25);
}

.foto-moldura img {
    width: 100%; 
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    transition: transform 0.4s ease;
    cursor: pointer;
}

.foto-moldura img:hover {
    transform: scale(1.05);
}

/* 7. LINKS E BOTÕES CHAMATIVOS */
.links-container { 
    display: flex; 
    flex-direction: column; 
    gap: 14px; 
    margin-top: 20px; 
}

.card-link {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #FAF0E6 0%, #F5E6D3 100%);
    padding: 16px 18px;
    text-decoration: none;
    border-radius: 18px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.card-link:hover, .card-link:active {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #F5E6D3 0%, #EBD5BC 100%);
    box-shadow: 0 10px 22px rgba(212, 175, 55, 0.35);
}

.card-link.botao-whatsapp {
    animation: chamada-whatsapp 3s infinite ease-in-out;
}

@keyframes chamada-whatsapp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(37, 211, 102, 0.25); }
}

.texto {
    display: flex;
    flex-direction: column;
    text-align: left;
    width: 100%;
}

.titulo-link { 
    display: block;
    font-family: 'Playfair Display', serif;
    font-weight: 800; 
    color: #2b1d14; 
    font-size: clamp(15px, 3.8vw, 17px); 
}

.subtitulo-link { 
    display: block; 
    font-size: clamp(12px, 3vw, 13px); 
    color: #5c4e43; 
    margin-top: 3px;
    font-weight: 600;
}

/* 8. CARD DA FOTO 2 (AJUSTE PERFEITO DA IMAGEM SEM CORTES) */
.card-banner-foto2 {
    background: linear-gradient(135deg, #FAF0E6 0%, #F5E6D3 100%);
    border-radius: 20px;
    padding: 16px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 5px;
}

.wrapper-foto2 {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    background-color: #ffffff;
}

.foto2-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
    cursor: pointer;
}

.wrapper-foto2:hover .foto2-img {
    transform: scale(1.04);
}

.conteudo-mensagem {
    text-align: center;
    padding: 4px 8px;
}

.diamante-icone {
    font-size: 32px;
    line-height: 1;
    margin-bottom: 8px;
}

.frase-mural {
    font-size: clamp(13px, 3.5vw, 15px);
    font-weight: 700;
    color: #2b1d14;
    line-height: 1.5;
}

/* 9. SELO DE SEGURANÇA */
.selos-confianca {
    margin-top: 22px;
    font-size: 12px;
    color: #444;
    font-weight: 600;
    opacity: 0.85;
}

/* 10. RODAPÉ */
footer { 
    margin-top: 25px; 
    font-size: 12px; 
    opacity: 0.9; 
    line-height: 1.5; 
}

.frase-final {
    font-family: 'Playfair Display', serif;
    font-size: clamp(16px, 4vw, 19px);
    font-weight: 900; 
    color: #111;
    margin-bottom: 6px;
}
