@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;600;700&display=swap');

/* Fallback fonts in case Google Fonts fail to load */
@font-face {
    font-family: 'Orbitron';
    src: local('Orbitron Regular'), local('Orbitron-Regular');
    font-weight: 400;
}

@font-face {
    font-family: 'Rajdhani';
    src: local('Rajdhani Regular'), local('Rajdhani-Regular');
    font-weight: 400;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.5);
}

header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

h1 {
    margin: 0;
    font-size: 3em;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

main {
    padding: 40px 20px;
    position: relative;
}

.topics {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: linear-gradient(135deg, rgba(30, 30, 60, 0.9) 0%, rgba(50, 50, 80, 0.9) 100%);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 30px 25px;
    margin: 15px;
    width: 320px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
    border-color: rgba(102, 126, 234, 0.6);
}

.card h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.4em;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
}

.card p {
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 10px;
    opacity: 0.9;
}

.card.clicked {
    animation: futuristicSpin 1.5s ease-in-out;
}

@keyframes futuristicSpin {
    0% {
        transform: rotateY(0deg) scale(1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    25% {
        transform: rotateY(90deg) scale(1.1);
        box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
    }
    50% {
        transform: rotateY(180deg) scale(1.05);
        box-shadow: 0 20px 50px rgba(255, 119, 198, 0.5);
    }
    75% {
        transform: rotateY(270deg) scale(1.1);
        box-shadow: 0 15px 40px rgba(120, 219, 255, 0.5);
    }
    100% {
        transform: rotateY(360deg) scale(1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
}

.details-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    margin-top: 15px;
    cursor: pointer;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.details-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.details-btn:hover::before {
    left: 100%;
}

.details-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.quiz-section {
    text-align: center;
    margin-top: 60px;
    position: relative;
}

.quiz-section::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
}

#mini-prova-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4); }
    50% { box-shadow: 0 15px 40px rgba(255, 107, 107, 0.7); }
    100% { box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4); }
}

#mini-prova-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

#mini-prova-btn:hover::before {
    left: 100%;
}

#mini-prova-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.7);
    animation: none;
}

/* Responsividade para tablets */
@media (max-width: 768px) {
    header {
        padding: 15px;
    }

    h1 {
        font-size: 1.5em;
    }

    main {
        padding: 15px;
    }

    .card {
        width: 100%;
        max-width: 400px;
        margin: 10px auto;
        padding: 15px;
    }

    .details-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    #mini-prova-btn {
        padding: 12px 24px;
        font-size: 16px;
    }
}

/* Responsividade para celulares */
@media (max-width: 480px) {
    header {
        padding: 10px;
    }

    h1 {
        font-size: 1.2em;
    }

    main {
        padding: 10px;
    }

    .card {
        width: 100%;
        margin: 8px 0;
        padding: 12px;
    }

    .card h2 {
        font-size: 1.1em;
    }

    .card p {
        font-size: 0.9em;
    }

    .details-btn {
        padding: 6px 12px;
        font-size: 12px;
        margin-top: 8px;
    }

    #mini-prova-btn {
        padding: 10px 20px;
        font-size: 14px;
        width: 100%;
        max-width: 200px;
    }

    .quiz-section {
        margin-top: 20px;
    }
}

/* Estilos para o quiz */
#quiz-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(30, 30, 60, 0.95) 0%, rgba(50, 50, 80, 0.95) 100%);
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

#quiz-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #ff6b6b);
}

#question h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8em;
    margin-bottom: 20px;
    text-align: center;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

#question p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
    opacity: 0.9;
}

#options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

#options button {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

#options button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

#options button:hover::before {
    left: 100%;
}

#options button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
    border-color: rgba(102, 126, 234, 0.6);
}

#options button.correct {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border-color: #4CAF50;
    animation: correctAnswer 0.6s ease;
}

@keyframes correctAnswer {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

#options button.incorrect {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    border-color: #f44336;
    animation: incorrectAnswer 0.6s ease;
}

@keyframes incorrectAnswer {
    0% { transform: scale(1); }
    25% { transform: scale(0.95); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

#next-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    margin: 20px auto;
    display: block;
}

#next-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

#next-btn:hover::before {
    left: 100%;
}

#next-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
}

#results {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(30, 30, 60, 0.95) 0%, rgba(50, 50, 80, 0.95) 100%);
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

#results h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

#results p {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
}

#results button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

#results button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

#results button:hover::before {
    left: 100%;
}

#results button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
}

/* Estilos para mensagens de desempenho */
.performance-message {
    margin-top: 15px;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: 600;
    text-align: center;
}

.performance-message.excellent {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.performance-message.good {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.4);
}

.performance-message.fair {
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.4);
}

