/* ==========================================================================
   JOGOS CABEÇA - STYLES
   Clean code organization with CSS Custom Properties
   ========================================================================== */

/* CSS Custom Properties (Variables)
   ========================================================================== */

:root {
  /* Colors */
  --primary-blue: #3B82F6;
  --primary-purple: #8B5CF6;
  --primary-cyan: #06B6D4;
  --dark-blue: #1D4ED8;
  --light-blue: #93C5FD;
  --green-accent: #4ADE80;
  --green-success: #10B981;
  --green-success-light: #6EE7B7;
  --red-danger: #DC2626;
  --red-danger-dark: #B91C1C;
  --red-error: #EF4444;
  --red-error-light: #FCA5A5;
  
  /* Grays */
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --gray-950: #030712;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 0.75rem;
  --spacing-lg: 1rem;
  --spacing-xl: 1.5rem;
  --spacing-2xl: 2rem;
  --spacing-3xl: 3rem;
  
  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 25px 50px -12px rgba(59, 130, 246, 0.25);
  --shadow-glow-sm: 0 10px 25px rgba(59, 130, 246, 0.25);
  
  /* Typography */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2.25rem;
  --text-4xl: 3.75rem;
}

/* Base Styles
   ========================================================================== */

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
}

/* Core Utilities
   ========================================================================== */

.gradient-text {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 50%, var(--primary-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Layout Components
   ========================================================================== */

/* Header Styles */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(3, 7, 18, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(75, 85, 99, 0.5);
  overflow: hidden;
}

.site-header nav {
  position: relative;
  z-index: 10;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  transition: opacity var(--transition-base);
  text-decoration: none;
}

.site-logo:hover {
  opacity: 0.8;
}

.site-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-logo-title {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.site-nav {
  display: none;
  align-items: center;
  gap: var(--spacing-xl);
}

@media (min-width: 768px) {
  .site-nav {
    display: flex;
  }
}

.site-nav-link {
  color: var(--gray-300);
  transition: color var(--transition-base);
  text-decoration: none;
}

.site-nav-link:hover,
.site-nav-link.active {
  color: white;
}

.site-nav-link.active {
  font-weight: 600;
}

.mobile-menu-btn {
  display: block;
  color: var(--gray-300);
  transition: color var(--transition-base);
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn:hover {
  color: white;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  background: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(4px);
  border-top: 1px solid var(--gray-700);
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.mobile-menu-link {
  display: block;
  color: var(--gray-300);
  transition: color var(--transition-base);
  padding: var(--spacing-sm) 0;
  text-decoration: none;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
  color: white;
}

.mobile-menu-link.active {
  font-weight: 600;
}

/* Footer Styles */
.site-footer {
  background: var(--gray-900);
  border-top: 1px solid var(--gray-800);
  padding: var(--spacing-xl) 0 var(--spacing-3xl);
}

@media (min-width: 640px) {
  .site-footer {
    padding: 3rem 0;
  }
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
  transition: opacity var(--transition-base);
  text-decoration: none;
}

.footer-logo:hover {
  opacity: 0.8;
}

.footer-logo-icon {
  width: var(--spacing-xl);
  height: var(--spacing-xl);
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .footer-logo-icon {
    width: var(--spacing-2xl);
    height: var(--spacing-2xl);
  }
}

.footer-logo-text {
  font-size: var(--text-lg);
  font-weight: 700;
  color: white;
  text-decoration: none;
}

@media (min-width: 640px) {
  .footer-logo-text {
    font-size: var(--text-xl);
  }
}

.footer-tagline {
  color: var(--gray-400);
  margin-bottom: var(--spacing-xl);
  font-size: var(--text-sm);
}

@media (min-width: 640px) {
  .footer-tagline {
    font-size: var(--text-base);
  }
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-2xl);
}

@media (min-width: 640px) {
  .footer-nav {
    flex-direction: row;
    gap: var(--spacing-2xl);
  }
}

.footer-nav-link {
  color: var(--gray-400);
  transition: color var(--transition-base);
  font-size: var(--text-sm);
  text-decoration: none;
}

@media (min-width: 640px) {
  .footer-nav-link {
    font-size: var(--text-base);
  }
}

.footer-nav-link:hover {
  color: white;
}

.footer-copyright {
  border-top: 1px solid var(--gray-800);
  padding-top: var(--spacing-2xl);
  color: var(--gray-500);
  font-size: var(--text-xs);
}

@media (min-width: 640px) {
  .footer-copyright {
    font-size: var(--text-sm);
  }
}

.footer-brand {
  color: var(--primary-blue);
  font-weight: 600;
}

/* Interactive Components
   ========================================================================== */

/* Game Cards */
.game-card {
  transition: all var(--transition-base);
  border: 2px solid transparent;
  background: var(--gray-800);
  border-radius: var(--radius-lg);
  padding: var(--spacing-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.game-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-glow);
}

/* Buttons */
.btn-primary {
  background: var(--dark-blue);
  color: white;
  padding: var(--spacing-md) var(--spacing-2xl);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--text-lg);
  transition: all var(--transition-base);
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--primary-blue);
}

.btn-secondary {
  background: var(--gray-700);
  color: white;
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all var(--transition-base);
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--gray-600);
}

.btn-danger {
  background: var(--red-danger-dark);
  color: white;
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all var(--transition-base);
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-danger:hover {
  background: var(--red-danger);
}

.btn-full-width {
  width: 100%;
}

/* Form Elements */
.form-input {
  transition: all var(--transition-base);
  width: 100%;
  padding: var(--spacing-md) var(--spacing-lg);
  background: var(--gray-700);
  border: 1px solid var(--gray-600);
  border-radius: var(--radius-md);
  color: white;
}

.form-input::placeholder {
  color: var(--gray-400);
}

.form-input:focus {
  outline: none;
  border: 2px solid var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-sm);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gray-300);
  margin-bottom: var(--spacing-sm);
}

