/* root/css/styles.css */
@import url("./navbar.css");
@import url("./cards.css");
@import url("./tipografia.css");
@import url("./img-styles.css");
:root {
    --primary-gradient: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    --accent-color: #6a11cb;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    background: #0f0c29; 
    background: linear-gradient(to right, #24243e, #302b63, #0f0c29);
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}