/* ESTILIZAÇÃO COMPLETA - FOTOGRAFIA PREMIUM */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: #0b0f19;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 30px 15px;
    position: relative;
    overflow-x: hidden;
}

/* Imagem de Fundo Dinâmica com Filtro Cinematográfico */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.25) contrast(1.1) blur(2px);
    z-index: -1;
    transition: background-image 1.5s ease-in-out; /* Transição suave controlada por JS */
}

.container {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* Cartão do Perfil (Glassmorphism Luxo) */
.profile-card {
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.avatar-container {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto 20px;
}

#profileImg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.status-badge {
    position: absolute;
    bottom: -2px;
    right: -10px;
    background: #111827;
    color: #f3f4f6;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    white-space: nowrap;
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

.profile-card h1 {
    font-family: 'Playfair Display', serif;
    color: #f8fafc;
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.profile-card p {
    color: #94a3b8;
    font-size: 0.92rem;
    line-height: 1.6;
}

/* Grade de Botões de Contato */
.quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    color: #f8fafc;
    transition: all 0.3s ease;
}

/* Estilo Minimalista de Botões de Ação */
.call-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.whatsapp-btn {
    background: #ffffff;
    color: #0b0f19;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.05);
}

.whatsapp-btn:hover {
    background: #e2e8f0;
}

/* Links em Lista */
.links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dynamic-link {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #f8fafc;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.link-icon-wrapper {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.1rem;
    color: #f8fafc;
    transition: all 0.3s;
}

.link-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.link-title {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.link-subtitle {
    font-size: 0.8rem;
    color: #64748b;
}

.arrow-icon {
    font-size: 0.8rem;
    color: #475569;
    transition: transform 0.3s;
}

/* Interações Hover */
.dynamic-link:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
    transform: scale(1.01);
}

.dynamic-link:hover .link-icon-wrapper {
    background: #ffffff;
    color: #0b0f19;
}

.dynamic-link:hover .arrow-icon {
    transform: translateX(3px);
    color: #ffffff;
}

/* Rodapé */
.site-footer {
    text-align: center;
    padding: 15px 0 10px;
    color: #475569;
    font-size: 0.78rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-hours {
    color: #64748b;
}

img {
  width: 100px; /* Força a imagem a ter 300 pixels de largura */
  height: auto; /* Mantém a proporção original da altura */
}