/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[13].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[13].use[3]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[13].oneOf[13].use[4]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[13].oneOf[13].use[5]!./app/(other-pages)/questionario/style.scss ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #F5F6FA;
  color: #333333;
  line-height: 1.6;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}
body.font-small {
  font-size: 1.6rem;
  font-family: "Inter", sans-serif;
}
body.font-small .question-text {
  font-size: 1.4rem;
}
body.font-small .alternative-text {
  font-size: 1.2rem;
}
body.font-small .nav-button {
  font-size: 0.9rem;
}
body.font-normal {
  font-size: 1.4rem;
}
body.font-normal .question-text {
  font-size: 1.6rem;
}
body.font-normal .alternative-text {
  font-size: 1.2rem;
}
body.font-normal .nav-button {
  font-size: 1rem;
}
body.font-large {
  font-size: 1.8rem;
}
body.font-large .question-text {
  font-size: 1.9rem;
}
body.font-large .alternative-text {
  font-size: 1.4rem;
}
body.font-large .nav-button {
  font-size: 1.1rem;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  padding: 8px;
  background-color: #001C8A;
  color: white;
  z-index: 100;
  transform: translateY(-100%);
  transition: transform 0.3s;
  text-decoration: none;
}
.skip-link:focus {
  transform: translateY(0);
}

.header {
  background-color: #001C8A;
  color: white;
  padding: 2rem 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .logo {
  max-width: 80%;
  width: 600px;
  height: auto;
  margin: 15px 0;
  transition: transform 0.3s ease;
}
.header .logo:hover {
  transform: scale(1.02);
}
.header h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
}

.accessibility-controls {
  position: fixed;
  top: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
  z-index: 1000;
}
.accessibility-controls .accessibility-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border: 2px solid #D1D5DB;
  color: #001C8A;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-size: 1.6rem;
}
.accessibility-controls .accessibility-btn:hover {
  background-color: rgba(0, 28, 138, 0.05);
  transform: translateY(-2px) scale(1.05);
  border-color: #001C8A;
}
.accessibility-controls .accessibility-btn.main-btn {
  background-color: #001C8A;
  color: white;
  border-color: #001C8A;
}
.accessibility-controls .accessibility-btn.main-btn:hover {
  background-color: rgb(0, 17.652173913, 87);
  transform: translateY(-2px) scale(1.05) rotate(15deg);
}
.accessibility-controls .accessibility-btn.active {
  background-color: #001C8A;
  color: white;
}

.side-menu {
  position: fixed;
  top: 0;
  right: -350px;
  width: 350px;
  height: 100vh;
  background: white;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 2000;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
}
.side-menu.open {
  right: 0;
  animation: slideLeft 0.4s ease-out;
}
@keyframes slideLeft {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.side-menu .side-menu-header {
  background: #001C8A;
  color: white;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.side-menu .side-menu-header h3 {
  font-size: 1.4rem;
  font-weight: 600;
}
.side-menu .side-menu-header .close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.2s ease;
}
.side-menu .side-menu-header .close-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}
.side-menu .side-menu-content {
  padding: 1.5rem;
}
.side-menu .side-menu-content .setting-group {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}
.side-menu .side-menu-content .setting-group:last-child {
  border-bottom: none;
}
.side-menu .side-menu-content .setting-group h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #001C8A;
  font-weight: 600;
}
.side-menu .side-menu-content .setting-group .font-size-controls {
  display: flex;
  gap: 0.5rem;
}
.side-menu .side-menu-content .setting-group .font-size-controls button {
  flex: 1 1;
  padding: 0.75rem 1rem;
  border: 2px solid #D1D5DB;
  background: white;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
}
.side-menu .side-menu-content .setting-group .font-size-controls button:hover {
  border-color: #001C8A;
  background-color: rgba(0, 28, 138, 0.05);
}
.side-menu .side-menu-content .setting-group .font-size-controls button.active {
  background-color: #001C8A;
  border-color: #001C8A;
  color: white;
}
.side-menu .side-menu-content .setting-group .toggle-btn {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #D1D5DB;
  background: white;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
  font-size: 1rem;
}
.side-menu .side-menu-content .setting-group .toggle-btn:hover {
  border-color: #001C8A;
  background-color: rgba(0, 28, 138, 0.05);
}
.side-menu .side-menu-content .setting-group .toggle-btn.active {
  background-color: #FF5E79;
  border-color: #FF5E79;
  color: white;
}
.side-menu .side-menu-content .setting-group .status-mini {
  background: rgba(0, 28, 138, 0.05);
  padding: 1rem;
  border-radius: 12px;
  font-size: 0.9rem;
}
.side-menu .side-menu-content .setting-group .status-mini div {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
}
.side-menu .side-menu-content .setting-group .status-mini div:last-child {
  margin-bottom: 0;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1500;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  animation: fadeIn 0.3s ease-out;
}

