:root { --bg-dark: #0a0a0a; --bg-light: #141414; --text-main: #f5f5f5; --text-muted: #a3a3a3; --accent: #dfa85e; --accent-hover: #c48f46; }
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { width: 100%; max-width: 100vw; background-color: var(--bg-dark); color: var(--text-main); font-family: 'Inter', sans-serif; overflow-x: hidden; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
h1, h2, h3, .serif { font-family: 'Playfair Display', serif; }
a { text-decoration: none; }
a[href^="tel"], a[href^="mailto"] { color: var(--accent) !important; text-decoration: none !important; transition: 0.3s; }
img { user-drag: none; -webkit-user-drag: none; user-select: none; -webkit-user-select: none; }

#preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--bg-dark); z-index: 99999; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: opacity 0.8s ease; }
.loader-wrapper { position: relative; display: flex; flex-direction: column; align-items: center; margin-top: 60px; }
.spout { position: absolute; top: -65px; left: 50%; transform: translateX(-50%); width: 18px; height: 20px; background: linear-gradient(to right, #444, #ccc, #444); border-radius: 0 0 8px 8px; z-index: 5; border-bottom: 2px solid #222; }
.coffee-stream { position: absolute; top: -45px; left: 50%; transform: translateX(-50%); width: 6px; height: 110px; background: linear-gradient(to bottom, #2a1005, #7d4427); border-radius: 5px; z-index: 4; animation: pour-flow 0.8s infinite linear; }
@keyframes pour-flow { 0% { width: 5px; opacity: 0.9; } 50% { width: 7.5px; opacity: 1; } 100% { width: 5px; opacity: 0.9; } }
.cup-body { position: relative; width: 100px; height: 85px; background: #111; border: 2px solid #222; border-radius: 5px 5px 40px 40px; overflow: hidden; display: flex; justify-content: center; align-items: center; z-index: 2; box-shadow: 0 10px 20px rgba(0,0,0,0.8); }
.cup-handle { position: absolute; right: -25px; top: 15px; width: 40px; height: 50px; border: 5px solid #111; border-radius: 20px; z-index: 1; }
.cup-liquid { position: absolute; bottom: 0; left: 0; width: 100%; height: 0%; background: linear-gradient(to top, #3b1c0a, #7d4427); z-index: 0; transition: height 0.15s linear; }
.splash { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); width: 25px; height: 6px; background: #c78f56; border-radius: 50%; animation: splashing 0.5s infinite ease-out; z-index: 3; transition: opacity 0.2s; }
@keyframes splashing { 0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; } 100% { transform: translate(-50%, -50%) scale(2); opacity: 0; } }
.cup-logo { position: relative; z-index: 3; width: 35px; filter: drop-shadow(0px 2px 3px rgba(0,0,0,0.6)); }
.steam-container { position: absolute; top: -20px; width: 100%; height: 40px; display: flex; justify-content: space-around; padding: 0 20px; z-index: 1; pointer-events: none; }
.steam { width: 8px; height: 30px; background: #fff; border-radius: 50%; filter: blur(6px); opacity: 0; }
.steam-1 { animation: steam-anim 2s infinite ease-in-out; }
.steam-2 { animation: steam-anim 2s infinite 0.7s ease-in-out; }
@keyframes steam-anim { 0% { transform: translateY(10px) scaleX(1); opacity: 0; } 50% { opacity: 0.15; } 100% { transform: translateY(-40px) scaleX(2.5); opacity: 0; } }
.loading-text { margin-top: 30px; font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--accent); letter-spacing: 2px; }

#event-alert { background-color: var(--accent); color: var(--bg-dark); text-align: center; padding: 10px 5%; font-weight: 600; font-size: 0.9rem; position: fixed; top: 65px; width: 100%; z-index: 98; display: none; box-shadow: 0 4px 10px rgba(0,0,0,0.3); text-transform: uppercase; letter-spacing: 1px; }

nav { position: fixed; top: 0; width: 100%; padding: 15px 5%; height: 65px; display: flex; justify-content: space-between; align-items: center; background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(10px); z-index: 100; border-bottom: 1px solid rgba(255,255,255,0.05); transition: 0.3s; }
.nav-logo { height: 35px; }
.social-nav a { color: var(--text-main); margin-left: 20px; font-size: 1.1rem; transition: 0.3s; }
.social-nav a:hover { color: var(--accent); }

.btn { display: inline-block; padding: 12px 28px; background: transparent; color: var(--text-main); border: 1px solid var(--accent); border-radius: 4px; text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; cursor: pointer; transition: 0.4s; text-align: center; }
.btn:hover { background: var(--accent); color: var(--bg-dark); }
.btn-solid { background: var(--accent); color: var(--bg-dark); border-color: var(--accent); }
.btn-solid:hover { background: var(--accent-hover); }

.hero { position: relative; height: 100vh; width: 100%; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-video { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; width: auto; height: auto; transform: translate(-50%, -50%); object-fit: cover; opacity: 0.3; z-index: 0; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.4) 50%, var(--bg-dark) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; margin-top: 60px; padding: 0 20px; }
.hero-content img { width: 80px; margin-bottom: 30px; opacity: 0.9; }
.hero-content h1 { font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.2; margin-bottom: 20px; font-weight: 400; }
.hero-content p { color: var(--text-muted); font-size: 1.1rem; letter-spacing: 1px; margin-bottom: 40px; }

section { padding: 100px 5%; width: 100%; overflow: hidden; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 15px; font-weight: 400; color: var(--accent); }
.section-subtitle { text-align: center; color: var(--text-muted); margin-bottom: 60px; font-weight: 300; max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.6; }

/* --- DISEÑO DE EVENTOS Y NOVEDADES --- */
.events-grid-new { display: grid; grid-template-columns: repeat(auto-fit, minmax(480px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
.events-grid-new.single-event { display: flex; justify-content: center; }
.events-grid-new.single-event .event-card-horiz { max-width: 700px; width: 100%; }
.event-card-horiz { display: flex; background: var(--bg-light); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; overflow: hidden; transition: 0.4s; align-items: stretch; }
.event-card-horiz:hover { transform: translateY(-5px); border-color: rgba(223, 168, 94, 0.3); box-shadow: 0 15px 30px rgba(0,0,0,0.4); }
.ec-image { width: 45%; position: relative; flex-shrink: 0; min-height: 250px; overflow: hidden; }
.ec-image img { width: 100%; height: 100%; object-fit: cover; position: absolute; top:0; left:0; transition: 0.5s; filter: brightness(0.85); }
.event-card-horiz:hover .ec-image img { transform: scale(1.05); filter: brightness(1); }
.ec-image:hover .zoom-icon { opacity: 1 !important; transform: translate(-50%, -50%) scale(1) !important; }
.ec-date { position: absolute; top: 15px; left: 15px; background: linear-gradient(135deg, var(--accent), var(--accent-hover)); color: var(--bg-dark); padding: 8px 12px; border-radius: 8px; text-align: center; line-height: 1.1; box-shadow: 0 5px 15px rgba(0,0,0,0.5); z-index: 2;}
.ec-date .day { display: block; font-size: 1.6rem; font-weight: 700; font-family: 'Playfair Display', serif; }
.ec-date .month { display: block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;}
.ec-body { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; justify-content: center; }

/* ESTILOS PARA FORMATO DE TEXTO ENRIQUECIDO */
.ec-body-desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 15px; line-height: 1.6; text-align: left; }
.ec-body-desc p { margin-bottom: 8px; }
.ec-body-desc p:last-child { margin-bottom: 0; }
.ec-body-desc ul, .ec-body-desc ol { margin-left: 20px; margin-bottom: 8px; }
.ec-body-desc strong, .ec-body-desc b { color: #f5f5f5; font-weight: 600; }

.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.news-card { background: var(--bg-light); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; display: flex; flex-direction: column; text-align: left; position: relative; transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); }
.news-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(223, 168, 94, 0.15); border-color: rgba(223, 168, 94, 0.3); }
.news-image-wrapper { position: relative; width: 100%; height: 220px; border-radius: 11px 11px 0 0; }
.news-image-inner { width: 100%; height: 100%; overflow: hidden; border-radius: 11px 11px 0 0; }
.news-image-inner img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s ease; filter: brightness(0.85); }
.news-card:hover .news-image-inner img { transform: scale(1.1); filter: brightness(1); }
.news-date-badge { position: absolute; bottom: -20px; right: 30px; z-index: 10; background: linear-gradient(135deg, var(--accent), var(--accent-hover)); color: var(--bg-dark); padding: 12px 18px; border-radius: 8px; text-align: center; box-shadow: 0 10px 20px rgba(0,0,0,0.5); }
.news-date-badge .day { display: block; font-size: 2rem; font-weight: 700; line-height: 1; font-family: 'Playfair Display', serif; }
.news-date-badge .month { display: block; font-size: 0.85rem; font-weight: 600; letter-spacing: 2px; margin-top: 3px; }
.news-body { padding: 40px 30px 30px; flex-grow: 1; position: relative; z-index: 1; }
.news-list { list-style: none; margin-bottom: 20px; }
.news-list li { color: var(--text-main); margin-bottom: 12px; font-size: 0.9rem; display: flex; align-items: flex-start; }
.news-list li i { color: var(--accent); margin-right: 12px; margin-top: 4px; font-size: 1.1rem; }

.culture-container { display: flex; flex-direction: column; gap: 80px; max-width: 1100px; margin: 0 auto; }
.culture-row { display: flex; align-items: center; gap: 60px; width: 100%; }
.culture-row.reverse { flex-direction: row-reverse; }
.culture-text { flex: 1; text-align: justify; }
.culture-text h3 { font-size: 2.2rem; color: var(--accent); margin-bottom: 20px; display: flex; align-items: center; gap: 15px; }
.culture-text p { line-height: 1.8; color: var(--text-muted); font-size: 1.05rem; }
.culture-img-wrapper { flex: 1; position: relative; border-radius: 12px; width: 100%; max-width: 100%; }
.culture-img-wrapper::before { content: ''; position: absolute; top: -15px; left: -15px; width: 100%; height: 100%; border: 2px solid var(--accent); border-radius: 12px; z-index: 0; transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1); }
.culture-row.reverse .culture-img-wrapper::before { left: auto; right: -15px; }
.culture-img-container { position: relative; z-index: 1; border-radius: 12px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.6); }
.culture-img { width: 100%; height: 380px; object-fit: cover; transition: transform 0.8s ease, filter 0.8s ease; filter: brightness(0.85); display: block; }
.culture-img-wrapper:hover .culture-img { transform: scale(1.08); filter: brightness(1.1); }
.culture-img-wrapper:hover::before { top: 15px; left: 15px; background: rgba(223, 168, 94, 0.05); }

.gallery-container { width: 100%; max-width: 1200px; margin: 0 auto; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); grid-auto-rows: 250px; gap: 15px; margin-top: 40px; min-height: 515px; }
.gallery-item { position: relative; border-radius: 12px; overflow: hidden; cursor: pointer; border: 1px solid rgba(255,255,255,0.05); animation: fadeIn 0.5s ease forwards; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(80%) contrast(1.2) sepia(20%); transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); }
.gallery-item::after { content: '\f00e'; font-family: "Font Awesome 5 Free"; font-weight: 900; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0); color: var(--accent); font-size: 2rem; opacity: 0; transition: all 0.4s ease; z-index: 2; pointer-events: none;}
.gallery-item::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10, 10, 10, 0.6); opacity: 0; transition: 0.4s ease; z-index: 1; pointer-events: none;}
.gallery-item:hover img { filter: grayscale(0%) contrast(1) sepia(0%); transform: scale(1.1); }
.gallery-item:hover::before { opacity: 1; }
.gallery-item:hover::after { transform: translate(-50%, -50%) scale(1); opacity: 1; }
.pagination-controls { display: flex; justify-content: center; align-items: center; gap: 15px; margin-top: 40px; }
.page-btn { background: var(--bg-light); color: var(--text-main); border: 1px solid rgba(255,255,255,0.1); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: 0.3s; font-size: 1rem; }
.page-btn:hover:not(:disabled) { background: var(--accent); color: var(--bg-dark); border-color: var(--accent); }
.page-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.page-info { color: var(--text-muted); font-size: 0.9rem; letter-spacing: 1px; font-family: 'Inter', sans-serif; }

#lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(5, 5, 5, 0.95); backdrop-filter: blur(10px); z-index: 999999; display: flex; justify-content: center; align-items: center; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; }
#lightbox.active { opacity: 1; pointer-events: auto; }
#lightbox img { max-width: 90%; max-height: 85vh; border-radius: 8px; box-shadow: 0 20px 50px rgba(0,0,0,0.8); transform: scale(0.9); transition: transform 0.4s ease; }
#lightbox.active img { transform: scale(1); }
.lightbox-close { position: absolute; top: 30px; right: 40px; color: var(--text-muted); font-size: 2.5rem; cursor: pointer; transition: 0.3s; z-index: 10; }
.lightbox-close:hover { color: var(--accent); }

.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.menu-card { background: var(--bg-light); border: 1px solid rgba(255,255,255,0.05); border-radius: 8px; transition: 0.3s; text-align: left; overflow: hidden; display: flex; flex-direction: column; }
.menu-card:hover { transform: translateY(-10px); border-color: rgba(223, 168, 94, 0.3); }
.menu-image { width: 100%; height: 220px; object-fit: cover; border-bottom: 3px solid var(--accent); }
.menu-content { padding: 30px; flex-grow: 1; }
.menu-content h3 { font-size: 1.8rem; margin-bottom: 15px; color: var(--text-main); display: flex; align-items: center; }
.menu-content ul { list-style: none; margin-bottom: 0; text-align: left; }
.menu-content ul li { color: var(--text-muted); margin-bottom: 12px; font-size: 0.95rem; padding-left: 20px; position: relative; }
.menu-content ul li::before { content: '•'; position: absolute; left: 0; color: var(--accent); font-size: 1.2rem; line-height: 0.8; }

.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.plan-card { position: relative; overflow: hidden; background: var(--bg-light); border: 1px solid rgba(255,255,255,0.05); padding: 40px 30px; border-radius: 8px; transition: 0.3s; text-align: left; }
.plan-card:hover { transform: translateY(-10px); border-color: rgba(223, 168, 94, 0.3); }
.card-watermark { position: absolute; top: -20px; right: -20px; font-size: 9rem; color: var(--accent); opacity: 0.03; z-index: 0; transform: rotate(15deg); transition: 0.6s cubic-bezier(0.25, 0.8, 0.25, 1); pointer-events: none; }
.plan-card:hover .card-watermark { transform: rotate(0deg) scale(1.1); opacity: 0.08; }
.plan-card h3, .plan-card .duration, .plan-card ul, .plan-card .btn { position: relative; z-index: 1; }
.plan-card h3 { font-size: 1.8rem; margin-bottom: 10px; color: var(--text-main); }
.plan-card .duration { color: var(--accent); font-size: 0.9rem; margin-bottom: 25px; letter-spacing: 1px; }
.plan-card ul { list-style: none; margin-bottom: 30px; text-align: left; }
.plan-card ul li { color: var(--text-muted); margin-bottom: 10px; font-size: 0.9rem; padding-left: 20px; position: relative; }
.plan-card ul li::before { content: '•'; position: absolute; left: 0; color: var(--accent); }

.contact-wrapper { display: flex; justify-content: center; align-items: center; gap: 40px; position: relative; max-width: 1200px; margin: 0 auto; }
.contact-side-image { display: none; width: 280px; height: 450px; border-radius: 12px; object-fit: cover; box-shadow: 0 20px 40px rgba(0,0,0,0.6); opacity: 0.8; transition: 0.4s; border: 1px solid rgba(255,255,255,0.05); }
.contact-side-image:hover { opacity: 1; border-color: rgba(223, 168, 94, 0.4); }
.floating-left { animation: float-img 6s ease-in-out infinite; }
.floating-right { animation: float-img 6s ease-in-out infinite 3s; }
@keyframes float-img { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }
.contact-container { flex-grow: 1; max-width: 550px; background: var(--bg-light); padding: 50px; border-radius: 8px; z-index: 2; width: 100%;}
.form-group { margin-bottom: 25px; }
.form-group input, .form-group textarea { width: 100%; padding: 15px; background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1); color: var(--text-main); border-radius: 4px; font-family: 'Inter', sans-serif; transition: 0.3s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-hp { display: none; }

.music-btn { position: fixed; bottom: 15px; left: 15px; z-index: 99; background: rgba(20,20,20,0.4); border: 1px solid rgba(255,255,255,0.05); color: rgba(163, 163, 163, 0.6); padding: 6px 12px; border-radius: 30px; cursor: pointer; display: flex; align-items: center; gap: 6px; font-size: 0.7rem; letter-spacing: 1px; backdrop-filter: blur(3px); transition: 0.3s; }
.music-btn:hover { color: var(--accent); border-color: var(--accent); background: rgba(20,20,20,0.9); }
.wa-btn { position: fixed; bottom: 15px; right: 15px; z-index: 99; background: rgba(37, 211, 102, 0.75); color: white; width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; box-shadow: 0 4px 10px rgba(0,0,0,0.2); cursor: pointer; transition: 0.3s; animation: pulse-wa-subtle 3s infinite; }
.wa-btn:hover { transform: scale(1.05); background: #25d366; opacity: 1; }
@keyframes pulse-wa-subtle { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.3); } 70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

.main-footer { position: relative; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.05); background-color: var(--bg-dark); text-align: left; }
.footer-video { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; width: auto; height: auto; transform: translate(-50%, -50%); object-fit: cover; opacity: 0.15; z-index: 0; }
.footer-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.7) 100%); z-index: 1; }
.footer-content-wrapper { position: relative; z-index: 2; padding: 70px 5% 30px 5%; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-about img { width: 150px; margin-bottom: 20px; }
.footer-about p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; max-width: 400px; text-align: justify; }
.footer-social { margin-top: 20px; }
.footer-social a { color: var(--text-muted); margin-right: 18px; font-size: 1.2rem; transition: 0.3s; text-decoration: none; }
.footer-social a:hover { color: var(--accent); }
.footer-links h4, .footer-contact h4 { color: var(--text-main); font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 20px; font-weight: 400; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a { color: var(--text-muted); text-decoration: none; transition: 0.3s; font-size: 0.95rem; }
.footer-links ul li a:hover { color: var(--accent); }
.footer-contact p { color: var(--text-muted); margin-bottom: 12px; font-size: 0.95rem; display: flex; align-items: center; gap: 10px; }
.footer-contact i { color: var(--accent); }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); color: var(--text-muted); font-size: 0.85rem; }

