/* styles.css */

/* Tipografías base */
body {
    font-family: 'Roboto', sans-serif;
  }
  
  .sharpie-border {
    border: 2px solid black;
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
  }
  
  .mono {
    font-family: 'Roboto Mono', monospace;
  }
  
  .strikethrough {
    text-decoration: line-through;
    text-decoration-thickness: 3px;
  }
  
  .check-blue {
    color: #00ABEA;
    font-weight: 900;
    font-size: 1.25rem;
    margin-right: 0.5rem;
  }
  
  .arrow-blue::before {
    content: '→';
    color: #00ABEA;
    font-weight: 900;
    margin-right: 0.5rem;
  }
  
  .sticky-note {
    transform: rotate(-2deg);
  }
  
  .code-block {
    background: #1e1e1e;
    color: #d4d4d4;
    padding: 1rem;
    border-radius: 4px;
  }
  
  .price-old {
    color: #9ca3af;
    text-decoration: line-through;
    font-family: 'Roboto Mono', monospace;
  }
  
  .price-final {
    color: #059669;
    font-weight: 900;
    font-family: 'Roboto Mono', monospace;
  }
  