.floating-badge {
  position: fixed;
  top: 6.5rem;
  left: 1rem;
  background-color: #001C8A;
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(0, 28, 138, 0.3);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 100;
  font-weight: 600;
  font-size: 1.1rem;
  animation: floatBadge 3s infinite;
}
@keyframes floatBadge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.timer-container {
  position: fixed;
  top: 5.5rem;
  right: 1rem;
  background-color: white;
  border-radius: 12px;
  padding: 0.75rem 1.25rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 100;
  min-width: 140px;
}
.timer-container .timer-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.timer-container .timer-clock {
  color: #FF5E79;
  font-size: 1.3rem;
}
.timer-container .timer-text {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.timer-container .pause-button {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-size: 1.1rem;
}
.timer-container .pause-button:hover {
  background-color: rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
}
.timer-container.warning {
  animation: pulse 2s infinite;
  border: 2px solid #FFC107;
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.timer-container.danger {
  animation: shake 0.5s infinite;
  border: 2px solid #F44336;
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

.timer-progress {
  height: 6px;
  width: 100%;
  background-color: #f3f3f3;
  border-radius: 10px;
  overflow: hidden;
}
.timer-progress .timer-bar {
  height: 100%;
  background-color: #FF5E79;
  border-radius: 10px;
  transition: width 1s linear;
}
.timer-progress .timer-bar.warning {
  background-color: #FFC107;
}
.timer-progress .timer-bar.danger {
  background-color: #F44336;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
}

.banner {
  background-color: rgba(0, 28, 138, 0.05);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border: 1px solid rgba(0, 28, 138, 0.1);
}
.banner .banner-icon {
  font-size: 3.5rem;
  color: #001C8A;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.banner .banner-content {
  flex: 1 1;
}
.banner .banner-content h3 {
  font-weight: 600;
  color: #001C8A;
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}
.banner .banner-content p {
  margin-bottom: 0.5rem;
  color: #666;
  font-size: 1.3rem;
}
.banner .banner-content .banner-list {
  margin-top: 0.5rem;
  padding-left: 0;
  list-style: none;
}
.banner .banner-content .banner-list li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  font-size: 1.3rem;
  color: #666;
}
.banner .banner-content .banner-list li::before {
  content: "✓";
  color: #FF5E79;
  margin-right: 0.75rem;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #666;
}

.progress-container {
  width: 100%;
  background-color: #f3f3f3;
  border-radius: 20px;
  margin-bottom: 2rem;
}
.progress-container .progress-bar {
  height: 12px;
  border-radius: 20px;
  background: linear-gradient(90deg, #FF5E79, rgb(255, 145, 163.4472049689));
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(255, 94, 121, 0.3);
}

.points-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: rgba(0, 28, 138, 0.05);
  color: #001C8A;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(0, 28, 138, 0.2);
}
.points-badge i {
  margin-right: 0.25rem;
}
.points-badge.pulse {
  animation: badgePulse 0.5s;
}
@keyframes badgePulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.points-badge.mega-pulse {
  animation: megaPulse 0.8s ease-out;
}

.questions-position {
  text-align: center;
  margin: 1rem 0;
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

.question-container {
  margin-bottom: 3rem;
  padding: 2rem;
  border-radius: 12px;
  background-color: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #001C8A;
  transition: all 0.5s ease-in-out;
}
.question-container.active {
  animation: bounceIn 0.8s;
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.question-container.answered {
  border-left: 5px solid #2e7d32;
  box-shadow: 0 4px 25px rgba(76, 175, 80, 0.2);
  animation: successPulse 1.5s ease-in-out;
}
@keyframes successPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(76, 175, 80, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
  }
}
.question-container .question-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  align-items: center;
}
.question-container .question-header .question-number {
  font-weight: 600;
  color: #001C8A;
  font-size: 1.3rem;
}
.question-container .question-tags {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.question-container .question-tags .question-tag {
  padding: 0.5rem 1rem;
  background-color: rgba(0, 28, 138, 0.05);
  color: #001C8A;
  border-radius: 25px;
  font-size: 1.3rem;
  font-weight: 500;
  border: 1px solid rgba(0, 28, 138, 0.2);
}
.question-container .question-tags .question-tag.module {
  background-color: rgba(255, 94, 121, 0.05);
  color: #FF5E79;
  border-color: rgba(255, 94, 121, 0.2);
}
.question-container .question-text {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  font-weight: 500;
}

.alternatives {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.alternatives .alternative {
  display: flex;
  padding: 1.5rem;
  border: 2px solid #D1D5DB;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background: white;
  align-items: flex-start;
}
.alternatives .alternative:hover:not(.disabled) {
  border-color: #001C8A;
  background-color: rgba(0, 28, 138, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 28, 138, 0.1);
}
.alternatives .alternative.selected {
  border-color: #001C8A;
  background-color: rgba(0, 28, 138, 0.05);
  box-shadow: 0 4px 20px rgba(0, 28, 138, 0.15);
}
.alternatives .alternative.correct {
  border-color: #2e7d32;
  background-color: rgba(46, 125, 50, 0.08);
}
.alternatives .alternative.correct::after {
  content: "✓";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: #2e7d32;
  font-weight: bold;
  font-size: 1.5rem;
  background: white;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(46, 125, 50, 0.3);
}
.alternatives .alternative.wrong {
  border-color: #c62828;
  background-color: rgba(198, 40, 40, 0.08);
}
.alternatives .alternative.wrong::after {
  content: "✗";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: #c62828;
  font-weight: bold;
  font-size: 1.6rem;
  background: white;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(198, 40, 40, 0.3);
}
.alternatives .alternative.disabled {
  cursor: not-allowed;
  opacity: 0.8;
}
.alternatives .alternative .alternative-letter {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  color: #001C8A;
  margin-right: 1.5rem;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background-color: rgba(0, 28, 138, 0.05);
  border-radius: 50%;
  font-size: 1.3rem;
  border: 2px solid rgba(0, 28, 138, 0.2);
}
.alternatives .alternative .alternative-text {
  flex-grow: 1;
  line-height: 1.6;
  padding-right: 3rem;
  font-weight: 400;
  font-size: 1.4rem;
}

.nav-dots {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.nav-dots .nav-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #e0e0e0;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  position: relative;
  overflow: hidden;
}
.nav-dots .nav-dot .nav-dot-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  transition: all 0.3s ease;
}
.nav-dots .nav-dot .question-number {
  position: absolute;
  bottom: -4px;
  right: -4px;
  background: #001C8A;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  border: 2px solid white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.nav-dots .nav-dot:hover {
  transform: scale(1.2) rotate(8deg);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.nav-dots .nav-dot:hover .nav-dot-icon {
  transform: scale(1.1);
}
.nav-dots .nav-dot.active {
  transform: scale(1.3);
  box-shadow: 0 0 15px rgba(0, 28, 138, 0.6);
  border-color: #001C8A;
  background-color: #001C8A;
}
.nav-dots .nav-dot.active::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 2s infinite;
}
.nav-dots .nav-dot.answered {
  border-color: #2e7d32;
  box-shadow: 0 0 15px rgba(76, 175, 80, 0.6);
  background-color: #2e7d32;
}
.nav-dots .nav-dot.review {
  background-color: #FFC107;
  box-shadow: 0 0 15px rgba(255, 193, 7, 0.6);
  border-color: #FFC107;
}
.nav-dots .nav-dot .nav-dot.correct {
  background-color: green;
}
.nav-dots .nav-dot .nav-dot.incorrect {
  background-color: red;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}
.review-buttons-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
}
.review-buttons-container .btn-review.enhanced {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: white;
  border: 2px solid #001C8A;
  color: #001C8A;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 28, 138, 0.15);
  text-decoration: none;
}
.review-buttons-container .btn-review.enhanced:hover {
  background-color: rgba(0, 28, 138, 0.05);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 28, 138, 0.25);
}
.review-buttons-container .btn-review.enhanced.results-btn {
  background-color: #001C8A;
  color: white;
}
.review-buttons-container .btn-review.enhanced.results-btn:hover {
  background-color: rgb(0, 17.652173913, 87);
}

.navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  position: relative;
  z-index: 10;
}
.navigation .nav-button {
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  background-color: #001C8A;
  color: white;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 50px;
  font-size: 1.1rem;
}
.navigation .nav-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.navigation .nav-button:active {
  transform: translateY(0);
}
.navigation .nav-button:hover:not(:disabled) {
  background-color: rgb(0, 17.652173913, 87);
}
.navigation .nav-button:disabled {
  background-color: #D1D5DB;
  cursor: not-allowed;
  transform: none;
  opacity: 0.6;
}
.navigation .nav-button.btn-highlight {
  background-color: #FF5E79;
}
.navigation .nav-button.btn-highlight:hover:not(:disabled) {
  background-color: rgb(255, 43, 78.5527950311);
}
.navigation .nav-button.btn-shine {
  position: relative;
  overflow: hidden;
}
.navigation .nav-button.btn-shine::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(30deg);
  animation: shine 4s infinite;
}
@keyframes shine {
  0% {
    left: -100%;
    opacity: 0;
  }
  10% {
    left: -100%;
    opacity: 0.5;
  }
  20% {
    left: 100%;
    opacity: 0;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

.review-panel {
  display: none;
  background-color: white;
  border-radius: 12px;
  padding: 2.5rem;
  margin-top: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.review-panel.active {
  display: block;
  animation: bounceIn 0.8s;
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.review-panel h3 {
  text-align: center;
  color: #001C8A;
  margin-bottom: 2rem;
  font-size: 2rem;
}
.review-panel h4 {
  margin-bottom: 1rem;
  color: #333333;
  font-size: 1.4rem;
}
.review-panel .review-status {
  display: flex;
  justify-content: space-around;
  margin-bottom: 2rem;
  gap: 1.5rem;
}
.review-panel .review-status .status-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  border-radius: 12px;
  min-width: 140px;
  flex: 1 1;
}
.review-panel .review-status .status-box.answered {
  background-color: rgba(46, 125, 50, 0.08);
  border: 2px solid rgba(46, 125, 50, 0.3);
}
.review-panel .review-status .status-box.unanswered {
  background-color: rgba(0, 0, 0, 0.05);
  border: 2px solid rgba(0, 0, 0, 0.15);
}
.review-panel .review-status .status-box.review {
  background-color: rgba(255, 193, 7, 0.08);
  border: 2px solid rgba(255, 193, 7, 0.3);
}
.review-panel .review-status .status-box .status-value {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.review-panel .review-status .status-box .status-label {
  font-size: 1rem;
  color: #666;
}
.review-panel .review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
  margin: 2rem 0;
}
.review-panel .review-grid .review-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border-radius: 12px;
  border: 2px solid #D1D5DB;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
  font-size: 1.3rem;
}
.review-panel .review-grid .review-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
.review-panel .review-grid .review-item.answered {
  background-color: rgba(46, 125, 50, 0.1);
  border-color: #2e7d32;
  color: #2e7d32;
}
.review-panel .review-grid .review-item.unanswered {
  background-color: rgba(0, 0, 0, 0.05);
}
.review-panel .review-grid .review-item.review {
  background-color: rgba(255, 193, 7, 0.1);
  border-color: #FFC107;
  color: #FF8F00;
}
.review-panel .review-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.review-panel .review-actions .nav-button {
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  background-color: #001C8A;
  color: white;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 50px;
  font-size: 1.1rem;
}
.review-panel .review-actions .nav-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.review-panel .review-actions .nav-button:active {
  transform: translateY(0);
}
.review-panel .review-actions .nav-button:hover:not(:disabled) {
  background-color: rgb(0, 17.652173913, 87);
}
.review-panel .review-actions .nav-button:disabled {
  background-color: #D1D5DB;
  cursor: not-allowed;
  transform: none;
  opacity: 0.6;
}

.performance-dashboard {
  display: none;
  background-color: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.performance-dashboard.active {
  display: block;
  animation: bounceIn 0.8s;
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.performance-dashboard h3 {
  text-align: center;
  color: #001C8A;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}
.performance-dashboard .performance-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.performance-dashboard .performance-summary .performance-card {
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  background: white;
}
.performance-dashboard .performance-summary .performance-card.positive {
  background-color: rgba(46, 125, 50, 0.08);
  border-left: 5px solid #2e7d32;
}
.performance-dashboard .performance-summary .performance-card.negative {
  background-color: rgba(198, 40, 40, 0.08);
  border-left: 5px solid #c62828;
}
.performance-dashboard .performance-summary .performance-card i {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}
.performance-dashboard .performance-summary .performance-card .performance-value {
  font-size: 3rem;
  font-weight: bold;
  margin: 0.75rem 0;
}
.performance-dashboard .performance-summary .performance-card .performance-label {
  color: #666;
  font-size: 1rem;
}
.performance-dashboard .areas-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 1rem;
}
.performance-dashboard .areas-table th, .performance-dashboard .areas-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 2px solid #D1D5DB;
}
.performance-dashboard .areas-table th {
  background-color: rgba(0, 28, 138, 0.05);
  color: #001C8A;
  font-weight: 600;
  font-size: 1.1rem;
}
.performance-dashboard .areas-table .performance-bar {
  width: 120px;
  height: 10px;
  background-color: #f0f0f0;
  border-radius: 5px;
  overflow: hidden;
}
.performance-dashboard .areas-table .performance-bar .performance-value-bar {
  height: 100%;
  background: linear-gradient(90deg, #001C8A, rgb(0, 48.6956521739, 240));
  border-radius: 5px;
  transition: width 0.8s ease;
}
.performance-dashboard .dashboard-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
}
.performance-dashboard .dashboard-actions .nav-button {
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  background-color: #001C8A;
  color: white;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 50px;
  font-size: 1.1rem;
}
.performance-dashboard .dashboard-actions .nav-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.performance-dashboard .dashboard-actions .nav-button:active {
  transform: translateY(0);
}
.performance-dashboard .dashboard-actions .nav-button:hover:not(:disabled) {
  background-color: rgb(0, 17.652173913, 87);
}
.performance-dashboard .dashboard-actions .nav-button:disabled {
  background-color: #D1D5DB;
  cursor: not-allowed;
  transform: none;
  opacity: 0.6;
}

.email-form {
  margin-top: 3rem;
  padding: 2.5rem;
  border-radius: 12px;
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: none;
}
.email-form.active {
  display: block;
  animation: bounceIn 0.8s;
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.email-form .form-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #001C8A;
  margin-bottom: 1.5rem;
  text-align: center;
}
.email-form .form-description {
  margin-bottom: 2rem;
  text-align: center;
  color: #666;
  font-size: 1.1rem;
}
.email-form .form-group {
  margin-bottom: 1.5rem;
  position: relative;
}
.email-form .form-group label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 500;
  font-size: 1rem;
}
.email-form .form-group input, .email-form .form-group select {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid #D1D5DB;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.email-form .form-group input:focus, .email-form .form-group select:focus {
  border-color: #001C8A;
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 28, 138, 0.1);
}
.email-form .form-group input.invalid, .email-form .form-group select.invalid {
  border-color: #c62828;
}
.email-form .form-group input.valid, .email-form .form-group select.valid {
  border-color: #2e7d32;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232e7d32'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  background-position: right 15px center;
  background-repeat: no-repeat;
  background-size: 24px;
  padding-right: 50px;
}
.email-form .form-group .value-tag {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-50%);
  background-color: #FF5E79;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: 15px;
  box-shadow: 0 3px 8px rgba(255, 94, 121, 0.4);
}
.email-form .form-group .value-tag.essential {
  background-color: #FF9800;
}
.email-form .form-group .value-tag.key {
  background-color: #2196F3;
}
.email-form .inline-form-groups {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.email-form .inline-form-groups .form-group {
  flex: 1 1;
  min-width: 250px;
}
.email-form .difficulty-options {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}
.email-form .difficulty-options .difficulty-option {
  flex: 1 1;
  min-width: 120px;
}
.email-form .difficulty-options .difficulty-option .difficulty-input {
  display: none;
}
.email-form .difficulty-options .difficulty-option .difficulty-input:checked + .difficulty-label {
  border-color: #001C8A;
  background-color: rgba(0, 28, 138, 0.05);
}
.email-form .difficulty-options .difficulty-option .difficulty-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.25rem;
  border: 2px solid #D1D5DB;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 1rem;
}
.email-form .difficulty-options .difficulty-option .difficulty-label:hover {
  border-color: #001C8A;
  background-color: rgba(0, 28, 138, 0.05);
}
.email-form .difficulty-options .difficulty-option .difficulty-label .difficulty-icon {
  margin-right: 0.75rem;
  font-size: 1.4rem;
}
.email-form .final-btn {
  width: 100%;
  padding: 1.25rem;
  margin-top: 2rem;
  border: none;
  border-radius: 12px;
  background-color: #FF5E79;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}
.email-form .final-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.email-form .final-btn:active {
  transform: translateY(0);
}
.email-form .final-btn:hover:not(:disabled) {
  background-color: rgb(255, 43, 78.5527950311);
}
.email-form .final-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  transform: none;
  opacity: 0.6;
}