/* BARISTA VIRTUAL */
.barista-mascot { position: fixed; bottom: 20px; left: 20px; width: 110px; z-index: 90; filter: drop-shadow(0px 10px 15px rgba(0,0,0,0.6)) drop-shadow(0px 0px 0px rgba(223, 168, 94, 0)); transform-origin: bottom center; cursor: pointer; animation: barista-entrance 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; }
.barista-mascot:hover { transform: scale(1.15) translateY(-15px) rotate(5deg) !important; filter: drop-shadow(0px 15px 25px rgba(0,0,0,0.4)) drop-shadow(0px 0px 25px rgba(223, 168, 94, 0.9)); animation: none !important; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); }
.barista-bubble { position: fixed; bottom: 220px; left: 50px; background: #dfa85e; color: #0a0a0a; padding: 12px 18px; border-radius: 20px 20px 20px 0; font-size: 0.85rem; font-weight: 600; z-index: 91; box-shadow: 0 5px 15px rgba(0,0,0,0.5); opacity: 0; transform-origin: bottom left; pointer-events: none; }
.barista-mascot:hover + .barista-bubble { animation: bubble-pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; }
@keyframes bubble-pop { 0% { opacity: 0; transform: translateY(20px) scale(0.3) rotate(-15deg); } 100% { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); } }
@keyframes barista-entrance { 0% { transform: translateY(150px) scale(0.5); opacity: 0; } 100% { transform: translateY(0) scale(1); opacity: 1; } }
.scena_1 { animation: barista-float 4s ease-in-out infinite; }
@keyframes barista-float { 0%, 100% { transform: translateY(0) scale(1) rotate(0deg); } 50% { transform: translateY(-8px) scale(1.02) rotate(2deg); } }
.scena_2 { animation: barista-grind 1.5s ease-in-out infinite; }
@keyframes barista-grind { 0%, 100% { transform: translateY(0) rotate(0deg); } 15%, 45%, 75% { transform: translateY(-3px) rotate(-4deg); } 30%, 60%, 90% { transform: translateY(3px) rotate(4deg); } }
.scena_3 { animation: barista-peek 3s ease-in-out infinite; }
@keyframes barista-peek { 0%, 100% { transform: rotate(0deg) scale(1); } 50% { transform: rotate(12deg) scale(1.05) translateX(10px); } }
.scena_4 { animation: barista-jump 2.5s ease-in-out infinite; }
@keyframes barista-jump { 0%, 100% { transform: translateY(0); } 20% { transform: translateY(-25px) scaleY(1.1); } 40% { transform: translateY(0) scaleY(0.9); } 60% { transform: translateY(-15px) scaleY(1.05); } 80% { transform: translateY(0) scaleY(0.95); } }

/* RESPONSIVE */
@media (min-width: 1024px) { .contact-side-image { display: block; } }
@media (max-width: 768px) {
    .events-grid-new { grid-template-columns: 1fr; }
    .event-card-horiz { flex-direction: column; }
    .ec-image { width: 100%; height: 220px; }
    .footer-grid { grid-template-columns: 1fr; }
    .culture-row, .culture-row.reverse { flex-direction: column; gap: 30px; }
}
@media (max-width: 480px) {
    .barista-mascot { width: 85px; left: 10px; bottom: 10px; }
    .barista-bubble { bottom: 180px; left: 30px; font-size: 0.75rem; }
}