:root {
    --color-morado: #73316e;
    --color-magenta: #c5256e;
    --color-rosa: #ea504e;
    --color-naranja-rojo: #e65232;
    --color-naranja: #f7941d;
    --color-cyan: #81c4ca;
    
    --primary-color: #73316e;
    --secondary-color: #81c4ca;
    --accent-color: #f7941d;
    --text-dark: #333;
    --text-light: #666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background: #ffffff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}
/* Overlay colorido sobre la imagen de fondo */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(115, 49, 110, 0.7) 0%,
        rgba(197, 37, 110, 0.6) 25%,
        rgba(234, 80, 78, 0.6) 50%,
        rgba(247, 148, 29, 0.6) 75%,
        rgba(129, 196, 202, 0.7) 100%
    );
    z-index: 0;
    pointer-events: none;
}

main{
  flex: 1;
}