.performance-message.regular {
    background: linear-gradient(135deg, #FF5722 0%, #D84315 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.4);
}

.performance-message.needs-improvement {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(244, 67, 54, 0.4);
}

/* Estilos para botões de resultado */
.result-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.result-buttons button {
    flex: 1;
    max-width: 200px;
}

#restart-btn {
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A24 100%);
}

#restart-btn:hover {
    background: linear-gradient(135deg, #FF5252 0%, #E53935 100%);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
}

/* Responsividade para quiz */
@media (max-width: 768px) {
    #quiz-container {
        padding: 15px;
    }

    #options button {
        font-size: 14px;
        padding: 8px;
    }

    #next-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    #results button {
        padding: 8px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    #quiz-container {
        padding: 10px;
    }

    #question h3 {
        font-size: 1.1em;
    }

    #question p {
        font-size: 0.9em;
    }

    #options button {
        font-size: 12px;
        padding: 6px;
    }

    #next-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    #results h2 {
        font-size: 1.2em;
    }

    #results p {
        font-size: 0.9em;
    }

    #results button {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* Estilos para páginas detalhadas */
section {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(30, 30, 60, 0.95) 0%, rgba(50, 50, 80, 0.95) 100%);
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #ff6b6b);
}

section h1 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    position: relative;
}

section h2::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

section p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.9;
    text-align: justify;
}

section ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

section li {
    margin-bottom: 15px;
    padding-left: 10px;
    position: relative;
    opacity: 0.9;
}

section li::before {
    content: '▶';
    position: absolute;
    left: -25px;
    color: #667eea;
    font-size: 0.8em;
}

button[onclick*="index.html"] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    margin: 30px auto;
    display: block;
}

