:root {
    --primary: #7B68EE;
    --primary-gradient: linear-gradient(135deg, #7B68EE, rgb(104, 142, 238));
    --dark: #0a0a0a;
    --darker: #000000;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body {
    background: var(--darker);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(106, 0, 255, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(98, 0, 255, 0.05) 0%, transparent 20%);
    min-height: 100vh;
    color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    padding: 20px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(72, 0, 255, 0.1);
}

.header h1 {
    font-size: 2.5em;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn {
    background: var(--primary-gradient);
    color: var(--darker);
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(128, 0, 255, 0.2);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(89, 0, 255, 0.3);
}

/* Calendário */
.calendario {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(72, 0, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 20px;
}

.calendario th {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 15px;
    font-weight: bold;
}

.calendario td {
    height: 120px;
    border: 1px solid rgba(72, 0, 255, 0.1);
    padding: 10px;
    vertical-align: top;
}

.hoje {
    background: rgba(123, 104, 238, 0.1);
    border: 1px solid var(--primary) !important;
}

.evento {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 15px;
    margin: 2px 0;
    font-size: 0.9em;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.evento:hover {
    transform: scale(1.05);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--dark);
    border: 1px solid rgba(72, 0, 255, 0.1);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    margin: 15% auto;
    padding: 30px;
    position: relative;
    color: var(--white);
}

/* Formulários */
input[type="text"],
input[type="password"],
input[type="date"],
textarea {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    background: var(--darker);
    border: 1px solid rgba(72, 0, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="date"]:focus,
textarea:focus {
    border-color: var(--primary);
    outline: none;
}