/* Animations
   ========================================================================== */

.floating-animation {
  animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
  0%, 100% { 
    transform: translateY(0px); 
  }
  50% { 
    transform: translateY(-20px); 
  }
}

.pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
  from { 
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4); 
  }
  to { 
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.8); 
  }
}

@keyframes pulse {
  0%, 100% { 
    opacity: 1; 
  }
  50% { 
    opacity: 0.5; 
  }
}

/* Page-Specific: Homepage
   ========================================================================== */

.hero-bg {
  background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, rgba(17, 24, 39, 0.8) 70%);
}

.hero-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(30, 58, 138, 0.3);
  backdrop-filter: blur(4px);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.hero-status-dot {
  width: var(--spacing-sm);
  height: var(--spacing-sm);
  background: var(--green-accent);
  border-radius: 50%;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero-status-text {
  font-size: var(--text-sm);
  color: var(--light-blue);
  font-weight: 500;
}

.hero-title {
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--spacing-xl);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: var(--text-4xl);
  }
}

.hero-subtitle {
  font-size: var(--text-xl);
  color: var(--gray-300);
  margin-bottom: var(--spacing-2xl);
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: var(--text-2xl);
  }
}

.hero-cta-container {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-cta-container {
    flex-direction: row;
  }
}

.hero-decorative-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}

.hero-decorative-blob-1 {
  top: 5rem;
  left: 2.5rem;
  width: 5rem;
  height: 5rem;
  background: rgba(59, 130, 246, 0.1);
}

.hero-decorative-blob-2 {
  bottom: 5rem;
  right: 2.5rem;
  width: 8rem;
  height: 8rem;
  background: rgba(139, 92, 246, 0.1);
}

/* Page-Specific: 10dicas Game
   ========================================================================== */

.game-container {
  transition: all var(--transition-base);
  background: rgba(31, 41, 55, 0.5);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-2xl);
  border: 1px solid var(--gray-700);
}

.game-container:hover {
  border-color: var(--gray-700);
  box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.15);
}

