/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
    min-height: 100vh;
}

/* Container */
.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.card-wrapper {
    width: 100%;
    max-width: 28rem;
}

/* Business Card */
.business-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.business-card:hover {
    transform: scale(1.05);
}

/* Header Section */
.header {
    background: black;
    color: white;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.header-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, black 0%, #1f2937 50%, black 100%);
    opacity: 0.9;
}

.header-content {
    position: relative;
    z-index: 10;
}

.brand-title {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.brand-digicyclops {
    font-style: italic;
    font-weight: 100;
}

.brand-photography {
    font-weight: 300;
}

/* Decorative Elements */
.decoration-large {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 4rem;
    height: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.decoration-small {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    width: 2rem;
    height: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

/* Profile Section */
.profile-section {
    padding: 2rem;
    padding-top: 1.5rem;
    padding-bottom: 1rem;
}

.profile-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.profile-image-container {
    position: relative;
}

.profile-image {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    border: 4px solid white;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.profile-info {
    flex: 1;
}

.name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.title {
    color: #4b5563;
    font-weight: 500;
}

.company {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Contact Links */
.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.contact-link:hover {
    transform: translateY(-1px);
}

.contact-link.website:hover {
    background: #eff6ff;
    color: #2563eb;
}

.contact-link.phone:hover {
    background: #f0fdf4;
    color: #16a34a;
}

.contact-link.email:hover {
    background: #fef2f2;
    color: #dc2626;
}

.contact-link.instagram:hover {
    background: #fdf2f8;
    color: #ec4899;
}

.contact-link.linkedin:hover {
    background: #eff6ff;
    color: #1d4ed8;
}

.contact-link.whatsapp:hover {
    background: #f0fdf4;
    color: #16a34a;
}

.contact-link.facebook:hover {
    background: #eff6ff;
    color: #2563eb;
}

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4b5563;
    transition: transform 0.2s ease;
}

.contact-link:hover .contact-icon {
    transform: scale(1.1);
}

.contact-text {
    flex: 1;
}

.contact-main {
    font-weight: 500;
    color: #111827;
}

.contact-sub {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 0.75rem;
}

.btn-primary {
    flex: 1;
    background: #111827;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    border: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: #1f2937;
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: #f3f4f6;
    color: #374151;
    padding: 1rem;
    border-radius: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
}

.btn-secondary:active {
    transform: translateY(0);
}

.btn-secondary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 1.5rem;
}

.footer p {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Responsive Design */
@media (max-width: 640px) {
    .container {
        padding: 0.5rem;
    }
    
    .profile-section {
        padding: 1.5rem;
    }
    
    .header {
        padding: 1.5rem;
    }
    
    .brand-title {
        font-size: 1.25rem;
    }
    
    .name {
        font-size: 1.25rem;
    }
    
    .profile-header {
        gap: 0.75rem;
    }
    
    .profile-image {
        width: 4rem;
        height: 4rem;
    }
    
    .contact-links {
        gap: 0.5rem;
    }
    
    .contact-link {
        padding: 0.625rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .btn-secondary {
        align-self: center;
        width: fit-content;
    }
}