* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #ff1493 0%, #ff69b4 50%, #ffb6c1 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

body::before {
    content: '👗';
    position: absolute;
    font-size: 80px;
    opacity: 0.15;
    animation: float1 20s infinite ease-in-out;
    top: 10%;
    left: 10%;
}

body::after {
    content: '👚';
    position: absolute;
    font-size: 60px;
    opacity: 0.15;
    animation: float2 25s infinite ease-in-out;
    top: 70%;
    right: 15%;
}

@keyframes float1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(10deg);
    }
    50% {
        transform: translate(-20px, 20px) rotate(-10deg);
    }
    75% {
        transform: translate(40px, 10px) rotate(5deg);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-40px, 20px) rotate(-15deg);
    }
    50% {
        transform: translate(30px, -30px) rotate(15deg);
    }
    75% {
        transform: translate(-20px, -10px) rotate(-5deg);
    }
}

.container {
    width: 100%;
    max-width: 500px;
}

.vcard {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 30px;
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-section {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #ff69b4;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.3);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.profile-info {
    text-align: center;
    margin-bottom: 30px;
}

.name {
    font-size: 28px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 700;
}

.title {
    font-size: 16px;
    color: #ff69b4;
    margin-bottom: 15px;
    font-weight: 600;
}

.bio {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    padding: 0 10px;
}

.contact-buttons {
    display: grid;
    gap: 12px;
    margin-bottom: 30px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 20px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn:active {
    transform: translateY(0);
}

.btn i {
    font-size: 20px;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.btn-phone {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
}

.btn-email {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.btn-instagram {
    background: linear-gradient(135deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
    color: white;
}

.btn-maps {
    background: linear-gradient(135deg, #4285F4, #34A853);
    color: white;
}

.btn-save {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    width: 100%;
}

.info-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(255, 182, 193, 0.1));
    border-radius: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
    font-size: 14px;
}

.info-item i {
    color: #ff69b4;
    font-size: 18px;
    width: 25px;
}

.save-contact {
    text-align: center;
}

@media (max-width: 480px) {
    .vcard {
        padding: 30px 20px;
    }
    
    .name {
        font-size: 24px;
    }
    
    .logo {
        width: 120px;
        height: 120px;
    }
    
    .btn {
        padding: 12px 16px;
        font-size: 15px;
    }
}

@media (min-width: 768px) {
    .contact-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .btn-save {
        grid-column: 1 / -1;
    }
    
    .btn-maps {
        grid-column: 1 / -1;
    }
}
