/* 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: 20px 5%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px); /* Efeito de vidro */
    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; /* Dourado/Laranja */
}

/* Container e Card Flutuante */
.container-principal {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 50px;
}

.card-apresentacao {
    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: 40px;
    display: flex;
    gap: 40px;
    align-items: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    
    /* Efeito Flutuante */
    animation: flutuar 4s ease-in-out infinite;
}

@keyframes flutuar {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* 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);
}

/* 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;
    }

    .foto-perfil {
        width: 180px;
        height: 180px;
    }

    h1 {
        font-size: 1.8rem;
    }
}