/* Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(circle, #1a1a1a 0%, #0a0a0a 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Header Diferenciado */
.header-efeito {
    width: 100%;
    padding: 10px 5%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    z-index: 1000;
    text-align: center;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.logo span {
    color: #f7b707;
}

/* Container e Card Flutuante */
.container-principal {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 110px;
    padding-bottom: 40px;
}

.card-apresentacao {
    position: relative;
    top: -10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    padding: 30px;
    display: flex;
    gap: 40px;
    align-items: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    animation: flutuar 4s ease-in-out infinite;
}

@keyframes flutuar {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* Coluna da Esquerda (Foto + WhatsApp) */
.coluna-esquerda {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

/* Foto com Borda Bacana */
.foto-container {
    flex-shrink: 0;
}

.foto-perfil {
    width: 250px;
    height: 325px;
    border-radius: 20px;
    object-fit: cover;
    border: 3px solid #f7b707;
    box-shadow: 0 0 20px rgba(247, 183, 7, 0.3);
}

/* WhatsApp Container - Vertical */
.whatsapp-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.whatsapp-texto {
    font-size: 0.85rem;
    color: #25d366;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.whatsapp-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
}

.whatsapp-icone {
    width: 50px;
    height: 50px;
    color: #25d366;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(37, 211, 102, 0.6));
    animation: alerta-luz 2s ease-in-out infinite;
}

/* Efeito de luz de alerta pulsante */
@keyframes alerta-luz {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(37, 211, 102, 0.6)) 
                drop-shadow(0 0 10px rgba(37, 211, 102, 0.4))
                drop-shadow(0 0 15px rgba(37, 211, 102, 0.2));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 10px rgba(37, 211, 102, 1)) 
                drop-shadow(0 0 20px rgba(37, 211, 102, 0.8))
                drop-shadow(0 0 30px rgba(37, 211, 102, 0.6));
        transform: scale(1.05);
    }
}

.whatsapp-link:hover .whatsapp-icone {
    animation: none;
    filter: drop-shadow(0 0 15px rgba(37, 211, 102, 1)) 
            drop-shadow(0 0 25px rgba(37, 211, 102, 0.9))
            drop-shadow(0 0 35px rgba(37, 211, 102, 0.7));
    transform: scale(1.1);
}

/* Conteúdo de Texto */
h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 15px;
}

h1 span {
    color: #f7b707;
}

.subtitulo {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 20px;
}

.texto-profissional p {
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 20px;
}

.lista-servicos {
    list-style: none;
    margin-bottom: 25px;
}

.lista-servicos li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.badget-info {
    background: rgba(247, 183, 7, 0.1);
    color: #f7b707;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    border: 1px dashed #f7b707;
}

/* Responsividade para Celular */
@media (max-width: 768px) {
    .card-apresentacao {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .coluna-esquerda {
        width: 100%;
    }

    .foto-perfil {
        width: 140px;
        height: 180px;
    }

    .whatsapp-icone {
        width: 45px;
        height: 45px;
    }

    .whatsapp-texto {
        font-size: 0.8rem;
    }

    h1 {
        font-size: 1.8rem;
    }
}