.game-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.game-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-sm);
}

.game-title {
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.game-header-buttons {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin: var(--spacing-md) 0;
  justify-content: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 2px;
}

.game-header-buttons::-webkit-scrollbar {
  display: none;
}

.game-description {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
}

.game-description-text {
  font-size: var(--text-sm);
  color: var(--gray-400);
  margin: 0;
  text-align: center;
  line-height: 1.5;
}

.game-info-btn {
  color: white;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--spacing-sm) var(--spacing-md);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  backdrop-filter: blur(8px);
  min-height: 2.5rem;
  white-space: nowrap;
  text-align: center;
}

.game-info-btn:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(147, 51, 234, 0.9));
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.game-info-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

/* Ocultação de seções no final do jogo */
.game-finished .hide-when-finished {
  display: none;
}

/* Responsividade para botões do header */
@media (max-width: 640px) {
  .game-header-buttons {
    gap: var(--spacing-xs);
    justify-content: center;
    padding-left: var(--spacing-xs);
    padding-right: var(--spacing-xs);
  }
  
  .game-info-btn {
    font-size: 0.75rem;
    padding: var(--spacing-xs) var(--spacing-sm);
    min-height: 2rem;
    min-width: 70px;
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .game-header-buttons {
    gap: 6px;
    justify-content: center;
  }
  
  .game-info-btn {
    font-size: 0.7rem;
    padding: 6px 8px;
    min-height: 1.75rem;
    min-width: 65px;
  }
}

@media (max-width: 360px) {
  .game-info-btn {
    font-size: 0.65rem;
    padding: 4px 6px;
    font-weight: 500;
    min-width: 60px;
  }

  .game-header-buttons {
    gap: 4px;
    justify-content: center;
  }
}

.game-stats {
  margin-bottom: var(--spacing-xl);
  text-align: center;
}

.game-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
}

.game-stat-card {
  background: rgba(31, 41, 55, 0.5);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  border: 1px solid var(--gray-700);
}

.game-stat-label {
  font-size: var(--text-xs);
  color: var(--gray-400);
  margin-bottom: var(--spacing-xs);
}

.game-stat-value {
  font-size: var(--text-lg);
  font-weight: 700;
  color: white;
}

.hints-section {
  margin-bottom: var(--spacing-xl);
}

.hints-title {
  color: var(--gray-300);
  margin-bottom: var(--spacing-md);
  font-weight: 600;
}

.hints-buttons-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--spacing-sm);
}

.hint-button {
  transition: all var(--transition-base);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.hint-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-sm);
}

.revealed-hints {
  margin-top: 1.25rem;
  color: var(--gray-200);
}

.revealed-hints > div {
  margin-bottom: var(--spacing-md);
}

.guess-section {
  margin-bottom: var(--spacing-xl);
}

.guess-feedback {
  min-height: 1.2rem;
  margin-top: var(--spacing-sm);
  font-size: 0.9rem;
}

.timeline-section {
  margin-bottom: var(--spacing-xl);
}

.timeline-toggle {
  width: 100%;
  text-align: left;
  color: var(--gray-300);
  margin-bottom: var(--spacing-md);
  font-weight: 600;
  transition: color var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
}

.timeline-toggle:hover {
  color: white;
}

.timeline-toggle-icon {
  color: var(--gray-500);
}

.timeline-list {
  background: rgba(31, 41, 55, 0.5);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  border: 1px solid var(--gray-700);
  max-height: 10rem;
  overflow-y: auto;
}

.timeline-list > div {
  margin-bottom: var(--spacing-md);
}

.timeline-list > div:last-child {
  margin-bottom: 0;
}

/* Page-Specific: Contact Form
   ========================================================================== */

.contact-form-container {
  background: rgba(31, 41, 55, 0.5);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-lg);
  padding: var(--spacing-2xl);
  border: 1px solid var(--gray-700);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.contact-form-submit {
  text-align: center;
}

.form-status {
  margin-top: var(--spacing-xl);
  text-align: center;
}

