/* Estilos Base */
:root { --bg-color: #fdfaf6; --text-color: #1a1a1a; --card-bg: #ffffff; --shadow: 0 8px 24px rgba(0,0,0,0.06); --border-radius: 16px; --font-heading: 'Playfair Display', serif; --font-body: 'Lato', sans-serif; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: var(--bg-color); color: var(--text-color); font-family: var(--font-body); line-height: 1.6; }
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 30px 5%; background-color: var(--bg-color); position: sticky; top: 0; z-index: 100; }
.logo { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; }
.nav-links a { text-decoration: none; color: var(--text-color); margin-left: 25px; font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.nav-links a:hover { color: #666; }
.container { max-width: 1400px; margin: 0 auto; padding: 20px 5%; }
.top-section { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; margin-bottom: 30px; }
.left-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.right-profile { display: flex; flex-direction: column; gap: 30px; }
.art-card, .artist-card, .bio-box { background-color: var(--card-bg); border-radius: var(--border-radius); box-shadow: var(--shadow); overflow: hidden; }
.art-card { display: flex; flex-direction: column; }
.img-placeholder, .artist-photo-placeholder { width: 100%; aspect-ratio: 4/3; background-color: #e0e0e0; display: flex; align-items: center; justify-content: center; color: #888; }
.art-info { padding: 15px 20px; font-size: 0.9rem; color: #444; }
.art-info strong { color: var(--text-color); font-size: 1rem; display: block; margin-bottom: 5px; }
.bio-box { padding: 30px; flex-grow: 1; }
.bio-box h2 { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 15px; color: var(--text-color); font-weight: 400; }
.bottom-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-bottom: 60px; }
@media (max-width: 1024px) { .top-section { grid-template-columns: 1fr; } .bottom-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .navbar { flex-direction: column; gap: 15px; } .left-gallery { grid-template-columns: 1fr; } .bottom-gallery { grid-template-columns: 1fr; } }
