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

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(rgba(10,0,30,0.9), rgba(0,0,0,0.95)),
                url("../img/datacenter.png");
    background-size: cover;
    background-position: center;
    color: #eee;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: auto;
}

.header {
    text-align: center;
    padding: 60px 20px;
}

.header h1 {
    font-size: 2.5rem;
    color: #a855f7;
}

.header p {
    color: #ccc;
}

.legal-content {
    background: rgba(20, 20, 40, 0.9);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
}

h2 {
    color: #c084fc;
    margin-top: 30px;
}

h3 {
    margin-top: 15px;
}

p {
    margin-bottom: 10px;
}

ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 5px;
}

.importante {
    color: #eeee;
    font-weight: bold;
}

.footer {
    text-align: center;
    padding: 20px;
    background: rgba(0,0,0,0.8);
}