<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
    /*  Fim inserÃ§Ã£o */
    .product-info {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .product-info img {
      width: 60px;
      height: 60px;
      object-fit: cover;
    }
    .product-info h2 {
      font-size: 20px;
      margin: 0;
    }
    /*  Fim inserÃ§Ã£o */
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background: #f5f5f5;
    }
    .container {
      max-width: 600px;
      margin: 20px auto;
      background: white;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
    h2 {
      font-size: 20px;
      margin-bottom: 20px;
    }
    .form-group {
      margin-bottom: 15px;
    }
    .form-group label {
      display: block;
      font-weight: bold;
      margin-bottom: 5px;
    }
    .form-group input, .form-group select {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
    }
    
    .secure-msg, .guarantee {
      text-align: center;
      margin-top: 15px;
      font-size: 13px;
      color: #555;
    }
    .payment-methods {
      display: flex;
      gap: 10px;
      margin-bottom: 15px;
      flex-wrap: wrap;
    }
    .method-button {
      flex: 1 1 45%;
      padding: 12px;
      border: 2px solid #ccc;
      background: #fff;
      border-radius: 8px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-weight: 500;
      transition: 0.2s ease-in-out;
    }
    .method-button img {
      width: 20px;
      height: 20px;
    }
    .method-button.active {
      border-color: #1a8917;
      background: #e9f9ec;
    }
    .buy-btn {
      background-color: #00c853;
      color: white;
      padding: 15px;
      width: 100%;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      cursor: pointer;
    }
    
    @media (max-width: 600px) {
      .payment-methods {
        flex-direction: column;
      }
      .method-button {
        flex: 1 1 100%;
      }
    }
    
    .footer {
      box-sizing: border-box;
      font-family: 'Roboto', sans-serif;
      font-size: 12px;
      text-align: center;
      margin-top: 30px;
      color: #888;
    }
    
    /* //////////////////////////////////////////////////// */
    
    .buy-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px; /* espaÃ§o entre imagem e texto */
      padding: 10px 16px;
      font-size: 14px;
      font-weight: bold;
      border: none;
      border-radius: 5px;
      background-color: #00c853;
      color: white;
      cursor: pointer;
    }
    
    .buy-btn .icon-pay {
        border-radius: 4px 4px;
      background-color: #fff;
      height: 20px;
      width: auto;
    }
    
    /* //////////////////////////////////////////////// */
    
    /* Estilo para telas de dispositivos mÃ³veis (telas pequenas) */
    @media (max-width: 767px) {
        #inputnome {
            width:93%;
        }
        
        #inputemail {
            width:93%;
        }
        
        #inputphone {
            width:93%;
        }
        
        
        #inputphone3 {
            width:93%;
        }
        
        #inputnome2 {
            width:93%;
        }
        
        #inputemail2 {
            width:93%;
        }
    }
    
    @media (min-width: 555px) and (max-width: 650px) {
        #inputnome {
            width:93%;
        }
        
        #inputemail {
            width:93%;
        }
        
        #inputphone {
            width:93%;
        }
        
        
        #inputphone3 {
            width:93%;
        }
        
        #inputnome2 {
            width:93%;
        }
        
        #inputemail2 {
            width:93%;
        }
    }
    
    
    @media (min-width: 650px) and (max-width: 767px) {
        #inputnome {
            width:95%;
        }
        
        #inputemail {
            width:95%;
        }
        
        #inputphone {
            width:93%;
        }
        
        
        #inputphone3 {
            width:93%;
        }
        
        #inputnome2 {
            width:93%;
        }
        
        #inputemail2 {
            width:93%;
        }
    }
    
    /* Estilo para telas de desktop */
    @media (min-width: 1200px) {
        
        #inputnome {
            width:96%;
        }
        
        #inputphone {
            width:96%;
        }
        
        #inputphone3 {
            width:96%;
        }
        
        #inputemail {
            width:96%;
        }
        
        #inputnome2 {
            width:96%;
        }
        
        #inputemail2 {
            width:96%;
        }
    }
  
    /* Estilo para telas de tablets (telas mÃ©dias) */
    @media (min-width: 768px) and (max-width: 1199px) {
        #inputnome {
            width:96%;
        }
        
        #inputphone {
            width:96%;
        }
        
        #inputphone3 {
            width:96%;
        }
        
        #inputemail {
            width:96%;
        }
        
        #inputnome2 {
            width:96%;
        }
        
        #inputemail2 {
            width:96%;
        }
        
    }
    
    /* /////////////////////////////////////////////////// */
    
    #phone {
        width: 128%;
        max-width: 1200px;
        transition: width 0.3s ease;
    }
    
    @media (min-width: 1px) and (max-width: 450px) {
        #phone {
            width: 100%;
            max-width: 1000px;
            transition: width 0.3s ease;
        }
    }
    
    @media (min-width: 600px) and (max-width: 650px) {
        #phone {
            width: 116%;
            max-width: 1000px;
            transition: width 0.3s ease;
        }
    }
    
    @media (min-width: 570px) and (max-width: 600px) {
        #phone {
            width: 109%;
            max-width: 1000px;
            transition: width 0.3s ease;
        }
    }
    
    @media (min-width: 530px) and (max-width: 570px) {
        #phone {
            width: 108%;
            max-width: 1000px;
            transition: width 0.3s ease;
        }
    }
    
    @media (min-width: 500px) and (max-width: 530px) {
        #phone {
            width: 102%;
            max-width: 1000px;
            transition: width 0.3s ease;
        }
    }
    
    @media (min-width: 445px) and (max-width: 500px) {
        #phone {
            width: 98%;
            max-width: 1000px;
            transition: width 0.3s ease;
        }
    }
    
    /* Novo ajuste */
    
    @media (min-width: 1280px) and (max-width: 1440px) {
        #phone {
            width: 121%;
            max-width: 1000px;
            transition: width 0.3s ease;
        }
    }
    

    
    /* //////////////////////////////// */
    </pre></body></html>