<!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Medmix Presentation</title> <style> @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap'); :root { --medmix-light-teal: #88c6d9; --medmix-dark-teal: #2a6c7d; --medmix-light-gray: #e8eef0; --medmix-gray: #a0aeb2; --medmix-white: #ffffff; } body { font-family: 'Montserrat', sans-serif; margin: 0; padding: 20px; background-color: #f5f5f5; display: flex; flex-direction: column; align-items: center; min-height: 100vh; } .slide { width: 800px; height: 450px; margin: 20px 0; border-radius: 10px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); position: relative; background-color: white; } /* Slide 1: Staircase */ .slide-1 { background: linear-gradient(135deg, var(--medmix-light-gray) 0%, var(--medmix-white) 100%); display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 20px; } .staircase { position: relative; width: 600px; height: 250px; margin-top: 30px; } .step { position: absolute; height: 40px; background: var(--medmix-light-teal); border-radius: 5px; display: flex; align-items: center; padding: 0 15px; box-sizing: border-box; color: white; font-weight: 600; box-shadow: 0 2px 10px rgba(0,0,0,0.1); transition: all 0.5s ease; } .step-1 { width: 180px; bottom: 0; left: 0; background-color: var(--medmix-light-teal); } .step-2 { width: 220px; bottom: See more