/* style.css - Localizado em C:\xampp\htdocs\atmantecnologia\ */

@import url('header.css');
@import url('index.css');
@import url('footer.css');

:root {
    --primary: #1e3a8a;
    --accent: #3b82f6;
    --white: #ffffff;
    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    overflow-x: hidden;
}