button[onclick*="index.html"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

button[onclick*="index.html"]:hover::before {
    left: 100%;
}

button[onclick*="index.html"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
}

/* Responsividade para páginas detalhadas */
@media (max-width: 768px) {
    section {
        padding: 15px;
    }

    section h2 {
        font-size: 1.3em;
    }

    section p {
        font-size: 0.95em;
    }

    button[onclick*="index.html"] {
        padding: 8px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 10px;
    }

    section h2 {
        font-size: 1.1em;
    }

    section p {
        font-size: 0.85em;
    }

    section ul {
        margin-left: 15px;
    }

    section li {
        font-size: 0.85em;
        margin-bottom: 8px;
    }

    button[onclick*="index.html"] {
        padding: 6px 12px;
        font-size: 12px;
        width: 100%;
        max-width: 150px;
        margin: 20px auto;
        display: block;
    }
}

/* Estilos para ícones das cards */
.card-icon {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.card-icon i {
    display: block;
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Estilos para páginas expandidas */
.rights-duties {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.rights, .duties {
    flex: 1;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rights h3, .duties h3 {
    color: #4CAF50;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.example {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.example h4 {
    color: #2196F3;
    margin-bottom: 10px;
}

.case-study {
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 119, 198, 0.1);
    border-radius: 15px;
    border-left: 4px solid #ff77c6;
}

.case-study h3 {
    color: #ff77c6;
    margin-bottom: 10px;
}

/* Estilos para página de ética */
.ethical-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.principle {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.principle h3 {
    color: #FF9800;
    margin-bottom: 10px;
}

.ethical-dilemmas {
    margin: 30px 0;
}

.dilemma {
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dilemma h4 {
    color: #f44336;
    margin-bottom: 10px;
}

.dilemma p {
    margin-bottom: 5px;
}

.dilemma p em {
    color: #FFC107;
    font-style: normal;
}

/* Estilos para página de assédio */
.harassment-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.type-card {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.type-card i {
    font-size: 2.5rem;
    color: #f44336;
    margin-bottom: 15px;
}

.type-card h3 {
    color: #f44336;
    margin-bottom: 15px;
}

.type-card ul {
    text-align: left;
    margin-left: 0;
}

.type-card li {
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.type-card li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: #FFC107;
}

.prevention-rights {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.prevention, .rights {
    flex: 1;
}

.prevention h3, .rights h3 {
    color: #4CAF50;
    margin-bottom: 15px;
}

.prevention li i, .rights li i {
    margin-right: 10px;
    color: #4CAF50;
}

.combat-steps {
    margin: 30px 0;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h4 {
    color: #2196F3;
    margin-bottom: 10px;
}

.legislation {
    margin: 30px 0;
}

.law {
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.law h4 {
    color: #9C27B0;
    margin-bottom: 10px;
}

.myths-truths {
    margin: 30px 0;
}

.myth {
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.myth h4 {
    color: #FF5722;
    margin-bottom: 10px;
}

.myth h4 i {
    margin-right: 10px;
}

.myth p strong {
    color: #4CAF50;
}

/* Estilos para deveres-direitos.html */
.rights-duties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.rights-section {
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rights-section h3 {
    color: #4CAF50;
    margin-bottom: 20px;
    font-size: 1.4em;
    text-align: center;
}

.rights-section ul {
    margin-left: 0;
}

.rights-section li {
    margin-bottom: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 3px solid #4CAF50;
}

.duties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.duty-category {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.duty-category h3 {
    color: #FF9800;
    margin-bottom: 15px;
    text-align: center;
}

.duty-category li i {
    margin-right: 10px;
    color: #FF9800;
}

.consequences {
    margin: 30px 0;
}

.consequence {
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.consequence h4 {
    color: #f44336;
    margin-bottom: 10px;
}

.practice-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.practice {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.practice h4 {
    color: #2196F3;
    margin-bottom: 15px;
}

.constitution {
    margin: 30px 0;
}

.article {
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.article h4 {
    color: #9C27B0;
    margin-bottom: 10px;
}

.rights-vs-privileges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.concept {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.concept h4 {
    color: #FF5722;
    margin-bottom: 15px;
}

.concept p em {
    color: #FFC107;
    font-style: normal;
}

/* Estilos para contratos-empresa.html */
.contract-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.contract-type {
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.contract-type i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 15px;
}

.contract-type h3 {
    color: #667eea;
    margin-bottom: 15px;
}

.contract-type ul {
    text-align: left;
    margin-left: 0;
}

.contract-type li {
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.contract-type li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
}

.rights-obligations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.rights, .obligations {
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rights h3, .obligations h3 {
    color: #4CAF50;
    margin-bottom: 20px;
    text-align: center;
}

.rights li i, .obligations li i {
    margin-right: 10px;
    color: #4CAF50;
}

.analysis-steps {
    margin: 30px 0;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h4 {
    color: #2196F3;
    margin-bottom: 10px;
}

.suspicious-clauses {
    margin: 30px 0;
}

.clause {
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.clause h4 {
    color: #f44336;
    margin-bottom: 10px;
}

.legislation {
    margin: 30px 0;
}

.law {
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.law h4 {
    color: #9C27B0;
    margin-bottom: 10px;
}

.clt-vs-pj {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.option {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.option h4 {
    color: #FF9800;
    margin-bottom: 15px;
    text-align: center;
}

/* Estilos para leis-trabalhistas.html */
.labor-laws {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.law-card {
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.law-card i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 15px;
}

.law-card h3 {
    color: #667eea;
    margin-bottom: 15px;
}

.law-card ul {
    text-align: left;
    margin-left: 0;
}

.law-card li {
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.law-card li::before {
    content: '⚖';
    position: absolute;
    left: 0;
    color: #4CAF50;
}

.work-hours {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.work-regulation, .overtime {
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.work-regulation h3, .overtime h3 {
    color: #4CAF50;
    margin-bottom: 20px;
    text-align: center;
}

.notice-period {
    margin: 30px 0;
}

.notice-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.notice-type {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.notice-type h4 {
    color: #2196F3;
    margin-bottom: 15px;
}

.notice-calculation {
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.notice-calculation h3 {
    color: #FF9800;
    margin-bottom: 20px;
    text-align: center;
}

.calculation-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.calc-row {
    display: contents;
}

.calc-row span {
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-weight: 600;
}

.calc-row span:first-child {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.protections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.protection {
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.protection h4 {
    color: #4CAF50;
    margin-bottom: 15px;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.benefit {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.benefit h4 {
    color: #FF9800;
    margin-bottom: 10px;
}

.termination {
    margin: 30px 0;
}

.termination-type {
    margin-bottom: 25px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.termination-type h4 {
    color: #f44336;
    margin-bottom: 15px;
}

.faq {
    margin: 30px 0;
}

.faq-item {
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item h4 {
    color: #9C27B0;
    margin-bottom: 10px;
}

/* Responsividade para novos elementos */
@media (max-width: 768px) {
    .rights-duties, .prevention-rights, .rights-duties-grid, .rights-obligations, .work-hours, .protections {
        flex-direction: column;
        gap: 20px;
    }

    .examples, .ethical-principles, .harassment-types, .contract-types, .labor-laws, .practice-examples, .rights-vs-privileges, .clt-vs-pj, .benefits, .duties-grid {
        grid-template-columns: 1fr;
    }

    .step, .notice-types {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto 15px;
    }

    .result-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .result-buttons button {
        max-width: none;
    }

    .performance-message {
        font-size: 1em;
        padding: 12px;
    }

    .calculation-table {
        font-size: 0.9em;
    }

    .calc-row span {
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .result-buttons {
        gap: 10px;
    }

    .performance-message {
        font-size: 0.9em;
        padding: 10px;
    }

    .calculation-table {
        font-size: 0.8em;
    }

    .calc-row span {
        padding: 6px;
    }

    .contract-type, .law-card, .rights-section, .duty-category, .practice, .concept, .option, .benefit {
        padding: 15px;
    }

    .contract-type i, .law-card i {
        font-size: 2.5rem;
    }
}
