/* Infomedik - Custom Styles */
* { font-family: 'Inter', sans-serif; }
html { overflow-x: hidden; }
:root {
    --primary: #0066CC;
    --primary-dark: #0052A3;
    --accent: #00A878;
}
body { min-height: 100vh; overflow-x: hidden; }
.hero-gradient {
    background: url('https://centrodecirugia.org/images/library02.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.hero-content-box {
    background: linear-gradient(135deg, rgba(23, 30, 55, 0.9) 0%, rgba(22, 33, 62, 0.9) 50%, rgba(15, 52, 96, 0.9) 100%);
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}
.newsletter-box {
    background: linear-gradient(135deg, rgba(23, 30, 55, 0.95) 0%, rgba(22, 33, 62, 0.95) 50%, rgba(15, 52, 96, 0.95) 100%);
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.card-hover { transition: all 0.3s ease; }
.card-hover:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.1); }
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 700px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}
.menu-trigger:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 28px;
}
.book-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.book-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,102,204,0.15); }
.stat-number {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
