* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

/* Área do Perfil */
.profile {
    margin-bottom: 40px;
}

.name {
    color: #ffa500;
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.subtitle {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Botão WhatsApp */
.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(45deg, #ff8c00, #ffa500);
    color: #000;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.4);
    transition: all 0.3s ease;
    border: 3px solid #ffd700;
}

.whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
    background: linear-gradient(45deg, #ffa500, #ffd700);
}

.whatsapp-btn i {
    font-size: 2rem;
    color: #000;
}

.whatsapp-btn span {
    color: #000;
}

/* Responsivo para Celular */
@media (max-width: 480px) {
    .name {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .whatsapp-btn {
        padding: 18px 30px;
        font-size: 1.1rem;
    }
    
    .whatsapp-btn i {
        font-size: 1.7rem;
    }
}

@media (max-width: 320px) {
    .name {
        font-size: 1.6rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
    
    .whatsapp-btn {
        padding: 15px 25px;
        font-size: 1rem;
        flex-direction: column;
        gap: 8px;
    }
}

/* ================= FOTO DE PERFIL ================= */

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%; /* Círculo perfeito */
    object-fit: cover; /* Mantém proporção sem distorcer */
    border: 5px solid #ffa500; /* Borda laranja */
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.5); /* Brilho laranja */
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.profile-img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8); /* Brilho amarelo no hover */
}

/* ================= RESPONSIVO ================= */

/* Tablets */
@media (max-width: 768px) {
    .profile-img {
        width: 130px;
        height: 130px;
        border: 4px solid #ffa500;
    }
}

/* Celulares */
@media (max-width: 480px) {
    .profile-img {
        width: 120px;
        height: 120px;
        border: 4px solid #ffa500;
    }
}

/* Celulares pequenos */
@media (max-width: 320px) {
    .profile-img {
        width: 100px;
        height: 100px;
        border: 3px solid #ffa500;
    }
}