.form-message {
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
}

.form-message-success {
  background: rgba(6, 78, 59, 0.5);
  border: 1px solid var(--green-success);
  color: var(--green-success-light);
}

.form-message-error {
  background: rgba(127, 29, 29, 0.5);
  border: 1px solid var(--red-error);
  color: var(--red-error-light);
}

/* Utility Classes
   ========================================================================== */

.hidden {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Print Styles
   ========================================================================== */

@media print {
  .site-header,
  .site-footer,
  .mobile-menu,
  button,
  .btn-primary,
  .btn-secondary,
  .btn-danger {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .gradient-text {
    -webkit-text-fill-color: black;
    background: none;
  }
}

/* ==========================================================================
   CALENDAR COMPONENT STYLES
   ========================================================================== */

/* Calendar Day Buttons */
.calendar-day {
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  min-height: 2.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid transparent;
}

/* Calendar Day States */
.calendar-day.unavailable {
  color: var(--gray-500);
  cursor: not-allowed;
  background: transparent;
}

.calendar-day.available {
  color: #D1D5DB;
  background-color: #4B5563;
  cursor: pointer;
}

.calendar-day.available:hover {
  background-color: var(--gray-500);
  transform: scale(1.05);
}

.calendar-day.not-started {
  background-color: #4B5563;
  color: #E5E7EB;
  border-color: var(--gray-500);
}

.calendar-day.in-progress {
  background: linear-gradient(135deg, #3B82F6, #1D4ED8);
  color: white;
  border-color: #60A5FA;
}

.calendar-day.completed-won {
  background: linear-gradient(135deg, #10B981, #059669);
  color: white;
  border-color: #34D399;
}

.calendar-day.completed-lost {
  background: linear-gradient(135deg, #EF4444, #DC2626);
  color: white;
  border-color: #F87171;
}

.calendar-day.today {
  box-shadow: 0 0 0 2px #60A5FA, 0 0 0 4px #1F2937;
}

.calendar-day.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Calendar Day Status Indicators */
.calendar-day .status-indicator {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  font-size: 10px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-day.in-progress .status-indicator {
  background-color: #FBBF24;
  color: #92400E;
}

.calendar-day.completed-won .status-indicator {
  background-color: white;
  color: #059669;
}

.calendar-day.completed-lost .status-indicator {
  background-color: white;
  color: #DC2626;
}

/* Calendar Navigation */
.calendar-nav-btn {
  padding: 0.5rem;
  border-radius: 0.5rem;
  background-color: #374151;
  color: white;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.calendar-nav-btn:hover {
  background-color: #4B5563;
  transform: scale(1.05);
}

.calendar-nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #1F2937;
}

.calendar-nav-btn:disabled:hover {
  transform: scale(1);
}

/* Calendar Modal Animations */
#calendarModal.show {
  opacity: 1;
  pointer-events: auto;
}

#calendarModal.show #calendarModalContent {
  transform: scale(1);
}

/* Calendar Grid Responsive */
@media (max-width: 640px) {
  .calendar-day {
    width: 2rem;
    height: 2rem;
    min-width: 2rem;
    min-height: 2rem;
    font-size: 0.75rem;
  }
  
  .calendar-day .status-indicator {
    width: 0.5rem;
    height: 0.5rem;
    top: -0.125rem;
    right: -0.125rem;
    font-size: 8px;
  }
}

/* ==========================================================================
   POLÍTICA DE PRIVACIDADE STYLES
   ========================================================================== */

/* Seções da política */
.privacy-section {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-800);
}

.privacy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

/* Typography para prose */
.prose h2 {
  color: var(--gray-100);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  color: var(--gray-200);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

.prose p {
  color: var(--gray-300);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.prose ul {
  color: var(--gray-300);
  margin-bottom: 1.5rem;
}

.prose ul li {
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
}

.prose a {
  color: var(--primary-blue);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.prose a:hover {
  color: var(--light-blue);
}

.prose strong {
  color: var(--gray-100);
  font-weight: 600;
}