.question-feedback {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 12px;
  display: none;
}
.question-feedback.correct {
  background-color: rgba(46, 125, 50, 0.1);
  color: #2e7d32;
  display: block;
  border: 2px solid rgba(46, 125, 50, 0.3);
  animation: fadeIn 0.5s ease-in-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.question-feedback.wrong {
  background-color: rgba(198, 40, 40, 0.1);
  color: #c62828;
  display: block;
  border: 2px solid rgba(198, 40, 40, 0.3);
  animation: fadeIn 0.5s ease-in-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.question-feedback .question-feedback-header {
  display: flex;
  align-items: center;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}
.question-feedback .question-feedback-header i {
  margin-right: 0.75rem;
  font-size: 1.4rem;
}

.alternative-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
}
.alternative-actions .mark-review {
  padding: 0.75rem 1.25rem;
  border: 2px solid #D1D5DB;
  background: white;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #666;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.alternative-actions .mark-review:hover {
  border-color: #FFC107;
  background-color: rgba(255, 193, 7, 0.08);
  color: #FF8F00;
  transform: translateY(-2px);
}
.alternative-actions .mark-review.marked {
  background-color: rgba(255, 193, 7, 0.15);
  border-color: #FFC107;
  color: #FF8F00;
}

.high-contrast {
  --color-primary: #0000FF;
  --color-accent: #FF0000;
  --color-bg: #FFFFFF;
  --color-bg-light: #F0F0F0;
  --color-border: #000000;
  --color-text: #000000;
  --light-primary: rgba(0,0,255,0.1);
  --light-accent: rgba(255,0,0,0.1);
  --correct: #006400;
  --wrong: #8B0000;
  filter: grayscale(0%) contrast(150%);
}
.high-contrast .question-text,
.high-contrast .alternative-text {
  font-weight: 600;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@keyframes screenShake {
  0%, 100% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(-3px) translateY(-2px);
  }
  20% {
    transform: translateX(3px) translateY(2px);
  }
  30% {
    transform: translateX(-2px) translateY(-2px);
  }
  40% {
    transform: translateX(2px) translateY(2px);
  }
  50% {
    transform: translateX(-2px) translateY(-1px);
  }
  60% {
    transform: translateX(2px) translateY(1px);
  }
  70% {
    transform: translateX(-1px) translateY(-1px);
  }
  80% {
    transform: translateX(1px) translateY(1px);
  }
  90% {
    transform: translateX(-1px) translateY(1px);
  }
}
.screen-shake {
  animation: screenShake 0.6s ease-in-out;
}

@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translate(-50%, 0) scale(0.5);
  }
  10% {
    opacity: 1;
    transform: translate(-50%, -15px) scale(1.4);
  }
  20% {
    opacity: 1;
    transform: translate(-50%, -30px) scale(1.2);
  }
  80% {
    opacity: 1;
    transform: translate(-50%, -80px) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -120px) scale(0.8);
  }
}
.points-added {
  position: fixed;
  color: #2e7d32;
  font-weight: bold;
  font-size: 2.5rem;
  z-index: 9999;
  animation: floatUp 2.5s ease-out forwards;
  pointer-events: none;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
  background: linear-gradient(45deg, #2e7d32, rgb(119.0350877193, 204.9649122807, 123.3859649123));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.points-added::before {
  content: "✨";
  position: absolute;
  left: -40px;
  animation: sparkle 2.5s ease-out;
}
.points-added::after {
  content: "✨";
  position: absolute;
  right: -40px;
  animation: sparkle 2.5s ease-out 0.3s;
}

@keyframes sparkle {
  0% {
    opacity: 0;
    transform: scale(0) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.2) rotate(180deg);
  }
  100% {
    opacity: 0;
    transform: scale(0) rotate(360deg);
  }
}
.error-shake {
  position: fixed;
  color: #c62828;
  font-weight: bold;
  font-size: 2rem;
  z-index: 9999;
  animation: errorFloat 2s ease-out forwards;
  pointer-events: none;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}
