/*CARD ROW*/
.card-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 60px;
    gap: 30px;
    border-bottom: #1E293B 2px solid;
    padding-bottom: 3%;
  }

  .card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: linear-gradient(to bottom left, #154ba0, #74a9e1);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
  }
  .card {
    position: relative;
    overflow: hidden;
  }
  
  .card {
    flex: 1 1 clamp(250px, 25%, 350px);
    max-width: 350px;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    transition: transform 0.2s ease-in-out;
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.06), 0 8px 16px rgba(0,0,0,0.08);

    background: rgba(255, 255, 255, 0.927);
    backdrop-filter: blur(12px);
    transition: all 0.2s ease-in-out;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
  }
  
  .image-samples{
    width: 100%;
    height: 100%;
    border-radius: 12px;
    text-align: center;
  }
  
  .image-container-samples{
    width: 80%;
    height: 80%;
    display: flex;
    align-self: center;
  }
  
  .image-parameters{
    margin-top: 40px;
  }
  
  
  .card h3 {
    font-size: 27px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1E293B;
  }
  
  .card p {
    font-size: 16px;
    color: #444;
    line-height: 1.4;
  }
  
  /*SAMPLES CARD*/
  
  .comparison-chart {
  
    display: flex;
    justify-content: center;
    align-items: end;
    gap: 4rem;
    margin-top: 2rem;
    font-family: 'Inter', sans-serif;
  }
  
  .bar-item {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .bar {
    width: 100px;
    border-radius: 6px;
    background-color: #1E293B;
    margin-bottom: 0.75rem;
    
  }
  
  .bar-full {
    width: 100px;
    border-radius: 6px;
    background-color: #1E293B;
    height: 300px;
  }
  
  .bar-small {
    height: 80px;
    box-shadow: #1E293B 0px 4px 8px 0px;
    transition: all 0.2s ease-in-out;
  }
  
  .bar-small:hover{
    box-shadow: #64cf74 0.001px 0.001px 20px;
  }
  
  .percentage {
    font-size: 30px;
    font-weight: 800;
    color: #1E293B;
  }
  
  .label-comparison {
    font-size: 2rem;
    color: #1E293B;
    font-weight: 700;
    margin-top: 0.2rem;
  }
  
  .label-comparison-qugate {
    font-size: 2rem;
    color: #1E293B;
    font-weight: 700;
    margin-top: 0.2rem;
    text-shadow: #1E293B 0.001px 0.001px 1px;
  }
  
  /* INPUT OUTPUT CARD */
  
  .container-input {
    display: flex;
    gap: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
  
    background: radial-gradient(circle at top left, #45618f 0%, #1E293B 40%, #0F172A 100%);
  
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
    max-width: 500px;
    margin: auto;
  }
  
  .section-input {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
  }
  
  label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: #333;
    gap: 5px;
    color: white;
  }
  
  .readonly {
    padding: 0.4rem 0.6rem;
    background: #334155;
    border: 1px solid #475569;
    border-radius: 6px;
    font-size: 1rem;
    min-width: 80px;
    text-align: center;
    color: #E2E8F0;
  }
  
  .readonly.muted {
    color: #999;
    font-style: italic;
  }
  
  .output-input {
    padding: 0.6rem 0.7rem;
    background-color: #F1F5F9;
    color: #1E293B;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.2rem;
    box-shadow: 0.1px 0.1px 2px rgb(255, 239, 239);
  }
  