.header {
            background-color: #0dcaf0;
            height: 10px;
            width: 100%;
            margin-bottom: 20px;
        }
        .resource-section {
            margin-bottom: 30px;
        }
        .resource-title {
            font-weight: bold;
            margin-bottom: 15px;
            color: #333;
        }
        .slide-container {
            position: relative;
            overflow: hidden;
            width: 100%;
        }
        .form-range {
            width: 100%;
        }
        .slider-labels {
            display: flex;
            justify-content: space-between;
            margin-top: 5px;
            font-size: 14px;
        }
        .calculator-card {
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            padding: 20px;
            margin-top: 20px;
            max-width: 100%;
        }
        .calculator-title {
            font-weight: bold;
            margin-bottom: 20px;
            text-align: center;
        }
        .control-button {
            background-color: #0dcaf0;
            color: white;
            width: 36px;
            height: 36px;
            font-size: 18px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .resource-value {
            width: 60px;
            text-align: center;
            border: 1px solid #ddd;
            background: #f8f9fa;
            font-weight: bold;
            padding: 5px;
            font-size: 16px;
        }
        .resource-label {
            font-weight: bold;
            margin-left: 8px;
            white-space: nowrap;
        }
        .total-price {
            background-color: #f8f9fa;
            padding: 10px;
            border-radius: 5px;
            margin-top: 10px;
        }
        .currency-conversion {
            margin-top: 15px;
            font-size: 14px;
        }
        .submit-button {
            background-color: #0dcaf0;
            border: none;
            width: 100%;
            margin-top: 20px;
            padding: 12px;
            font-weight: bold;
            color: white;
            border-radius: 5px;
            cursor: pointer;
        }
        .exchange-button {
            background-color: #0dcaf0;
            border: none;
            padding: 8px 12px;
            font-size: 14px;
            color: white;
            border-radius: 5px;
        }
        hr {
            margin: 20px 0;
        }

        /* #calculadora-container, #formulario-container {
            transition: all 0.5s ease;
        } */

        /* Slide Animation Styles */
        .slide-container {
            position: relative;
            overflow: hidden;
            min-height: 600px;
        }
        
        .calculator-view, .form-view {
            position: absolute;
            top: 0;
            width: 100%;
            transition: transform 0.5s ease;
        }
        
        .calculator-view {
            left: 0;
            transform: translateX(0);
            z-index: 2;
        }
        
        .form-view {
            left: 100%;
            transform: translateX(0);
            z-index: 1;
}
        
        .calculator-view.slide-left {
            transform: translateX(-100%);
        }

    .form-view.slide-in {
        transform: translateX(-100%);
    }
        
        .form-container {
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            padding: 30px;
            margin-top: 20px;
            background: white;
        }
        
        .form-title {
            font-weight: bold;
            margin-bottom: 25px;
            text-align: center;
            color: #333;
        }
        
        .back-button {
            background-color: #6c757d;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            margin-bottom: 20px;
        }
        
        .back-button:hover {
            background-color: #5a6268;
        }
        
        .form-submit-button {
            background-color: #0dcaf0;
            color: white;
            border: none;
            width: 100%;
            padding: 12px;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            margin-top: 20px;
        }
        
        .form-submit-button:hover {
            background-color: #0bb2d4;
        }
        
        /*.quote-summary {*/
        /*    background-color: #f8f9fa;*/
        /*    padding: 15px;*/
        /*    border-radius: 5px;*/
        /*    margin-bottom: 20px;*/
        /*    border-left: 4px solid #0dcaf0;*/
        /*}*/
        
        .quote-summary h6 {
            color: #0dcaf0;
            margin-bottom: 10px;
        }
        
        /*Resumo da cotação*/
        .quote-box {
          background: #f9fafc;
          /*border: 1px solid #dee2e6;*/
          border-radius: 10px;
          padding: 15px 20px;
          font-family: 'Segoe UI', sans-serif;
          max-width: 100%;
          /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);*/
        }
        
        .quote-title {
          font-size: 1.2rem;
          margin-bottom: 50px;
          color: #0056b3;
        }
        
        .quote-line {
          display: flex;
          justify-content: space-between;
          margin: 6px 0;
          font-size: 0.95rem;
        }
        
        .quote-line .icon {
          margin-right: 8px;
        }
        
        .quote-line .label {
          flex: 1;
          color: #495057;
        }
        
        .quote-line .value {
          font-weight: bold;
          color: #212529;
        }
        
        .feature-box {
          background-color: #f8f9fa;
          border: 1px solid #dee2e6;
          transition: transform 0.2s;
        }
        .feature-box:hover {
          transform: scale(1.03);
          background-color: #eef3f8;
        }
        .feature-icon i {
          color: #0dcaf0;
        }
        .feature-label {
          font-size: 0.95rem;
        }
        .feature-value {
          font-size: 0.9rem;
        }