.error-shake::before {
  content: "❌ ";
}

@keyframes errorFloat {
  0% {
    opacity: 0;
    transform: translate(-50%, 0) scale(0.5);
  }
  10% {
    opacity: 1;
    transform: translate(-50%, -8px) scale(1.3);
  }
  20% {
    transform: translate(-50%, -15px) scale(1.1) rotate(-8deg);
  }
  30% {
    transform: translate(-50%, -22px) scale(1.1) rotate(8deg);
  }
  40% {
    transform: translate(-50%, -30px) scale(1.1) rotate(-4deg);
  }
  50% {
    transform: translate(-50%, -35px) scale(1.1) rotate(0deg);
  }
  85% {
    opacity: 1;
    transform: translate(-50%, -60px) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -90px) scale(0.8);
  }
}
@keyframes megaPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 28, 138, 0.4);
  }
  25% {
    transform: scale(1.4);
    box-shadow: 0 0 0 15px rgba(0, 28, 138, 0.2);
  }
  50% {
    transform: scale(1.2);
    box-shadow: 0 0 0 25px rgba(0, 28, 138, 0.1);
  }
  75% {
    transform: scale(1.3);
    box-shadow: 0 0 0 20px rgba(0, 28, 138, 0.05);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 28, 138, 0);
  }
}
@media (max-width: 968px) {
  .side-menu {
    width: 320px;
    right: -320px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 1.5rem;
    margin: 0 1rem;
  }
  .header {
    padding: 1.5rem;
  }
  .header h1 {
    font-size: 2.2rem;
  }
  .header .logo {
    width: 90%;
  }
  .question-container {
    padding: 1.5rem;
  }
  .alternative {
    padding: 1.25rem;
  }
  .alternative .alternative-text {
    font-size: 1.1rem;
  }
  .alternative .alternative-letter {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  .nav-button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  .email-form {
    padding: 2rem;
  }
  .inline-form-groups {
    flex-direction: column;
    gap: 1rem;
  }
  .inline-form-groups .form-group {
    width: 100%;
    min-width: auto;
  }
  .difficulty-options {
    flex-direction: column;
  }
  .difficulty-options .difficulty-option {
    min-width: auto;
  }
  .banner {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  .banner .banner-icon {
    font-size: 3rem;
  }
  .nav-dots {
    gap: 12px;
  }
  .nav-dots .nav-dot {
    width: 40px;
    height: 40px;
  }
  .nav-dots .nav-dot .nav-dot-icon {
    width: 24px;
    height: 24px;
  }
  .nav-dots .nav-dot .question-number {
    width: 18px;
    height: 18px;
    font-size: 1.5rem;
  }
  .review-status {
    flex-direction: column;
    gap: 1rem;
  }
  .review-status .status-box {
    min-width: auto;
  }
  .performance-summary {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .areas-table {
    font-size: 0.9rem;
  }
  .areas-table th, .areas-table td {
    padding: 0.75rem;
  }
  .navigation {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    padding: 1rem;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    margin-top: 0;
  }
  .navigation .nav-button {
    min-width: 140px;
    flex: 1 1;
  }
  body {
    padding-bottom: 90px;
  }
  .floating-badge {
    top: 1rem;
    left: 0.5rem;
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
  .timer-container {
    top: 1rem;
    right: 0.5rem;
    padding: 0.5rem 1rem;
    min-width: 120px;
  }
  .timer-container .timer-text {
    font-size: 1.1rem;
  }
  .timer-container .timer-clock {
    font-size: 1.2rem;
  }
  .accessibility-controls {
    top: 4.5rem;
    right: 0.5rem;
  }
  .accessibility-controls .accessibility-btn {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }
  .side-menu {
    width: 100vw;
    right: -100vw;
  }
}
@media (pointer: coarse) {
  .nav-button,
  .alternative,
  .difficulty-label,
  .final-btn,
  .mark-review,
  .nav-dot,
  .review-item {
    min-height: 50px;
  }
  .accessibility-btn {
    min-width: 50px;
    min-height: 50px;
  }
}
@media (max-height: 500px) and (orientation: landscape) {
  .header {
    padding: 0.75rem;
    margin-bottom: 1rem;
  }
  .header h1 {
    font-size: 1.5rem;
  }
  .container {
    max-width: 100%;
    margin: 0;
    border-radius: 0;
    padding: 1rem;
  }
  .question-container {
    margin-bottom: 1rem;
    padding: 1rem;
  }
  .alternatives {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.75rem;
    gap: 0.75rem;
  }
  .banner {
    padding: 1rem;
  }
  .banner .banner-icon {
    font-size: 2.5rem;
  }
  .floating-badge,
  .timer-container {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    margin-bottom: 1rem;
  }
  .navigation {
    position: relative;
    bottom: auto;
    box-shadow: none;
  }
  body {
    padding-bottom: 0;
  }
}
@media print {
  .accessibility-controls,
  .side-menu,
  .menu-overlay,
  .floating-badge,
  .timer-container,
  .navigation,
  .nav-dots,
  .review-buttons-container {
    display: none !important;
  }
  .container {
    box-shadow: none;
    max-width: none;
    margin: 0;
    padding: 1rem;
  }
  .question-container {
    page-break-inside: avoid;
    break-inside: avoid;
    margin-bottom: 2rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.buttonNav {
  display: "flex";
  align-items: "center";
  gap: "0.5rem";
  padding: "1rem 2rem";
  border: "2px solid #e2e8f0";
  border-radius: "12px";
  background: "linear-gradient(135deg, #ffffff, #f8fafc)";
  color: "#64748b";
  font-size: "1rem";
  font-weight: "600";
  cursor: "pointer";
  transition: "all 0.3s cubic-bezier(0.4, 0, 0.2, 1)";
  box-shadow: "0 4px 12px rgba(0, 0, 0, 0.05)";
  position: "relative";
  overflow: "hidden";
  min-width: "200px";
  justify-content: "center";
}

.cronograma-section.active {
  animation: bounceIn 0.8s;
}

.nav-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.6s ease;
}

.nav-button:hover::before {
  left: 100%;
}

.nav-button.btn-highlight::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.nav-button.btn-highlight:active::after {
  width: 300px;
  height: 300px;
}

.cronograma-actions {
  margin: 2rem 0;
  gap: 10px;
}

.cronograma-actions .nav-button {
  padding: 10px;
  background-color: #f5f5f5;
  border-radius: 5px;
  border-bottom: 1px solid black;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-right: 10px;
}

.cronograma-actions .nav-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cronograma-actions .nav-button:active {
  transform: translateY(0);
}

.cronograma-actions .nav-button.btn-highlight:hover:not(:disabled) {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 2px 1px rgba(49, 49, 49, 0.5), 0 1px 2px rgba(39, 39, 39, 0.3);
}

@media (max-width: 768px) {
  .cronograma-sugestao {
    padding: 1.5rem !important;
    margin: 1rem !important;
  }
  .cronograma-tabs {
    flex-direction: column !important;
  }
  .performance-summary {
    grid-template-columns: 1fr !important;
  }
  .cronograma-grid,
  .dicas-grid,
  .analise-cards {
    grid-template-columns: 1fr !important;
  }
  .motivacao-card {
    flex-direction: column !important;
    text-align: center !important;
  }
  .cronograma-actions {
    flex-direction: column !important;
    gap: 1rem !important;
  }
  .cronograma-actions .nav-button {
    min-width: 100% !important;
    margin-bottom: 0.5rem;
  }
}
